summaryrefslogtreecommitdiff
blob: 1cb8d1dbd9af02be79d59fa95ff408dcd4147542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(fate_version 1)

(require types/creature.fate)

(global (list creature) monster_templates)

(global (lambda creature ()) random_creature)

(set random_creature
   (lambda () (access (rand 0 (size monster_templates)) monster_templates))
)

(