diff --git a/baystation12.dme b/baystation12.dme index 6d0134649d6..eaa2e874390 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -1357,6 +1357,7 @@ #include "code\modules\mob\living\simple_animal\hostile\hivebot.dm" #include "code\modules\mob\living\simple_animal\hostile\hostile.dm" #include "code\modules\mob\living\simple_animal\hostile\mimic.dm" +#include "code\modules\mob\living\simple_animal\hostile\moghesfauna.dm" #include "code\modules\mob\living\simple_animal\hostile\pirate.dm" #include "code\modules\mob\living\simple_animal\hostile\russian.dm" #include "code\modules\mob\living\simple_animal\hostile\syndicate.dm" diff --git a/code/modules/mob/living/simple_animal/hostile/moghesfauna.dm b/code/modules/mob/living/simple_animal/hostile/moghesfauna.dm new file mode 100644 index 00000000000..0ca975d3030 --- /dev/null +++ b/code/modules/mob/living/simple_animal/hostile/moghesfauna.dm @@ -0,0 +1,34 @@ +//animals from moghes +/mob/living/simple_animal/hostile/biglizard + name = "plain-tyrant" + desc = "A giant reptile-looking creature, it hails from the world of Moghes." + icon = 'icons/mob/biglizard.dmi' + icon_state = "biglizard" + icon_living = "biglizard" + icon_dead = "biglizard_dead" + speak_emote = list("hisses","roars") + emote_hear = list("hisses","grumbles","growls") + emote_see = list("hisses ferociously", "stomps") + turns_per_move = 5 + speak_chance = 5 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/xenomeat + response_help = "pets" + response_disarm = "shoves" + response_harm = "harmlessly punches" + maxHealth = 450 + health = 450 + harm_intent_damage = 0 + melee_damage_lower = 30 + melee_damage_upper = 30 + attacktext = "chomped" + attack_sound = 'sound/misc/monstergrowl.ogg' + + faction = "lizard" + +/mob/living/simple_animal/hostile/biglizard/AttackingTarget() + . =..() + var/mob/living/L = . + if(istype(L)) + if(prob(15)) + L.Weaken(3) + L.visible_message("\The [src] knocks down \the [L]!") \ No newline at end of file diff --git a/html/changelogs/alberyk-PR-690.yml b/html/changelogs/alberyk-PR-690.yml new file mode 100644 index 00000000000..e0909899b9f --- /dev/null +++ b/html/changelogs/alberyk-PR-690.yml @@ -0,0 +1,6 @@ +author: Alberyk + +delete-after: True + +changes: + - rscadd: "Added the first Moghes related animal." diff --git a/icons/mob/biglizard.dmi b/icons/mob/biglizard.dmi new file mode 100644 index 00000000000..d07aef012c5 Binary files /dev/null and b/icons/mob/biglizard.dmi differ diff --git a/sound/misc/monstergrowl.ogg b/sound/misc/monstergrowl.ogg new file mode 100644 index 00000000000..dc5f9f4d5be Binary files /dev/null and b/sound/misc/monstergrowl.ogg differ