summaryrefslogtreecommitdiff
blob: 393473ed717eccabea54a0b9610e1dcbb03c7719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(fate_version 1)

(require types/creature.fate)

(global creature monster_0)
(global creature monster_1)
(global creature monster_2)
(global creature monster_3)
(global creature monster_4)
(global creature monster_5)

(global (lambda creature ()) random_creature)

(set random_creature
   (lambda ()
      (switch (rand 0 5)
         (0 (var monster_0))
         (1 (var monster_0))
         (2 (var monster_0))
         (3 (var monster_0))
         (4 (var monster_0))
         (var monster_5)
      )
   )
)