This repository has been archived by the owner on Nov 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
FLAGS parameter
Void Cat edited this page Dec 26, 2018
·
4 revisions
Currently not yet implemented. Will arrive in version 1.7.0
Property | Description |
---|---|
Optional | Yes |
Key | "flags" |
Values | Array of flags |
The FLAGS parameter allows for some additional options. Some of which are available only with certain TYPEs.
Please note that the flags should always be listed in an array (between square brackets).
Flag | Type | Description |
---|---|---|
"no_clean" |
See Below | Functionally the same as the CLEAN parameter (which will be phased out over time). |
"redraw" |
"setslide" |
When going back in the tease, redraw all cards already drawn (when come accross). |
"redraw_self" |
"setslide" |
When coming accross this card again, redraw it. |
TYPE parameters compatible with the "no_clean"
flag (on others no effect) are: "chastity"
, "ctc"
, "instruction"
, "item"
, "position"
, and "stop"
.
This card will send you back 30 slides, and any cards between this card and thirty slides back will be reactivated once drawn.
{
"actions": [
{
"start": "draw",
"type": "setslide",
"fors": "instant",
"action": "-30", // Jump back 30 slides
"until": "instant",
"flags": [
"redraw" // Redraw cards; NOTE the array, even for one flag
]
}
]
}