Fix 'defend_type' vs 'defense_type' typos in beginner tutorial

This commit is contained in:
feyrkh 2024-09-29 05:23:12 -05:00 committed by GitHub
parent 86174b7a20
commit 321da9b694
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -248,7 +248,7 @@ class EvAdventureWeapon(EvAdventureObject):
quality = AttributeProperty(3, autocreate=False) quality = AttributeProperty(3, autocreate=False)
attack_type = AttributeProperty(Ability.STR, autocreate=False) attack_type = AttributeProperty(Ability.STR, autocreate=False)
defend_type = AttributeProperty(Ability.ARMOR, autocreate=False) defense_type = AttributeProperty(Ability.ARMOR, autocreate=False)
damage_roll = AttributeProperty("1d6", autocreate=False) damage_roll = AttributeProperty("1d6", autocreate=False)
@ -387,7 +387,7 @@ class EvAdventureRuneStone(EvAdventureWeapon, EvAdventureConsumable):
quality = AttributeProperty(3, autocreate=False) quality = AttributeProperty(3, autocreate=False)
attack_type = AttributeProperty(Ability.INT, autocreate=False) attack_type = AttributeProperty(Ability.INT, autocreate=False)
defend_type = AttributeProperty(Ability.DEX, autocreate=False) defense_type = AttributeProperty(Ability.DEX, autocreate=False)
damage_roll = AttributeProperty("1d8", autocreate=False) damage_roll = AttributeProperty("1d8", autocreate=False)