oops forgot the file lmao

This commit is contained in:
Verkister
2022-12-24 03:58:45 +02:00
parent d69a1270f0
commit c8455622d1
@@ -0,0 +1,115 @@
/mob/living/simple_mob/vore/aggressive/corrupthound/swoopie
name = "SWOOPIE XL"
desc = "A large birdlike robot with thick assets, plump belly, and a long elastic vacuum hose of a neck. Somehow still a cleanbot, even if just for its duties."
icon_state = "swoopie"
icon_living = "swoopie"
icon_dead = "swoopie_dead"
icon_rest = "swoopie_rest"
icon = 'modular_chomp/icons/mob/vore64x64_ch.dmi'
vis_height = 64
has_eye_glow = TRUE
custom_eye_color = "#00CC00"
mount_offset_y = 30
vore_capacity_ex = list("stomach" = 1, "neck1" = 1, "neck2" = 1, "neck3" = 1, "neck4" = 1)
vore_fullness_ex = list("stomach" = 0, "neck1" = 0, "neck2" = 0, "neck3" = 0, "neck4" = 0)
vore_icon_bellies = list("stomach", "neck1", "neck2", "neck3", "neck4")
vore_icons = 0
vore_pounce_chance = 100
vore_pounce_maxhealth = 125
has_hands = TRUE
/mob/living/simple_mob/vore/aggressive/corrupthound/swoopie/init_vore()
if(!voremob_loaded)
return
verbs |= /mob/living/proc/eat_trash
var/obj/belly/B = new /obj/belly/(src)
B.affects_vore_sprites = TRUE
B.belly_sprite_to_affect = "stomach"
B.name = "Churno-Vac"
B.desc = "With an abrupt loud WHUMP after a very sucky trip through the hungry bot's vacuum tube, you finally spill out into its waste container, where everything the bot slurps off the floors ends up for swift processing among the caustic sludge, efficiently melting everything down into a thin slurry to fuel its form. More loose dirt and debris occasionally raining in from above as the bot carries on with its duties to keep the station nice and clean."
B.digest_messages_prey = list("Under the heat and internal pressure of the greedy machine's gutworks, you can feel the tides of the hot caustic sludge claiming the last bits of space around your body, a few more squeezes of the synthetic muscles squelching and glurking as your body finally loses its form, completely blending down and merging into the tingly sludge to fuel the mean machine.")
B.digest_mode = DM_DIGEST
B.item_digest_mode = IM_DIGEST
B.digest_burn = 3
B.fancy_vore = 1
B.vore_sound = "Stomach Move"
B.belly_fullscreen = "anim_belly"
B.belly_fullscreen_color = "#3e2f27"
B.sound_volume = 25
B.count_items_for_sprite = TRUE
B = new /obj/belly/longneck/(src)
B.affects_vore_sprites = TRUE
B.belly_sprite_to_affect = "neck2"
B.name = "vacuum hose 2"
B.autotransferlocation = "vacuum hose 3"
B.desc = "It feels very tight in here..."
B.fancy_vore = 1
B.vore_sound = "Stomach Move"
B.sound_volume = 80
B.autotransferwait = 60
B = new /obj/belly/longneck/(src)
B.affects_vore_sprites = TRUE
B.belly_sprite_to_affect = "neck3"
B.name = "vacuum hose 3"
B.autotransferlocation = "vacuum hose 4"
B.desc = "Looks like it's gonna be all downhill from here..."
B.fancy_vore = 1
B.vore_sound = "Stomach Move"
B.sound_volume = 40
B.autotransferwait = 70
B = new /obj/belly/longneck/(src)
B.affects_vore_sprites = TRUE
B.belly_sprite_to_affect = "neck4"
B.name = "vacuum hose 4"
B.autotransferlocation = "Churno-Vac"
B.desc = "Thank you for your biofuel contribution~"
B.fancy_vore = 1
B.vore_sound = "Stomach Move"
B.sound_volume = 20
B.autotransferwait = 70
B = new /obj/belly/longneck/(src)
B.affects_vore_sprites = TRUE
B.belly_sprite_to_affect = "neck1"
B.name = "vacuum hose"
B.autotransferlocation = "vacuum hose 2"
B.autotransferwait = 70
vore_selected = B
/obj/belly/longneck
affects_vore_sprites = TRUE
belly_sprite_to_affect = "neck-1"
name = "vacuum hose"
desc = "With a mighty WHUMP, the suction of the big bird's ravenous vacuum system has sucked you up out of the embrace of its voracious main beak and into a tight bulge squeezing along the long ribbed rubbery tube leading towards the roaring doom of the synthetic bird's efficient waste disposal system."
digest_mode = DM_HOLD
item_digest_mode = IM_HOLD
autotransfer_enabled = TRUE
autotransferchance = 100
autotransferwait = 50
autotransferlocation = "Churno-Vac"
vore_verb = "suck"
belly_fullscreen_color = "#4d4d4d"
belly_fullscreen = "a_tumby"
human_prey_swallow_time = 1
nonhuman_prey_swallow_time = 1
autotransfer_max_amount = 2
count_items_for_sprite = TRUE
item_multiplier = 10
health_impacts_size = FALSE
speedy_mob_processing = TRUE
/mob/living/simple_mob/vore/aggressive/corrupthound/swoopie/Life()
. =..()
for(var/obj/belly/L in vore_organs) //Speedrun that autotransfer at 2s ticks instead of 6s
if(L.speedy_mob_processing)
L.process()
var/turf/T = get_turf(src)
if(istype(T, /turf/simulated))
var/turf/simulated/S = T
T.clean_blood()
if(S.dirt > 50)
S.dirt = 0