mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Tactical Kittens
- Adds Ascian's Kitten flavor item - Changes normal kitten's inventory size, tactical kittens for everyone! https://forum.vore-station.net/viewtopic.php?f=27&t=1425 Ascian's kitten sprites are very placeholder right now, in the future I will probably try to get a unique sprite.
This commit is contained in:
@@ -133,3 +133,8 @@
|
||||
starts_with = list(pick(/mob/living/simple_animal/fennec,
|
||||
/mob/living/simple_animal/retaliate/fennix;0.5))
|
||||
return ..()
|
||||
|
||||
/obj/structure/largecrate/animal/tabiranth
|
||||
name = "Spirit's Cat Carrier"
|
||||
desc = "Contains kitten."
|
||||
starts_with = list(/mob/living/simple_animal/cat/fluff/tabiranth)
|
||||
|
||||
@@ -173,6 +173,7 @@
|
||||
icon_living = "kitten"
|
||||
icon_dead = "kitten_dead"
|
||||
gender = NEUTER
|
||||
holder_type = /obj/item/weapon/holder/cat/kitten //VOREStation Edit
|
||||
|
||||
// Leaving this here for now.
|
||||
/obj/item/weapon/holder/cat/fluff/bones
|
||||
@@ -196,3 +197,8 @@
|
||||
/mob/living/simple_animal/cat/kitten/New()
|
||||
gender = pick(MALE, FEMALE)
|
||||
..()
|
||||
|
||||
// VOREStation Edit - Adds generic tactical kittens
|
||||
/obj/item/weapon/holder/cat/kitten
|
||||
icon_state = "kitten"
|
||||
w_class = ITEMSIZE_SMALL
|
||||
|
||||
@@ -29,3 +29,38 @@
|
||||
"Runtime purrs happily as you slowly slip away inside of her gut, your body's nutrients are then used to put a layer of padding on the now pudgy cat.",
|
||||
"The acids inside of Runtime's stomach, aided by the constant motions of the smooth walls surrounding you finally manage to melt you away into nothing more mush. She curls up on the floor, slowly kneading the air as her stomach moves its contents — including you — deeper into her digestive system.",
|
||||
"Your form begins to slowly soften and break apart, rounding out Runtime's swollen belly. The carnivorous cat rumbles and purrs happily at the feeling of such a filling meal.")
|
||||
|
||||
// Ascian's Tactical Kitten
|
||||
/obj/item/weapon/holder/cat/fluff/tabiranth
|
||||
name = "Spirit"
|
||||
desc = "A small, inquisitive feline, who constantly seems to investigate his surroundings."
|
||||
gender = MALE
|
||||
icon_state = "kitten"
|
||||
w_class = ITEMSIZE_SMALL
|
||||
|
||||
/mob/living/simple_animal/cat/fluff/tabiranth
|
||||
name = "Spirit"
|
||||
desc = "A small, inquisitive feline, who constantly seems to investigate his surroundings."
|
||||
icon = 'icons/mob/custom_items_mob.dmi'
|
||||
icon_state = "kitten"
|
||||
item_state = "kitten"
|
||||
icon_living = "kitten"
|
||||
icon_dead = "kitten" //Teleports out
|
||||
gender = MALE
|
||||
holder_type = /obj/item/weapon/holder/cat/fluff/tabiranth
|
||||
var/friend_name = "Ascian"
|
||||
digestable = 0
|
||||
meat_amount = 0
|
||||
maxHealth = 50
|
||||
health = 50
|
||||
|
||||
//Emergency teleport - Until a spriter makes something better
|
||||
/mob/living/simple_animal/cat/fluff/tabiranth/death(gibbed, deathmessage = "teleports away!")
|
||||
overlays = list()
|
||||
icon_state = ""
|
||||
flick("kphaseout",src)
|
||||
spawn(1 SECOND)
|
||||
qdel(src) //Back from whence you came!
|
||||
|
||||
. = ..(FALSE, deathmessage)
|
||||
|
||||
|
||||
@@ -825,6 +825,12 @@ character_name: Tony Bingham
|
||||
item_path: /obj/item/clothing/head/fluff/runac
|
||||
}
|
||||
|
||||
{
|
||||
ckey: tabiranth
|
||||
character_name: Ascian
|
||||
item_path: /obj/structure/largecrate/animal/tabiranth
|
||||
}
|
||||
|
||||
# ######## U CKEYS
|
||||
# ######## V CKEYS
|
||||
{
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 0 B After Width: | Height: | Size: 6.0 KiB |
Reference in New Issue
Block a user