PDA carts:

Janitor Bucket now PROPERLY shows the maximum of the bucket as 100 on the PDA. Yay for accuracy!

Mops and cleaners:
Made the space cleaner bottles contain less units of material overall (250), however only spray 5 units at a time (you get 50 shots now). Makes it MUCH easier to refill with spess cleaner. Especially now that the ammonia and water reaction give more output.

In other news, MOPS ARE MAGNETS TO ME! Sorry Chicago Ted, I tried to make it less awkward, but it did not want.

RSF:
Items appear on floors properly now!

Chemistry Reagents:
Sugar/ sodas - less nutrition per unit.
Sugar - No more jitters =(
adminordrazine - More OP, but it is admin/ sandbox only anyway.
Arithrazine - Sets radiation damage to 0, because it is the dexalin plus of anti-radiation meds.
Hyronalin - Stronger radiation removal

Chem recipes:
Space cleaner - 2 units per reaction now. Because it was really unfair how much materials you need to refill the janitor's bottle.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1445 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
tronaldnwn@hotmail.com
2011-04-15 00:57:43 +00:00
parent e55521799a
commit 2a1818cc93
5 changed files with 133 additions and 49 deletions

View File

@@ -473,8 +473,7 @@ datum
description = "The organic compound commonly known as table sugar and sometimes called saccharose. This white, odorless, crystalline powder has a pleasing, sweet taste." description = "The organic compound commonly known as table sugar and sometimes called saccharose. This white, odorless, crystalline powder has a pleasing, sweet taste."
reagent_state = SOLID reagent_state = SOLID
on_mob_life(var/mob/M) on_mob_life(var/mob/M)
M.make_jittery(5) M:nutrition += 1
M:nutrition += 3
..() ..()
return return
@@ -929,10 +928,11 @@ datum
reagent_state = LIQUID reagent_state = LIQUID
on_mob_life(var/mob/M) on_mob_life(var/mob/M)
if(!M) M = holder.my_atom if(!M) M = holder.my_atom
if(M:cloneloss) M:cloneloss = max(0, M:cloneloss-5) M:cloneloss = 0
if(M:oxyloss) M:oxyloss = max(0, M:oxyloss-5) M:oxyloss = 0
M:radiation = 0
M:heal_organ_damage(5,5) M:heal_organ_damage(5,5)
M:drowsyness = max(M:drowsyness-2, 0) M:drowsyness = 0
if(holder.has_reagent("toxin")) if(holder.has_reagent("toxin"))
holder.remove_reagent("toxin", 2) holder.remove_reagent("toxin", 2)
if(holder.has_reagent("stoxin")) if(holder.has_reagent("stoxin"))
@@ -953,11 +953,11 @@ datum
holder.remove_reagent("carpotoxin", 1) holder.remove_reagent("carpotoxin", 1)
if(holder.has_reagent("zombiepowder")) if(holder.has_reagent("zombiepowder"))
holder.remove_reagent("zombiepowder", 0.5) holder.remove_reagent("zombiepowder", 0.5)
M:brainloss = max(M:brainloss-5 , 0) M:brainloss = 0
M.disabilities = 0 M.disabilities = 0
M.sdisabilities = 0 M.sdisabilities = 0
M:eye_blurry = max(M:eye_blurry-5 , 0) M:eye_blurry = 0
M:eye_blind = max(M:eye_blind-5 , 0) M:eye_blind = 0
M:disabilities &= ~1 M:disabilities &= ~1
M:sdisabilities &= ~1 M:sdisabilities &= ~1
if(M:toxloss) M:toxloss = max(0, M:toxloss-5) if(M:toxloss) M:toxloss = max(0, M:toxloss-5)
@@ -999,7 +999,21 @@ datum
reagent_state = LIQUID reagent_state = LIQUID
on_mob_life(var/mob/M) on_mob_life(var/mob/M)
if(!M) M = holder.my_atom if(!M) M = holder.my_atom
if(M:radiation) M:radiation-- M:radiation = max(M:radiation-3,0)
..()
return
arithrazine
name = "Arithrazine"
id = "arithrazine"
description = "Arithrazine is an unstable medication used for the most extreme cases of radiation poisoning."
reagent_state = LIQUID
on_mob_life(var/mob/M)
if(!M) M = holder.my_atom
M:radiation = 0
if(M:toxloss) M:toxloss--
if(prob(15))
M.take_organ_damage(1, 0)
..() ..()
return return
@@ -1028,20 +1042,6 @@ datum
..() ..()
return return
arithrazine
name = "Arithrazine"
id = "arithrazine"
description = "Arithrazine is an unstable medication used for the most extreme cases of radiation poisoning."
reagent_state = LIQUID
on_mob_life(var/mob/M)
if(!M) M = holder.my_atom
M:radiation = max(M:radiation-3,0)
if(M:toxloss) M:toxloss--
if(prob(15))
M.take_organ_damage(1, 0)
..()
return
bicaridine bicaridine
name = "Bicaridine" name = "Bicaridine"
id = "bicaridine" id = "bicaridine"
@@ -1377,7 +1377,7 @@ datum
if (!M:stuttering) M:stuttering = 1 if (!M:stuttering) M:stuttering = 1
M.make_jittery(10) M.make_jittery(10)
M.make_dizzy(10) M.make_dizzy(10)
M.druggy = max(M.druggy, 31) M.druggy = max(M.druggy, 35)
if(prob(20)) M:emote(pick("twitch","giggle")) if(prob(20)) M:emote(pick("twitch","giggle"))
if (10 to INFINITY) if (10 to INFINITY)
if (!M:stuttering) M:stuttering = 1 if (!M:stuttering) M:stuttering = 1
@@ -1617,7 +1617,7 @@ datum
..() ..()
if (M.bodytemperature < 310)//310 is the normal bodytemp. 310.055 if (M.bodytemperature < 310)//310 is the normal bodytemp. 310.055
M.bodytemperature = min(310, M.bodytemperature+5) M.bodytemperature = min(310, M.bodytemperature+5)
M:nutrition += 5 M:nutrition += 1
return return
space_cola space_cola
@@ -1629,7 +1629,7 @@ datum
M:drowsyness = max(0,M:drowsyness-5) M:drowsyness = max(0,M:drowsyness-5)
if (M.bodytemperature > 310)//310 is the normal bodytemp. 310.055 if (M.bodytemperature > 310)//310 is the normal bodytemp. 310.055
M.bodytemperature = max(310, M.bodytemperature-5) M.bodytemperature = max(310, M.bodytemperature-5)
M:nutrition += 2 M:nutrition += 1
..() ..()
return return
@@ -1644,7 +1644,7 @@ datum
if (M.bodytemperature > 310) if (M.bodytemperature > 310)
M.bodytemperature = max(310, M.bodytemperature-5) M.bodytemperature = max(310, M.bodytemperature-5)
M.make_jittery(5) M.make_jittery(5)
M:nutrition += 2 M:nutrition += 1
..() ..()
return return
@@ -1659,7 +1659,7 @@ datum
if (M.bodytemperature > 310) if (M.bodytemperature > 310)
M.bodytemperature = max(310, M.bodytemperature-5) M.bodytemperature = max(310, M.bodytemperature-5)
M.make_jittery(5) M.make_jittery(5)
M:nutrition += 2 M:nutrition += 1
if(!data) data = 1 if(!data) data = 1
data++ data++
M.dizziness +=4 M.dizziness +=4
@@ -1680,7 +1680,7 @@ datum
M:drowsyness = max(0,M:drowsyness-6) M:drowsyness = max(0,M:drowsyness-6)
if (M.bodytemperature > 310) if (M.bodytemperature > 310)
M.bodytemperature = max(310, M.bodytemperature-5) //310 is the normal bodytemp. 310.055 M.bodytemperature = max(310, M.bodytemperature-5) //310 is the normal bodytemp. 310.055
M:nutrition += 2 M:nutrition += 1
..() ..()
return return
@@ -1692,7 +1692,7 @@ datum
on_mob_life(var/mob/M) on_mob_life(var/mob/M)
if (M.bodytemperature > 310) if (M.bodytemperature > 310)
M.bodytemperature = max(310, M.bodytemperature-8) //310 is the normal bodytemp. 310.055 M.bodytemperature = max(310, M.bodytemperature-8) //310 is the normal bodytemp. 310.055
M:nutrition += 2 M:nutrition += 1
..() ..()
return return

View File

@@ -481,7 +481,7 @@ datum
id = "cleaner" id = "cleaner"
result = "cleaner" result = "cleaner"
required_reagents = list("ammonia" = 1, "water" = 1) required_reagents = list("ammonia" = 1, "water" = 1)
result_amount = 1 result_amount = 2
plantbgone plantbgone
name = "Plant-B-Gone" name = "Plant-B-Gone"

View File

@@ -327,7 +327,7 @@
if (bl.z != cl.z) if (bl.z != cl.z)
continue continue
ldat += "Bucket - <b>\[[bl.x],[bl.y]\]</b> - Water level: [B.reagents.total_volume]/70<br>" ldat += "Bucket - <b>\[[bl.x],[bl.y]\]</b> - Water level: [B.reagents.total_volume]/100<br>"
if (!ldat) if (!ldat)
menu += "None" menu += "None"

View File

@@ -52,8 +52,8 @@ RSF
if (!(istype(A, /obj/table) || istype(A, /turf/simulated/floor))) if (!(istype(A, /obj/table) || istype(A, /turf/simulated/floor)))
return return
if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && mode == 1) if (istype(A, /obj/table) && mode == 1)
if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && matter >= 1) if (istype(A, /obj/table) && matter >= 1)
user << "Dispensing Dosh..." user << "Dispensing Dosh..."
playsound(src.loc, 'click.ogg', 10, 1) playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/weapon/spacecash/c10( A.loc ) new /obj/item/weapon/spacecash/c10( A.loc )
@@ -66,8 +66,22 @@ RSF
desc = "A RSF. It currently holds [matter]/30 fabrication-units." desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return return
else if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && mode == 2) else if (istype(A, /turf/simulated/floor) && mode == 1)
if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && matter >= 1) if (istype(A, /turf/simulated/floor) && matter >= 1)
user << "Dispensing Dosh..."
playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/weapon/spacecash/c10( A )
if (isrobot(user))
var/mob/living/silicon/robot/engy = user
engy.cell.charge -= 200 //once money becomes useful, I guess changing this to a high ammount, like 500 units a kick, till then, enjoy dosh!
else
matter--
user << "The RSF now holds [matter]/30 fabrication-units."
desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return
else if (istype(A, /obj/table) && mode == 2)
if (istype(A, /obj/table) && matter >= 1)
user << "Dispensing Drinking Glass..." user << "Dispensing Drinking Glass..."
playsound(src.loc, 'click.ogg', 10, 1) playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/weapon/reagent_containers/food/drinks/drinkingglass( A.loc ) new /obj/item/weapon/reagent_containers/food/drinks/drinkingglass( A.loc )
@@ -80,8 +94,22 @@ RSF
desc = "A RSF. It currently holds [matter]/30 fabrication-units." desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return return
else if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && mode == 3) else if (istype(A, /turf/simulated/floor) && mode == 2)
if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && matter >= 1) if (istype(A, /turf/simulated/floor) && matter >= 1)
user << "Dispensing Drinking Glass..."
playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/weapon/reagent_containers/food/drinks/drinkingglass( A )
if (isrobot(user))
var/mob/living/silicon/robot/engy = user
engy.cell.charge -= 50
else
matter--
user << "The RSF now holds [matter]/30 fabrication-units."
desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return
else if (istype(A, /obj/table) && mode == 3)
if (istype(A, /obj/table) && matter >= 1)
user << "Dispensing Paper Sheet..." user << "Dispensing Paper Sheet..."
playsound(src.loc, 'click.ogg', 10, 1) playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/weapon/paper( A.loc ) new /obj/item/weapon/paper( A.loc )
@@ -94,8 +122,22 @@ RSF
desc = "A RSF. It currently holds [matter]/30 fabrication-units." desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return return
else if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && mode == 4) else if (istype(A, /turf/simulated/floor) && mode == 3)
if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && matter >= 1) if (istype(A, /turf/simulated/floor) && matter >= 1)
user << "Dispensing Paper Sheet..."
playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/weapon/paper( A )
if (isrobot(user))
var/mob/living/silicon/robot/engy = user
engy.cell.charge -= 10
else
matter--
user << "The RSF now holds [matter]/30 fabrication-units."
desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return
else if (istype(A, /obj/table) && mode == 4)
if (istype(A, /obj/table) && matter >= 1)
user << "Dispensing Pen..." user << "Dispensing Pen..."
playsound(src.loc, 'click.ogg', 10, 1) playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/weapon/pen( A.loc ) new /obj/item/weapon/pen( A.loc )
@@ -108,8 +150,22 @@ RSF
desc = "A RSF. It currently holds [matter]/30 fabrication-units." desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return return
else if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && mode == 5) else if (istype(A, /turf/simulated/floor) && mode == 4)
if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && matter >= 1) if (istype(A, /turf/simulated/floor) && matter >= 1)
user << "Dispensing Pen..."
playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/weapon/pen( A )
if (isrobot(user))
var/mob/living/silicon/robot/engy = user
engy.cell.charge -= 50
else
matter--
user << "The RSF now holds [matter]/30 fabrication-units."
desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return
else if (istype(A, /obj/table) && mode == 5)
if (istype(A, /obj/table) && matter >= 1)
user << "Dispensing Dice Pack..." user << "Dispensing Dice Pack..."
playsound(src.loc, 'click.ogg', 10, 1) playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/weapon/storage/dice( A.loc ) new /obj/item/weapon/storage/dice( A.loc )
@@ -122,8 +178,22 @@ RSF
desc = "A RSF. It currently holds [matter]/30 fabrication-units." desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return return
else if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && mode == 6) else if (istype(A, /turf/simulated/floor) && mode == 5)
if (((istype(A, /obj/table) || istype(A, /turf/simulated/floor))) && matter >= 1) if (istype(A, /turf/simulated/floor) && matter >= 1)
user << "Dispensing Dice Pack..."
playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/weapon/storage/dice( A )
if (isrobot(user))
var/mob/living/silicon/robot/engy = user
engy.cell.charge -= 200
else
matter--
user << "The RSF now holds [matter]/30 fabrication-units."
desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return
else if (istype(A, /obj/table) && mode == 6)
if (istype(A, /obj/table) && matter >= 1)
user << "Dispensing Cigarette..." user << "Dispensing Cigarette..."
playsound(src.loc, 'click.ogg', 10, 1) playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/clothing/mask/cigarette( A.loc ) new /obj/item/clothing/mask/cigarette( A.loc )
@@ -135,3 +205,17 @@ RSF
user << "The RSF now holds [matter]/30 fabrication-units." user << "The RSF now holds [matter]/30 fabrication-units."
desc = "A RSF. It currently holds [matter]/30 fabrication-units." desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return return
else if (istype(A, /turf/simulated/floor) && mode == 6)
if (istype(A, /turf/simulated/floor) && matter >= 1)
user << "Dispensing Cigarette..."
playsound(src.loc, 'click.ogg', 10, 1)
new /obj/item/clothing/mask/cigarette( A )
if (isrobot(user))
var/mob/living/silicon/robot/engy = user
engy.cell.charge -= 10
else
matter--
user << "The RSF now holds [matter]/30 fabrication-units."
desc = "A RSF. It currently holds [matter]/30 fabrication-units."
return

View File

@@ -5,10 +5,10 @@ MOP
*/ */
/obj/item/weapon/cleaner/New() /obj/item/weapon/cleaner/New()
var/datum/reagents/R = new/datum/reagents(1000) var/datum/reagents/R = new/datum/reagents(250)
reagents = R reagents = R
R.my_atom = src R.my_atom = src
R.add_reagent("cleaner", 1000) R.add_reagent("cleaner", 250)
/obj/item/weapon/cleaner/attack(mob/living/carbon/human/M as mob, mob/user as mob) /obj/item/weapon/cleaner/attack(mob/living/carbon/human/M as mob, mob/user as mob)
return return
@@ -24,8 +24,8 @@ MOP
D.name = "chemicals" D.name = "chemicals"
D.icon = 'chemical.dmi' D.icon = 'chemical.dmi'
D.icon_state = "chempuff" D.icon_state = "chempuff"
D.create_reagents(10) D.create_reagents(5)
src.reagents.trans_to(D, 10) src.reagents.trans_to(D, 5)
playsound(src.loc, 'spray2.ogg', 50, 1, -6) playsound(src.loc, 'spray2.ogg', 50, 1, -6)
spawn(0) spawn(0)