rtfm/tasks/groups.py [82:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        char = '!'

        def __init__(self, element, name):
            # these will show up as "{name} dragon"
            super().__init__(
                name='{} {}'.format(element.describe(), name),
                aggression=0.6,
                constitution=10,
                strength=100,
                dexterity=1,
                intelligence=5,
                armour_class=1,
                speed=1,
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



rtfm/tasks/groups.py [240:253]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        char = '!'

        def __init__(self, element, name):
            # these will show up as "{name} dragon"
            super().__init__(
                name='{} {}'.format(element.describe(), name),
                aggression=0.6,
                constitution=10,
                strength=100,
                dexterity=1,
                intelligence=5,
                armour_class=1,
                speed=1,
            )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



