2016-01-14 02:18:37 +03:00
-- * [name : string] - Name of the mob used in the mod.
-- [egg_name_custom : string] - Custom name for the egg item. If empty default name will be used i.e. 'mobs:chicken'.
-- * [dummy_size : table] - Size of the rotating dummy inside the node.
-- * [dummy_offset : integer] - Offset on Y axis of the dummy inside the node.
-- * [dummy_mesh : string] - Filename of the model used fot he mob.
-- * [dummy_texture : table] - Textures used for the mob.
2016-02-27 22:36:12 +03:00
-- * [night_only : boolean : string] - If true mobs will spawn only during the night or in dark areas, default:true. Writing "disable" will disable light check and it will spawn in both states (night and day)
2016-01-14 02:18:37 +03:00
-- [sound_custom : string] - Custom name for the sound file name if differ from default: i.e 'mobs_cow'.
-- [*] -> MANDATORY - has to be filled in!
2016-01-14 22:21:04 +03:00
-- mods what should be enabled and loded, remove/add the one you want to load
2016-02-27 22:36:12 +03:00
ENABLED_MODS = { " mobs " , " pyramids " , " creatures " , " spawners " }
2016-01-13 00:26:44 +03:00
-- mobs properties - setup all you mobs here
MOBS_PROPS = {
2016-02-27 22:36:12 +03:00
[ " spawners " ] = { -- SPAWNERS (THIS) MOD CONFIG
{
name = " mummy " ,
egg_name_custom = " " ,
dummy_size = { x = 0.4 , y = 0.4 } ,
dummy_offset = 0 ,
dummy_mesh = " creatures_mummy.b3d " ,
dummy_texture = { " creatures_mummy.png " } ,
night_only = " disable " ,
sound_custom = " spawners_mob_mummy "
}
} ,
2016-01-14 02:18:37 +03:00
[ " mobs " ] = { -- MOBS REDO CONFIG
{
name = " sheep_white " ,
egg_name_custom = " " ,
dummy_size = { x = 0.52 , y = 0.52 } ,
dummy_offset = 0.2 ,
dummy_mesh = " mobs_sheep.b3d " ,
2016-02-18 23:34:05 +03:00
dummy_texture = { " mobs_sheep_wool.png^mobs_sheep_base.png " } ,
2016-01-14 02:18:37 +03:00
night_only = false ,
sound_custom = " mobs_sheep "
} ,
{
name = " cow " ,
egg_name_custom = " " ,
dummy_size = { x = 0.3 , y = 0.3 } ,
dummy_offset =- 0.3 ,
dummy_mesh = " mobs_cow.x " ,
dummy_texture = { " mobs_cow.png " } ,
night_only = false ,
sound_custom = " "
} ,
{
name = " chicken " ,
egg_name_custom = " " ,
dummy_size = { x = 0.9 , y = 0.9 } ,
dummy_offset = 0.2 ,
dummy_mesh = " mobs_chicken.x " ,
dummy_texture = { " mobs_chicken.png " , " mobs_chicken.png " , " mobs_chicken.png " , " mobs_chicken.png " , " mobs_chicken.png " , " mobs_chicken.png " , " mobs_chicken.png " , " mobs_chicken.png " , " mobs_chicken.png " } ,
night_only = false ,
sound_custom = " "
} ,
{
2016-01-24 03:18:24 +03:00
name = " pumba " ,
2016-01-14 02:18:37 +03:00
egg_name_custom = " " ,
dummy_size = { x = 0.62 , y = 0.62 } ,
dummy_offset =- 0.3 ,
2016-01-24 03:18:24 +03:00
dummy_mesh = " mobs_pumba.x " ,
dummy_texture = { " mobs_pumba.png " } ,
2016-01-14 02:18:37 +03:00
night_only = false ,
sound_custom = " mobs_pig "
} ,
{
name = " bunny " ,
egg_name_custom = " " ,
dummy_size = { x = 1 , y = 1 } ,
dummy_offset = 0.2 ,
dummy_mesh = " mobs_bunny.b3d " ,
dummy_texture = { " mobs_bunny_brown.png " } ,
night_only = false ,
sound_custom = " spawners_bunny "
} ,
{
name = " kitten " ,
egg_name_custom = " " ,
dummy_size = { x = 0.32 , y = 0.32 } ,
dummy_offset = 0 ,
dummy_mesh = " mobs_kitten.b3d " ,
dummy_texture = { " mobs_kitten_ginger.png " } ,
night_only = false ,
sound_custom = " "
2016-02-16 02:52:02 +03:00
} ,
{
name = " spider " ,
egg_name_custom = " " ,
dummy_size = { x = 2 , y = 2 } ,
dummy_offset =- 0.2 ,
dummy_mesh = " mobs_spider.x " ,
dummy_texture = { " mobs_spider.png " } ,
night_only = false ,
sound_custom = " "
2016-02-20 01:19:52 +03:00
} ,
{
name = " stone_monster " ,
egg_name_custom = " " ,
dummy_size = { x = 0.5 , y = 0.5 } ,
2016-02-21 22:19:29 +03:00
dummy_offset = 0.05 ,
2016-02-20 01:19:52 +03:00
dummy_mesh = " mobs_stone_monster.b3d " ,
dummy_texture = { " mobs_stone_monster.png " } ,
night_only = false ,
2016-02-21 05:18:57 +03:00
sound_custom = " mobs_stonemonster "
2016-02-21 22:19:29 +03:00
} ,
{
name = " oerkki " ,
egg_name_custom = " " ,
dummy_size = { x = 0.5 , y = 0.5 } ,
dummy_offset = 0.05 ,
dummy_mesh = " mobs_oerkki.b3d " ,
dummy_texture = { " mobs_oerkki.png " } ,
2016-02-21 22:49:53 +03:00
night_only = true ,
2016-02-21 22:19:29 +03:00
sound_custom = " "
} ,
{
name = " tree_monster " ,
egg_name_custom = " " ,
dummy_size = { x = 0.4 , y = 0.4 } ,
dummy_offset = 0.05 ,
dummy_mesh = " mobs_tree_monster.b3d " ,
dummy_texture = { " mobs_tree_monster.png " } ,
night_only = false ,
sound_custom = " mobs_treemonster "
2016-01-14 02:18:37 +03:00
}
2016-01-13 00:26:44 +03:00
} ,
2016-01-14 02:18:37 +03:00
[ " pyramids " ] = { -- PYRAMIDS MOD CONFIG
{
name = " mummy " ,
egg_name_custom = " pyramids:spawn_egg " ,
dummy_size = { x = 3.3 , y = 3.3 } ,
dummy_offset =- 0.3 ,
dummy_mesh = " pyramids_mummy.x " ,
dummy_texture = { " pyramids_mummy.png " } ,
night_only = false ,
sound_custom = " mummy "
}
2016-01-13 00:26:44 +03:00
} ,
2016-01-14 02:18:37 +03:00
[ " creatures " ] = { -- CREATURES MOD CONFIG
{
name = " chicken " ,
egg_name_custom = " creatures:chicken_spawn_egg " ,
dummy_size = { x = 0.9 , y = 0.9 } ,
dummy_offset =- 0.3 ,
dummy_mesh = " creatures_chicken.b3d " ,
dummy_texture = { " creatures_chicken.png " } ,
night_only = false ,
sound_custom = " "
2016-02-13 20:58:55 +03:00
} ,
2016-01-14 02:18:37 +03:00
{
name = " ghost " ,
egg_name_custom = " creatures:ghost_spawn_egg " ,
dummy_size = { x = 0.7 , y = 0.7 } ,
dummy_offset =- 0.5 ,
dummy_mesh = " creatures_ghost.b3d " ,
dummy_texture = { " creatures_ghost.png " } ,
night_only = true ,
sound_custom = " "
2016-02-13 20:58:55 +03:00
} ,
2016-01-14 02:18:37 +03:00
{
name = " sheep " ,
egg_name_custom = " creatures:sheep_spawn_egg " ,
dummy_size = { x = 0.6 , y = 0.6 } ,
dummy_offset =- 0.3 ,
dummy_mesh = " creatures_sheep.b3d " ,
dummy_texture = { " creatures_sheep.png^creatures_sheep_white.png " } ,
night_only = false ,
sound_custom = " "
2016-02-13 20:58:55 +03:00
} ,
2016-01-14 02:18:37 +03:00
{
name = " zombie " ,
egg_name_custom = " creatures:zombie_spawn_egg " ,
dummy_size = { x = 0.5 , y = 0.5 } ,
dummy_offset =- 0.5 ,
dummy_mesh = " creatures_zombie.b3d " ,
dummy_texture = { " creatures_zombie.png " } ,
2016-02-13 20:58:55 +03:00
night_only = false ,
sound_custom = " "
} ,
{
name = " oerrki " ,
egg_name_custom = " creatures:oerrki_spawn_egg " ,
dummy_size = { x = 0.4 , y = 0.4 } ,
dummy_offset =- 0.5 ,
dummy_mesh = " creatures_oerrki.b3d " ,
dummy_texture = { " creatures_oerrki.png " } ,
night_only = false ,
2016-02-21 23:13:35 +03:00
sound_custom = " creatures_oerrki_idle "
2016-02-27 22:36:12 +03:00
}
2016-01-13 00:26:44 +03:00
}
2016-02-27 22:36:12 +03:00
}