3 import org
.sevenchan
.dongs
.Creature
;
4 import org
.sevenchan
.dongs
.creature
.*;
5 import org
.sevenchan
.dongs
.creature
.npc
.*;
10 public class CreatureRegistry
13 public static function get gargoyle
():Creature
{ return new Gargoyle
();}
15 public static function get ala
():Creature
{ return new Ala
(); }
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
(); }
23 public static function get bova
():Creature
{ return new Bova
(); }
24 public static function get witch
():Creature
{ return new Witch
(); }
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
(); }
32 public static function get sandworm
():Creature
{ return new Sandworm
(); }
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
(); }