mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-27 14:06:43 +01:00
Chocobos
This commit is contained in:
@@ -64,6 +64,7 @@
|
||||
|
||||
/obj/structure/largecrate/animal/dangerous/initialize()
|
||||
starts_with = list(pick(/mob/living/simple_animal/hostile/carp/pike,
|
||||
/mob/living/simple_animal/chocobo,
|
||||
/mob/living/simple_animal/hostile/deathclaw,
|
||||
/mob/living/simple_animal/hostile/dino,
|
||||
/mob/living/simple_animal/hostile/alien,
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
/mob/living/simple_animal/alpha_chocobo
|
||||
name = "Alpha Roc"
|
||||
desc = "Thats a big roc... Question now if the small ones are just normal or chicks..."
|
||||
icon = 'icons/mob/64x64.dmi'
|
||||
icon_state = "alpha_chocobo"
|
||||
icon_living = "alpha_chocobo"
|
||||
icon_dead = "alpha_chocobo_dead"
|
||||
|
||||
faction = "chocobo"
|
||||
maxHealth = 350
|
||||
health = 350
|
||||
|
||||
harm_intent_damage = 15
|
||||
melee_damage_lower = 20
|
||||
melee_damage_upper = 30
|
||||
attack_armor_pen = 25
|
||||
attacktext = list("bit")
|
||||
|
||||
pixel_x = -16
|
||||
pixel_y = -16
|
||||
old_x = -16
|
||||
old_y = -16
|
||||
|
||||
response_help = "rubs the"
|
||||
response_disarm = "gently pushes aside the"
|
||||
response_harm = "hits the"
|
||||
|
||||
speak_chance = 1
|
||||
speak = list("Wark!",
|
||||
"Chrp?",
|
||||
"Kweh!")
|
||||
emote_hear = list("squawks.","chirps.")
|
||||
emote_see = list("ruffles its feathers","steps in place")
|
||||
|
||||
// Activate Noms!
|
||||
/mob/living/simple_animal/alpha_chocobo
|
||||
vore_active = 1
|
||||
vore_bump_chance = 25
|
||||
vore_bump_emote = "chirps and pushes over"
|
||||
vore_pounce_chance = 100
|
||||
vore_default_mode = DM_HOLD
|
||||
vore_icons = SA_ICON_LIVING
|
||||
|
||||
/mob/living/simple_animal/alpha_chocobo/init_vore()
|
||||
..()
|
||||
var/obj/belly/B = vore_selected
|
||||
B.name = "Stomach"
|
||||
B.desc = "With a quick gulp youre squeezed down into the large roc's spacious belly, though the stomach seems to be able to stretch a lot it still hugs you tightly in an almost possesive way and its owner lets out a satisfied squak."
|
||||
@@ -0,0 +1,43 @@
|
||||
/mob/living/simple_animal/chocobo
|
||||
name = "Roc"
|
||||
desc = "Some kind of large yellow avian, it seems pretty friendly even if it sometimes nibbles on people."
|
||||
icon = 'icons/mob/vore.dmi'
|
||||
icon_state = "chocobo"
|
||||
icon_living = "chocobo"
|
||||
icon_dead = "chocobo_dead"
|
||||
|
||||
faction = "chocobo"
|
||||
maxHealth = 50
|
||||
health = 50
|
||||
|
||||
response_help = "rubs the"
|
||||
response_disarm = "gently pushes aside the"
|
||||
response_harm = "hits the"
|
||||
|
||||
harm_intent_damage = 4
|
||||
melee_damage_lower = 5
|
||||
melee_damage_upper = 10
|
||||
attacktext = list("bit")
|
||||
|
||||
speak_chance = 1
|
||||
speak = list("Wark!",
|
||||
"Chrp?",
|
||||
"Kweh!")
|
||||
emote_hear = list("squawks.","chirps.")
|
||||
emote_see = list("ruffles its feathers","steps in place")
|
||||
|
||||
// Activate Noms!
|
||||
/mob/living/simple_animal/chocobo
|
||||
vore_active = 1
|
||||
vore_bump_chance = 10
|
||||
vore_bump_emote = "chirps and bumps into"
|
||||
vore_pounce_chance = 25
|
||||
vore_default_mode = DM_HOLD
|
||||
vore_icons = SA_ICON_LIVING
|
||||
|
||||
/mob/living/simple_animal/chocobo/init_vore()
|
||||
..()
|
||||
var/obj/belly/B = vore_selected
|
||||
B.name = "Stomach"
|
||||
B.desc = "With a few gulps youre squeezed down into the roc's belly, the stomach hugs you tightly and its owner lets out a satisfied squak."
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 164 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 186 KiB After Width: | Height: | Size: 199 KiB |
@@ -2225,10 +2225,12 @@
|
||||
#include "code\modules\mob\living\simple_animal\slime\life.dm"
|
||||
#include "code\modules\mob\living\simple_animal\slime\slime.dm"
|
||||
#include "code\modules\mob\living\simple_animal\slime\subtypes.dm"
|
||||
#include "code\modules\mob\living\simple_animal\vore\alphachocobo.dm"
|
||||
#include "code\modules\mob\living\simple_animal\vore\awoo.dm"
|
||||
#include "code\modules\mob\living\simple_animal\vore\bee.dm"
|
||||
#include "code\modules\mob\living\simple_animal\vore\carp.dm"
|
||||
#include "code\modules\mob\living\simple_animal\vore\catgirl.dm"
|
||||
#include "code\modules\mob\living\simple_animal\vore\chocobo.dm"
|
||||
#include "code\modules\mob\living\simple_animal\vore\corrupt_hounds.dm"
|
||||
#include "code\modules\mob\living\simple_animal\vore\deathclaw.dm"
|
||||
#include "code\modules\mob\living\simple_animal\vore\dino.dm"
|
||||
|
||||
Reference in New Issue
Block a user