Merge remote-tracking branch 'origin/master' into rustsql
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
/datum/gear/unlockable
|
||||
category = LOADOUT_CATEGORY_UNLOCKABLE
|
||||
slot = SLOT_NECK
|
||||
|
||||
var/progress_required //what does our progress need to be to unlock it
|
||||
var/progress_key //what is the key used to retrieve existing progress for this unlockable
|
||||
|
||||
/datum/gear/unlockable/janitor
|
||||
name = "Janitor Bedsheet"
|
||||
description = "Clean 100 messes with a mop to unlock this. It has a warning sign on!"
|
||||
path = /obj/item/bedsheet/unlockable/janitor
|
||||
|
||||
progress_required = 100
|
||||
progress_key = "janitor"
|
||||
|
||||
/datum/gear/unlockable/cook
|
||||
name = "Cook Bedsheet"
|
||||
description = "Cook 250 items using the microwave to unlock this. It has a microwave on!"
|
||||
path = /obj/item/bedsheet/unlockable/cook
|
||||
|
||||
progress_required = 250
|
||||
progress_key = "cook"
|
||||
|
||||
/datum/gear/unlockable/miner
|
||||
name = "Miner Bedsheet"
|
||||
description = "Redeem a total of 100,000 miner points to unlock this. It's made out of goliath hide!"
|
||||
path = /obj/item/bedsheet/unlockable/miner
|
||||
|
||||
progress_required = 100000
|
||||
progress_key = "miner"
|
||||
@@ -30,7 +30,6 @@
|
||||
inverse_chem = /datum/reagent/fermi/BEsmaller //At really impure vols, it just becomes 100% inverse
|
||||
can_synth = FALSE
|
||||
value = REAGENT_VALUE_VERY_RARE
|
||||
var/message_spam = FALSE
|
||||
|
||||
/datum/reagent/fermi/breast_enlarger/on_mob_metabolize(mob/living/M)
|
||||
. = ..()
|
||||
@@ -81,16 +80,7 @@
|
||||
H.reagents.remove_reagent(type, 5)
|
||||
B.Insert(H)
|
||||
|
||||
//If they have them, increase size. If size is comically big, limit movement and rip clothes.
|
||||
B.modify_size(0.05)
|
||||
|
||||
if (ISINRANGE_EX(B.cached_size, 8.5, 9) && (H.w_uniform || H.wear_suit))
|
||||
var/target = H.get_bodypart(BODY_ZONE_CHEST)
|
||||
if(!message_spam)
|
||||
to_chat(H, "<span class='danger'>Your breasts begin to strain against your clothes tightly!</b></span>")
|
||||
message_spam = TRUE
|
||||
H.adjustOxyLoss(5, 0)
|
||||
H.apply_damage(1, BRUTE, target)
|
||||
return ..()
|
||||
|
||||
/datum/reagent/fermi/breast_enlarger/overdose_process(mob/living/carbon/M) //Turns you into a female if male and ODing, doesn't touch nonbinary and object genders.
|
||||
@@ -189,7 +179,6 @@
|
||||
inverse_chem = /datum/reagent/fermi/PEsmaller //At really impure vols, it just becomes 100% inverse and shrinks instead.
|
||||
can_synth = FALSE
|
||||
value = REAGENT_VALUE_VERY_RARE
|
||||
var/message_spam = FALSE
|
||||
|
||||
/datum/reagent/fermi/penis_enlarger/on_mob_metabolize(mob/living/M)
|
||||
. = ..()
|
||||
@@ -232,13 +221,6 @@
|
||||
P.Insert(H)
|
||||
|
||||
P.modify_size(0.1)
|
||||
if (ISINRANGE_EX(P.length, 20.5, 21) && (H.w_uniform || H.wear_suit))
|
||||
var/target = H.get_bodypart(BODY_ZONE_CHEST)
|
||||
if(!message_spam)
|
||||
to_chat(H, "<span class='danger'>Your cock begin to strain against your clothes tightly!</b></span>")
|
||||
message_spam = TRUE
|
||||
H.apply_damage(2.5, BRUTE, target)
|
||||
|
||||
return ..()
|
||||
|
||||
/datum/reagent/fermi/penis_enlarger/overdose_process(mob/living/carbon/human/M) //Turns you into a male if female and ODing, doesn't touch nonbinary and object genders.
|
||||
|
||||
@@ -593,7 +593,6 @@
|
||||
id = /datum/reagent/fermi/zeolites
|
||||
results = list(/datum/reagent/fermi/zeolites = 5) //We make a lot! - But it's now somewhat dangerous, and needs a bit of gold to catalyze the reaction
|
||||
required_reagents = list(/datum/reagent/medicine/potass_iodide = 1, /datum/reagent/aluminium = 1, /datum/reagent/silicon = 1, /datum/reagent/oxygen = 1)
|
||||
required_catalysts = list(/datum/reagent/gold = 5)
|
||||
//FermiChem vars:
|
||||
OptimalTempMin = 500
|
||||
OptimalTempMax = 750
|
||||
@@ -604,7 +603,7 @@
|
||||
//CatalystFact = 0
|
||||
CurveSharpT = 1.5
|
||||
CurveSharppH = 3
|
||||
ThermicConstant = 5
|
||||
ThermicConstant = 1
|
||||
HIonRelease = -0.15
|
||||
RateUpLim = 4
|
||||
PurityMin = 0.5 //Good luck!
|
||||
|
||||
Reference in New Issue
Block a user