Skip to content
This repository has been archived by the owner on Nov 23, 2021. It is now read-only.

FLAGS parameter

Void Cat edited this page Dec 26, 2018 · 4 revisions

NOTICE

Currently not yet implemented. Will arrive in version 1.7.0

Quick Info

Property Description
Optional Yes
Key "flags"
Values Array of flags

Description

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).

Values

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.

TYPEs available for the "no_clean" flag

TYPE parameters compatible with the "no_clean" flag (on others no effect) are: "chastity", "ctc", "instruction", "item", "position", and "stop".

Example

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
      ]
    }
  ]
}

Learn more

All parameters