first commit

master
NathanSalapat 2016-12-18 15:42:25 -06:00
commit 11a1bfe4d4
13 changed files with 126 additions and 0 deletions

11
credits.txt Normal file
View File

@ -0,0 +1,11 @@
Graphics by Nathan(CC-BY-SA 4.0)
mobs_penguin
mobs_walrus1
mobs_walrus2
Graphics by DuCake (CC-BY-SA 4.0)
mobs_penguin_tux
Sound:
penguin_chirrup.ogg
Tai "DuCake" Kedzierski CC-BY-SA 4.0

2
depends.txt Normal file
View File

@ -0,0 +1,2 @@
default
mobs

2
init.lua Normal file
View File

@ -0,0 +1,2 @@
dofile(minetest.get_modpath('artic_life')..'/penguin.lua')
dofile(minetest.get_modpath('artic_life')..'/walrus.lua')

1
mod.conf Normal file
View File

@ -0,0 +1 @@
name=artic_life

BIN
models/mobs_penguin.b3d Normal file

Binary file not shown.

BIN
models/mobs_walrus.b3d Normal file

Binary file not shown.

55
penguin.lua Normal file
View File

@ -0,0 +1,55 @@
mobs:register_mob("artic_life:penguin", {
type = "animal",
passive = false,
attack_type = "dogfight",
reach = 1,
damage = 2,
hp_min = 5,
hp_max = 15,
armor = 200,
collisionbox = {-0.25, -0.4, -0.25, 0.25, 0.3, 0.25},
visual = "mesh",
mesh = "mobs_penguin.b3d",
drawtype = "front",
textures = {
{"mobs_penguin.png"},
{"mobs_penguin_tux.png"},
},
blood_texture = "mobs_blood.png",
visual_size = {x=8,y=8},
makes_footstep_sound = true,
sounds = {
random = "penguin_chirrup",
},
-- speed and jump
walk_velocity = 1,
run_velocity = 2,
jump = true,
jump_height = 1,
stepheight = 1.1,
floats = 1,
-- drops raw meat when dead
drops = {
{name = "mobs:meat_raw",
chance = 1, min = 1, max = 4},
},
-- damaged by
water_damage = 1,
lava_damage = 5,
light_damage = 0,
-- model animation
animation = {
speed_normal = 15, speed_run = 15,
stand_start = 0, stand_end = 60, -- head down/up
walk_start = 150, walk_end = 170, -- walk
run_start = 150, run_end = 170, -- walk
punch_start = 70, punch_end = 140, -- attack
},
follow = "farming:wheat", view_range = 7,
replace_rate = 50,
replace_what = {"group:flora"},
replace_with = "air",
})
mobs:register_spawn("artic_life:penguin", {"default:dirt_with_snow", "default:snowblock"}, 20, 0, 20000, 1, 31000)
mobs:register_egg("artic_life:penguin", "Penguin", "default_grass.png", 1)

BIN
sounds/penguin_chirrup.ogg Normal file

Binary file not shown.

BIN
textures/mobs_penguin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
textures/mobs_walrus1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

BIN
textures/mobs_walrus2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

55
walrus.lua Normal file
View File

@ -0,0 +1,55 @@
mobs:register_mob("artic_life:walrus", {
type = "animal",
passive = false,
attack_type = "dogfight",
reach = 1,
damage = 5,
hp_min = 5,
hp_max = 15,
armor = 200,
collisionbox = {-0.25, -0.4, -0.25, 0.25, 0.3, 0.25},
visual = "mesh",
mesh = "mobs_walrus.b3d",
drawtype = "front",
textures = {
{"mobs_walrus1.png"},
{"mobs_walrus2.png"},
},
blood_texture = "mobs_blood.png",
visual_size = {x=8,y=8},
makes_footstep_sound = false,
-- sounds = {
-- random = "penguin_chirrup",
-- },
-- speed and jump
walk_velocity = 1,
run_velocity = 2,
jump = true,
jump_height = 1,
stepheight = 1.1,
floats = 1,
-- drops raw meat when dead
drops = {
{name = "mobs:meat_raw",
chance = 1, min = 2, max = 5},
},
-- damaged by
water_damage = 1,
lava_damage = 5,
light_damage = 0,
-- model animation
animation = {
speed_normal = 15, speed_run = 15,
stand_start = 0, stand_end = 50, -- head down/up
walk_start = 55, walk_end = 95, -- walk
run_start = 55, run_end = 95, -- walk
punch_start = 100, punch_end = 145, -- attack
},
follow = "farming:wheat", view_range = 7,
replace_rate = 50,
replace_what = {"group:flora"},
replace_with = "air",
})
mobs:register_spawn("artic_life:walrus", {"default:dirt_with_snow", "default:snowblock"}, 20, 0, 20000, 1, 31000)
mobs:register_egg("artic_life:walrus", "Walrus", "default_grass.png", 1)