mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
Completely fixed the microwave to display and handle the cheese_amount var properly.
Included Skie's fix of the syringe gun firing at the table when placed on it. ENOUGH WITH MY SILLY SMALL REVS. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@64 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -224,39 +224,42 @@
|
|||||||
|
|
||||||
proc
|
proc
|
||||||
fire_syringe(atom/target, mob/user)
|
fire_syringe(atom/target, mob/user)
|
||||||
var/turf/trg = get_turf(target)
|
if (locate (/obj/table, src.loc))
|
||||||
var/obj/syringe_gun_dummy/D = new/obj/syringe_gun_dummy(get_turf(src))
|
return
|
||||||
var/obj/item/weapon/reagent_containers/syringe/S = syringes[1]
|
else
|
||||||
S.reagents.trans_to(D, S.reagents.total_volume)
|
var/turf/trg = get_turf(target)
|
||||||
syringes -= S
|
var/obj/syringe_gun_dummy/D = new/obj/syringe_gun_dummy(get_turf(src))
|
||||||
del(S)
|
var/obj/item/weapon/reagent_containers/syringe/S = syringes[1]
|
||||||
D.icon_state = "syringeproj"
|
S.reagents.trans_to(D, S.reagents.total_volume)
|
||||||
D.name = "syringe"
|
syringes -= S
|
||||||
playsound(user.loc, 'syringeproj.ogg', 50, 1)
|
del(S)
|
||||||
|
D.icon_state = "syringeproj"
|
||||||
|
D.name = "syringe"
|
||||||
|
playsound(user.loc, 'syringeproj.ogg', 50, 1)
|
||||||
|
|
||||||
for(var/i=0, i<6, i++)
|
for(var/i=0, i<6, i++)
|
||||||
if(D.loc == trg) break
|
if(D.loc == trg) break
|
||||||
step_towards(D,trg)
|
step_towards(D,trg)
|
||||||
|
|
||||||
for(var/mob/living/carbon/M in D.loc)
|
for(var/mob/living/carbon/M in D.loc)
|
||||||
if(!istype(M,/mob/living/carbon)) continue
|
if(!istype(M,/mob/living/carbon)) continue
|
||||||
if(M == user) continue
|
if(M == user) continue
|
||||||
D.reagents.trans_to(M, 15)
|
D.reagents.trans_to(M, 15)
|
||||||
M.bruteloss += 5
|
M.bruteloss += 5
|
||||||
for(var/mob/O in viewers(world.view, D))
|
for(var/mob/O in viewers(world.view, D))
|
||||||
O.show_message(text("\red [] was hit by the syringe!", M), 1)
|
O.show_message(text("\red [] was hit by the syringe!", M), 1)
|
||||||
|
|
||||||
del(D)
|
del(D)
|
||||||
|
|
||||||
for(var/atom/A in D.loc)
|
for(var/atom/A in D.loc)
|
||||||
if(A == user) continue
|
if(A == user) continue
|
||||||
if(A.density) del(D)
|
if(A.density) del(D)
|
||||||
|
|
||||||
sleep(1)
|
sleep(1)
|
||||||
|
|
||||||
spawn(10) del(D)
|
spawn(10) del(D)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -630,6 +630,7 @@
|
|||||||
var/flour_amount = 0 //Current amount of flour inside
|
var/flour_amount = 0 //Current amount of flour inside
|
||||||
var/water_amount = 0 //Current amount of water inside
|
var/water_amount = 0 //Current amount of water inside
|
||||||
var/monkeymeat_amount = 0
|
var/monkeymeat_amount = 0
|
||||||
|
var/cheese_amount = 0 //cheese inside, yo
|
||||||
var/humanmeat_amount = 0
|
var/humanmeat_amount = 0
|
||||||
var/donkpocket_amount = 0
|
var/donkpocket_amount = 0
|
||||||
var/xenomeat_amount = 0
|
var/xenomeat_amount = 0
|
||||||
|
|||||||
@@ -232,6 +232,7 @@ Please clean it before use!</TT><BR>
|
|||||||
dat = {"
|
dat = {"
|
||||||
<B>Eggs:</B>[src.egg_amount] eggs<BR>
|
<B>Eggs:</B>[src.egg_amount] eggs<BR>
|
||||||
<B>Flour:</B>[src.flour_amount] cups of flour<BR>
|
<B>Flour:</B>[src.flour_amount] cups of flour<BR>
|
||||||
|
<B>Cheese:</B>[src.cheese_amount] cheese wedges<BR>
|
||||||
<B>Monkey Meat:</B>[src.monkeymeat_amount] slabs of meat<BR>
|
<B>Monkey Meat:</B>[src.monkeymeat_amount] slabs of meat<BR>
|
||||||
<B>Meat Turnovers:</B>[src.donkpocket_amount] turnovers<BR>
|
<B>Meat Turnovers:</B>[src.donkpocket_amount] turnovers<BR>
|
||||||
<B>Other Meat:</B>[src.humanmeat_amount] slabs of meat<BR>
|
<B>Other Meat:</B>[src.humanmeat_amount] slabs of meat<BR>
|
||||||
@@ -275,6 +276,7 @@ Please clean it before use!</TT><BR>
|
|||||||
src.egg_amount = 0 // If so remove all the eggs
|
src.egg_amount = 0 // If so remove all the eggs
|
||||||
src.flour_amount = 0 // And the flour
|
src.flour_amount = 0 // And the flour
|
||||||
src.water_amount = 0 //And the water
|
src.water_amount = 0 //And the water
|
||||||
|
src.cheese_amount = 0 //And the cheese
|
||||||
src.monkeymeat_amount = 0
|
src.monkeymeat_amount = 0
|
||||||
src.humanmeat_amount = 0
|
src.humanmeat_amount = 0
|
||||||
src.donkpocket_amount = 0
|
src.donkpocket_amount = 0
|
||||||
@@ -288,6 +290,7 @@ Please clean it before use!</TT><BR>
|
|||||||
src.updateUsrDialog()
|
src.updateUsrDialog()
|
||||||
src.egg_amount = 0 //Clear all the values as this crap is what makes the mess inside!!
|
src.egg_amount = 0 //Clear all the values as this crap is what makes the mess inside!!
|
||||||
src.flour_amount = 0
|
src.flour_amount = 0
|
||||||
|
src.cheese_amount = 0
|
||||||
src.water_amount = 0
|
src.water_amount = 0
|
||||||
src.humanmeat_amount = 0
|
src.humanmeat_amount = 0
|
||||||
src.monkeymeat_amount = 0
|
src.monkeymeat_amount = 0
|
||||||
@@ -311,6 +314,7 @@ Please clean it before use!</TT><BR>
|
|||||||
src.updateUsrDialog()
|
src.updateUsrDialog()
|
||||||
src.egg_amount = 0 //Clear all the values as this crap is gone when it breaks!!
|
src.egg_amount = 0 //Clear all the values as this crap is gone when it breaks!!
|
||||||
src.flour_amount = 0
|
src.flour_amount = 0
|
||||||
|
src.cheese_amount = 0
|
||||||
src.water_amount = 0
|
src.water_amount = 0
|
||||||
src.humanmeat_amount = 0
|
src.humanmeat_amount = 0
|
||||||
src.monkeymeat_amount = 0
|
src.monkeymeat_amount = 0
|
||||||
@@ -339,6 +343,7 @@ Please clean it before use!</TT><BR>
|
|||||||
if(operation == 2) // If dispose was pressed, empty the microwave
|
if(operation == 2) // If dispose was pressed, empty the microwave
|
||||||
src.egg_amount = 0
|
src.egg_amount = 0
|
||||||
src.flour_amount = 0
|
src.flour_amount = 0
|
||||||
|
src.cheese_amount = 0
|
||||||
src.water_amount = 0
|
src.water_amount = 0
|
||||||
src.humanmeat_amount = 0
|
src.humanmeat_amount = 0
|
||||||
src.monkeymeat_amount = 0
|
src.monkeymeat_amount = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user