Castables need a array of CastingTimes

Issue #181 resolved
Bernhard Jung repo owner created an issue

In Wege der Vereinigung there are spells and chants that have two different casting times. First the spell has to be cast before having sex and then it needs to be activated during sex. Casting before and activating during sex have their on casting times.

The casting time needs to be a array of casting times.

Additionaly the casting time needs description attribute that allows to add the information when the casting time is used (before or during sex).

Comments (2)

  1. Bernhard Jung reporter

    Feature added in commit 3eab9ad

    The attribute for in JSON is still "castingtime" (singular) and can be used as before. So no JSON files have to be changed. But it is now also possible to use a array for castingtime. In addtion a casting time object can have a description attribute. The description is appended to the casting time in brackets.

    "castingtime": [
        {
            "duration": 2,
            "unit:" "action",
            "description": "vdL"
        },
            {
            "duration": 1,
            "unit:" "action",
            "description": "wdL"
        }
    ]
    
  2. Log in to comment