Python parser added.
[18plus-7leafadventure.git] / src / CreatureRegistry.as
blob85228272ef84fa4bc084ec67fb3537aee3f128c1
1 package
3 import org.sevenchan.dongs.Creature;
4 import org.sevenchan.dongs.creature.*;
5 import org.sevenchan.dongs.creature.npc.*;
6 /**
7 * ...
8 * @author Harbinger
9 */
10 public class CreatureRegistry
12 // NPCs
13 public static function get gargoyle():Creature { return new Gargoyle();}
14 // BOSSDUDES
15 public static function get ala():Creature { return new Ala(); }
17 // General biomes
18 public static function get arachnid():Creature { return new Arachnid(false); }
19 public static function get arachnid_pregnant():Creature { return new Arachnid(true); }
20 public static function get demon():Creature { return new Demon(); }
22 // City Biomes
23 public static function get bova():Creature { return new Bova(); }
24 public static function get witch():Creature { return new Witch(); }
26 // Mountain biomes
27 public static function get harpy():Creature { return new Harpy(false); }
28 public static function get harpy_dark():Creature { return new Harpy(true); }
29 public static function get morel():Creature { return new Morel(); }
31 // Desert biomes
32 public static function get sandworm():Creature { return new Sandworm(); }
34 // In development
35 public static function get human():Creature { return new Human(); }
36 public static function get scylla():Creature { return new Scylla(); }
37 public static function get manticore():Creature { return new Manticore(); }