• Tags:

    ['illusion', 'Illusion']
  • Name:

    aInvisibility

  • Displayed name:

    Invisibility

  • Description:

    You bend light around yourself to become invisible. While invisible, interacting with another creature requires a **Subtlety** test to stay unseen. Creatures trying to spot you suffer a malus to their **Perception** test (doubled if unaware of an invisible creature). Attacking an invisible creature imposes a **-10** malus.

  • Cast description:

    | AP: vAP.string | CD: vCD.strings | | :---: | :---: | | **Flux: vFluxOrCost.string ➞ vFluxCost.string** | **Range: vRange.string** | On a successful **vTest.string** test **MR vMR.string** [1d20]: You become invisible for the next **vDuration.string**. When making any action that interacts with another creature, you must succeed a **Subtlety** test **MR {character.sSubtlety.current - 20 + vLvl.value*5}** to stay invisible. Creatures trying to spot you suffer **-{vLvl.value*5}** to their **Perception** test (doubled if unaware of an invisible creature). Attacking an invisible creature gives a **-10** malus to do so.

  • Condition:

    assert(character.sFlux.current >= vFluxCost.value, [[You don't have enough Flux]])

  • AP cost:

    4

  • Cooldown:

    10

  • Flux cost:

    apMod(vAP)*cdMod(vCD)*targetMod(1,0)*durMod(vDuration)*vRange*effect(vLvl*100,75)

  • Variables:

    vRange = ListVariable([[vRange]], [[Range]], {[[selfMod]]}, {[[Self]]}) vTest = ListVariable([[vTest]], [[Test]], {[[character.sReflex]]}, {[[Reflex]]}) vMR = StatVariable([[vMR]], [[vTest]]) vLvl = NumberVariable([[vLvl]], [[Lvl]], [[1]], [[10]], [[1]]) vDuration = NumberVariable([[vDuration]], [[Duration]], [[5]], [[60]], [[5]]) vDuration.valueDisplay.value = [[ self .. " second·s" ]]

  • On used script:

    character.sFlux:changeCurrent(-vFluxCost.value)

  • Type:

    1

  • Action effects:

    • Use case:

      1

    • Name:

      Invisibility

    • Description:

    • Script:

      effect = character:createEffect([[mInvisibility]]) effect.displayName:set([[Invisibility]]) effect.description:set([[When making any action that interacts with another creature, you must succeed a Subtlety test MR {{character.sSubtlety.value - 20 + vLvl.value*5}} to stay invisible. Creatures trying to spot you suffer -{{vLvl.value*5}} to their Perception test (doubled if unaware of an invisible creature). Attacking an invisible creature gives a -10 malus to do so.]]) effect.duration:set({{vDuration.value}}) effect:activate()

    • Variables: