ensure swimmers swim in flowing media, and fliers dont die in water

This commit is contained in:
Tai Kedzierski 2019-01-17 01:41:06 +00:00
parent 2ea7d55a57
commit 59521ae9e8
6 changed files with 5 additions and 8 deletions

View File

@ -10,7 +10,7 @@ mobs:register_mob("nssm:dolidrosaurus", {
makes_footstep_sound = true, makes_footstep_sound = true,
view_range = 30, view_range = 30,
fly = true, fly = true,
fly_in = "default:water_source", fly_in = {"default:water_source", "default:water_flowing"},
fall_speed = -20, fall_speed = -20,
walk_velocity = 1.5, walk_velocity = 1.5,
run_velocity = 3.3, run_velocity = 3.3,

View File

@ -11,7 +11,7 @@ mobs:register_mob("nssm:kraken", {
inker = false, inker = false,
view_range = 50, view_range = 50,
fly = true, fly = true,
fly_in = "default:water_source", fly_in = {"default:water_source", "default:water_flowing"},
fall_speed = -1, fall_speed = -1,
walk_velocity = 3.5, walk_velocity = 3.5,
run_velocity = 4.5, run_velocity = 4.5,

View File

@ -32,7 +32,6 @@ mobs:register_mob("nssm:moonheron", {
armor = 70, armor = 70,
floats = 1, floats = 1,
drawtype = "front", drawtype = "front",
water_damage = 5,
lava_damage = 5, lava_damage = 5,
group_attack=true, group_attack=true,
attack_animals=true, attack_animals=true,

View File

@ -9,7 +9,7 @@ mobs:register_mob("nssm:octopus", {
visual_size = {x=4, y=4}, visual_size = {x=4, y=4},
view_range = 25, view_range = 25,
fly = true, fly = true,
fly_in = "default:water_source", fly_in = {"default:water_source", "default:water_flowing"},
fall_speed = -20, fall_speed = -20,
walk_velocity = 1.5, walk_velocity = 1.5,
run_velocity = 3, run_velocity = 3,
@ -68,7 +68,7 @@ mobs:register_mob("nssm:xgaloctopus", {
visual_size = {x=1, y=1}, visual_size = {x=1, y=1},
view_range = 25, view_range = 25,
fly = true, fly = true,
fly_in = "default:water_source", fly_in = {"default:water_source", "default:water_flowing"},
fall_speed = -20, fall_speed = -20,
walk_velocity = 1.5, walk_velocity = 1.5,
run_velocity = 3, run_velocity = 3,

View File

@ -41,7 +41,6 @@ mobs:register_mob("nssm:phoenix", {
}, },
armor = 40, armor = 40,
drawtype = "front", drawtype = "front",
water_damage = 5,
lava_damage = 0, lava_damage = 0,
light_damage = 0, light_damage = 0,
blood_texture="nssm_blood.png", blood_texture="nssm_blood.png",

View File

@ -12,7 +12,7 @@ mobs:register_mob("nssm:scrausics", {
walk_velocity = 2, walk_velocity = 2,
run_velocity = 3, run_velocity = 3,
fall_speed = 0, fall_speed = 0,
stepheight = 3, stepheight = 3,
floats=1, floats=1,
sounds = { sounds = {
random = "scrausics", random = "scrausics",
@ -32,7 +32,6 @@ mobs:register_mob("nssm:scrausics", {
}, },
armor = 80, armor = 80,
drawtype = "front", drawtype = "front",
water_damage = 5,
lava_damage = 5, lava_damage = 5,
light_damage = 0, light_damage = 0,
group_attack=true, group_attack=true,