Modifiers

This commit is contained in:
tcaxle 2020-04-11 13:53:32 +01:00
parent a0327bdf18
commit 160bf51552
2 changed files with 3 additions and 6 deletions

View File

@ -205,16 +205,13 @@ class modifierBase(models.Model):
value = NamedIntegerField("Modifier Value")
class modifierAttribute(modifierBase):
# attribute
pass
attribute = SingleChoiceField("Attribute", ATTRIBUTES)
class modifierAbility(modifierBase):
# ability
pass
ability = SingleChoiceField("Ability", ABIILITIES)
class modifierStatic(modifierBase):
# static
pass
static = SingleChoiceField("Static", STATICS)
#==============================================================================#
#----------------------------------- ITEMS ------------------------------------#