dndplayer / dnd-player

An online virtual DND playground to support online groups.
https://dnd-player.com
Other
1 stars 0 forks source link

Add buffs/debuffs/conditions to character sheets #69

Open BodrickLight opened 5 years ago

BodrickLight commented 5 years ago
character: {
  conditions: [{
      duration?: number
      title: string
      colour: string
      effects: [{
          type: enum // e.g. AttributeModifier, DamageOnTurn? 
          property: string // e.g. dexterity, ac
          modifier: string // e.g. 25, +3, -2
        }, {
          type: enum
          diceCount: number
          diceSize: number
          bonus: number
          damageType: string
        }
      ]
    }
  ]
}