RoloLudo/RoloLudo.package/SfPlayerCharacter.class/instance/stats.st

12 lines
198 B
Smalltalk
Raw Normal View History

accessing
stats
^ Dictionary new
addAll: {
'Edge' -> self edge .
'Heart' -> self heart.
'Iron' -> self iron.
'Shadow' -> self shadow.
'Wits' -> self wits
};
yourself