various lil additions and fixes

- new trait: lipolifier immunity (WIP version, possibly breaks corn oil gains)
- new event: lipolifier vent clog (WIP)
- removed cum vent clog events
- finished working on fatbeam (new sprites)
This commit is contained in:
GDLW
2022-11-07 17:38:56 +01:00
parent cd0fbc2148
commit 46a27d6291
9 changed files with 52 additions and 61 deletions
+27 -47
View File
@@ -13,7 +13,8 @@
var/list/vents = list()
var/randomProbability = 1
var/reagentsAmount = 100
var/list/saferChems = list(
var/list/saferChems = list(
/datum/reagent/consumable/lipoifier,
/datum/reagent/water,
/datum/reagent/carbon,
/datum/reagent/consumable/flour,
@@ -130,6 +131,31 @@
typepath = /datum/round_event/vent_clog/beer
max_occurrences = 0
// WIP, gonna use it later once I fix ingredients not popping into smoke
// /datum/round_event_control/vent_clog/lipoifier
// name = "Clogged Vents: Lipoifier"
// typepath = /datum/round_event/vent_clog/lipoifier
// weight = 5
// max_occurrences = 0
// min_players = 5
// /datum/round_event/vent_clog/lipoifier/start()
// for(var/obj/machinery/atmospherics/components/unary/vent in vents)
// if(vent && vent.loc && !vent.welded)
// var/datum/reagents/R = new/datum/reagents(1000)
// R.my_atom = vent
// R.add_reagent(/datum/reagent/consumable/lipoifier, reagentsAmount)
// var/datum/effect_system/foam_spread/foam = new
// foam.set_up(200, get_turf(vent), R)
// foam.start()
// CHECK_TICK
// /datum/round_event/vent_clog/lipoifier
// reagentsAmount = 20
/datum/round_event/vent_clog/beer
reagentsAmount = 100
@@ -138,22 +164,6 @@
typepath = /datum/round_event/vent_clog/plasma_decon
max_occurrences = 0
/datum/round_event_control/vent_clog/female
name = "Clogged Vents; Girlcum"
typepath = /datum/round_event/vent_clog/female
max_occurrences = 0
/datum/round_event/vent_clog/female
reagentsAmount = 100
/datum/round_event_control/vent_clog/male
name = "Clogged Vents: Semen"
typepath = /datum/round_event/vent_clog/male
max_occurrences = 0
/datum/round_event/vent_clog/male
reagentsAmount = 100
/datum/round_event/vent_clog/beer/announce()
priority_announce("The scrubbers network is experiencing an unexpected surge of pressurized beer. Some ejection of contents may occur.", "Atmospherics alert")
@@ -169,36 +179,6 @@
foam.start()
CHECK_TICK
/datum/round_event/vent_clog/male/announce()
priority_announce("The scrubbers network is experiencing a backpressure surge. Some ejaculation of contents may occur.", "Atmospherics alert")
/datum/round_event/vent_clog/male/start()
for(var/obj/machinery/atmospherics/components/unary/vent in vents)
if(vent && vent.loc && !vent.welded)
var/datum/reagents/R = new/datum/reagents(1000)
R.my_atom = vent
R.add_reagent(/datum/reagent/consumable/semen, reagentsAmount)
var/datum/effect_system/foam_spread/foam = new
foam.set_up(200, get_turf(vent), R)
foam.start()
CHECK_TICK
/datum/round_event/vent_clog/female/announce()
priority_announce("The scrubbers network is experiencing a backpressure squirt. Some ejection of contents may occur.", "Atmospherics alert")
/datum/round_event/vent_clog/female/start()
for(var/obj/machinery/atmospherics/components/unary/vent in vents)
if(vent && vent.loc && !vent.welded)
var/datum/reagents/R = new/datum/reagents(1000)
R.my_atom = vent
R.add_reagent(/datum/reagent/consumable/femcum, reagentsAmount)
var/datum/effect_system/foam_spread/foam = new
foam.set_up(200, get_turf(vent), R)
foam.start()
CHECK_TICK
/datum/round_event/vent_clog/plasma_decon/announce()
priority_announce("We are deploying an experimental plasma decontamination system. Please stand away from the vents and do not breathe the smoke that comes out.", "Central Command Update")