diff --git a/credits.txt b/credits.txt index ce69081..97919d5 100644 --- a/credits.txt +++ b/credits.txt @@ -7,5 +7,8 @@ Graphics by DuCake (CC-BY-SA 4.0) mobs_penguin_tux Sound: -penguin_chirrup.ogg +Penguin_chirrup.ogg Tai "DuCake" Kedzierski CC-BY-SA 4.0 + +Walrus sounds +AlexTriceratops123 CCA diff --git a/penguin.lua b/penguin.lua index c1dd415..ce4a4cd 100644 --- a/penguin.lua +++ b/penguin.lua @@ -2,8 +2,9 @@ mobs:register_mob("arctic_life:penguin", { type = "animal", passive = false, attack_type = "dogfight", + group_attack = true, reach = 1, - damage = 2, + damage = 1, hp_min = 5, hp_max = 15, armor = 200, diff --git a/sounds/walrus_attack_1.ogg b/sounds/walrus_attack_1.ogg new file mode 100644 index 0000000..15a58c1 Binary files /dev/null and b/sounds/walrus_attack_1.ogg differ diff --git a/sounds/walrus_attack_2.ogg b/sounds/walrus_attack_2.ogg new file mode 100644 index 0000000..2058f1a Binary files /dev/null and b/sounds/walrus_attack_2.ogg differ diff --git a/sounds/walrus_random_1.ogg b/sounds/walrus_random_1.ogg new file mode 100644 index 0000000..0a7744d Binary files /dev/null and b/sounds/walrus_random_1.ogg differ diff --git a/sounds/walrus_random_2.ogg b/sounds/walrus_random_2.ogg new file mode 100644 index 0000000..9607b10 Binary files /dev/null and b/sounds/walrus_random_2.ogg differ diff --git a/sounds/walrus_random_3.ogg b/sounds/walrus_random_3.ogg new file mode 100644 index 0000000..5adaccf Binary files /dev/null and b/sounds/walrus_random_3.ogg differ diff --git a/sounds/walrus_war_cry.ogg b/sounds/walrus_war_cry.ogg new file mode 100644 index 0000000..1889f0b Binary files /dev/null and b/sounds/walrus_war_cry.ogg differ diff --git a/walrus.lua b/walrus.lua index 12619e2..bb29a48 100644 --- a/walrus.lua +++ b/walrus.lua @@ -4,10 +4,10 @@ mobs:register_mob("arctic_life:walrus", { attack_type = "dogfight", reach = 1, damage = 5, - hp_min = 5, - hp_max = 15, + hp_min = 15, + hp_max = 45, armor = 200, - collisionbox = {-0.25, -0.4, -0.25, 0.25, 0.3, 0.25}, + collisionbox = {-0.35, -0.5, -0.35, 0.35, 0.4, 0.35}, visual = "mesh", mesh = "mobs_walrus.b3d", drawtype = "front", @@ -16,11 +16,13 @@ mobs:register_mob("arctic_life:walrus", { {"mobs_walrus2.png"}, }, blood_texture = "mobs_blood.png", - visual_size = {x=8,y=8}, + visual_size = {x=10,y=10}, makes_footstep_sound = false, --- sounds = { --- random = "penguin_chirrup", --- }, + sounds = { + random = "walrus_random.ogg", + war_cry = 'walrus_war_cry.ogg', + attack = 'walrus_attack.ogg' + }, -- speed and jump walk_velocity = 1, run_velocity = 2,