mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 00:06:30 +01:00
Minor typo fix
This commit is contained in:
parent
2df0b9c943
commit
507e896e06
1 changed files with 3 additions and 3 deletions
|
|
@ -727,10 +727,10 @@ class TraitProperty:
|
|||
|
||||
class Character(DefaultCharacter):
|
||||
|
||||
strength = TraitProperty("str", "Strength", trait_type="static", base=10, mod=2)
|
||||
hunting = TraitProperty(self, "hunting", "Hunting Skill", trait_type="counter",
|
||||
strength = TraitProperty(name="STR", trait_type="static", base=10, mod=2)
|
||||
hunting = TraitProperty("Hunting Skill", trait_type="counter",
|
||||
base=10, mod=1, max=100)
|
||||
health = TraitProperty("health", "Health", trait_type="gauge", min=0, base=100)
|
||||
health = TraitProperty(trait_type="gauge", min=0, base=100)
|
||||
|
||||
"""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue