insert a kitten api for easy creation of kittens

This commit is contained in:
Jordach 2014-12-25 20:24:25 +00:00
parent ef2e7bd4fb
commit 221e42cbd9
8 changed files with 97 additions and 96 deletions

View File

@ -501,104 +501,105 @@ mobs:register_mob("mobs:evergreen_tree", {
} }
}) })
mobs:register_mob("mobs:kitten_striped", { local kitten_nodes = {
type = "animal", "wool:black",
hp_max = 5, "wool:blue",
collisionbox = {-0.3, -0.3, -0.3, 0.3, 0.1, 0.3}, "wool:brown",
visual = "mesh", "wool:cyan",
visual_size = {x=0.5, y=0.5}, "wool:dark_green",
mesh = "mobs_kitten.b3d", "wool:dark_grey",
textures = {"mobs_kitten_striped.png"}, "wool:green",
makes_footstep_sound = false, "wool:grey",
view_range = 15, "wool:magenta",
walk_velocity = 0.6, "wool:orange",
drops = { "wool:pink",
{name = "tools:sword_air", "wool:red",
chance = 400000, "wool:violet",
min = 1, "wool:white",
max = 1,} "wool:yellow",
}, "carpet:black",
water_damage = 1, "carpet:blue",
lava_damage = 10, "carpet:brown",
on_rightclick = nil, "carpet:cyan",
armor = 100, "carpet:dark_green",
sounds = { "carpet:dark_grey",
random = "mobs_kitten", "carpet:green",
}, "carpet:grey",
animation = { "carpet:magenta",
stand_start = 97, "carpet:orange",
stand_end = 192, "carpet:pink",
walk_start = 0, "carpet:red",
walk_end = 96, "carpet:violet",
speed_normal = 42, "carpet:white",
} "carpet:yellow",
}) "deco:furnace_active",
"beds:bed_bottom",
"beds:bed_top",
"beds:bed_top_red",
"beds:bed_top_orange",
"beds:bed_top_yellow",
"beds:bed_top_green",
"beds:bed_top_blue",
"beds:bed_top_violet",
"beds:bed_top_black",
"beds:bed_top_grey",
"beds:bed_top_white",
"beds:bed_bottom_red",
"beds:bed_bottom_orange",
"beds:bed_bottom_yellow",
"beds:bed_bottom_green",
"beds:bed_bottom_blue",
"beds:bed_bottom_violet",
"beds:bed_bottom_black",
"beds:bed_bottom_grey",
"beds:bed_bottom_white",
}
mobs:register_mob("mobs:kitten_splotchy", {
type = "animal",
hp_max = 5,
collisionbox = {-0.3, -0.3, -0.3, 0.3, 0.1, 0.3},
visual = "mesh",
visual_size = {x=0.5, y=0.5},
mesh = "mobs_kitten.b3d",
textures = {"mobs_kitten_splotchy.png"},
makes_footstep_sound = false,
view_range = 15,
walk_velocity = 0.6,
drops = {
{name = "tools:sword_air",
chance = 400000,
min = 1,
max = 1,}
},
water_damage = 1,
lava_damage = 10,
on_rightclick = nil,
armor = 100,
sounds = {
random = "mobs_kitten",
},
animation = {
stand_start = 97,
stand_end = 192,
walk_start = 0,
walk_end = 96,
speed_normal = 42,
}
})
mobs:register_mob("mobs:kitten_ginger", {
type = "animal", local function register_kitten(image, name)
hp_max = 5,
collisionbox = {-0.3, -0.3, -0.3, 0.3, 0.1, 0.3}, mobs:register_spawn("mobs:kitten_"..name, kitten_nodes, 15, 0, 10000, 10, 31000)
visual = "mesh",
visual_size = {x=0.5, y=0.5}, mobs:register_mob("mobs:kitten_"..name, {
mesh = "mobs_kitten.b3d", type = "animal",
textures = {"mobs_kitten_ginger.png"}, hp_max = 5,
makes_footstep_sound = false, collisionbox = {-0.3, -0.3, -0.3, 0.3, 0.1, 0.3},
view_range = 15, visual = "mesh",
walk_velocity = 0.6, visual_size = {x=0.5, y=0.5},
drops = { mesh = "mobs_kitten.b3d",
{name = "tools:sword_air", textures = {image},
chance = 400000, makes_footstep_sound = false,
min = 1, view_range = 15,
max = 1,} walk_velocity = 0.6,
}, drops = {
water_damage = 1, {name = "tools:sword_air",
lava_damage = 10, chance = 400000,
on_rightclick = nil, min = 1,
armor = 100, max = 1,}
sounds = { },
random = "mobs_kitten", water_damage = 1,
}, lava_damage = 10,
animation = { on_rightclick = nil,
stand_start = 97, armor = 100,
stand_end = 192, sounds = {
walk_start = 0, random = "mobs_kitten",
walk_end = 96, },
speed_normal = 42, animation = {
} stand_start = 97,
}) stand_end = 192,
walk_start = 0,
walk_end = 96,
speed_normal = 42,
}
})
end
register_kitten("mobs_kitten_striped.png", "striped")
register_kitten("mobs_kitten_splotchy.png", "splotchy")
register_kitten("mobs_kitten_ginger.png", "ginger")
register_kitten("mobs_kitten_sandy.png", "sandy")
if minetest.setting_get("log_mods") then if minetest.setting_get("log_mods") then
minetest.log("action", "mobs loaded") minetest.log("action", "mobs loaded")

BIN
mods/mobs/models/kitten.b3d Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 893 B

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 636 B

After

Width:  |  Height:  |  Size: 1.3 KiB