From 117ab4b2598f141228d9df97d6a5281a55acc9c4 Mon Sep 17 00:00:00 2001 From: Duck- Date: Thu, 21 Aug 2014 02:24:45 -0400 Subject: [PATCH 01/23] Vamp fix. I should stop being so dumb maybe? Vamp objectives removed if objectives are toggled off. --- code/game/gamemodes/vampire/vampire.dm | 19 ++++++++++--------- .../modules/projectiles/projectile/special.dm | 2 +- data/investigate/gravity.html | 4 ++-- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/code/game/gamemodes/vampire/vampire.dm b/code/game/gamemodes/vampire/vampire.dm index 762e6902..ca66e60f 100644 --- a/code/game/gamemodes/vampire/vampire.dm +++ b/code/game/gamemodes/vampire/vampire.dm @@ -104,15 +104,16 @@ if(vampire.objectives.len)//If the traitor had no objectives, don't need to process this. var/count = 1 - for(var/datum/objective/objective in vampire.objectives) - if(objective.check_completion()) - text += "
Objective #[count]: [objective.explanation_text] Success!" - feedback_add_details("traitor_objective","[objective.type]|SUCCESS") - else - text += "
Objective #[count]: [objective.explanation_text] Fail." - feedback_add_details("traitor_objective","[objective.type]|FAIL") - traitorwin = 0 - count++ + if (!config.objectives_disabled) + for(var/datum/objective/objective in vampire.objectives) + if(objective.check_completion()) + text += "
Objective #[count]: [objective.explanation_text] Success!" + feedback_add_details("traitor_objective","[objective.type]|SUCCESS") + else + text += "
Objective #[count]: [objective.explanation_text] Fail." + feedback_add_details("traitor_objective","[objective.type]|FAIL") + traitorwin = 0 + count++ var/special_role_text if(vampire.special_role) diff --git a/code/modules/projectiles/projectile/special.dm b/code/modules/projectiles/projectile/special.dm index 1fc605b5..d31848cd 100644 --- a/code/modules/projectiles/projectile/special.dm +++ b/code/modules/projectiles/projectile/special.dm @@ -27,7 +27,7 @@ /obj/item/projectile/bullet/gyro/law name ="high-ex round" icon_state= "bolter" - damage = 5 + damage = 15 flag = "bullet" /obj/item/projectile/bullet/gyro/law/on_hit(var/atom/target, var/blocked = 0) diff --git a/data/investigate/gravity.html b/data/investigate/gravity.html index 8ab1a86a..0ac64df4 100644 --- a/data/investigate/gravity.html +++ b/data/investigate/gravity.html @@ -1,2 +1,2 @@ -16:13 [0x2007747] (92,152,1) || the gravitational generator has regained power.
-16:13 [0x2007747] (92,152,1) || the gravitational generator is now charging.
+14:24 [0x2007784] (92,152,1) || the gravitational generator has regained power.
+14:24 [0x2007784] (92,152,1) || the gravitational generator is now charging.
From 432f2ecb068bd78b24e59034b1cd4be5593084b7 Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Tue, 26 Aug 2014 01:25:40 +0100 Subject: [PATCH 02/23] Minor change log stuffs General info for change log. Non urgent. --- html/changelog.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/html/changelog.html b/html/changelog.html index 9093b7c0..0791132a 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -63,10 +63,13 @@ should be listed in the changelog upon commit though. Thanks. -->
  • Workplace hazards baised of hair length
  • Gavity Generator Fix
  • Fryed food no longer drops it's original item when eaten
  • +
  • Water now gets deleted
  • Medical Alarms
  • Air Conditioners
  • Admin Logs
  • Debug Logs
  • +
  • Siik'tajr changed to Siik'Maas
  • +
  • Rotatable Freezes and Heaters
  • From 74519c6c9d9f0a57740cf8b27ac241658f999279 Mon Sep 17 00:00:00 2001 From: Duck- Date: Tue, 26 Aug 2014 02:43:06 -0400 Subject: [PATCH 03/23] Kitchen additions Please add: obj/machinery/cooker/cerealmaker, obj/machinery/cooker/foodgrill, /obj/machinery/cooking/candy, and /obj/machinery/cooking/oven to the map. Adds those items. Also, /obj/machinery/icemachine Adds a lot of foods. Eating monkey cubes now results in disaster and pain. There's probably! A lot of stuff broken but it totally compiles and honestly, the only broken stuff I can find is a lack of idiocy checks (So you can grill cerealized cardboard and turn it into a sandwich a mile high and stuff like that). I think Para actually removed the idiot-checks to make cooking more fun, so. I kind of approve of that. Yes. --- aurora.dme | 6 + code/modules/food/cereal_maker.dm | 24 + code/modules/food/cooker.dm | 132 ++++ code/modules/food/customizables.dm | 484 ++++++++++++++ code/modules/food/food_grill.dm | 29 + code/modules/food/icecream_vat.dm | 254 +++++++ code/modules/food/oven.dm | 79 +++ code/modules/food/recipes_microwave.dm | 4 +- code/modules/organs/organ_external.dm | 12 + .../reagent_containers/food/snacks.dm | 626 +++++++++++++----- data/investigate/gravity.html | 4 +- icons/obj/food.dmi | Bin 92113 -> 118145 bytes icons/obj/kitchen.dmi | Bin 13396 -> 25272 bytes 13 files changed, 1497 insertions(+), 157 deletions(-) create mode 100644 code/modules/food/cereal_maker.dm create mode 100644 code/modules/food/cooker.dm create mode 100644 code/modules/food/customizables.dm create mode 100644 code/modules/food/food_grill.dm create mode 100644 code/modules/food/icecream_vat.dm create mode 100644 code/modules/food/oven.dm diff --git a/aurora.dme b/aurora.dme index c5bbe042..f2092f19 100644 --- a/aurora.dme +++ b/aurora.dme @@ -928,6 +928,12 @@ #include "code\modules\flufftext\Dreaming.dm" #include "code\modules\flufftext\Hallucination.dm" #include "code\modules\flufftext\TextFilters.dm" +#include "code\modules\food\cereal_maker.dm" +#include "code\modules\food\cooker.dm" +#include "code\modules\food\customizables.dm" +#include "code\modules\food\food_grill.dm" +#include "code\modules\food\icecream_vat.dm" +#include "code\modules\food\oven.dm" #include "code\modules\food\recipes_microwave.dm" #include "code\modules\genetics\side_effects.dm" #include "code\modules\library\lib_items.dm" diff --git a/code/modules/food/cereal_maker.dm b/code/modules/food/cereal_maker.dm new file mode 100644 index 00000000..d7b0d75a --- /dev/null +++ b/code/modules/food/cereal_maker.dm @@ -0,0 +1,24 @@ +/obj/machinery/cooker/cerealmaker + name = "cereal maker" + desc = "Now with Dann O's available!" + icon = 'icons/obj/cooking_machines.dmi' + icon_state = "cereal_off" + thiscooktype = "cerealized" + cooktime = 200 + onicon = "cereal_on" + officon = "cereal_off" + +obj/machinery/cooker/cerealmaker/setIcon(obj/item/copyme, obj/item/copyto) + var/image/img = new(copyme.icon, copyme.icon_state) + img.transform *= 0.7 + copyto.overlays += img + copyto.overlays += copyme.overlays + +obj/machinery/cooker/cerealmaker/changename(obj/item/name, obj/item/setme) + setme.name = "box of [name] cereal" + setme.desc = "[name.desc] It has been [thiscooktype]" + +obj/machinery/cooker/cerealmaker/gettype() + var/obj/item/weapon/reagent_containers/food/snacks/cereal/type = new(get_turf(src)) + return type + diff --git a/code/modules/food/cooker.dm b/code/modules/food/cooker.dm new file mode 100644 index 00000000..edd74e9a --- /dev/null +++ b/code/modules/food/cooker.dm @@ -0,0 +1,132 @@ +/obj/machinery/cooker + name = "cooker" + desc = "You shouldn't be seeing this!" + layer = 2.9 + density = 1 + anchored = 1 + use_power = 1 + idle_power_usage = 5 + var/on = 0 + var/onicon = null + var/officon = null + var/thiscooktype = null + var/burns = 0 // whether a machine burns something - if it does, you probably want to add the cooktype to /snacks/badrecipe + var/firechance = 0 + var/cooktime = 0 + var/foodcolor = null + + +// checks if the snack has been cooked in a certain way +obj/machinery/cooker/proc/checkCooked(obj/item/weapon/reagent_containers/food/snacks/D) + if (D.cooktype[thiscooktype]) + return 1 + return 0 + +// Sets the new snack's cooktype list to the same as the old one - no more cooking something in the same machine more than once! +obj/machinery/cooker/proc/setCooked(obj/item/weapon/reagent_containers/food/snacks/oldtypes, obj/item/weapon/reagent_containers/food/snacks/newtypes) + var/ct + for(ct in oldtypes.cooktype) + newtypes.cooktype[ct] = oldtypes.cooktype[ct] + +// transfers reagents +obj/machinery/cooker/proc/setRegents(obj/item/weapon/reagent_containers/OldReg, obj/item/weapon/reagent_containers/NewReg) + OldReg.reagents.trans_to(NewReg, OldReg.reagents.total_volume) + +// check if you can put it in the machine +obj/machinery/cooker/proc/checkValid(obj/item/check, mob/user) + if(on) + user << "[src] is still active!" + return 0 + if(istype(check, /obj/item/weapon/grab) || istype(check, /obj/item/tk_grab)) + user << "That isn't going to fit." + return 0 + if(istype(check, /obj/item/weapon/reagent_containers/glass)) + user << "That would probably break [src]." + return 0 + if(istype(check, /obj/item/weapon/disk/nuclear)) + user << "Central command would kill you if you [thiscooktype] that." + return 0 +/* if(istype(check, /obj/item/flag)) + user << "That isn't going to fit." + return 0*/ + return 1 + +obj/machinery/cooker/proc/setIcon(obj/item/copyme, obj/item/copyto) + copyto.color = foodcolor + copyto.icon = copyme.icon + copyto.icon_state = copyme.icon_state + copyto.overlays += copyme.overlays + +obj/machinery/cooker/proc/turnoff(obj/item/olditem) + icon_state = officon + playsound(loc, 'sound/machines/ding.ogg', 50, 1) + on = 0 + del(olditem) + return + +// Burns the food with a chance of starting a fire - for if you try cooking something that's already been cooked that way +// if burns = 0 then it'll just tell you that the item is already that foodtype and it would do nothing +// if you wanted a different side effect set burns to 1 and override burn() +obj/machinery/cooker/proc/burn(mob/user, obj/item/weapon/reagent_containers/props) + var/obj/item/weapon/reagent_containers/food/snacks/badrecipe/burnt = new(get_turf(src)) + setRegents(props, burnt) + user << "You smell burning coming from the [src]!" +/* var/datum/effect/effect/system/bad_smoke_spread/smoke = new /datum/effect/effect/system/bad_smoke_spread() // burning things makes smoke! + smoke.set_up(5, 0, src) + smoke.start()*/ + if (prob(firechance)) + var/turf/location = get_turf(src) + var/obj/effect/decal/cleanable/liquid_fuel/oil = new(location) + oil.name = "fat" + oil.desc = "uh oh, looks like some fat from the [src]" + oil.loc = location + location.hotspot_expose(700, 50, 1) + //TODO have a chance of setting the tile on fire + +obj/machinery/cooker/proc/changename(obj/item/name, obj/item/setme) + setme.name = "[thiscooktype] [name.name]" + setme.desc = "[name.desc]. It has been [thiscooktype]" + +obj/machinery/cooker/proc/putIn(obj/item/tocook, mob/chef) + icon_state = onicon + chef << "You put [tocook] into [src]." + on = 1 + chef.drop_item() + tocook.loc = src + +// Override this with the correct snack type +obj/machinery/cooker/proc/gettype() + var/obj/item/weapon/reagent_containers/food/snacks/type = new(get_turf(src)) + return type + +obj/machinery/cooker/attackby(obj/item/I, mob/user) + if(stat & (NOPOWER|BROKEN)) + return + if (!checkValid(I, user)) + return + if(!burns) + if(istype(I, /obj/item/weapon/reagent_containers/food/snacks)) + if(checkCooked(I)) + user << "That is already [thiscooktype], it would do nothing!" + return + putIn(I, user) + sleep(cooktime) + if(I && I.loc == src) + if(istype(I, /obj/item/weapon/reagent_containers/food/snacks)) + if(checkCooked(I)) + burn(user, I) + turnoff(I) + return + var/obj/item/weapon/reagent_containers/food/snacks/newfood = gettype() + setIcon(I, newfood) + changename(I, newfood) + if(istype(I, /obj/item/weapon/reagent_containers)) + setRegents(I, newfood) + if(istype(I, /obj/item/weapon/reagent_containers/food/snacks)) + setCooked(I, newfood) + newfood.cooktype[thiscooktype] = 1 + turnoff(I) + //del(I) + + + diff --git a/code/modules/food/customizables.dm b/code/modules/food/customizables.dm new file mode 100644 index 00000000..d59f9b00 --- /dev/null +++ b/code/modules/food/customizables.dm @@ -0,0 +1,484 @@ +/obj/item/weapon/reagent_containers/food/snacks/breadslice/attackby(obj/item/W as obj, mob/user as mob) + var/obj/item/weapon/reagent_containers/food/snacks/customizable/sandwich/S = new(get_turf(user)) + S.attackby(W,user) + del(src) + +/obj/item/weapon/reagent_containers/food/snacks/bun/attackby(obj/item/W as obj, mob/user as mob) + var/obj/item/weapon/reagent_containers/food/snacks/customizable/burger/S = new(get_turf(user)) + S.attackby(W,user) + del(src) + +/obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough/attackby(obj/item/W as obj, mob/user as mob) + var/obj/item/weapon/reagent_containers/food/snacks/customizable/pizza/S = new(get_turf(user)) + S.attackby(W,user) + del(src) + + +/obj/item/weapon/reagent_containers/food/snacks/boiledspagetti/attackby(obj/item/W as obj, mob/user as mob) + var/obj/item/weapon/reagent_containers/food/snacks/customizable/pasta/S = new(get_turf(user)) + S.attackby(W,user) + del(src) + + +/obj/item/trash/plate/attackby(obj/item/W as obj, mob/user as mob) + var/obj/item/weapon/reagent_containers/food/snacks/customizable/fullycustom/S = new(get_turf(user)) + S.attackby(W,user) + del(src) + +/obj/item/trash/bowl + name = "bowl" + desc = "An empty bowl. Put some food in it to start making a soup." + icon = 'icons/obj/food.dmi' + icon_state = "soup" + +/obj/item/trash/bowl/attackby(obj/item/W as obj, mob/user as mob) + + if(istype(W,/obj/item/)) + var/obj/item/weapon/reagent_containers/food/snacks/customizable/soup/S = new(get_turf(user)) + S.attackby(W,user) + del(src) + ..() + +/obj/item/weapon/reagent_containers/food/snacks/customizable/sandwich + /obj/item/weapon/reagent_containers/food/snacks/customizable + name = "sandwich" + desc = "A sandwich! A timeless classic." + icon_state = "breadslice" + baseicon = "sandwich" + basename = "sandwich" + toptype = new /obj/item/weapon/reagent_containers/food/snacks/breadslice() + + + +/obj/item/weapon/reagent_containers/food/snacks/customizable + name = "sandwich" + desc = "A sandwich! A timeless classic." + icon_state = "breadslice" + var/baseicon = "sandwich" + var/basename = "sandwich" + var/top = 1 //Do we have a top? + var/obj/item/toptype + var/add_overlays = 1 //Do we stack? +// var/offsetstuff = 1 //Do we offset the overlays? + var/sandwich_limit = 40 + var/fullycustom = 0 + trash = /obj/item/trash/plate + bitesize = 2 + var/list/ingredients = list() + + New() + ..() + + reagents.add_reagent("nutriment", 8) + + +/obj/item/weapon/reagent_containers/food/snacks/customizable/pizza + name = "personal pizza" + desc = "A personalized pan pizza meant for only one person." + icon_state = "personal_pizza" + baseicon = "personal_pizza" + basename = "personal pizza" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/pasta + name = "spagetti" + desc = "Noodles. With stuff. Delicious." + icon_state = "pasta_bot" + baseicon = "pasta_bot" + basename = "spagetti" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/cook/bread + name = "bread" + desc = "Tasty bread." + icon_state = "breadcustom" + baseicon = "breadcustom" + basename = "bread" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/cook/pie + name = "pie" + desc = "Tasty pie." + icon_state = "piecustom" + baseicon = "piecustom" + basename = "pie" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/cook/cake + name = "cake" + desc = "A popular band." + icon_state = "cakecustom" + baseicon = "cakecustom" + basename = "cake" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/cook/jelly + name = "jelly" + desc = "Totally jelly." + icon_state = "jellycustom" + baseicon = "jellycustom" + basename = "jelly" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/cook/donkpocket + name = "donk pocket" + desc = "You wanna put a bangin-Oh nevermind." + icon_state = "donkcustom" + baseicon = "donkcustom" + basename = "donk pocket" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/cook/kebab + name = "kebab" + desc = "Kebab or Kabab?" + icon_state = "kababcustom" + baseicon = "kababcustom" + basename = "kebab" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/cook/salad + name = "salad" + desc = "Very tasty." + icon_state = "saladcustom" + baseicon = "saladcustom" + basename = "salad" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/cook/waffles + name = "waffles" + desc = "Made with love." + icon_state = "wafflecustom" + baseicon = "wafflecustom" + basename = "waffles" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/cookie + name = "cookie" + desc = "COOKIE!!1!" + icon_state = "cookiecustom" + baseicon = "cookiecustom" + basename = "cookie" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/cotton + name = "flavored cotton candy" + desc = "Who can take a sunrise, sprinkle it with dew," + icon_state = "cottoncandycustom" + baseicon = "cottoncandycustom" + basename = "flavored cotton candy" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/gummybear + name = "flavored giant gummy bear" + desc = "Cover it in chocolate and a miracle or two," + icon_state = "gummybearcustom" + baseicon = "gummybearcustom" + basename = "flavored giant gummy bear" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/gummyworm + name = "flavored giant gummy worm" + desc = "The Candy Man can 'cause he mixes it with love," + icon_state = "gummywormcustom" + baseicon = "gummywormcustom" + basename = "flavored giant gummy worm" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/jellybean + name = "flavored giant jelly bean" + desc = "And makes the world taste good." + icon_state = "jellybeancustom" + baseicon = "jellybeancustom" + basename = "flavored giant jelly bean" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/jawbreaker + name = "flavored jawbreaker" + desc = "Who can take a rainbow, Wrap it in a sigh," + icon_state = "jawbreakercustom" + baseicon = "jawbreakercustom" + basename = "flavored jawbreaker" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/candycane + name = "flavored candy cane" + desc = "Soak it in the sun and make strawberry-lemon pie," + icon_state = "candycanecustom" + baseicon = "candycanecustom" + basename = "flavored candy cane" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/gum + name = "flavored gum" + desc = "The Candy Man can 'cause he mixes it with love and makes the world taste good. And the world tastes good 'cause the Candy Man thinks it should..." + icon_state = "gumcustom" + baseicon = "gumcustom" + basename = "flavored gum" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/donut + name = "filled donut" + desc = "Donut eat this!" // kill me + icon_state = "donutcustom" + baseicon = "donutcustom" + basename = "filled donut" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/bar + name = "flavored chocolate bar" + desc = "Made in a factory downtown." + icon_state = "barcustom" + baseicon = "barcustom" + basename = "flavored chocolate bar" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/sucker + name = "flavored sucker" + desc = "Suck suck suck." + icon_state = "suckercustom" + baseicon = "suckercustom" + basename = "flavored sucker" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/cash + name = "flavored chocolate cash" + desc = "I got piles!" + icon_state = "cashcustom" + baseicon = "cashcustom" + basename = "flavored cash" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/coin + name = "flavored chocolate coin" + desc = "Clink, clink, clink." + icon_state = "coincustom" + baseicon = "coincustom" + basename = "flavored coin" + add_overlays = 0 + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/fullycustom // In the event you fuckers find something I forgot to add a customizable food for. + name = "on a plate" + desc = "A unique dish." + icon_state = "fullycustom" + baseicon = "fullycustom" + basename = "on a plate" + add_overlays = 0 + top = 0 + sandwich_limit = 20 + fullycustom = 1 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/soup + name = "soup" + desc = "A bowl with liquid and... stuff in it." + icon_state = "soup" + baseicon = "soup" + basename = "soup" + add_overlays = 0 + trash = /obj/item/trash/bowl + top = 0 + +/obj/item/weapon/reagent_containers/food/snacks/customizable/burger + name = "burger bun" + desc = "A bun for a burger. Delicious." + icon_state = "burger" + baseicon = "burger" + basename = "burger" + toptype = new /obj/item/weapon/reagent_containers/food/snacks/bun() + +/obj/item/weapon/reagent_containers/food/snacks/customizable/attackby(obj/item/I, mob/user) + if(src.contents.len > sandwich_limit) + user << "If you put anything else in or on [src] it's going to make a mess." + return + if(istype(I, /obj/item/weapon/disk/nuclear)) + user << "You think about it for a few seconds, then you realize Central Command likely doesn't find nuke disk [basename]s very funny, and so you decide not to turn the nuke disk into a foodstuff." + return +/* if(istype(I, /obj/item/flag/nation)) + user << "That's not going to fit!" + return*/ + user << "You add [I] to [src]." + if(istype(I, /obj/item/weapon/reagent_containers/)) + var/obj/item/weapon/reagent_containers/F = I + F.reagents.trans_to(src, F.reagents.total_volume) + if(istype(I, /obj/item/weapon/reagent_containers/food/snacks/customizable)) + var/obj/item/weapon/reagent_containers/food/snacks/customizable/origin = I + ingredients += origin.ingredients + user.drop_item() + cooktype[basename] = 1 + I.loc = src + if(!istype(I, toptype)) + ingredients += I + updateicon() + name = newname() + + +/obj/item/weapon/reagent_containers/food/snacks/customizable/proc/updateicon() + overlays = 0 + var/i=0 + for(var/obj/item/O in ingredients) + i++ + if(!fullycustom) + var/image/I = new(src.icon, "[baseicon]_filling") + if(istype(O, /obj/item/weapon/reagent_containers/food/snacks)) + var/obj/item/weapon/reagent_containers/food/snacks/food = O + if(!food.filling_color == "#FFFFFF") + I.color = food.filling_color + else + I.color = pick("#FF0000","#0000FF","#008000","#FFFF00") + else + I.color = pick("#FF0000","#0000FF","#008000","#FFFF00") + if(add_overlays) + I.pixel_x = pick(list(-1,0,1)) + I.pixel_y = (i*2)+1 + overlays += I + else + var/image/F = new(O.icon, O.icon_state) + F.pixel_x = pick(list(-1,0,1)) + F.pixel_y = pick(list(-1,0,1)) + overlays += F + overlays += O.overlays + + if(top) + var/image/T = new(src.icon, "[baseicon]_top") + T.pixel_x = pick(list(-1,0,1)) + T.pixel_y = (ingredients.len * 2)+1 + overlays += T + +/obj/item/weapon/reagent_containers/food/snacks/customizable/Del() + for(var/obj/item/O in ingredients) + del(O) + ..() + +/obj/item/weapon/reagent_containers/food/snacks/customizable/examine() + ..() + var/whatsinside = pick(ingredients) + + usr << " You think you can see [whatsinside] in there." + +/obj/item/weapon/reagent_containers/food/snacks/customizable/attack(mob/M as mob, mob/user as mob, def_zone) + + var/obj/item/shard + for(var/obj/item/O in contents) + if(istype(O,/obj/item/weapon/shard)) + shard = O + break + + var/mob/living/H + if(istype(M,/mob/living)) + H = M + + if(H && shard && M == user) //This needs a check for feeding the food to other people, but that could be abusable. + H << "\red You lacerate your mouth on a [shard.name] in the sandwich!" + H.adjustBruteLoss(5) //TODO: Target head if human. + ..() + +/obj/item/weapon/reagent_containers/food/snacks/customizable/proc/newname() + var/unsorteditems[0] + var/sorteditems[0] + var/unsortedtypes[0] + var/sortedtypes[0] + var/endpart = "" + var/c = 0 + var/ci = 0 + var/ct = 0 + var/seperator = "" + var/sendback = "" + var/list/levels = list("", "double", "triple", "quad", "huge") + + for(var/obj/item/ing in ingredients) + if(istype(ing, /obj/item/weapon/shard)) + continue + + + if (istype(ing, /obj/item/weapon/reagent_containers/food/snacks/customizable)) // split the ingredients into ones with basenames (sandwich, burger, etc) and ones without, keeping track of how many of each there are + var/obj/item/weapon/reagent_containers/food/snacks/customizable/gettype = ing + if (unsortedtypes[gettype.basename]) + unsortedtypes[gettype.basename]++ + if (unsortedtypes[gettype.basename] > ct) + ct = unsortedtypes[gettype.basename] + else + (unsortedtypes[gettype.basename]) = 1 + if (unsortedtypes[gettype.basename] > ct) + ct = unsortedtypes[gettype.basename] + else + if(unsorteditems[ing.name]) + unsorteditems[ing.name]++ + if (unsorteditems[ing.name] > ci) + ci = unsorteditems[ing.name] + else + unsorteditems[ing.name] = 1 + if (unsorteditems[ing.name] > ci) + ci = unsorteditems[ing.name] + + sorteditems = sortlist(unsorteditems, ci) //order both types going from the lowest number to the highest number + sortedtypes = sortlist(unsortedtypes, ct) + + for(var/ings in sorteditems) //add the non-basename items to the name, sorting out the , and the and + c++ + if (c == sorteditems.len - 1) + seperator = " and " + else if (c == sorteditems.len) + seperator = " " + else + seperator = ", " + + if (sorteditems[ings] > levels.len) + sorteditems[ings] = levels.len + + if (sorteditems[ings] <= 1) + sendback +="[ings][seperator]" + else + sendback +="[levels[sorteditems[ings]]] [ings][seperator]" + + for (var/ingtype in sortedtypes) // now add the types basenames, keeping the src one seperate so it can go on the end + if (sortedtypes[ingtype] > levels.len) + sortedtypes[ingtype] = levels.len + if (ingtype == basename) + if (sortedtypes[ingtype] < levels.len) + sortedtypes[ingtype]++ + endpart = "[levels[sortedtypes[ingtype]]] decker [basename]" + continue + if (sortedtypes[ingtype] >= 2) + sendback += "[levels[sortedtypes[ingtype]]] decker [ingtype] " + else + sendback += "[ingtype] " + + if(endpart) + sendback += endpart + else + sendback += basename + + if(length(sendback) > 80) + sendback = "[pick(list("absurd","colossal","enormous","ridiculous","massive","oversized","cardiac-arresting","pipe-clogging","edible but sickening","sickening","gargantuan","mega","belly-burster","chest-burster"))] [basename]" + return sendback + +/obj/item/weapon/reagent_containers/food/snacks/customizable/proc/sortlist(var/list/unsorted, var/highest) + var/sorted[0] + for(var/i = 1, i<= highest, i++) + for(var/it in unsorted) + if (unsorted[it] == i) + sorted[it] = i + return sorted + diff --git a/code/modules/food/food_grill.dm b/code/modules/food/food_grill.dm new file mode 100644 index 00000000..54290c80 --- /dev/null +++ b/code/modules/food/food_grill.dm @@ -0,0 +1,29 @@ +/obj/machinery/cooker/foodgrill + name = "grill" + desc = "Backyard grilling, IN SPACE." + icon = 'icons/obj/cooking_machines.dmi' + icon_state = "grill_off" + thiscooktype = "grilled" + burns = 1 + firechance = 20 + cooktime = 50 + foodcolor = "#A34719" + onicon = "grill_on" + officon = "grill_off" + +obj/machinery/cooker/foodgrill/putIn(obj/item/In, mob/chef) + ..() + var/image/img = new(In.icon, In.icon_state) + img.pixel_y = 5 + overlays += img + sleep(50) + overlays = 0 + img.color = "#C28566" + overlays += img + sleep(50) + overlays = 0 + img.color = "#A34719" + overlays += img + sleep(50) + overlays = 0 + diff --git a/code/modules/food/icecream_vat.dm b/code/modules/food/icecream_vat.dm new file mode 100644 index 00000000..7531c064 --- /dev/null +++ b/code/modules/food/icecream_vat.dm @@ -0,0 +1,254 @@ +//ICE CREAM MACHINE +//Code made by Sawu at Sawu-Station. + +/obj/machinery/icemachine + name = "\improper Cream-Master Deluxe" + density = 1 + anchored = 1 + icon = 'icons/obj/cooking_machines.dmi' + icon_state = "icecream_vat" + use_power = 1 + idle_power_usage = 20 + var/obj/item/weapon/reagent_containers/glass/beaker = null + var/useramount = 15 //Last used amount + + +/obj/machinery/icemachine/proc/generate_name(reagent_name) + var/name_prefix = pick("Mr.","Mrs.","Super","Happy","Whippy") + var/name_suffix = pick(" Whippy "," Slappy "," Creamy "," Dippy "," Swirly "," Swirl ") + var/cone_name = null //Heart failure prevention. + cone_name += name_prefix + cone_name += name_suffix + cone_name += "[reagent_name]" + return cone_name + + +/obj/machinery/icemachine/New() + var/datum/reagents/R = new/datum/reagents(500) + reagents = R + R.my_atom = src + + +/obj/machinery/icemachine/attackby(obj/item/I, mob/user) + if(istype(I, /obj/item/weapon/reagent_containers/glass)) + if(beaker) + user << "A container is already inside [src]." + return + beaker = I + user.drop_item() + I.loc = src + user << "You add [I] to [src]" + updateUsrDialog() + return + if(istype(I, /obj/item/weapon/reagent_containers/food/snacks/icecream)) + if(!I.reagents.has_reagent("sprinkles")) + if(I.reagents.total_volume > 29) I.reagents.remove_any(1) + I.reagents.add_reagent("sprinkles",1) + var/image/sprinkles = image('icons/obj/kitchen.dmi', src, "sprinkles") + I.overlays += sprinkles + I.name += " with sprinkles" + I.desc += ". This also has sprinkles." + else + user << "This [I] already has sprinkles." + + +/obj/machinery/icemachine/proc/validexchange(reag) + if(reag == "sprinkles" | reag == "cola" | reag == "kahlua" | reag == "dr_gibb" | reag == "vodka" | reag == "space_up" | reag == "rum" | reag == "spacemountainwind" | reag == "gin" | reag == "cream" | reag == "water") + return 1 + else + if(reagents.total_volume < 500) + usr << "[src] vibrates for a moment, apparently accepting the unknown liquid." + playsound(loc, 'sound/machines/twobeep.ogg', 10, 1) + return 1 + + +/obj/machinery/icemachine/Topic(href, href_list) + if(..()) return + + add_fingerprint(usr) + usr.set_machine(src) + + if(href_list["close"]) + usr << browse(null, "window=cream_master") + usr.unset_machine() + return + + var/obj/item/weapon/reagent_containers/glass/A = null + var/datum/reagents/R = null + + if(beaker) + A = beaker + R = A.reagents + + if(href_list["add"]) + if(href_list["amount"]) + var/id = href_list["add"] + var/amount = text2num(href_list["amount"]) + if(validexchange(id)) + R.trans_id_to(src, id, amount) + + else if(href_list["remove"]) + if(href_list["amount"]) + var/id = href_list["remove"] + var/amount = text2num(href_list["amount"]) + if(beaker == null) + reagents.remove_reagent(id,amount) + else + if(validexchange(id)) + reagents.trans_id_to(A, id, amount) + else + reagents.remove_reagent(id,amount) + + else if(href_list["main"]) + attack_hand(usr) + return + + else if(href_list["eject"]) + if(beaker) + A.loc = loc + beaker = null + reagents.trans_to(A,reagents.total_volume) + + else if(href_list["synthcond"]) + if(href_list["type"]) + var/ID = text2num(href_list["type"]) + /* + if(ID == 1) + reagents.add_reagent("sprinkles",1) + */ //Sprinkles are now created by using the ice cream on the machine + if(ID == 2 | ID == 3) + var/brand = pick(1,2,3,4) + if(brand == 1) + if(ID == 2) + reagents.add_reagent("cola",5) + else + reagents.add_reagent("kahlua",5) + else if(brand == 2) + if(ID == 2) + reagents.add_reagent("dr_gibb",5) + else + reagents.add_reagent("vodka",5) + else if(brand == 3) + if(ID == 2) + reagents.add_reagent("space_up",5) + else + reagents.add_reagent("rum",5) + else if(brand == 4) + if(ID == 2) + reagents.add_reagent("spacemountainwind",5) + else + reagents.add_reagent("gin",5) + else if(ID == 4) + if(reagents.total_volume <= 500 & reagents.total_volume >= 15) + reagents.add_reagent("cream",(30 - reagents.total_volume)) + else if(reagents.total_volume <= 15) + reagents.add_reagent("cream",(15 - reagents.total_volume)) + else if(ID == 5) + if(reagents.total_volume <= 500 & reagents.total_volume >= 15) + reagents.add_reagent("water",(30 - reagents.total_volume)) + else if(reagents.total_volume <= 15) + reagents.add_reagent("water",(15 - reagents.total_volume)) + + else if(href_list["createcup"]) + var/name = generate_name(reagents.get_master_reagent_name()) + name += " Chocolate Cone" + var/obj/item/weapon/reagent_containers/food/snacks/icecream/icecreamcup/C + C = new/obj/item/weapon/reagent_containers/food/snacks/icecream/icecreamcup(loc) + C.name = "[name]" + C.pixel_x = rand(-8, 8) + C.pixel_y = -16 + reagents.trans_to(C,30) + if(reagents) + reagents.clear_reagents() + C.update_icon() + + else if(href_list["createcone"]) + var/name = generate_name(reagents.get_master_reagent_name()) + name += " Cone" + var/obj/item/weapon/reagent_containers/food/snacks/icecream/icecreamcone/C + C = new/obj/item/weapon/reagent_containers/food/snacks/icecream/icecreamcone(loc) + C.name = "[name]" + C.pixel_x = rand(-8, 8) + C.pixel_y = -16 + reagents.trans_to(C,15) + if(reagents) + reagents.clear_reagents() + C.update_icon() + updateUsrDialog() + + +/obj/machinery/icemachine/attack_ai(mob/user) + return attack_hand(user) + +/obj/machinery/icemachine/attack_paw(mob/user) + return attack_hand(user) + + +/obj/machinery/icemachine/proc/show_toppings() + var/dat = "" + if(reagents.total_volume <= 500) + dat += "
    " + dat += "Add fillings:
    " + dat += "Soda
    " + dat += "Alcohol
    " + dat += "Finish With:
    " + dat += "Cream
    " + dat += "Water
    " + dat += "Dispense in:
    " + dat += "Chocolate Cone
    " + dat += "Cone
    " + dat += "" + return dat + + +/obj/machinery/icemachine/proc/show_reagents(container) + //1 = beaker / 2 = internal + var/dat = "" + if(container == 1) + var/obj/item/weapon/reagent_containers/glass/A = beaker + var/datum/reagents/R = A.reagents + dat += "The container has:
    " + for(var/datum/reagent/G in R.reagent_list) + dat += "[G.volume] unit(s) of [G.name] | " + dat += "(5) " + dat += "(10) " + dat += "(15) " + dat += "(All)" + dat += "
    " + else if(container == 2) + dat += "
    The Cream-Master has:
    " + if(reagents.total_volume) + for(var/datum/reagent/N in reagents.reagent_list) + dat += "[N.volume] unit(s) of [N.name] | " + dat += "(5) " + dat += "(10) " + dat += "(15) " + dat += "(All)" + dat += "
    " + else + dat += "
    SOMEONE ENTERED AN INVALID REAGENT CONTAINER; QUICK, BUG REPORT!
    " + return dat + + +/obj/machinery/icemachine/attack_hand(mob/user) + if(..()) return + user.set_machine(src) + var/dat = "" + if(!beaker) + dat += "No container is loaded into the machine, external transfer offline.
    " + dat += show_reagents(2) + dat += show_toppings() + dat += "Close" + else + var/obj/item/weapon/reagent_containers/glass/A = beaker + var/datum/reagents/R = A.reagents + dat += "Eject container and end transfer.
    " + if(!R.total_volume) + dat += "Container is empty.

    " + else + dat += show_reagents(1) + dat += show_reagents(2) + dat += show_toppings() + var/datum/browser/popup = new(user, "cream_master","Cream-Master Deluxe", 700, 400, src) + popup.set_content(dat) + popup.open() \ No newline at end of file diff --git a/code/modules/food/oven.dm b/code/modules/food/oven.dm new file mode 100644 index 00000000..2dd97fce --- /dev/null +++ b/code/modules/food/oven.dm @@ -0,0 +1,79 @@ +/obj/machinery/cooking + name = "oven" + desc = "Cookies are ready, dear." + icon = 'icons/obj/cooking_machines.dmi' + icon_state = "oven_off" + layer = 2.9 + density = 1 + anchored = 1 + use_power = 1 + var/candy = 0 + idle_power_usage = 5 + var/on = FALSE //Is it making food already? + var/list/food_choices = list() +/obj/machinery/cooking/New() + ..() + updatefood() + +/obj/machinery/cooking/attackby(obj/item/I, mob/user) + if(on) + user << "The machine is already running." + return + else + var/obj/item/F = I + var/obj/item/weapon/reagent_containers/food/snacks/customizable/C + C = input("Select food to make.", "Cooking", C) in food_choices + if(!C) + return + else + user << "You put [F] into [src] for cooking." + user.drop_item() + F.loc = src + on = TRUE + if(!candy) + icon_state = "oven_on" + else + icon_state = "mixer_on" + sleep(100) + on = FALSE + if(!candy) + icon_state = "oven_off" + else + icon_state = "mixer_off" + C.loc = get_turf(src) + C.attackby(F,user) + playsound(loc, 'sound/machines/ding.ogg', 50, 1) + updatefood() + return + +/obj/machinery/cooking/proc/updatefood() + return + +/obj/machinery/cooking/oven + name = "oven" + desc = "Cookies are ready, dear." + icon = 'icons/obj/cooking_machines.dmi' + icon_state = "oven_off" + +/obj/machinery/cooking/oven/updatefood() + for(var/U in food_choices) + food_choices.Remove(U) + for(var/U in typesof(/obj/item/weapon/reagent_containers/food/snacks/customizable/cook)-(/obj/item/weapon/reagent_containers/food/snacks/customizable/cook)) + var/obj/item/weapon/reagent_containers/food/snacks/customizable/cook/V = new U + src.food_choices += V + return + +/obj/machinery/cooking/candy + name = "candy machine" + desc = "Get yer box of deep fried deep fried deep fried deep fried cotton candy cereal sandwich cookies here!" + icon = 'icons/obj/cooking_machines.dmi' + icon_state = "mixer_off" + candy = 1 + +/obj/machinery/cooking/candy/updatefood() + for(var/U in food_choices) + food_choices.Remove(U) + for(var/U in typesof(/obj/item/weapon/reagent_containers/food/snacks/customizable/candy)-(/obj/item/weapon/reagent_containers/food/snacks/customizable/candy)) + var/obj/item/weapon/reagent_containers/food/snacks/customizable/candy/V = new U + src.food_choices += V + return diff --git a/code/modules/food/recipes_microwave.dm b/code/modules/food/recipes_microwave.dm index 36cd914f..e0b5af05 100644 --- a/code/modules/food/recipes_microwave.dm +++ b/code/modules/food/recipes_microwave.dm @@ -1159,7 +1159,7 @@ I said no! /obj/item/weapon/reagent_containers/food/snacks/grown/goldapple, ) result = /obj/item/weapon/reagent_containers/food/snacks/appletart - +/* /datum/recipe/tossedsalad items = list( /obj/item/weapon/reagent_containers/food/snacks/grown/cabbage, @@ -1169,7 +1169,7 @@ I said no! /obj/item/weapon/reagent_containers/food/snacks/grown/apple, ) result = /obj/item/weapon/reagent_containers/food/snacks/tossedsalad - +*/ /datum/recipe/aesirsalad items = list( /obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index c51d5167..ceffffcd 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -194,6 +194,18 @@ var/result = update_icon() return result + +/datum/organ/external/proc/embed(var/obj/item/weapon/W, var/silent = 0) + if(!silent) + owner.visible_message("\The [W] sticks in the wound!") + implants += W + owner.embedded_flag = 1 + owner.verbs += /mob/proc/yank_out_object + W.add_blood(owner) + if(ismob(W.loc)) + var/mob/living/H = W.loc + H.drop_item() + W.loc = owner /* This function completely restores a damaged organ to perfect condition. */ diff --git a/code/modules/reagents/reagent_containers/food/snacks.dm b/code/modules/reagents/reagent_containers/food/snacks.dm index 67d052bf..7f175325 100644 --- a/code/modules/reagents/reagent_containers/food/snacks.dm +++ b/code/modules/reagents/reagent_containers/food/snacks.dm @@ -4,12 +4,17 @@ desc = "yummy" icon = 'icons/obj/food.dmi' icon_state = null - var/deepfried = 0 var/bitesize = 1 var/bitecount = 0 var/trash = null var/slice_path var/slices_num + var/eatverb + var/wrapped = 0 + var/dried_type = null + var/cooktype[0] + var/deepfried = 0 + //Placeholder for effect that trigger on eating that aren't tied to reagents. /obj/item/weapon/reagent_containers/food/snacks/proc/On_Consume(var/mob/M) @@ -17,7 +22,7 @@ if(!reagents.total_volume) if(M == usr) usr << "You finish eating \the [src]." - M.visible_message("[M] finishes eating \the [src].") + usr.visible_message("[usr] finishes eating \the [src].") usr.drop_from_inventory(src) //so icons update :[ if(trash) @@ -79,7 +84,11 @@ M.attack_log += text("\[[time_stamp()]\] Has been fed [src.name] by [user.name] ([user.ckey]) Reagents: [reagentlist(src)]") user.attack_log += text("\[[time_stamp()]\] Fed [src.name] by [M.name] ([M.ckey]) Reagents: [reagentlist(src)]") - msg_admin_attack("[key_name(user)] fed [key_name(M)] with [src.name] Reagents: [reagentlist(src)] (INTENT: [uppertext(user.a_intent)])") + log_attack("[user.name] ([user.ckey]) fed [M.name] ([M.ckey]) with [src.name] Reagents: [reagentlist(src)] (INTENT: [uppertext(user.a_intent)])") + if(!iscarbon(user)) + M.LAssailant = null + else + M.LAssailant = user for(var/mob/O in viewers(world.view, user)) O.show_message("\red [user] feeds [M] [src].", 1) @@ -91,18 +100,20 @@ if(reagents) //Handle ingestion of the reagent. playsound(M.loc,'sound/items/eatfood.ogg', rand(10,50), 1) if(reagents.total_volume) - if(reagents.total_volume > bitesize) - /* - * I totally cannot understand what this code supposed to do. - * Right now every snack consumes in 2 bites, my popcorn does not work right, so I simplify it. -- rastaf0 - var/temp_bitesize = max(reagents.total_volume /2, bitesize) - reagents.trans_to(M, temp_bitesize) - */ - reagents.trans_to_ingest(M, bitesize) - else - reagents.trans_to_ingest(M, reagents.total_volume) - bitecount++ - On_Consume(M) + reagents.reaction(M, INGEST) + spawn(5) + if(reagents.total_volume > bitesize) + /* + * I totally cannot understand what this code supposed to do. + * Right now every snack consumes in 2 bites, my popcorn does not work right, so I simplify it. -- rastaf0 + var/temp_bitesize = max(reagents.total_volume /2, bitesize) + reagents.trans_to(M, temp_bitesize) + */ + reagents.trans_to_ingest(M, bitesize) + else + reagents.trans_to_ingest(M, reagents.total_volume) + bitecount++ + On_Consume(M) return 1 return 0 @@ -123,13 +134,48 @@ else usr << "\blue \The [src] was bitten multiple times!" -/obj/item/weapon/reagent_containers/food/snacks/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(istype(W,/obj/item/weapon/storage)) - ..() // -> item/attackby() + +/obj/item/weapon/reagent_containers/food/snacks/attackby(obj/item/weapon/W, mob/user) + if(istype(W,/obj/item/weapon/pen)) + var/n_name = copytext(sanitize(input(usr, "What would you like to name this dish?", "Food Renaming", null) as text), 1, MAX_NAME_LEN) + if((loc == usr && usr.stat == 0)) + name = "[n_name]" + return if(istype(W,/obj/item/weapon/storage)) ..() // -> item/attackby() + +/* if(istype(W,/obj/item/weapon/kitchen/utensil)) + + var/obj/item/weapon/kitchen/utensil/U = W + + if(!U.reagents) + U.create_reagents(5) + + if (U.reagents.total_volume > 0) + user << "\red You already have something on your [U]." + return + + user.visible_message( \ + "[user] scoops up some [src] with \the [U]!", \ + "\blue You scoop up some [src] with \the [U]!" \ + ) + + src.bitecount++ + U.overlays.Cut() + U.loaded = "[src]" + var/image/I = new(U.icon, "loadedfood") + I.color = src.filling_color + U.overlays += I + + reagents.trans_to(U,min(reagents.total_volume,5)) + + if (reagents.total_volume <= 0) + del(src) + return +*/ if((slices_num <= 0 || !slices_num) || !slice_path) return 0 + var/inaccurate = 0 if( \ istype(W, /obj/item/weapon/kitchenknife) || \ @@ -174,8 +220,8 @@ ) else user.visible_message( \ - "\blue [user] inaccurately slices \the [src] with [W]!", \ - "\blue You inaccurately slice \the [src] with your [W]!" \ + "\blue [user] crudely slices \the [src] with [W]!", \ + "\blue You crudely slice \the [src] with your [W]!" \ ) slices_lost = rand(1,min(1,round(slices_num/2))) var/reagents_per_slice = reagents.total_volume/slices_num @@ -183,6 +229,7 @@ var/obj/slice = new slice_path (src.loc) reagents.trans_to(slice,reagents_per_slice) del(src) + return /obj/item/weapon/reagent_containers/food/snacks/Del() @@ -269,20 +316,6 @@ reagents.add_reagent("tricordrazine", 8) bitesize = 3 -/obj/item/weapon/reagent_containers/food/snacks/deepfryholder - name = "Deep Fried Foods Holder Obj" - desc = "If you can see this description the code for the deep fryer fucked up." - icon = 'icons/obj/food.dmi' - icon_state = "deepfried_holder_icon" - bitesize = 2 - deepfried = 1 - New() - ..() - reagents.add_reagent("nutriment", 10) - Del() - contents = null - ..() - /obj/item/weapon/reagent_containers/food/snacks/candy name = "candy" desc = "Nougat, love it or hate it." @@ -695,12 +728,31 @@ reagents.add_reagent("nutriment", 3) src.bitesize = 6 +/obj/item/weapon/reagent_containers/food/snacks/spidermeat + name = "spider meat" + desc = "A slab of spider meat." + icon_state = "spidermeat" + New() + ..() + reagents.add_reagent("nutriment", 3) + reagents.add_reagent("toxin", 3) + bitesize = 3 + +/obj/item/weapon/reagent_containers/food/snacks/spiderleg + name = "spider leg" + desc = "A still twitching leg of a giant spider... you don't really want to eat this, do you?" + icon_state = "spiderleg" + New() + ..() + reagents.add_reagent("nutriment", 2) + reagents.add_reagent("toxin", 2) + bitesize = 2 + /obj/item/weapon/reagent_containers/food/snacks/meatball - name = "meatball" + name = "Meatball" desc = "A great meal all round." icon_state = "meatball" filling_color = "#DB0000" - New() ..() reagents.add_reagent("nutriment", 3) @@ -891,33 +943,6 @@ ..() reagents.add_reagent("nutriment", 8) bitesize = 1 - attackby(obj/item/weapon/W as obj, mob/user as mob) - if(istype(W,/obj/item/weapon/kitchen/utensil/fork)) - if (W.icon_state == "forkloaded") - user << "\red You already have omelette on your fork." - return - //W.icon = 'icons/obj/kitchen.dmi' - W.icon_state = "forkloaded" - /*if (herp) - world << "[user] takes a piece of omelette with his fork!"*/ - //Why this unecessary check? Oh I know, because I'm bad >:C - // Yes, you are. You griefing my badmin toys. --rastaf0 - user.visible_message( \ - "[user] takes a piece of omelette with their fork!", \ - "\blue You take a piece of omelette with your fork!" \ - ) - reagents.remove_reagent("nutriment", 1) - if (reagents.total_volume <= 0) - del(src) -/* - * Unsused. -/obj/item/weapon/reagent_containers/food/snacks/omeletteforkload - name = "Omelette Du Fromage" - desc = "That's all you can say!" - New() - ..() - reagents.add_reagent("nutriment", 1) -*/ /obj/item/weapon/reagent_containers/food/snacks/muffin name = "Muffin" @@ -1205,6 +1230,42 @@ reagents.add_reagent("nutriment", 4) bitesize = 2 +/obj/item/weapon/reagent_containers/food/snacks/chinese/chowmein + name = "chow mein" + desc = "What is in this anyways?" + icon_state = "chinese1" + New() + ..() + reagents.add_reagent("nutriment", 6) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/chinese/tao + name = "Admiral Yamamoto carp" + desc = "Tastes like chicken." + icon_state = "chinese2" + New() + ..() + reagents.add_reagent("nutriment", 6) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/chinese/newdles + name = "chinese newdles" + desc = "Made fresh, weekly!" + icon_state = "chinese3" + New() + ..() + reagents.add_reagent("nutriment", 6) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/chinese/rice + name = "fried rice" + desc = "A timeless classic." + icon_state = "chinese4" + New() + ..() + reagents.add_reagent("nutriment", 6) + bitesize = 2 + /obj/item/weapon/reagent_containers/food/snacks/syndicake name = "Syndi-Cakes" icon_state = "syndi_cakes" @@ -1215,7 +1276,8 @@ New() ..() reagents.add_reagent("nutriment", 4) - reagents.add_reagent("doctorsdelight", 5) + reagents.add_reagent("doctorsdelight", 8) +// reagents.add_reagent("alchdranine", 5) bitesize = 3 /obj/item/weapon/reagent_containers/food/snacks/loadedbakedpotato @@ -1254,7 +1316,7 @@ bitesize = 2 /obj/item/weapon/reagent_containers/food/snacks/spagetti - name = "Spaghetti" + name = "Spagetti" desc = "A bundle of raw spaghetti." icon_state = "spagetti" filling_color = "#EDDD00" @@ -1299,6 +1361,10 @@ reagents.add_reagent("carbon", 3) bitesize = 2 + // it's burned! it should start off being classed as any cooktype that burns + cooktype["grilled"] = 1 + cooktype["deep fried"] = 1 + /obj/item/weapon/reagent_containers/food/snacks/meatsteak name = "Meat steak" desc = "A piece of hot spicy meat." @@ -1522,7 +1588,7 @@ reagents.add_reagent("tomatojuice", 2) bitesize = 5 -/* No more of this + /obj/item/weapon/reagent_containers/food/snacks/telebacon name = "Tele Bacon" desc = "It tastes a little odd but it is still delicious." @@ -1537,7 +1603,7 @@ if(!reagents.total_volume) baconbeacon.loc = usr baconbeacon.digest_delay() -*/ + /obj/item/weapon/reagent_containers/food/snacks/monkeycube name = "monkey cube" @@ -1546,8 +1612,7 @@ bitesize = 12 filling_color = "#ADAC7F" - var/wrapped = 0 - var/monkey_type = null + var/monkey_type = /mob/living/carbon/monkey New() ..() @@ -1556,7 +1621,7 @@ afterattack(obj/O as obj, mob/user as mob, proximity) if(!proximity) return if(istype(O,/obj/structure/sink) && !wrapped) - user << "You place \the [name] under a stream of water..." + user << "You place [name] under a stream of water..." loc = get_turf(O) return Expand() ..() @@ -1565,19 +1630,46 @@ if(wrapped) Unwrap(user) + On_Consume(var/mob/M) + M << "Something inside of you suddently expands!" + + + if (istype(M, /mob/living/carbon/human)) + //Do not try to understand. + var/obj/item/weapon/surprise = new/obj/item/weapon(M) + var/mob/living/carbon/monkey/ook = new monkey_type(null) //no other way to get access to the vars, alas + surprise.icon = ook.icon + surprise.icon_state = ook.icon_state + surprise.name = "malformed [ook.name]" + surprise.desc = "Looks like \a very deformed [ook.name], a little small for its kind. It shows no signs of life." + del(ook) //rip nullspace monkey + surprise.transform *= 0.6 + surprise.add_blood(M) + var/mob/living/carbon/human/H = M + var/datum/organ/external/E = H.get_organ("chest") + E.fracture() + for (var/datum/organ/internal/I in E.internal_organs) + I.take_damage(rand(I.min_bruised_damage, I.min_broken_damage+1)) + + if (!E.hidden && prob(60)) //set it snuggly + E.hidden = surprise + E.cavity = 0 + else //someone is having a bad day + E.createwound(CUT, 30) + E.embed(surprise) + else if (ismonkey(M)) + M.visible_message("[M] suddenly tears in half!") + var/mob/living/carbon/monkey/ook = new monkey_type(M.loc) + ook.name = "malformed [ook.name]" + ook.transform *= 0.6 + ook.add_blood(M) + M.gib() + ..() + proc/Expand() for(var/mob/M in viewers(src,7)) M << "\red \The [src] expands!" - if(monkey_type) - switch(monkey_type) - if("tajara") - new /mob/living/carbon/monkey/tajara(get_turf(src)) - if("unathi") - new /mob/living/carbon/monkey/unathi(get_turf(src)) - if("skrell") - new /mob/living/carbon/monkey/skrell(get_turf(src)) - else - new /mob/living/carbon/monkey(get_turf(src)) + new monkey_type(src) del(src) proc/Unwrap(mob/user as mob) @@ -1592,29 +1684,27 @@ icon_state = "monkeycubewrap" wrapped = 1 - /obj/item/weapon/reagent_containers/food/snacks/monkeycube/farwacube name = "farwa cube" - monkey_type ="tajara" + monkey_type = /mob/living/carbon/monkey/tajara /obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/farwacube name = "farwa cube" - monkey_type ="tajara" - + monkey_type =/mob/living/carbon/monkey/tajara /obj/item/weapon/reagent_containers/food/snacks/monkeycube/stokcube name = "stok cube" - monkey_type ="unathi" + monkey_type = /mob/living/carbon/monkey/unathi /obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/stokcube name = "stok cube" - monkey_type ="unathi" - + monkey_type =/mob/living/carbon/monkey/unathi /obj/item/weapon/reagent_containers/food/snacks/monkeycube/neaeracube name = "neaera cube" - monkey_type ="skrell" + monkey_type =/mob/living/carbon/monkey/skrell + /obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/neaeracube name = "neaera cube" - monkey_type ="skrell" + monkey_type =/mob/living/carbon/monkey/skrell /obj/item/weapon/reagent_containers/food/snacks/spellburger @@ -1834,7 +1924,7 @@ bitesize = 2 /obj/item/weapon/reagent_containers/food/snacks/boiledspagetti - name = "Boiled Spaghetti" + name = "Boiled Spagetti" desc = "A plain dish of noodles, this sucks." icon_state = "spagettiboiled" trash = /obj/item/trash/plate @@ -1870,7 +1960,7 @@ bitesize = 2 /obj/item/weapon/reagent_containers/food/snacks/pastatomato - name = "Spaghetti" + name = "Spagetti" desc = "Spaghetti and crushed tomatoes. Just like your abusive father used to make!" icon_state = "pastatomato" trash = /obj/item/trash/plate @@ -1883,7 +1973,7 @@ bitesize = 4 /obj/item/weapon/reagent_containers/food/snacks/meatballspagetti - name = "Spaghetti & Meatballs" + name = "Spagetti & Meatballs" desc = "Now thats a nic'e meatball!" icon_state = "meatballspagetti" trash = /obj/item/trash/plate @@ -2008,9 +2098,9 @@ reagents.add_reagent("cherryjelly", 5) /obj/item/weapon/reagent_containers/food/snacks/boiledslimecore - name = "Boiled slime Core" + name = "Boiled Slime Core" desc = "A boiled red thing." - icon_state = "boiledslimecore" + icon_state = "boiledrorocore" New() ..() reagents.add_reagent("slimejelly", 5) @@ -2094,9 +2184,9 @@ reagents.add_reagent("nutriment", 8) bitesize = 2 -/obj/item/weapon/reagent_containers/food/snacks/tossedsalad - name = "tossed salad" - desc = "A proper salad, basic and simple, with little bits of carrot, tomato and apple intermingled. Vegan!" +/obj/item/weapon/reagent_containers/food/snacks/herbsalad + name = "herb salad" + desc = "A tasty salad with apples on top." icon_state = "herbsalad" trash = /obj/item/trash/snack_bowl filling_color = "#76B87F" @@ -2108,7 +2198,7 @@ /obj/item/weapon/reagent_containers/food/snacks/validsalad name = "valid salad" - desc = "It's just a salad of questionable 'herbs' with meatballs and fried potato slices. Nothing suspicious about it." + desc = "It's just an herb salad with meatballs and fried potato slices. Nothing suspicious about it." icon_state = "validsalad" trash = /obj/item/trash/snack_bowl filling_color = "#76B87F" @@ -2116,6 +2206,8 @@ New() ..() reagents.add_reagent("nutriment", 8) + reagents.add_reagent("doctorsdelight", 8) + //reagents.add_reagent("alchdranine", 5) bitesize = 3 /obj/item/weapon/reagent_containers/food/snacks/appletart @@ -2131,11 +2223,48 @@ reagents.add_reagent("gold", 5) bitesize = 3 +/obj/item/weapon/reagent_containers/food/snacks/dough_ball + name = "ball of raw dough" + desc = "A ball of raw dough, ready to be molded into new recipes." + icon = 'icons/obj/food_ingredients.dmi' + icon_state = "dough" + New() + ..() + reagents.add_reagent("nutriment", 3) + bitesize = 1 + attackby(obj/item/weapon/W as obj, mob/user as mob) + if(istype(W,/obj/item/weapon/kitchen/rollingpin)) + user.visible_message( \ + "[user] flattens the dough with the rolling pin!", \ + "\blue You flatten the dough with your rolling pin!" \ + ) + new /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough(src.loc) + del(src) + /////////////////////////////////////////////////Sliceable//////////////////////////////////////// // All the food items that can be sliced into smaller bits like Meatbread and Cheesewheels // sliceable is just an organization type path, it doesn't have any additional code or variables tied to it. +/obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough + name = "flattened dough" + desc = "Still raw. You resist the temptation to cover it in tomato sauce." + icon = 'icons/obj/food_ingredients.dmi' + icon_state = "flatdough" + slice_path = /obj/item/weapon/reagent_containers/food/snacks/doughslice + slices_num = 3 + New() + ..() + reagents.add_reagent("nutriment", 3) + bitesize = 1 + +/obj/item/weapon/reagent_containers/food/snacks/doughslice + name = "slice of dough" + desc = "an individual portion of raw dough, ready to be cooked." + icon = 'icons/obj/food_ingredients.dmi' + icon_state = "doughslice" + bitesize = 2 + /obj/item/weapon/reagent_containers/food/snacks/sliceable/meatbread name = "meatbread loaf" desc = "The culinary base of every self-respecting eloquen/tg/entleman." @@ -2176,6 +2305,28 @@ filling_color = "#8AFF75" bitesize = 2 +/obj/item/weapon/reagent_containers/food/snacks/sliceable/spidermeatbread + name = "spider meat loaf" + desc = "Reassuringly green meatloaf made from spider meat." + icon_state = "spidermeatbread" + slice_path = /obj/item/weapon/reagent_containers/food/snacks/spidermeatbreadslice + slices_num = 5 + New() + ..() + reagents.add_reagent("nutriment", 30) + reagents.add_reagent("toxin", 15) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/spidermeatbreadslice + name = "spider meat bread slice" + desc = "A slice of meatloaf made from an animal that most likely still wants you dead." + icon_state = "xenobreadslice" + trash = /obj/item/trash/plate + bitesize = 2 + New() + ..() + reagents.add_reagent("toxin", 2) + /obj/item/weapon/reagent_containers/food/snacks/sliceable/bananabread name = "Banana-nut bread" desc = "A heavenly and filling treat." @@ -2394,6 +2545,8 @@ filling_color = "#FFF700" bitesize = 2 + + /obj/item/weapon/reagent_containers/food/snacks/sliceable/birthdaycake name = "Birthday Cake" desc = "Happy Birthday..." @@ -2775,6 +2928,112 @@ pizza = new /obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/meatpizza(src) boxtag = "Meatlover's Supreme" +////////////////////////////////FOOD ADDITIONS//////////////////////////////////////////// + +/obj/item/weapon/reagent_containers/food/snacks/wrap + name = "egg wrap" + desc = "The precursor to Pigs in a Blanket." + icon_state = "wrap" + New() + ..() + reagents.add_reagent("nutriment", 5) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/beans + name = "tin of beans" + desc = "Musical fruit in a slightly less musical container." + icon_state = "beans" + New() + ..() + reagents.add_reagent("nutriment", 10) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/benedict + name = "eggs benedict" + desc = "There is only one egg on this, how rude." + icon_state = "benedict" + New() + ..() + reagents.add_reagent("nutriment", 3) + bitesize = 3 + +/obj/item/weapon/reagent_containers/food/snacks/hotdog + name = "hotdog" + desc = "Fresh footlong ready to go down on." + icon_state = "hotdog" + New() + ..() + reagents.add_reagent("nutriment", 3) + reagents.add_reagent("ketchup", 3) + bitesize = 3 + +/obj/item/weapon/reagent_containers/food/snacks/meatbun + name = "meat bun" + desc = "Has the potential to not be Dog." + icon_state = "meatbun" + New() + ..() + reagents.add_reagent("nutriment", 6) + bitesize = 6 + +/obj/item/weapon/reagent_containers/food/snacks/icecreamsandwich + name = "icecream sandwich" + desc = "Portable Ice-cream in it's own packaging." + icon_state = "icecreamsandwich" + New() + ..() + reagents.add_reagent("nutriment", 2) + reagents.add_reagent("ice", 2) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/notasandwich + name = "not-a-sandwich" + desc = "Something seems to be wrong with this, you can't quite figure what. Maybe it's his moustache." + icon_state = "notasandwich" + New() + ..() + reagents.add_reagent("nutriment", 6) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/sugarcookie + name = "sugar cookie" + desc = "Just like your little sister used to make." + icon_state = "sugarcookie" + New() + ..() + reagents.add_reagent("nutriment", 2) + reagents.add_reagent("sugar", 5) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/friedbanana + name = "Fried Banana" + desc = "Goreng Pisang, also known as fried bananas." + icon_state = "friedbanana" + New() + ..() + reagents.add_reagent("sugar", 5) + reagents.add_reagent("nutriment", 8) + reagents.add_reagent("cornoil", 4) + +/obj/item/weapon/reagent_containers/food/snacks/tofurkey + name = "Tofurkey" + desc = "A fake turkey made from tofu." + icon_state = "tofurkey" + New() + ..() + reagents.add_reagent("nutriment", 12) + reagents.add_reagent("stoxin", 3) + bitesize = 3 + +/obj/item/weapon/reagent_containers/food/snacks/stuffing + name = "Stuffing" + desc = "Moist, peppery breadcrumbs for filling the body cavities of dead birds. Dig in!" + icon_state = "stuffing" + New() + ..() + reagents.add_reagent("nutriment", 3) + bitesize = 1 + /obj/item/weapon/reagent_containers/food/snacks/dionaroast name = "roast diona" desc = "It's like an enormous, leathery carrot. With an eye." @@ -2788,12 +3047,111 @@ reagents.add_reagent("radium", 2) bitesize = 2 +/obj/item/weapon/reagent_containers/food/snacks/boiledspiderleg + name = "boiled spider leg" + desc = "A giant spider's leg that's still twitching after being cooked. Gross!" + icon_state = "spiderlegcooked" + trash = /obj/item/trash/plate + New() + ..() + reagents.add_reagent("nutriment", 3) + reagents.add_reagent("toxin", 2) + bitesize = 3 + +/obj/item/weapon/reagent_containers/food/snacks/spidereggs + name = "spider eggs" + desc = "A cluster of juicy spider eggs. A great side dish for when you care not for your health." + icon_state = "spidereggs" + New() + ..() + reagents.add_reagent("nutriment", 2) + reagents.add_reagent("toxin", 3) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/spidereggsham + name = "green eggs and ham" + desc = "Would you eat them on a train? Would you eat them on a plane? Would you eat them on a state of the art corporate deathtrap floating through space?" + icon_state = "spidereggsham" + trash = /obj/item/trash/plate + New() + ..() + reagents.add_reagent("nutriment", 6) + reagents.add_reagent("sodiumchloride", 1) + reagents.add_reagent("toxin", 3) + bitesize = 4 + +/obj/item/weapon/reagent_containers/food/snacks/sashimi + name = "carp sashimi" + desc = "Celebrate surviving attack from hostile alien lifeforms by hospitalising yourself." + icon_state = "sashimi" + New() + ..() + reagents.add_reagent("nutriment", 6) + reagents.add_reagent("toxin", 5) + bitesize = 3 +////////////////////////////////ICE CREAM/////////////////////////////////// +/obj/item/weapon/reagent_containers/food/snacks/icecream + name = "ice cream" + desc = "Delicious ice cream." + icon = 'icons/obj/kitchen.dmi' + icon_state = "icecream_cone" + New() + ..() + reagents.add_reagent("nutriment", 1) + reagents.add_reagent("sugar",1) + bitesize = 1 + update_icon() -/////////////////////////////////////////// -// new old food stuff from bs12 -/////////////////////////////////////////// + update_icon() + overlays.Cut() + var/image/filling = image('icons/obj/kitchen.dmi', src, "icecream_color") + filling.icon += mix_color_from_reagents(reagents.reagent_list) + overlays += filling + +/obj/item/weapon/reagent_containers/food/snacks/icecream/icecreamcone + name = "ice cream cone" + desc = "Delicious ice cream." + icon_state = "icecream_cone" + volume = 500 + New() + ..() + reagents.add_reagent("nutriment", 2) + reagents.add_reagent("sugar",6) + reagents.add_reagent("ice",2) + bitesize = 3 + +/obj/item/weapon/reagent_containers/food/snacks/icecream/icecreamcup + name = "chocolate ice cream cone" + desc = "Delicious ice cream." + icon_state = "icecream_cup" + volume = 500 + New() + ..() + reagents.add_reagent("nutriment", 4) + reagents.add_reagent("sugar",8) + reagents.add_reagent("ice",2) + bitesize = 6 + +/obj/item/weapon/reagent_containers/food/snacks/cereal + name = "box of cereal" + desc = "A box of cereal." + icon = 'icons/obj/food.dmi' + icon_state = "cereal_box" + bitesize = 2 + New() + ..() + reagents.add_reagent("nutriment", 30) +/obj/item/weapon/reagent_containers/food/snacks/deepfryholder + name = "Deep Fried Foods Holder Obj" + desc = "If you can see this description the code for the deep fryer fucked up." + icon = 'icons/obj/food.dmi' + icon_state = "deepfried_holder_icon" + bitesize = 2 + New() + ..() + reagents.add_reagent("nutriment", 30) // Flour + egg = dough /obj/item/weapon/reagent_containers/food/snacks/flour/attackby(obj/item/weapon/W as obj, mob/user as mob) @@ -2822,16 +3180,21 @@ reagents.add_reagent("nutriment", 3) // Dough + rolling pin = flat dough -/obj/item/weapon/reagent_containers/food/snacks/dough/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(istype(W,/obj/item/weapon/kitchen/rollingpin)) - new /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough(src) - user << "You flatten the dough." - del(src) +/obj/item/weapon/reagent_containers/food/snacks/dough/attackby(obj/item/I, mob/user) + if(istype(I, /obj/item/weapon/kitchen/rollingpin)) + if(isturf(loc)) + new /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough(loc) + user << "You flatten [src]." + del(src) + else + user << "You need to put [src] on a surface to roll it out!" + else + ..() // slicable into 3xdoughslices /obj/item/weapon/reagent_containers/food/snacks/sliceable/flatdough name = "flat dough" - desc = "A flattened dough." + desc = "Some flattened dough." icon = 'icons/obj/food_ingredients.dmi' icon_state = "flat dough" slice_path = /obj/item/weapon/reagent_containers/food/snacks/doughslice @@ -2842,7 +3205,7 @@ /obj/item/weapon/reagent_containers/food/snacks/doughslice name = "dough slice" - desc = "A building block of an impressive dish." + desc = "The building block of an impressive dish." icon = 'icons/obj/food_ingredients.dmi' icon_state = "doughslice" bitesize = 2 @@ -2852,57 +3215,14 @@ /obj/item/weapon/reagent_containers/food/snacks/bun name = "bun" - desc = "A base for any self-respecting burger." + desc = "The base for any self-respecting burger." icon = 'icons/obj/food_ingredients.dmi' icon_state = "bun" bitesize = 2 New() ..() reagents.add_reagent("nutriment", 4) - -/obj/item/weapon/reagent_containers/food/snacks/bun/attackby(obj/item/weapon/W as obj, mob/user as mob) - // Bun + meatball = burger - if(istype(W,/obj/item/weapon/reagent_containers/food/snacks/meatball)) - new /obj/item/weapon/reagent_containers/food/snacks/monkeyburger(src) - user << "You make a burger." - del(W) - del(src) - - // Bun + cutlet = hamburger - else if(istype(W,/obj/item/weapon/reagent_containers/food/snacks/cutlet)) - new /obj/item/weapon/reagent_containers/food/snacks/monkeyburger(src) - user << "You make a burger." - del(W) - del(src) - - // Bun + sausage = hotdog - else if(istype(W,/obj/item/weapon/reagent_containers/food/snacks/sausage)) - new /obj/item/weapon/reagent_containers/food/snacks/hotdog(src) - user << "You make a hotdog." - del(W) - del(src) - -// Burger + cheese wedge = cheeseburger -/obj/item/weapon/reagent_containers/food/snacks/monkeyburger/attackby(obj/item/weapon/reagent_containers/food/snacks/cheesewedge/W as obj, mob/user as mob) - if(istype(W))// && !istype(src,/obj/item/weapon/reagent_containers/food/snacks/cheesewedge)) - new /obj/item/weapon/reagent_containers/food/snacks/cheeseburger(src) - user << "You make a cheeseburger." - del(W) - del(src) - return - else - ..() - -// Human Burger + cheese wedge = cheeseburger -/obj/item/weapon/reagent_containers/food/snacks/human/burger/attackby(obj/item/weapon/reagent_containers/food/snacks/cheesewedge/W as obj, mob/user as mob) - if(istype(W)) - new /obj/item/weapon/reagent_containers/food/snacks/cheeseburger(src) - user << "You make a cheeseburger." - del(W) - del(src) - return - else - ..() + bitesize = 3 /obj/item/weapon/reagent_containers/food/snacks/taco name = "taco" diff --git a/data/investigate/gravity.html b/data/investigate/gravity.html index 0ac64df4..04e26d92 100644 --- a/data/investigate/gravity.html +++ b/data/investigate/gravity.html @@ -1,2 +1,2 @@ -14:24 [0x2007784] (92,152,1) || the gravitational generator has regained power.
    -14:24 [0x2007784] (92,152,1) || the gravitational generator is now charging.
    +02:02 [0x2007767] (92,152,1) || the gravitational generator has regained power.
    +02:02 [0x2007767] (92,152,1) || the gravitational generator is now charging.
    diff --git a/icons/obj/food.dmi b/icons/obj/food.dmi index 4866a35ec03433056ed82aff2ab6194646db3450..906e80c68d1a6bd9a75193890828610294d65df8 100644 GIT binary patch literal 118145 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
      aS^wgPhZ|6A;4JI}w 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 Od`XKdh*gUi1^z#>`j~+L literal 92113 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

      }d?J#`0Kpn#W-L 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 U#Bs4?00ew=Gz`>hRqbE@A37DmkpKVy diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index 9cccbfeb83bba31ae38b9cddb68d356c730367ae..439880c4285d32b8ec982b075e83a7f89ef3cf49 100644 GIT binary patch literal 25272 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

      N!=kB6GO^X(I0 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 literal 13396 zcmaKTbwE^a(C%5f5fJGT1tg_Q*cAi>lu#*YP)g~J4H{7aMG1*TK#-P}MnGDSmhN0S zmt}!__<^2eo>n+llo^rINI$jyV+tw>aU32?CF(F#$0 z=c)93a$mgjs`J;rH>%(e2JbbbXtjZ-eZVMvzz&}&G5?#lodqLY`U zh2HAO+xGYR6+GItSV(?Bw1+7;ngW7MQPA}z5ZXG zO;;38?Tx6W-j9nV9ekoi85#?N$L}?k7^un;C8N^&c2_5BMmu`$bM^5bQA=K+UIczO z)B*r*K=Z-sBNF5OOnWfsolT z)Ih5Kc~N7x7`)O@#BhSb_`4hV6S{DM%w_*u4iHT;dV;VY%w%n^Z+)a5#|sR4%|Lzn z-Fze@70W&C>}BQAn2A?*_Vz1*c6K{~+ny`EHO}GT;d5?sY4Mn0#FVA60DH;z-N4mQ zQmW>EQ)VemlMLt6lPBF5%8nab`AwyRCrnwm)Hyy8k;gwKw|L-i0}cRKT3wyg($Wem zEEJv|Iu8#I86a2z5Ba#x3T5Zm&p+}f@4ODEzhmZ60M>U-PfvRfi|!$G+&(5G@I8C> zEJHg{)R5`-HJM7m=8chp-%z)Kud2+S(?oQ>37n^+(L2?VsXk-E)`P>75TLGlhj9n% z`$)K%3El7wn>J%NnVWJxT8+cX{~{Mh0BeKav>#epKBhz2M{DfwhgD)myEuPL?NmTc zTeI`3vwZdGa!Sl!_4M~^Y(K4Oi8}1EcsbbsF9Ck?qG)xHs1{vHXW+-t2aN}-)+-u(?}y@p4Yb)zy{#U=z4s0+=--94oyI@L30v`ZB{sNc2CC)m;VkHl|m)ATcL z{DL}ZBe?D4xU5d02n%GGZYm!=j=UP72O-ZsR9+%mfo2pkBwK3z?hs*8?^nt#ySxUD z#_emH7yMyaYhGN)X8&w{F%S`&ghy;8$QBl>J@SW!i;V9U)W4C#HHlKOaouLcT|M1; zG0W``X^x%Vyq~ji7SgyVcDC%sE+nF={WNR#%(T=dJnqXEihXiE{$}gYZ9&xFwDdI| zU#EZ@+viKw7CkxB(%Jwj5PB-|WT^bnP~+*Z>emNGscKFW)!6#Z^EBbhda{R)&u+{@ z-ObE69ij%H^5=ZLY_o*gqwM#!pYr;k$vXBKxo`%2xkGP${*>EW^inWkQq0b1y^IOz zS8uio2|K--;fgvta%u)Ax=_SVTN_B95&ZUr3!`p!?xN9+HTuPprlq#!h=8A8p5MKb zH4?WsbnEu*ulf1WYWm6aY;3Q*=~Os>lc7c=Un5V-n||p111I@kAnEi`KU_|jZK`J5W+%qiWWcaKPlIwet!JR1FLmH#Rnsw&IDi6$GEJ+op70A)X<5D+y> zZl^?y9WiwsucB=X>B97gD{l&1n0s6w=!mu5$9cTw3LkN=0&XT#b@)5^jk_761r$)3 zs*wOQl1BG9i^*~le%D!u)6YRcIjPFPjBkv@>X~H#zLg#M8~HvZywtqT=7}kr1r25E z$fvXVs+aC~C!!WCdE3vBKb;|!W?v(61W_|?6TSQd+1s=>o+tNTQ^qM1>jmgP6dPQW z-yK*@8Xk>!Y+ko8^5gE*$q7d%{_)qM!|IxlDV#8Q_MWGL^8Hy7m@4P#o%=?Fy@IMt zUiVFlC`og5HIz_Ojza*TySzeC!El$b;9Zlc>?w&(0r{v$I6coY;P9W&ezWG(dW%m) zCbz$QyBs1GiwytzqJ!p;iRjbjzhI_`iMH849t8Nle(}&acVMYF9e;E;=&o~t@d^Jy zmnALXTnxdxddT;7H04yorG>*Q)zMFP094_fr@J1;Nn<;O^X*(gUSTHyihGAl3PeMT z`Frc6uy-7mfhAlFBedYuyQgSAb+sQQ(?~x_l;bV^S;dH)DkVIJT#fInuiyMx$mSAN zN)>oZ%tGpE)DBC80oUh+K2u&1@e52bWnYu#j|8DlWN*kacp7fRf9c5dU7(he#R&xP z&!9+*L|Dx#EAKJVP@hhfcGYr!W$r#I5hRkVL>C(e9U?@Q~!z zzg`yt;4u6NYCTE`w~|me72r%PS-J|$T(Acs&EVoqlC}xdi~SDQ$n91BLm|RZ^gQ2Th={0u5oa@ zZ*Nzh`Ut%ankynU>+kxYp zimGdGi~f|n6Z3_c9(UNcT**7CCeF72tA|ZJavN*G)_ad3lxMG;oaVd~1|}w)sy>Mp z3XXy39=^NlHas>aIW|*j8_8YW5AHrtQ{x#6n_pIGfn13gN$JCLx^9hKD6gJs*KzM? zBM6#0X1isZR43LH}8wH^JL>nA2|nOt68JM*~_qvXzBHQ)Nz_wsH=Hj!^ag}5_Ow&l8#Rcu=v zA`t?_;HpqE*gZ0s1ry-8wd+OenpznBv-a-_K9ZrDpktT$&E3 zBY$`-DEZKOTMUO{*qx_2|3Yf1txk>`9E`Wj(Ol`?gfX9j_z|P;OhdU44}a|zvel2i zGB)oiEkk(en9K7bC5Wqo>?d(F;{dBYUOGjfiFyO2g6X% zt>$I&is^~id(HQjVnszoa&Vl~b5qlKkDB^MMRuBssw$iAPj@D60!YikanP?4sK4LO z#RJ7kOX8qd5rM~m*XTufLS@AbW&I%$68pn$v%H!3#Gez9I#hncXG;drfKAy*k6CEDY2c0D|rRx;y33+z7#P}oLW zhMlc4%^%!6NeMxpd-KxVOAM1dPT4z_6jzA-mr@j2O!E5x&Izd)`_tWRQ#?H}5zVO- zz>LF&=EwjAv&7u`sIfAq>Ul2Ff8iJCcTcAysMvH?azWSomzBCu$gy>@zs<^AGevG9 zcJNh`EEJpIJe@-jT(~1<$fiUc3rt|X&_RIaqcJwNrVkZ7YdmXgkk71#H2m8wQ5#*` zWZYd1udm$7m7X6~%Ud3OmUFu1PV}5dy~z8!Sit$^I?x(&kPGbB0+YGG!D_#3ee8I- zeO9UdtlzchH}^TadKmUsdc_Zw&*mV6KU`W#u#(1Wy#D?z-zE}#x|9LmMQ%sZHMEq@ zBMOyEohr;oN!{2P@O%ev$c4OH>b3qP_?`>}-~ZS&alh1B-y4e;9KiXi?8kAtqm7Xe zs5

      @^V^muUJ&ttX5R)gl&9#tY3K7bT)r+)r~++krZ};7mk0vEhc=uf;IS=r7k=z zVx})jneuSWQ!e;{v@CaI>-s+;Zw+pmNL$e<2pHosZv%3vI#j*@yAFSZB0!VN(8>Ws z4!xPDLA9>82{cmf{1R_@8sw5@muW#^DdmQ zG2q_xK<2=c?$E=%u1)>q*pOUKfrCa7S&n(S;P&jrf{#1AcbQaKhx&F*|V7zz)#$ zHypUEw1ioT1dvGbUtGVe_4qdJY6kT?DiDgf5+?I&>`!mzi?jJti>Awy)&qTWccM3h z#cGu6t?JmK%UJZ|_Wp~~o*moIp_o8SPZi{u5&H+z*USt4!!(=#1$6ceC?9>lSQ6u1 zIIB?1tP|YhLTq?gF#U4Um2F%4b3%NOks!3l(zh$mxNjqxSFUDPEeK*2XOH;XohZeX zOCNBF9Doexk}vJ`C;(5OyOFC*y&tF3@yVjY!#9hK3Kx!#=V$#^OV{PoanaV!j77J)@SUt zG5WoS$!SP{#S{;{OcXUAtS~RJXsB;QH7oeZ^&zU79mckoZ8n|o62Cv%xvJZNzmar|NvTMvv}3K$R&;jut&!Ma z{cDRxEo0`_0FoPw5TGSGx_)JS7X1CD2bf!GVJZ~~#kFGUFPw)P$xZ@u48{xS;>C4R z+o{uIl*bDO_yeU~PUJ|la8fT1`glcoZ_FR`y}hh?;{v2zs|QA zE!2BGH@&Fc*P+5gt|XWG7FT+bnU(eX&iRL|DkBk`xkSS4qv7xR%*M~cI>{O4lJ4G5 zr4ruT{-9XdvRMSf{u%>u4N zm_IkLHqb6Fk~%#nvg!;xUp~5;f;Gi!z&LdF_gg0S)BR=%x~X_r|Wz>k|ph> zxTH>bU*+-BFWrP7j~tzPEH#>_su=+8S9nk_ElssS(=MhraKF4RgaifaQ&C^`*amVP z*`z7<0*{-;tqIss4u>yTPW$$;t?KUyzNGwKoK0z9J+YNWfKn%O^53O*iM&hJtO?|` zsBQkS*jkn|W=Fno=R+{pu(IqjH`)86H%Gn`0I>`|vwFt9E6&3kDmKnu6N0S3g1P!S z%`GF>`lC@(ai2}&-!CGaz6kFcp(A2|Pw$|7w(PiXmlM~|trRW^NvN*nGBPqcyncN> z*8@8^wlLQk9qr~cEFiTt9_qIdvlFKdNE{vinyk)p?B|^B5OXH{d9J4%t#n|nLpx^x24nqK44gu z#V*#g2UsDGOt92nQnJ8Y<}26Qf!GN)CW2YfokU7gQ`2Gx@_oHP8o0o&C@!Q`{23yF z-2~Rt&@n*g9@-3hGwwrhCON~k^(^)$%J@y~k~%p6AJ_1_{=i7|p8vsNraocvP z66cN>4k1Lv{=!?as>%NF{b_--HGip8EX7MMrP*!O1WSQgXJgCgQ82^Z(wwckT^x;Jp*cP9hCBg z*c^gN2ArfTed`AvGb>z-p5Wf9>u%$Uc8-{KT95~Yi5q#LYy*j$mrUt0K(jMmEq#6V z-cx!Avpj;24#j>k6|9q{5H4a`Z~C~Cw+aM5AB(Cv#5qMSbJHU9o zC;gH~b>a{I?b~mhfjZxv8;N7X!xckgrZI1Hl?2s8a=()SyD!9!!totETqQ$-bORRB?5?$^NVEO{-_;Zfr~E2YrMrED?v_I*^gM)F_9@#pkA1 z>P;sDo?S9E;2zxsrDSAmHvg5{Jb*#TGsd!xmUm5vcVQF20^?0!fojRh8-LR3?1jRcCp`d= z@vm1)l;QZLJAk{CDvSkMtOj^EjEr4}#3fiuh^2MU_Z+-(UTzYH)5pAaZ}O4|YPX!I z#4@yA9YMWHj|*3R19W;Kt}gwh0%h)l*3>0_{%qYD$Mdftu$mciElXER%O*!RvN@Z2 z?$aurB|cqg`+Kt_^<;U+IaYV@!uo+__v~Eb0l~hn_1tp}p4w{Vw~PF`koN2L3-^F` z!fK$|M)>7G-xN!_lg*e0vIDS5jQ-t1vSSil4sMEw%l!&7EwZ zRC1ex^(KjDnKQ4*xJ1Rkwq@^JtW}%tgbiU%m6H>7f(7_G#3Dyl(T(NWJNrbA=d+gZ zWN!n3-aDzj_x#W? zWEpFjnNG3h&n5Qk0$E0bs=u)=<}_Krac?}Pk?>xV)s4Q?p_wR~2bMj@945%#zou>8 z**!t`)d_0#o>J~V7e8k^?ZaWAfd?Gfke{b{8q&`FxXX?w;N^u!lkz}9|H87KqMy7o zZ%O;ch>@VG{XimybgsY^H5D-EytY#q3#EiZo5?-Pxc zBvpIpW!f?}bQFv_*$?LZA^)GS6T3;#JMUJ1M^tn)t=e^|^TQ*qI~yXQAC-|*o%3rM zKYtqQu@Y-`Py5ck7i+@PySux8FDN*eB*(8pFX@0Q_EhFcMBUD4f|Ao}Us^uyJ{QES z*6WQ)!mvd{fMX+otU23`?ZV^J6n8#fs3&|lTH86qE!BC+^B;0YjE#=2RN_0hkZmIc zM!$EKlp@j;eHXwLq3+`&L8D6 zn6CMoc4F8OW=wK&cB;nn+?`+?pt-{$R!Oron#Do>cP80Qh0q57=FOWgqb0?~5v}vh zGYx@zbD^|0ptN6j0hU%$z$-SY8N0XWezai_ba{TF{IqmZ7v0`_HZ3M3v@WC$7_MsY zw}U5UC5KF#5K1e3X+jR(1cQpzgXTdOeQC1aw?bcITx;Zi-M6vHT;Trhfl*+mF+Ves zz$?Sg7H+C4W_<7lg1dE#M`vq|N-U~sJXa-rRW6y zH_~n8pR=P%c!riU-lLf>=6F=+JZk<3qfhcMZw@7rWowlf5m)CwyeRR<+gm_#K#dtdY?cUjDIf16idm>?8xVu^2 z?-T>3FjmWTJB_wwTqdMeFA+X>YHDf(goPiNnXzwRF#493CH|%==H?t8o}S*a-EMNf z9{T&sx3spxOTI(Eu()@>ywxwWx4!<~Gebk0Pmfj%Ew3{&^4z{n{Q2|ei0*vY=>`G!bk1UbD}B1npE4?#O8gSP6ypterj!&^!V9;F~+z?n= zTA=`bl>E4Br7P#*IrSy{j3D=p#zeE(FGTl*1XxiZdKPPtlF(0v%C^!XtZzYnBSYQw zJM#fkkj=qw${fu?CG|J|>f90&qs5FC9h@Y29VFK6xTH0C@~7At=;XGod)airPprE& zxaQ|0x!S>H?cT3+l9cJa)Jf-s8GYZ?I3W)R?U!3N2C?}2`vX(sc9qu{8N>PcL>;Ql zL~ehis8c<6Zh+04k{ixm{hbqbf#xM1gmrt2LFD{O0B^6sZ(65Q6?$peO|VGWzlf3_ zd5GA@*!MQCY9}txG#@;JapVr&Q7mbD!?2ky@%J1n&yGx9SZ{UZJA4XQx)M5losP3& z$h)q(bO#2y$gPbFuY9{N9Y&2|&MYkdbob-65k{Hy_3X>b%L_r=d(4-&wu$5}o|u^2 zL0AOssg0;_z<4>DQ0kQwpkE`|9w$`%#0zvz&9B!l4ZbdT5^%T{{4`g`AD)<1TgwVs z@Au+j^;fS7{;_Fc6ek29EjR=0ynlHQA82UsDk!jm3^OoH{nzplhT^pv;&>H}oGGBm zJ-m)$h635&zWs8k<^|Iq0}aY4to+xoJoDh9-hLf!SAxNwCr_T#=M4JO{*a_KBfQzdFdh4`&`#W>$)!z91C;TlB0oP5>p=7)XU3EGJq@ z^iy7AVd;7>+XKO-&?@z#-v_}+h~C7;b`+b}?RG#f26h;**u_}Ncz#_Fg60TA-0(Ia z)K(RlR#Ob+>W));+(nQ9kroNu6^)6WXE+sENE`z}PH61;iG@@i|*}ySw@JLENb*nMs=4zhq=N1&~#;D>r|6*{_H~fg^LP4j) zl5e@8sos4AU!=L56pM{o`=1zJNkCV_JAB@0DIGP5WZ@G1>Tp@?o0!ER%>xc-2)=?d=VbG7*b< zW8=ou<(bg8gM&}l+zI5t=>*xAp(Uz&zR2wCYym?`>{Ec)B5+IE^u4_>fst)iu{(LT zW7qlVfv*qTve39xB_o&p5|j$EuTTc^SC^+?8kr$KL^rmIwV7>%M|ya8Jevd#L3Jy4 z{`sS3ZOyZ=u%HJ5wmk2v{{d|3Scl>9qh;g9pc?1Bh2I3{X*Cb|gB1blrR8PonR5?kS8@;Kn)Oe`2X>2+71Brai|Q>p1#r3{}(T&1(lPd|0+q2EphsK9ZRrgL8g42+E4_AoFofP{A2)}aDHkpZk2we!{B_+Nsb38_am4HwXeKK=$BGwU(i)6x2Io%@O=J~iso?#0=+DR< z#?4d%qBKaf+eAA^@63KUbaeXP!bv`jI4h1L$npDQy?hCxa%EqDhe%u*c&M!%I_;wI z{Q2|Tfn0G#0s!^zpD|b`0A?ZticA@dS(V43(?9GZ!0QDc4t-o-pDXuR)^bl*(<=M) z>3T_?*Uam}(M0+vG8A)@m}<7QHI^uIy@!rvV3nqsv^A1ewnFLcRD|7e9xX9kzBd|p zNGU(9r#@D+%nms>$6Oq(oq0S^Kdd3tv&QbugB6vNGaVxnlQ;9Nky)9UEjtoPEDI4K zjr4XJKmbSZ=s9tUG8g@$2ry7JyX%Ax>+aT)W2a%4_juqN?P<6(aHhx|If8R41nXJc zbN~hccwkvAOvw$WgZ~V!(!hf4(QreDoIwdTo|`vSs_Eh&^5E2$z8Vvq?pxgJ;9}y_ zO{a=%4UUeEjvE?lxvDaOQ7y@#w^dPu!zktb!Xtl1Sa?(v*){&TSV$ZktF5LM{#7Q- zyv`@QqEU>%8IKBb5IqU}zIH%{Y88iNSU_a7(f>m*lM*kxDTx0^KPSb#CVG*~rF8vB zQPB{MEI2Zumv9CG_Opi4czgY5Fdj8DYHDgPh1R%0L7qJBXdBRtGrvS(Qq&&G0Ux>2 zR={FznX77714)<7L%zhGW$C{QU_G~-@vvbOwCzDD1tE=O?wX5)^^`Z;g0LT9(8B#J zw!hG4=H_W4=5|%ZBdZ`+t8&c@seNdIMn0y2>0(t&diMLR3=v)&xXjXchyO6y#Omm@ z`Z;Mxr4-Ni+Uwe0`Kki1f%AQ;5Fj|m* zW>$JCf2(6Q?wE3vPD+rI+s4d_Ph6pbhmcx}RP>YS zm_T~P!*L*kUsA9uR`e(Xv9XxCD3u`MN2;kBC|H~#Rl)x;;oZz?|p7n zb0OZ9<-V9?nNiuOIIP@b`+J<04NUJ@F!#SBg)SIx8$dvWFVnP9 zDf&T!yr_i}bEek{oV_(j`E1xl((6g2ZKxFel5*zPM}ycerGaQ;j*I8!=XcKL=$7vN zkU4AlHMB33>ZwRl&i*SrbZ4Pmyr~)7US0X4@j|%(@WOt3nxu(UdphoR>nv4uz9mp@ zRqnlK%uqC4i2iU3QltrU+qlKDARj8F^h)MM$E{dHbACR5DNyx7>SXHrl$VwGVy5yE z%ikD_UBVdq&Rq%?Yh0wBPz5BdYl?}8REm5#%Ku?=;Avd8p)Zz| zdx?F47$`JK_KjZe9YKSB)pR9WHvH|`Z1cLgm;ft#4dJZZ`s0-`sHA7aoZxH-CFv|! zpRN^tp)3d|Il#E8AMr2U1Z=F7cT_@q#okV&p{1V}Ksn1Ke>FmMw2wMA5AIV5$Gvyc z`aXSXl2wT#Y~CW1m>sULe9D1hnWz1=;Wp$17x8M_pyi2+;CzRB{@3F|x`}FO-5~o; z#jX_WZrz&KiTWVL7RE&tT5OYyHZNjK6=l$dKZ%IdZKQ#XpT;R3HiRPnOsz>sN)jur z&J<#F73Q(EXM+t##ums*9hg_L@kYFa+0-Qo@N!i(GgH|Xz0DjN()~@-LJDJ02rlVO zt~k6n)1LqXPlOlp=qjlUZydZ()IQSK#%p}*M->FUb+R>khNBuPh7Kf#${-|*n^;EB z8D2mm2n_<#?E{mgef^@jB9TqF#vipf>+pG@ufxn5V5`B=31fJY_qmB76wgU7EGa3O za`8hjE*-yys)A;joQ_wrhH%0~er&&LCNO+C70VlZhTENfiwK!Y5Clr=SkoOxH`O87Q z)Zscp@AE%@jd;N@Q7<3ycZ5snY}A}MgBr~Y_x3*GDNFSs64vX972QhYT*Ge$|20xA z!r96M2N31^Trk`&Sth~ZNL4JUD>q^d@h*f9A3f^jqvik;jq$-K6mf88EN3tHvSlLN z*CzghO8Bo#5!gu*YLJAUKwe*%tLEAg2~2Ne@wJp`{s^v-d--WTg2?IN-SWdCt&#O6E{)__D1+f!z-a7<4hLO<5zHqI3Kb0z6eD;vnpb0 zVNzETeLuxDAbj3O({!;ye@KIx+sR@mzvq(i|1kT{%@^#zeN6b>1O24WxHOJ}{-zOJ zA-Oy$Ot1D@u)>}p#@DCtN`&&8U_CSVDDLUkoZ0dJpwRVG99Vj!=|K7gxczVKk-U2> zIF!Ru62QoNeWEG-GW6U>J!u#4r@<#Et9k51px^mEmE&GybGkjSFwz z5(2{`BVTiJNVF4#>3SO}O^f>J|HD4}yX)~1-+$TcMp}(jm*L#!nj!NMY%a~6A9x|a z!OEZ3$FkEzfL!3Q@J!&25&&~|7jHbn;F=Z`IaNQ8~uN4)~jGUxCW{BUu{addl>VgXprX#vO@%mrx50@DGTH5CL zbfPr%BXGH(CU;kQlS8T5Wac)<%cIqOjyFw!=2Usl-4P?p`Kn2mcyqDg!}DNfgolR& z&^+%(_Jlv93j#u6ru`q1wp+2sT7KM-1woXoeen0VF!|p7R#V1{{DHU>A-0K*>o>ln z%er$Fv(!$x7M9lH2!U8--1nlgvM0trtRP?jc72RZ)`h*+cSqD^NdNGNTRKSE%LpY zmAlasd#_H-#q3sd$6AN;o;tTRt2gblHzH<~Xsk_4lCgPtdA}~s&&0hqo~>|x9KBpk zL$>KEBkyJ4wAk4Cgx$P@>f`7BA?_C-&YA_3V>@(V}1QCMV?x^)`2Cl|`BtBhTM ztB!?Sp{VfUT4x%XnS+Oi2Li6+98A1olK~D@r3VGWIR_V)DtUIAJ$+FQ;x!L|iKg)_ zTL+#1+=8JCwe?G^>GS7KJ?;wOoTa4#&j$GW9FvB+?m^Gvb#iwj{}~IHkJrCTmqAEe z-m--^<2GWi+XQ)#ob*celQo@9?>susGX7SQ8-rZwWdZay>%V~vgO=tCpGGf{`I2#c zV7#eB;6+l`GWSceXTz%b(5D8YJR@1wH8taZ6Gh*CHZCe5mh6ZA0X6k!szDbF+uJ&jcK6?*8A1JlZ#If&{+p02uj=;M z^(rP1%(<00#Os^AYgBw$mry5GaKo*LP+zO3O>1^zBUa3%cAc*`UC9)Wz+?ANKCRRB z{*o5>GiZInIO0Om3hgf200!}pt6tn-&(%Jb#C4a8QLFWfXh3OI;bOXR{0lyQ0wUQQ!2i^XZNf)444nmVhh~087 zZTp4>$QtbK_lUJ_MnI)+cHpnaFI@EeRd#44MG;fpuo}rX$lSxcC-_8#?v-StfA_M_ z18H@HH+4k>h_r)|Yd}#%rvg+7(@65Q@8ghkqtX7a?$1KupM{JlB5AqW!HlBR>K6gf zoNrJ70F+Fk74KOj+hy!}nI}OSIA~i;TDmfAPgYiT(qWO*>mG5&BxLDs!G$g+-UqB4 zja~j`-<5D}`LNwNSQfXeMd-P<&hJ{;cpZm7%fB#|1~j=X$!y8RgIH~_n6Z*EZ&CR4 z-nU&Dfb08mWMX6DwKe?V|Mh*u;Mi@!grvfO#MSF_iT?}g3q+@0pRU!hmv48q%|(;hi39OK(d z+Ck106J&FvBgeMiq5k7D^Cm=t^Y&B?LGsvBJ|s0dqX!b_1T>36Yb?&eNrmXq zAWb$H77t!VNeNT;JHhV+D_=gTa-NJRwe6_FzrjEsBG2DWr``WE6dch+uSimdJs?nMQs;o^Zwkr=5vaKWq` z980lDn2uJKlXIIx0l-ksuJ!Q4b zsn@Rd!`PsajQ_7sNQDZwT~e)hHb4d3hQ{aLBiTojHh^qR%5!f5uzyJS?eBMMYYqi(o9CHZu9IdY z6g?Ar|Ngy$g9FUgHft|L{FacAHb@=m2(%1C{s*DuK9xfCVcOc1Zx`I<*vTKUqdwr5 zoUVdz&`;3plPAc|Z2Hs{m6p;i*;Y@6W}30bSWw9WB43qRs^2vpXf*CctO#UOR1A*} z4$@1t>vF62zeh84V@E1nq@XqMZvb?V8~D)+2eT_P~8R+Lf% zvQE3U%I$fb7uBi6gcw%k*<&iPUcfC!p1Hn9f|0{X%kLDybN}r7BQXEOvvYE8I<4uM zJ44uAv4H^l4S^~MbC<5mNw(w7Z09L5>n{3if+$vn>)0iRpD`S&Lqoa;BvLdTDidI- z)G>N}DctLN#*Oy)*|n*cRWEx0AO?Njn=^t9Jqk|&$%f!`k`S=NX&n5-;I&U3hc(DG zfV4cp?LX@oQFH*j<9}ho;2BNf4R zl+a>+tJklES=rd=3gU{Vgp18;Zn7)-PyyGtxME$VYl)wshf06aSjD4LhxfWTpx~Q< zLNlnsk(Sn)+S-J`;npORPu+BX!;g-2ubaZc!gJnxU>iFX=RIa%7c5edrr9oq-57(k zAH*}*>OOuP?mRBxtHfpXq+^v1CF||&Jx2#bGJ@y#<8wjnFx}HZoMo^Wd4= zHf&duExdz$0#dDyL0%ASGY7xW@FQv#fA>{i<~83Gh%jW$Dd3n_qJV_m3LVgKH-a6; zoxXTL*38BUaWkerTzpOJNd(g+1nosmm^^@V&VSkvxc01pL`X=;*~G*|1?+Nw^^E-c z=TJ~kzyM^JR=eEy){* Date: Tue, 26 Aug 2014 11:52:02 +0100 Subject: [PATCH 04/23] Updates Cleaning files Change Log Changes to the cooler. Added missing html tags in logs --- Scopes Files/space_cooler.dm | 14 ++----------- code/game/gamemodes/game_mode.dm | 2 +- code/game/gamemodes/gameticker.dm | 2 +- code/game/objects/items/devices/scanners.dm | 6 +++--- code/modules/aurora/bluespacetech.dm | 15 +++++++++++++ code/modules/mob/living/carbon/carbon.dm | 4 ++-- code/modules/mob/living/carbon/human/human.dm | 6 +++--- .../mob/living/carbon/human/human_defense.dm | 2 +- code/modules/mob/login.dm | 4 ++-- html/changelog.html | 21 +++++++++++++++++++ 10 files changed, 51 insertions(+), 25 deletions(-) diff --git a/Scopes Files/space_cooler.dm b/Scopes Files/space_cooler.dm index a2eb1369..7a7e9aef 100644 --- a/Scopes Files/space_cooler.dm +++ b/Scopes Files/space_cooler.dm @@ -17,7 +17,7 @@ var/on = 0 var/open = 0 var/set_temperature = 20 // in celcius, add T0C for kelvin - var/cooling_power = 40000 + var/cooling_power = 10000 flags = FPRINT @@ -179,32 +179,22 @@ if(env.temperature != set_temperature + T0C) var/transfer_moles = 0.25 * env.total_moles() - var/datum/gas_mixture/removed = env.remove(transfer_moles) - //world << "got [transfer_moles] moles at [removed.temperature]" - if(removed) - var/heat_capacity = removed.heat_capacity() - //world << "heating ([heat_capacity])" if(heat_capacity) // Added check to avoid divide by zero (oshi-) runtime errors -- TLE if(removed.temperature > set_temperature + T0C) removed.temperature = min(removed.temperature - cooling_power/heat_capacity, TCMB) // Added min() check to try and avoid wacky superheating issues in low gas scenarios -- TLE else removed.temperature = max(removed.temperature + cooling_power/heat_capacity, 1000) - cell.use(cooling_power/20000) - //world << "now at [removed.temperature]" + cell.use(cooling_power/1000) env.merge(removed) - //world << "turf now at [env.temperature]" - - else on = 0 update_icon() - return \ No newline at end of file diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index b9ac22bc..20b0ff79 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -417,7 +417,7 @@ Implants; //Reports player logouts// ////////////////////////// proc/display_roundstart_logout_report() - var/msg = "\blue Roundstart logout report\n\n" + var/msg = "\blue Roundstart logout report\n\n" for(var/mob/living/L in mob_list) if(L.ckey) diff --git a/code/game/gamemodes/gameticker.dm b/code/game/gamemodes/gameticker.dm index 55f503f5..071f2442 100644 --- a/code/game/gamemodes/gameticker.dm +++ b/code/game/gamemodes/gameticker.dm @@ -384,7 +384,7 @@ var/global/datum/controller/gameticker/ticker robo.laws.show_laws(world) if(dronecount) - world << "There [dronecount>1 ? "were" : "was"] [dronecount] industrious maintenance [dronecount>1 ? "drones" : "drone"] this round." + world << "There [dronecount>1 ? "were" : "was"] [dronecount] industrious maintenance [dronecount>1 ? "drones" : "drone"] this round." mode.declare_completion()//To declare normal completion. diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 877483d9..f7de7211 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -89,7 +89,7 @@ REAGENT SCANNER if (!(istype(usr, /mob/living/carbon/human) || ticker) && ticker.mode.name != "monkey") usr << "\red You don't have the dexterity to do this!" return - user.visible_message(" [user] has analyzed [M]'s vitals."," You have analyzed [M]'s vitals.") + user.visible_message(" [user] has analyzed [M]'s vitals."," You have analyzed [M]'s vitals.") var/fake_oxy = max(rand(1,40), M.getOxyLoss(), (300 - (M.getToxLoss() + M.getFireLoss() + M.getBruteLoss()))) var/OX = M.getOxyLoss() > 50 ? "[M.getOxyLoss()]" : M.getOxyLoss() var/TX = M.getToxLoss() > 50 ? "[M.getToxLoss()]" : M.getToxLoss() @@ -177,9 +177,9 @@ REAGENT SCANNER var/blood_type = M.dna.b_type blood_percent *= 100 if(blood_volume <= 500 && blood_volume > 336) - user.show_message("\red Warning: Blood Level LOW: [blood_percent]% [blood_volume]cl.\blue Type: [blood_type]") + user.show_message("\red Warning: Blood Level LOW: [blood_percent]% [blood_volume]cl.\blue Type: [blood_type]") else if(blood_volume <= 336) - user.show_message("\red Warning: Blood Level CRITICAL: [blood_percent]% [blood_volume]cl.\blue Type: [blood_type]") + user.show_message("\red Warning: Blood Level CRITICAL: [blood_percent]% [blood_volume]cl.\blue Type: [blood_type]") else user.show_message("\blue Blood Level Normal: [blood_percent]% [blood_volume]cl. Type: [blood_type]") user.show_message("\blue Subject's pulse: [H.get_pulse(GETPULSE_TOOL)] bpm.") diff --git a/code/modules/aurora/bluespacetech.dm b/code/modules/aurora/bluespacetech.dm index 34f631be..5c50b86e 100644 --- a/code/modules/aurora/bluespacetech.dm +++ b/code/modules/aurora/bluespacetech.dm @@ -60,6 +60,7 @@ bst.equip_to_slot_or_del(new /obj/item/weapon/storage/box/ids(bst.back), slot_in_backpack) bst.equip_to_slot_or_del(new /obj/item/device/t_scanner(bst.back), slot_in_backpack) bst.equip_to_slot_or_del(new /obj/item/device/signaltool(bst.back), slot_in_backpack) + bst.equip_to_slot_or_del(new /obj/item/device/pda/captain/bst(bst.back), slot_in_backpack) //Implant because access var/obj/item/weapon/implant/loyalty/L = new/obj/item/weapon/implant/loyalty(bst) @@ -260,5 +261,19 @@ else ..() +/obj/item/device/pda/captain/bst + hidden = 1 + silent = 1 +// ttone = "DO SOMETHING HERE" + + attack_hand() + if(!usr) + return + if(!istype(usr, /mob/living/carbon/human/bst)) + usr << "Your hand seems to go right through the pda. It's like it doesn't exist." + return + else + ..() + /mob/living/carbon/human/bst/restrained() return 0 \ No newline at end of file diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 746c5d0d..1df0e24a 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -204,8 +204,8 @@ src.sleeping = max(0,src.sleeping-5) if(src.sleeping == 0) src.resting = 0 - M.visible_message("[M] shakes [src] trying to wake [t_him] up!", \ - "You shake [src] trying to wake [t_him] up!") + M.visible_message("[M] shakes [src] trying to wake [t_him] up!", \ + "You shake [src] trying to wake [t_him] up!") else M.visible_message("[M] hugs [src] to make [t_him] feel better!", \ "You hug [src] to make [t_him] feel better!") diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 8b35a218..d043296d 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -891,13 +891,13 @@ if(!lastpuke) lastpuke = 1 - src << "You feel nauseous..." + src << "You feel nauseous..." spawn(150) //15 seconds until second warning - src << "You feel like you are about to throw up!" + src << "You feel like you are about to throw up!" spawn(100) //and you have 10 more for mad dash to the bucket Stun(5) - src.visible_message("[src] throws up!","You throw up!") + src.visible_message("[src] throws up!","You throw up!") playsound(loc, 'sound/effects/splat.ogg', 50, 1) var/turf/location = loc diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 9d22b72a..8130627d 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -196,7 +196,7 @@ emp_act if(user == src) // Attacking yourself can't miss target_zone = user.zone_sel.selecting if(!target_zone) - visible_message("\red [user] misses [src] with \the [I]!") + visible_message("\red [user] misses [src] with \the [I]!") return 0 var/datum/organ/external/affecting = get_organ(target_zone) diff --git a/code/modules/mob/login.dm b/code/modules/mob/login.dm index 3b88a13f..342dde47 100644 --- a/code/modules/mob/login.dm +++ b/code/modules/mob/login.dm @@ -17,10 +17,10 @@ spawn() alert("You have logged in already with another key this round, please log out of this one NOW or risk being banned!") if(matches) if(M.client) - message_admins("Notice: [key_name_admin(src)] has the same [matches] as [key_name_admin(M)].", 1) + message_admins("Notice: [key_name_admin(src)] has the same [matches] as [key_name_admin(M)].", 1) log_access("Notice: [key_name(src)] has the same [matches] as [key_name(M)].") else - message_admins("Notice: [key_name_admin(src)] has the same [matches] as [key_name_admin(M)] (no longer logged in). ", 1) + message_admins("Notice: [key_name_admin(src)] has the same [matches] as [key_name_admin(M)] (no longer logged in). ", 1) log_access("Notice: [key_name(src)] has the same [matches] as [key_name(M)] (no longer logged in).") /mob/Login() diff --git a/html/changelog.html b/html/changelog.html index 0791132a..42f826aa 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -56,6 +56,27 @@ should be listed in the changelog upon commit though. Thanks. --> +

      +

      26 August 2014

      +

      SoundScopes updated:

      +
        +
      • Cerealmaker
      • +
      • Foodgrill
      • +
      • Candy
      • +
      • Telebacon
      • +
      • You know what, a lot of food
      • +
      • Oven
      • +
      • Ice Machine
      • +
      • Eating monkey cubes now results in disaster and pain
      • +
      • Weapons embed themselves into wounds
      • +
      • Vamp objectives removed if objectives are toggled off
      • +
      • HTML tags in logs
      • +
      • Tossed Salad from microwave recipes
      • +
      • Law Giver settings
      • +
      +
      + +

      25 August 2014

      SoundScopes updated:

      From 19b1b972e5e8621d82997fcf5d35d63d6cf35897 Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Tue, 26 Aug 2014 11:55:28 +0100 Subject: [PATCH 05/23] Update changelog.html --- html/changelog.html | 2364 ++++++++++++++++++++++--------------------- 1 file changed, 1186 insertions(+), 1178 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index 42f826aa..0bfd9485 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -1,65 +1,73 @@ - - - - Baystation 12 Changelog - - - - - - - -
      - - - - -
      -
      Space Station 13
      -

      - Code licensed under GPLv3. Content licensed under CC BY-SA 3.0.

      -
      -
      Baystation 12 Credit List - - - - -
      - Code: Abi79, Aryn, Cael_Aislinn, Ccomp5950, Chinsky, cib, CompactNinja, DopeGhoti, Erthilo, Hawk_v3, Head, Ispil, JoeyJo0, Lexusjjss, Melonstorm, Miniature, Mloc, NerdyBoy1104, SkyMarshal, Snapshot, Spectre, Strumpetplaya, Sunfall, Tastyfish, Uristqwerty
      - Sprites: Apple_Master, Arcalane, Chinsky, CompactNinja, Deus Dactyl, Erthilo, Flashkirby, JoeyJo0, Miniature, Searif, Xenone, faux
      - Sounds: Aryn
      - Thanks To: /tg/ station, Goonstation, Animus Station, Daedalus, and original Spacestation 13 devs. Skibiliano for the IRC bot. -
      - - - - - - - - + + + + Baystation 12 Changelog + + + + + + + +
      + + + + +
      +
      Space Station 13
      +

      + Code licensed under GPLv3. Content licensed under CC BY-SA 3.0.

      +
      +
      Baystation 12 Credit List + + + + +
      + Code: Abi79, Aryn, Cael_Aislinn, Ccomp5950, Chinsky, cib, CompactNinja, DopeGhoti, Erthilo, Hawk_v3, Head, Ispil, JoeyJo0, Lexusjjss, Melonstorm, Miniature, Mloc, NerdyBoy1104, SkyMarshal, Snapshot, Spectre, Strumpetplaya, Sunfall, Tastyfish, Uristqwerty
      + Sprites: Apple_Master, Arcalane, Chinsky, CompactNinja, Deus Dactyl, Erthilo, Flashkirby, JoeyJo0, Miniature, Searif, Xenone, faux
      + Sounds: Aryn
      + Thanks To: /tg/ station, Goonstation, Animus Station, Daedalus, and original Spacestation 13 devs. Skibiliano for the IRC bot. +
      + + + + + + + + + + + + + + +

      26 August 2014

      SoundScopes updated:

        +
      • Hair torture
      • Cerealmaker
      • Foodgrill
      • Candy
      • @@ -194,7 +202,7 @@ should be listed in the changelog upon commit though. Thanks. -->
      • Added Developers under the "StaffWho" query
      - +

      12 June 2014

      @@ -204,7 +212,7 @@ should be listed in the changelog upon commit though. Thanks. -->
    1. An attempt at fixing Telecomms
    2. - +

      9 June 2014

      @@ -214,7 +222,7 @@ should be listed in the changelog upon commit though. Thanks. -->
    3. Fixed the "Bangs" hairstyle. No more cat-ears
    4. - +

      9 June 2014

      @@ -223,7 +231,7 @@ should be listed in the changelog upon commit though. Thanks. -->
    5. Took away the ability to talk on a headset when cuffed
    6. - +

      9 June 2014

      @@ -232,7 +240,7 @@ should be listed in the changelog upon commit though. Thanks. -->
    7. Implimented new Medical Bay design
    8. - +

      9 June 2014

      @@ -243,7 +251,7 @@ should be listed in the changelog upon commit though. Thanks. -->
    9. New EMT sprites, Console sprites and Chair Sprites.
    10. - +

      5 June 2014

      @@ -269,7 +277,7 @@ should be listed in the changelog upon commit though. Thanks. -->
    11. No longer emptying other people's pockets when they are not full yet
    12. - +

      6 Mai 2014

      @@ -279,8 +287,8 @@ should be listed in the changelog upon commit though. Thanks. -->
    13. Adds icons for copied stamps
    14. - - + +

      25 April 2014

      @@ -302,26 +310,26 @@ should be listed in the changelog upon commit though. Thanks. -->
      -
      -

      11 April 2014

      -

      Jarcolr updated:

      -
      • You can now flip coins like a D2
      • -
      • Miscellaneous cargo crates got a tiny buff, Standard Costume crate is now Costume Crate
      • -
      • Grammar patch,telekinesis/amputated arm exploit fixes,more in the future
      • -
      • Grille kicking now does less damage
      • -
      • TELESCOPIC baton no longer knocks anybody down,still got a lot of force though
      • -
      • Other small-ish changes and fixes that aren't worth mentioning
      - - - -
      -

      6 April 2014

      -

      RavingManiac updated:

      -
        -
      • Tape recorders and station-bounced radios now work inside containers and closets.
      • -
      -
      - +
      +

      11 April 2014

      +

      Jarcolr updated:

      +
      • You can now flip coins like a D2
      • +
      • Miscellaneous cargo crates got a tiny buff, Standard Costume crate is now Costume Crate
      • +
      • Grammar patch,telekinesis/amputated arm exploit fixes,more in the future
      • +
      • Grille kicking now does less damage
      • +
      • TELESCOPIC baton no longer knocks anybody down,still got a lot of force though
      • +
      • Other small-ish changes and fixes that aren't worth mentioning
      + + + +
      +

      6 April 2014

      +

      RavingManiac updated:

      +
        +
      • Tape recorders and station-bounced radios now work inside containers and closets.
      • +
      +
      +

      30 March 2014

      RavingManiac updated:

      @@ -330,1095 +338,1095 @@ should be listed in the changelog upon commit though. Thanks. -->
      -
      -

      10 March 2014

      -

      Chinsky updated:

      -
        -
      • Viruses now affect certain range of species, different for each virus
      • -
      • Spaceacilline now prevents infection, and has a small chance to cure viruses at Stage 1. It does not give them antibodies though, so they can get sick again!
      • -
      • Biosuits and spacesuits now offer more protection against viruses. Full biosuit competely prevents airborne infection, when coupled with gloves they both protect quite well from contact ones
      • -
      • Sneezing now spreads viruses in front of mob. Sometimes he gets a warning beforehand though
      • -
      -
      - -
      -

      5 March 2014

      -

      RavingManiac updated:

      -
        -
      • Smartfridges added to the bar, chemistry and virology. No more clutter!
      • -
      • A certain musical instrument has returned to the bar.
      • -
      • There is now a ten second delay between ingesting a pill/donut/milkshake and regretting it.
      • -
      -
      - -
      -

      1 March 2014

      -

      Various updated:

      -
        -
      • Paint Mixing, red and blue makes purple!
      • -
      • New posters to tell you to respect those darned cat people
      • -
      • NanoUI for APC's, Canisters, Tank Transfer Valves and the heaters / coolers
      • -
      • PDA bombs are now less annoying, and won't always blow up / cause internal bleeding
      • -
      • Blob made less deadly
      • -
      • Objectiveless Antags now a configuration option, choose your own adventure!
      • -
      • Engineering redesign, now with better monitoring of the explodium supermatter!
      • -
      • Security EOD
      • -
      • New playable race, IPC's, go beep boop boop all over the station!
      • -
      • Gamemode autovoting, now players don't have to call for gamemode votes, it's automatic!
      • -
      -
      - -
      -

      19 February 2014

      -

      Aryn updated:

      -
        -
      • New air model. Nothing should change to a great degree, but temperature flow might be affected due to closed connections not sticking around.
      • -
      -
      - -
      -

      1 February 2014

      -

      Various updated:

      -
        -
      • NanoUI for PDA
      • -
      • Write in blood while a ghost in cult rounds with enough cultists
      • -
      • Cookies, absurd sandwiches, and even cookable dioanae nymphs!
      • -
      • A bunch of new guns and other weapons
      • -
      • Species specific blood
      • -
      -
      - -
      -

      1 January 2014

      -

      Various updated:

      -
        -
      • AntagHUD and MedicalHUD for ghosts, see who the baddies are, check for new configuration options.
      • -
      • Ghosts will now have bold text if they are in the same room as the person making conversations easier to follow.
      • -
      • New hairstyles! Now you can use something other then hotpink floor length braid.
      • -
      • DNA rework, tell us how you were cloned and became albino!
      • -
      • Dirty floors, so now you know exactly how lazy the janitors are!
      • -
      • A new UI system, feel free to color it yourself, don't set it to completely clear or you will have a bad time.
      • -
      • Cryogenic storage, for all your SSD needs.
      • -
      • New hardsuits for those syndicate tajaran
      • -
      -
      - -
      -

      18 December 2013

      -

      RavingManiac updated:

      -
        -
      • Mousetraps can now be "hidden" through the right-click menu. This makes them go under tables, clutter and the like. The filthy rodents will never see it coming!
      • -
      • Monkeys will no longer move randomly while being pulled.
      • -
      -
      - -
      -

      1 December 2013

      -

      Various Developers banged their keyboards together:

      -
        -
      • New Engine, the supermatter, figure out what a cooling loop is, or don't and blow up engineering!
      • -
      • Each department will have it's own fax, make a copy of your butt and fax it to the admins!
      • -
      • Booze and soda dispensers, they are like chemmasters, only with booze and soda!
      • -
      • Bluespace and Cryostasis beakers, how do they work? Fuggin bluespace how do they work?
      • -
      • You can now shove things into vending machines, impress your friends on how things magically disappear out of your hands into the machine!
      • -
      • Robots and Androids (And gynoids too!) can now use custom job titles
      • -
      • Various bugfixes
      • -
      -
      - -
      -

      24 November 2013

      -

      Yinadele updated:

      -
        -
      • Supermatter engine added! Please treat your new engine gently, and report any strangeness!
      • -
      • Rebalanced events so people don't explode into appendicitis or have their organs constantly explode.
      • -
      • Vending machines have had bottled water, iced tea, and grape soda added.
      • -
      • Head reattachment surgery added! Sew heads back on proper rather than monkey madness.
      • -
      • Pain crit rebalanced - Added aim variance depending on pain levels, nerfed blackscreen severely.
      • -
      • Cyborg alt titles: Robot, and Android added! These will make you spawn as a posibrained robot. Please enjoy!
      • -
      • Fixed the sprite on the modified welding goggles, added a pair to the CE's office where they'll be used.
      • -
      • Fixed atmos computers- They are once again responsive!
      • -
      • Added in functionality proper for explosive implants- You can now set their level of detonation, and their effects are more responsively concrete depending on setting.
      • -
      • Hemostats re-added to autolathe!
      • -
      • Added two manuals on atmosia and EVA, by MagmaRam! Found in engineering and the engineering bookcase.
      • -
      • Fixed areas in medbay to have fully functional APC sectors.
      • -
      • Girders are now lasable.
      • -
      • Please wait warmly, new features planned for next merge!
      • -
      -
      - -
      -

      23 November 2013

      -

      Ccomp5950 updated:

      -
        -
      • Players are now no longer able to commit suicide with a lasertag gun, and will feel silly for doing so.
      • -
      • Ghosts hit with the cult book shall now actually become visible.
      • -
      • The powercells spawned with Exosuits will now properly be named to not confuse bearded roboticists.
      • -
      • Blindfolded players will now no longer require eye surgery to repair their sight, removing the blindfold will be sufficient.
      • -
      • Atmospheric Technicians will now have access to Exterior airlocks.
      • -
      -
      - -
      -

      1 November 2013

      -

      Various updated:

      -
        -
      • Autovoting, Get off the station when your 15 hour workweek is done, thanks unions!
      • -
      • Some beach props that Chinsky finds useless.
      • -
      • Updated NanoUI
      • -
      • Dialysis while in sleepers - removes reagents from mobs, like the chemist, toss him in there!
      • -
      • Pipe Dispensers can now be ordered by Cargo
      • -
      • Fancy G-G-G-G-Ghosts!
      • -
      -
      - -
      -

      29 October 2013

      -

      Cael_Aislinn updated:

      -
        -
      • Xenoarchaeology's chemical analysis and six analysis machines are gone, replaced by a single one which can be beaten in a minigame.
      • -
      • Sneaky traitors will find new challenges to overcome at the research outpost, but may also find new opportunities (transit tubes can now be traversed).
      • -
      • Finding active alien machinery should now be made significantly easier with the Alden-Saraspova counter.
      • -
      -
      - - -
      -

      06 October 2013

      -

      Chinsky updated:

      -
        -
      • Added contact-spread viruses. Spread if infected guy touches someone with bare hands, or if someone touches bare infected guy. Biosuits/gloves help.
      • -
      • Changed way airborne viruses spread a bit. Now 20% of breaths will carry viruses to adjacent tiles. Wearing sterile mask cuts down it to 5%. Masks, bio/space suits (only when worn with matching helmet) protect, internals protect completely.
      • -
      • Raised infection chances considerably. They were so low people reported that infection does not work. Now it's 50-90% chance for unprotected folks.
      • -
      • Blood puddles and mucus now spread the fun again
      • -
      -
      - - -
      -

      06 October 2013

      -

      Chinsky updated:

      -
        -
      • Return of dreaded side effects. They now manifest well after their cause disappears, so curing them should be possible without them reappearing immediately. They also lost last stage damaging effects.
      • -
      -
      - -
      -

      September 24th, 2013

      -

      Snapshot updated:

      -
        -
      • Removed hidden vote counts.
      • -
      • Removed hiding of vote results.
      • -
      • Removed OOC muting during votes.
      • -
      • Crew transfers are no longer callable during Red and Delta alert.
      • -
      • Started work on Auto transfer framework.
      • -
      -
      - -
      -

      18 September 2013

      -

      Kilakk updated:

      -
        -
      • Fax machines! The Captain and IA agents can use the fax machine to send properly formatted messages to Central Command.
      • -
      • Gave the fax machine a fancy animated sprite. Thanks Cajoes!
      • -
      -
      - -
      -

      August 8th, 2013

      -

      Erthilo updated:

      -
        -
      • Raise Dead rune now properly heals and revives dead corpse.
      • -
      • Admin-only rejuvenate verb now heals all organs, limbs, and diseases.
      • -
      • Cyborg sprites now correctly reset with reset boards. This means cyborg appearances can now be changed without admin intervention.
      • -
      -
      - -
      -

      2013/08/4

      -

      Chinsky updated:

      -
        -
      • Health HUD indicator replaced with Pain indicator. Now health indicator shows pain level instead of actual vitals level. Some types of damage contribute more to pain, some less, usually feeling worse than they really are.
      • -
      -
      - -
      -
      -

      2013/08/01

      -

      Chinsky updated:

      -
        -
      • Old new medical features:
      • -
      • Autoinjectors! They come preloaded with 5u of inapro, can be used instantly, and are one-use. You can replace chems inside using a syringe. Box of them is added to Medicine closet and medical supplies crate.
      • -
      • Splints! Target broken liimb and click on person to apply. Can be taken off in inventory menu, like handcuffs. Splinted limbs have less negative effects.
      • -
      • Advanced medikit! Red and mean, all doctors spawn with one. Contains better stuff - advanced versions of bandaids and aloe heal 12 damage on the first use.
      • -
      • Wounds with damage above 50 won't heal by themselves even if bandaged/salved. Would have to seek advanced medical attention for those.
      • -
      -
      - -
      -

      July 30th, 2013

      -

      Erthilo updated:

      -
        -
      • EFTPOS and ATM machines should now connect to databases.
      • -
      • Gravitational Catapults can now be removed from mechs.
      • -
      • Ghost manifest rune paper naming now works correctly.
      • -
      • Fix for newscaster special characters. Still not recommended.
      • -
      -
      - -
      -

      30.07.2013

      -

      Kilakk updated:

      -
        -
      • Added colored department radio channels.
      • -
      -
      - -
      -

      28.07.2013

      -

      Segrain updated:

      -
        -
      • Camera console circuits can be adjusted for different networks.
      • -
      • Nuclear operatives and ERT members have built-in cameras in their helmets. Activate helmet to initialize it.
      • -
      -
      - -
      -

      26.07.2013

      -

      Kilakk updated:

      -
        -
      • Brig cell timers will no longer start counting down automatically.
      • -
      • Separated the actual countdown timer from the timer controls. Pressing "Set" while the timer is counting down will reset the countdown timer to the time selected.
      • -
      -
      -
      -

      2013-11-07

      -

      Chinsky updated:

      -
        -
      • Gun delays. All guns now have delays between shots. Most have less than second, lasercannons and pulse rifles have around 2 seconds delay. Automatics have zero, click-speed.
      • -
      -
      -
      -

      2013/07/06

      -

      Chinsky updated:

      -
        -
      • Humans now can be infected with more than one virus at once.
      • -
      • All analyzed viruses are put into virus DB. You can view it and edit their name and description on medical record consoles.
      • -
      • Only known viruses (ones in DB) will be detected by the machinery and HUDs.
      • -
      • Viruses cause fever, body temperature rising the more stage is.
      • -
      • Humans' body temperature does not drift towards room one unless there's big difference in them.
      • -
      • Virus incubators now can transmit viuses from dishes to blood sample.
      • -
      • New machine - centrifuge. It can isolate antibodies or viruses (spawning virus dish) from a blood sample in vials. Accepts vials only.
      • -
      • Fancy vial boxes in virology, one of them is locked by ID with MD access.
      • -
      • Engineered viruses are now ariborne too.
      • -
      -
      -
      -

      05.07.2013

      -

      Spamcat updated:

      -
        -
      • Pulse! Humans now have hearbeat rate, which can be measured by right-clicking someone - Check pulse or by health analyzer. Medical machinery also has heartbeat monitors. Certain meds and conditions can influence it.
      • -
      -
      -
      -

      03.07.2013

      -

      Segrain updated:

      -
        -
      • Security and medical cyborgs can use their HUDs to access records.
      • -
      -
      -
      -

      June 28th, 2013

      -

      Segrain updated:

      -
        -
      • AIs are now able to examine what they see.
      • -
      -
      -
      -

      June 27th, 2013

      -

      Segrain updated:

      -
        -
      • ID cards properly setup bloodtype, DNA and fingerprints again.
      • -
      -
      -
      -

      June 26th, 2013

      -

      Whitellama updated:

      -
        -
      • One-antag rounds (like wizard/ninja) no longer end automatically upon death
      • -
      • Space ninja has been implemented as a voteable gamemode
      • -
      • Space ninja spawn landmarks have been implemented (but not yet placed on the map), still spawn at carps-pawns instead. (The code will warn you about this and ask you to report it, it's a known issue.)
      • -
      • Five new space ninja directives have been added, old directives have been reworded to be less harsh
      • -
      • Space ninjas have been given their own list as antagonists, and are no longer bundled up with traitors
      • -
      • Space ninjas with a "steal a functional AI" objective will now succeed by downloading one into their suits
      • -
      • Space ninja suits' exploding on death has been nerfed, so as not to cause breaches
      • -
      • A few space ninja titles/names have been added and removed to be slightly more believable
      • -
      • The antagonist selector no longer chooses jobbanned players when it runs out of willing options
      • -
      -
      -
      -

      June 26th, 2013

      -

      Segrain updated:

      -
        -
      • Autopsy scanner properly displays time of wound infliction and death.
      • -
      • Autopsy scanner properly displays wounds by projectile weapons.
      • -
      -
      -
      -

      June 23rd, 2013

      -

      Segrain updated:

      -
        -
      • Airlocks of various models can be constructed again.
      • -
      -
      - -
      -

      June 23rd, 2013

      -

      faux updated:

      -
        -
      • There has been a complete medbay renovation spearheaded by Vetinarix. http://baystation12.net/forums/viewtopic.php?f=20&t=7847 <-- Please put any commentary good or bad, here.
      • -
      • Some maintenance doors within RnD and Medbay have had their accesses changed. Maintenance doors in the joint areas (leading to the research shuttle, virology, and xenobiology) are now zero access. Which means anyone in those joints can enter the maintenance tunnels. This was done to add additional evacuation locations during radiation storms. Additional maintenance doors were added to the tunnels in these areas to prevent docs and scientists from running about.
      • -
      • Starboard emergency storage isn't gone now, it's simply located in the escape wing.
      • -
      • An engineering training room has been added to engineering. This location was previously where surgery was located. If you are new to engineering or need to brush up on your skills, please use this area for testing.
      • -
      -
      - -
      -

      June 22nd 2013

      -

      Cael_Aislinn updated:

      -
        -
      • The xenoarchaeology depth scanner will now tell you what energy field is required to safely extract a find.
      • -
      • Excavation picks will now dig faster, and xenoarchaeology as a whole should be easier to do.
      • -
      -
      - -
      -

      21.06.2013

      -

      Jupotter updated:

      -
        -
      • Fix the robotiscist preview in the char setupe screen
      • -
      -
      - -
      -

      18.06.2013

      -

      Segrain updated:

      -
        -
      • Fixed some bugs in windoor construction.
      • -
      • Secure windoors are made with rods again.
      • -
      • Windoors drop their electronics when broken. Emagged windoors can have theirs removed by crowbar.
      • -
      • Airlock electronics can be configured to make door open for any single access on it instead of all of them.
      • -
      • Cyborgs can preview their icons before choosing.
      • -
      -
      - -
      -

      13.06.2013

      -

      Kilakk updated:

      -
        -
      • Added the Xenobiologist job. Has access to the research hallway and to xenobiology.
      • -
      • Removed Xenobiology access from Scientists.
      • -
      • Removed the Xenobiologist alternate title from Scientists.
      • -
      • Added "Xenoarchaeology" to the RD, Scientists, and to the ID computer.
      • -
      • Changed the Research Outpost doors to use "Xenoarchaeology" access.
      • -
      -
      - -
      -

      6-13-13

      -

      Asanadas updated:

      -
        -
      • Added a whimsical suit to the head of personnel's secret clothing locker.
      • -
      -
      - -
      -

      12/06/2013

      -

      Zuhayr updated:

      -
        -
      • Added pneumatic cannon and harpoons.
      • -
      • Added embedded projectiles. Bullets and thrown weapons may stick in targets. Throwing them by hand won't make them stick, firing them from a cannon might. Implant removal surgery will get rid of shrapnel and stuck items.
      • -
      -
      - - -
      -

      6/11/13

      -

      Meyar updated:

      -
        -
      • Fixes a security door with a firedoor ontop of it.
      • -
      • Fixed a typo relating to the admin Select Equipment Verb. (It's RESPONSE team not RESCUE team)
      • -
      • ERT are now automated, from their spawn to their shuttle. Admin intervention no longer required! (Getting to the mechs still requires admin permission generally)
      • -
      • Added flashlights to compensate for the weakened PDA lights
      • -
      • ERT Uniforms updated to be in line with Centcom uniforms. No more turtlenecks, no sir.
      • -
      -
      - - -
      -

      09.06.2013

      -

      Segrain updated:

      -
        -
      • Emagged supply console can order SpecOp crates again.
      • -
      -
      - -
      -

      Meyar

      -

      6/6/13 updated:

      -
        -
      • Adds missing disposal pipes in chemistry
      • -
      -
      - -
      -

      05.06.2013

      -

      Segrain updated:

      -
        -
      • Exosuits now can open firelocks by walking into them.
      • -
      -
      - -
      -

      6/5/13

      -

      Meyar updated:

      -
        -
      • Departments SHOULD have access to adjacent maintinence tunnels incase of radstorm or nafarious dealings.
      • -
      • Fixed the northern EVA maintinence door.
      • -
      • Hand full of mapbugs.
      • -
      • MULES should be able to get to security now.
      • -
      • Nerfed PDA lights to a 3x3 area, makes the flashlight actually worthwhile.
      • -
      -
      - - -
      -

      6/4/13

      -

      Meyar updated:

      -
        -
      • Disposal's mail routing fixed. Missing pipes replaced.
      • -
      • Chemistry is once again a part of the disposals delivery circuit.
      • -
      • Added missing sorting junctions to Security and HoS office.
      • -
      • Fixed a duplicate sorting junction.
      • -
      -
      - - -
      -

      5.06.2013

      -

      Chinsky updated:

      -
        -
      • Load bearing equipment - webbings and vests for engineers and sec. Attach to jumpsuit, use 'Look in storage' verb (object tab) to open.
      • -
      -
      - - - - - - - - - - - - -
      -

      1.06.2013

      -

      Chinsky updated:

      -
        -
      • Bloody footprints! Now stepping in the puddle will dirty your shoes/feet and make you leave bloody footprints for a bit.
      • -
      • Blood now dries up after some time. Puddles take ~30 minutes, small things 5 minutes.
      • -
      • Untreated wounds now heal. No more toe stubs spamming you with pain messages for the rest of the shift.
      • -
      • On the other side, everything is healed slowly. Maximum you cna squeeze out of first aid is 0.5 health per tick per organ. Lying down makes it faster too, by 1.5x factor.
      • -
      • Lids! Click beaker/bottle in hand to put them on/off. Prevent spilling
      • -
      • Added 'hailer' to security lockers. If used in hand, says "Halt! Security!". For those who can't run and type.
      • -
      - -
      - -
      -

      31.05.2013

      -

      Segrain updated:

      -
        -
      • Portable canisters now properly connect to ports beneath them on map load.
      • -
      • Fixed unfastening gas meters.
      • -
      -
      - -
      -

      30th May 2013

      -

      proliberate updated:

      -
        -
      • Station time is now displayed in the status tab for new players and AIs.
      • -
      -
      - -
      -

      30.05.2013

      -

      Segrain updated:

      -
        -
      • Meteor showers actually spawn meteors now.
      • -
      • Engineering tape fits into toolbelt and can be placed on doors.
      • -
      • Pill bottles can hold paper.
      • -
      -
      - -
      -

      May 28th, 2013

      -

      VitrescentTortoise updated:

      -
        -
      • Wizard's forcewall now works.
      • -
      -
        -
      • Xenoarchaeology picksets can now hold everything they started with.
      • -
      -
      -
      -

      28th May 2013

      -

      Erthilo updated:

      -
        -
      • Fixes everyone being able to understand alien languages. HERE IS YOUR TOWER OF BABEL
      • -
      -
      - -
      -

      26th May 2013

      -

      Chinsky updated:

      -
        -
      • Tentacles! Now clone damage will make you horribly malformed like examine text says.
      • -
      -

      VitrescentTortoise updated:

      -
        -
      • Added a third option for not getting any job preferences. It allows you to return to the lobby instead of joining.
      • -
      -
      - -
      -

      5/26/2013

      -

      Meyar updated:

      -
        -
      • The syndicate shuttle now has a cycling airlock during Nuke rounds.
      • -
      • Restored the ability for the syndicate Agent ID to change the name on the card (reforge it) more than once.
      • -
      • ERT Radio now functional again.
      • -
      • Research blast doors now actually lock down the entirety of station-side Research.
      • -
      • Added lock down buttons to the wardens office.
      • -
      • The randomized barsign has made a return.
      • -
      • Syndicate Agent ID's external airlock access restored.
      • -
      -
      - -
      -

      25th May 2013

      -

      Erthilo updated:

      -
        -
      • Fixes alien races appearing an unknown when speaking their language.
      • -
      • Fixes alien races losing their language when cloned.
      • -
      • Fixes UI getting randomly reset when trying to change it in Genetics Scanners.
      • -
      -
      - -
      -

      21 May 2013

      -

      SkyMarshal updated:

      -
        -
      • ZAS will now speed air movement into/out of a zone when unsimulated tiles (e.g. space) are involved, in relation to the number of tiles.
      • -
      • Portable Canisters will now automatically connect to any portable connecter beneath them on map load.
      • -
      • Bug involving mis-mapped disposal junction fixed
      • -
      • Air alarms now work for atmos techs (whoops!)
      • -
      • The Master Controller now properly stops atmos when it runtimes.
      • -
      • Backpacks can no longer be contaminated
      • -
      • ZAS no longer logs air statistics.
      • -
      • ZAS now rebuilds as soon as it detects a semi-complex change in geometry. (It was doing this already, but in a convoluted way which was actually less efficient)
      • -
      • General code cleanup/commenting of ZAS
      • -
      • Jungle now initializes after the random Z-level loads and atmos initializes.
      • -
      -
      - -
      -

      May 18th, 2013

      -

      CIB updated:

      -
        -
      • A new event type: Wallrot. Use welder or plantbgone on infected walls.
      • -
      • Newscasters now can deliver preset news stories over the course of a round. See http://baystation12.net/forums/viewtopic.php?f=14&t=7619 to add your own!
      • -
      -
      - -
      -

      April 24, 2013

      -

      Jediluke69 updated:

      -
        -
      • Added 5 new drinks (Kira Special, Lemonade, Brown Star, Milkshakes, Rewriter)
      • -
      • Nanopaste now heals about half of what it used to
      • -
      • Ballistic crates should now come with shotguns loaded with actual shells no more beanbags
      • -
      • Iced tea no longer makes a glass of .what?
      • -
      -
      - -
      -

      April 24, 2013

      -

      faux updated:

      -
        -
      • Mixed Wardrobe Closet now has colored shoes and plaid skirts.
      • -
      • Dress uniforms added to the Captain, RD, and HoP wardrobe closets. A uniform jacket has also been added to the Captain's closet. HoS' hat has been re-added to their closet. I do not love the CMO and CE enough to give them anything.
      • -
      • Atheletic closet now has five different swimsuits *for the ladies* in them. If you are a guy, be prepared to be yelled at if you run around like a moron in one of these. Same goes for ladies who run around in shorts with their titties swaying in the space winds.
      • -
      • A set of dispatcher uniforms will spawn in the security closet. These are for playtesting the dispatcher role.
      • -
      • New suit spawns in the laundry room. It's for geezer's only. You're welcome, Book.
      • -
      • Nurse outfit variant, orderly uniform, and first responder jacket will now spawn in the medical wardrobe closet.
      • -
      • A white wedding dress will spawn in the chaplain's closet. There are also several dresses currently only adminspawnable. Admins: Look either under "bride" or "dress." The bride one leads to the colored wedding dresses, and there are some other kinds of dresses under dress.
      • -
      • No more luchador masks or boxing gloves or boxing ring. You guys have a swimming pool now, dip in and enjoy it.
      • -
      • he meeting hall has been replaced with an awkwardly placed security office meant for prisoner processing.
      • -
      • Added a couple more welding goggles to engineering since you guys liked those a lot.
      • -
      • Flasks spawn behind the bar. Only three. Don't fight over them. I don't know how to add them to the bar vending machine otherwise I would have done that instead. Detective, you have your own flask in your office, it's underneath the cigarettes on your desk.
      • -
      • Added two canes to the medical storage, for people who have leg injuries and can't walk good and stuff. I do not want to see doctors pretending to be House. These are for patients. Do not make me delete this addition and declare you guys not being able to have nice things.
      • -
      • Secondary entance to EVA now directly leads into the medbay hardsuit section. Sorry for any inconviences this will cause. The CMO can now fetch the hardsuits whenever they want.
      • -
      • Secondary security hardsuit has been added to the armory. Security members please stop stealing engineer's hardsuits when you guys want to pair up for space travel.
      • -
      • Firelocks have been moved around in the main hallways to form really ghetto versions of airlocks.
      • -
      • Violin spawns in theatre storage now. I didn't put the piano there though, that was someone else.
      • -
      • Psych office in medbay has been made better looking.
      • -
      -
      - -
      -

      24th April 2013

      -

      NerdyBoy1104 updated:

      -
        -
      • New Botany additions: Rice and Plastellium. New sheet material: Plastic.
      • -
      • Plastellium is refined into plastic by first grinding the produce to get plasticide. 20 plasticide + 10 polytrinic acid makes 10 sheets of plastic which can be used to make crates, forks, spoons, knives, ashtrays or plastic bags from.
      • -
      • Rice seeds grows into rice stalks that you grind to get rice. 10 Rice + 5 Water makes boiled rice, 10 rice + 5 milk makes rice pudding, 10 rice + 5 universal enzyme (in beaker) makes Sake.
      • -
      -
      - -
      -

      Spamcat

      -

      04.05.2013 updated:

      -
        -
      • Blood type is now saved in character creation menu, no need to edit it manually every round.
      • -
      -
      - -
      -

      17 April 2013

      -

      SkyMarshal updated:

      -
        -
      • ZAS is now more deadly, as per decision by administrative team. May be tweaked, but currently AIRFLOW is the biggest griefer.
      • -
      • World startup optimized, many functions now delayed until a player joins the server. (Reduces server boot time significantly)
      • -
      • Zones will now equalize air more rapidly.
      • -
      • ZAS now respects active magboots when airflow occurs.
      • -
      • Airflow will no longer throw you into doors and open them.
      • -
      • Race condition in zone construction has been fixed, so zones connect properly at round start.
      • -
      • Plasma effects readded.
      • -
      • Fixed runtime involving away mission.
      • -
      -
      - -
      -

      17 April 2013

      -

      SkyMarshal updated:

      -
        -
      • ZAS is now more deadly, as per decision by administrative team. May be tweaked, but currently AIRFLOW is the biggest griefer.
      • -
      • World startup optimized, many functions now delayed until a player joins the server. (Reduces server boot time significantly)
      • -
      • Zones will now equalize air more rapidly.
      • -
      • ZAS now respects active magboots when airflow occurs.
      • -
      • Airflow will no longer throw you into doors and open them.
      • -
      • Race condition in zone construction has been fixed, so zones connect properly at round start.
      • -
      • Plasma effects readded.
      • -
      • Fixed runtime involving away mission.
      • -
      -
      - -
      -

      30.04.2013

      -

      Spamcat updated:

      -
        -
      • Pill bottle capacity increased to 14 items.
      • -
      • Fixed Lamarr (it now spawns properly)
      • -
      -
      - -
      -

      15.04.2013

      -

      Spamcat updated:

      -
        -
      • Added telescopic batons to HoS's and captain's lockers. These are quite robust and easily concealable.
      • -
      -
      - -
      -

      May 14th 2013

      -

      Cael_Aislinn updated:

      -
        -
      • Depth scanners can now be used to determine what material archaeological deposits are made of, meaning lab analysis is no longer required.
      • -
      • Some useability issues with xenoarchaeology tools have been resolved, and the transit pods cycle automatically now.
      • -
      -
      - -
      -

      11 April 2013

      -

      SkyMarshal updated:

      -
        -
      • Fire has been reworked.
      • -
      • In-game variable editor is both readded and expanded with fire controlling capability.
      • -
      -
      - -
      -

      9 April 2013

      -

      SkyMarshal updated:

      -
        -
      • Fire Issues (Firedoors, Flamethrowers, Incendiary Grenades) fixed.
      • -
      • Fixed a bad line of code that was preventing autoignition of flammable gas mixes.
      • -
      • Volatile fuel is burned up after a point.
      • -
      • Partial-tile firedoors removed. This is due to ZAS breaking when interacting with them.
      • -
      -
      - -
      -

      4 April 2013

      -

      SkyMarshal updated:

      -
        -
      • Fixed ZAS
      • -
      • Fixed Fire
      • -
      -
      - -
      -

      March 27th 2013

      -

      Asanadas updated:

      -
        -
      • The Null Rod has recovered its de-culting ability, for balance reasons. Metagaming with it is a big no-no!
      • -
      • Holy Water as a liquid is able to de-cult. Less effective, but less bloody. May be changed over the course of time for balance.
      • -
      -
      - -
      -

      26.03.2013

      -

      Spamcat updated:

      -
        -
      • Chemmaster now puts pills in pill bottles (if one is inserted).
      • -
      • Stabbing someone with a syringe now deals 3 damage instead of 7 because 7 is like, a crowbar punch.
      • -
      • Lizards can now join mid-round again.
      • -
      • Chemicals in bloodstream will transfer with blood now, so don't get drunk before your blood donation. Viruses and antibodies transfer through blood too.
      • -
      • Virology is working again.
      • -
      -
      - -
      -

      March 15th 2013

      -

      Cael_Aislinn updated:

      -
        -
      • Mapped a compact research base on the mining asteroid, with multiple labs and testing rooms. It's reachable through a new (old) shuttle dock that leaves from the research wing on the main station.
      • -
      -
      - -
      -

      14.03.2013

      -

      Spamcat updated:

      -
        -
      • Figured I should make one of these. Syringestabbing now produces a broken syringe complete with fingerprints of attacker and blood of a victim, so dispose your evidence carefully. Maximum transfer amount per stab is lowered to 10.
      • -
      -
      - -
      -

      11/03/2013

      -

      Chinsky updated:

      -
        -
      • Sec HUDs now can see short versions of sec records.on examine. Med HUDs do same for medical records, and can set medical status of patient.
      • -
      • Damage to the head can now cause brain damage.
      • -
      -
      - -
      -

      March 11th 2013

      -

      CIB updated:

      -
        -
      • Cloning now requires you to put slabs of meat into the cloning pod to replenish biomass.
      • -
      -
      - -
      -

      March 11th 2013

      -

      Cael Aislinn updated:

      -
        -
      • The xenoarchaeology update is here. This includes a major content overhaul and a bunch of new features for xenoarchaeology.
      • -
      • Digsites (strange rock deposits) are now much more nuanced and interesting, and a huge number of minor (non-artifact) finds have been added.
      • -
      • Excavation is now a complex process that involves digging into the rock to the right depth.
      • -
      • Chemical analysis is required for safe excavation of the digsites, in order to determine how best to extract the finds.
      • -
      • Anomalous artifacts have been overhauled and many longstanding bugs with existing effects have been fixed - the anomaly utiliser should now work much more often.
      • -
      • Numerous new artifact effects have been added and some new artifact types can be dug up from the asteroid.
      • -
      • New tools and equipment have been added, including normal and spaceworthy versions of the anomaly suits, excavation tools and other neat gadgets.
      • -
      • Five books have been written by subject matter experts from around the galaxy to help the crew of the Exodus come to grips with this exacting new science (over 3000 words of tutorials!).
      • -
      -
      - -
      -

      March 9th 2013

      -

      Cael Aislinn updated:

      -
        -
      • Beekeeping is now possible. Construct an apiary of out wood and embed it into a hydroponics tray, then get a queen bee and bottle of BeezEez from cargo bay. - Hives produce honey and honeycomb, but be wary if the bees start swarming.
      • -
      -
      - -
      -

      March 6th 2013

      -

      Cael Aislinn updated:

      -
        -
      • Type 1 thermoelectric generators and the associated binary circulators are now moveable (wrench to secure/unsecure) and orderable via Quartermaster.
      • -
      • code/maps/rust_test.dmm contains an example setup for a functional RUST reactor. Maximum output is in the range of 12 to 20MW (12 to 20 million watts).
      • -
      • Removed double announcement for gridchecks, reduced duration of gridchecks.
      • -
      -

      RavingManiac updated:

      -
        -
      • You can now stab people with syringes using the "harm" intent. This destroys the syringe and transfers a random percentage of its contents into the target. Armor has a 50% chance of blocking the syringe.
      • -
      -
      - -
      -

      March 5th 2013

      -

      Cael Aislinn updated:

      -
        -
      • Set roundstart music to randomly choose between space.ogg and traitor.ogg (see http://baystation12.net/forums/viewtopic.php?f=5&t=6972)
      • -
      • All RUST components except for TEGs (which generate the power) are now obtainable ingame, bored engineers should get hold of them and setup an experimental reactor for testing purposes.
      • -
      -

      CIB updated:

      -
        -
      • Added internal organs. They're currently all located in the chest. Use advanced scanner to detect damage. Use the same surgery as for ruptured lungs to fix them.
      • -
      -
      - -
      -

      February 27th 2013

      -

      Gamerofthegame updated:

      -
        -
      • Added the (base gear) ERT preset for the debug command.
      • -
      • Map fixes, Virology hole fixed. Atmospheric fixes for mining and, to a less extent, the science outpost. (No, not cycling airlocks)
      • -
      • Fiddled with the ERT set up location on Centcom. Radmins will now have a even easier time equiping a team of any real pratical size, especially coupled with the above debug command.
      • -
      -
      - -
      -

      February 25th 2013

      -

      Cael Aislinn updated:

      -
        -
      • As well as building hull shield generators, normal shield gens can now be built (see http://baystation12.net/forums/viewtopic.php?f=1&t=6993).
      • -
      • New random events: multiple new system wide-events have been have been added to the newscaster feeds, some not quite as respectable as others.
      • -
      • New random event: some lucky winners will win the TC Daily Grand Slam Lotto, while others may be the target of malicious hackers.
      • -
      -
      - -
      -

      February 23rd 2013

      -

      Cael Aislinn updated:

      -
        -
      • Finances! Players spawn with an account, and money can be transferred between accounts, withdrawn/deposited at ATMs and charged to accounts via EFTPOS scanners.

        - All players start with 500-5000 credits, credits can no longer be merged and only credits can be deposited into ATMs - so shelter your illegitimately gotten gains in physical assets and remember that fraud is frowned upon!
      • -
      • Turrets are no longer noiseless as the grave. Listen for the sound of machinery in their proximity.
      • -
      -
      - -
      -

      February 23rd 2013

      -

      Cael Aislinn updated:

      -
        -
      • RUST machinery components should now be researchable (with high requirements) and orderable through QM (with high cost).
      • -
      • Shield machinery should now be researchable (with high requirements) and orderable through QM (with high cost). This one is reportedly buggy.
      • -
      • Rogue vending machines should revert back to normal at the end of the event.
      • -
      • New Unathi hair styles.
      • -
      -
      - -
      -

      22/02/2013

      -

      Chinsky updated:

      -
        -
      • Change to body cavity surgery. Can only put items in chest, groind and head. Max size for item - 3 (chest), 2 (groin), 1 (head). For chest surgery ribs should be bent open, (lung surgery until second scalpel step). Surgery step needs preparation step, with drill. After that you can place item inside, or seal it with cautery to do other step instead.
      • -
      -
      - -
      -

      February 18th 2013

      -

      Cael Aislinn updated:

      -
        -
      • All RUST components are now buildable/orderable, with very high requirements (except for the TEGs). Emitters have replaced gyrotrons, for now.
      • -
      • Fixed up shield generators and made them buildable, with circuits obtainable through RnD. Hull shield gens project along space tiles adjacent to the hull (must be adjacent to a space tile to work).
      • -
      -
      - -
      -

      20/02/2013

      -

      Chinsky updated:

      -
        -
      • Added new surgery: putting items inside people. After you use retractor to keep incision open, just click with any item to put it inside. But be wary, if you try to fit something too big, you might rip the veins. To remove items, use implant removal surgery.
      • -
      • Crowbar can be used as alternative to retractor.
      • -
      • Can now unload guns by clicking them in hand.
      • -
      • Fixed distance calculation in bullet missing chance computation, it was always assuming 1 or 0 tiles. Now distace REALLY matters when you shoot.
      • -
      • To add more FUN to previous thing, bullets missed to not disappear but keep going until they hit something else.
      • -
      • Compressed Matter and Explosive implants spawn properly now.
      • -
      • Tweaks to medical effects: removed itch caused by bandages. Chemical effects now have non-100 chance of appearing, the stronger medicine, the more probality it'll have side effects.
      • -
      -
      - -
      -

      February 18th 2013

      -

      Cael Aislinn updated:

      -
        -
      • Security bots will now target hostile mobs, and vice versa.
      • -
      • Carp should actually emigrate now, instead of just immigrating then squatting around the outer hull.
      • -
      • Admins and moderators have been split up into separate 'who' verbs (adminwho and modwho respectively).
      • -
      -
      - -
      -

      February 14th 2013

      -

      CIB updated:

      -
        -
      • Medical side-effects(patients are going to come back for secondary treatment)
      • -
      • NT loyalty setting(affects command reports and gives antags hints who might collaborate with them)
      • -
      • Simple animal balance fixes(They're slower now)
      • -
      -

      CaelAislinn updated:

      -
        -
      • Re-added old ion storm laws, re-added grid check event.
      • -
      • Added Rogue Drone and Vermin Infestation random events.
      • -
      • Added/fixed space vines random event.
      • -
      • Updates to the virus events.
      • -
      • Spider infestation and alien infestation events turned off by default.
      • -
      • Soghun, taj and skrell all have unique language text colours.
      • -
      • Moderators will no longer be listed in adminwho, instead use modwho.
      • -
      - -

      Gamerofthegame updated:

      -
        -
      • Miscellaneous mapfixes.
      • -
      -
      - -
      -

      February 13th 2013

      -

      Erthilo updated:

      -
        -
      • Fixed SSD (logged-out) players not staying asleep.
      • -
      • Fixed set-pose verb and mice emotes having extra periods.
      • -
      • Fixed virus crate not appearing and breaking supply shuttle.
      • -
      • Fixed newcaster photos not being censored.
      • -
      -
      - -
      -

      January 23rd

      -

      Cael_Aislinn updated:

      - -
      - -
      - - -

      1/31/2013

      -

      CIB updated:

      -
        -
      • Chilis and cold chilis no longer kill in small amounts
      • -
      • Chloral now again needs around 5 units to start killing somebody
      • -
      -
      - -
      -

      January 21st

      -

      Cael_Aislinn updated:

      -
        -
      • Satchels and ore boxes can now hold strange rocks.
      • -
      • Closets and crates can now be built out of 5 and 10 plasteel respectively.
      • -
      • Observers can become mice once more.
      • -
      -
      - -
      -

      13/01/2013

      -

      Chinsky updated:

      -
        -
      • If you get enough (6) blood drips on one tile, it'll turn into a blood puddle. Should make bleeding out more visible.
      • -
      • Security belt now able to hold taser, baton and tape roll.
      • -
      • Added alternative security uniform to Security wardrobes.
      • -
      • Ported Urist cult runes. Down with the crayon drawings! Example: http://dl.dropbox.com/u/26846767/images/SS13/255_symbols.PNG
      • -
      • Engineering tape now require engineer OR atmos access instead of both.
      • -
      • Implants now will react to EMP, possibly in !!FUN!! ways
      • -
      -
      - -

      1/13/2013

      -

      GauHelldragon updated:

      -
        -
      • Servicebots now have RoboTray and Printing Pen. Robotray can be used to pick up and drop food/drinks. Printing pen can alternate between writing mode and rename paper mode by clicking it.
      • -
      • Farmbots. A new type of robot that weeds, waters and fertilizes. Use robot arm on water tank. Then use plant analyzer, mini-hoe, bucket and finally proximity sensor.
      • -
      • Chefs can clang their serving trays with a rolling pin. Just like a riot shield!
      • -
      -
      - -
      -

      January 7th

      -

      Cael_Aislinn updated:

      - -
      - -
      -

      7/01/2013

      -

      Chinsky updated:

      -
        -
      • Implants: Explosvie implant, exploding when victim hears the codephrase you set.
      • -
      • Implants: Compressed Matter implat, scan item (making it disappear), inject yourself and recall that item on will!
      • -
      • Implant removal surgery, with !!FUN!! results if you mess up it.
      • -
      • Coats now have pockets again.
      • -
      • Bash people on tabetops. an windows, or with stools. Grab people to bash them on tables or windows (better grab for better hit on windows). Drag stool sprite on you to pick it up, click on it in hand to make it usual stool again.
      • -
      • Surgical caps, and new sprites for bloodbags and fixovein.
      • -
      • Now some surgery steps will bloody your hands, Full-body blood coat in case youy mess up spectacualry.
      • -
      • Ported some crates (Art, Surgery, Sterile equiplemnt).
      • -
      • Changed contraband crates. Posters moved to Art Crate, cigs and lipstick ot party crate. Now contraband crate has illegal booze and illicit drugs.
      • -
      • Finally got evac party lights
      • -
      • Now disfigurment,now it WILL happen when damage is bad enough.
      • -
      • Now if you speak in depressurized area (less than 10 kPa) only people next to you can hear you. Radios still work though.
      • -
      -
      - - - -/tg/ station 13 Development Team - - - - -
      - Coders: TLE, NEO, Errorage, muskets, veryinky, Skie, Noise, Numbers, Agouri, Noka, Urist McDorf, Uhangi, Darem, Mport, rastaf0, Doohl, Superxpdude, Rockdtben, ConstantA, Petethegoat, Kor, Polymorph, Carn, Nodrak, Donkie
      - Spriters: Agouri, Cheridan, Cruazy Guest, Deeaych, Deuryn, Matty406, Microwave, ShiftyEyesShady, Skie, Uhangi, Veyveyr, Petethegoat, Kor, Ricotez, Ausops, TankNut
      - Sounds: Skie, Lasty/Vinyl
      - Thanks to: CDK Station devs, GoonStation devs, the original SpaceStation developers and Invisty for the title image -
      - -Daedalus Development Team - - - - -
      - Coders: DopeGhoti, Sunfall, ThVortex
      - Artwork: Captain Hammer
      - Spriters: ((TODO.))
      - Sounds: Peter J, due, Erik Satie
      - Thanks to: All the dev teams that came before: BS12, /tg/station13, the Goons, and the original SS13 folks.
      -
      - -GoonStation 13 Development Team -
      - Coders: Stuntwaffle, Showtime, Pantaloons, Nannek, Keelin, Exadv1, hobnob, Justicefries, 0staf, sniperchance, AngriestIBM, BrianOBlivion
      - Spriters: Supernorn, Haruhi, Stuntwaffle, Pantaloons, Rho, SynthOrange, I Said No
      -
      -

      Creative Commons License
      This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
      Rights are currently extended to SomethingAwful Goons only.

      -

      Some icons by Yusuke Kamiyamane. All rights reserved. Licensed under a Creative Commons Attribution 3.0 License.

      -
      - - +
      +

      10 March 2014

      +

      Chinsky updated:

      +
        +
      • Viruses now affect certain range of species, different for each virus
      • +
      • Spaceacilline now prevents infection, and has a small chance to cure viruses at Stage 1. It does not give them antibodies though, so they can get sick again!
      • +
      • Biosuits and spacesuits now offer more protection against viruses. Full biosuit competely prevents airborne infection, when coupled with gloves they both protect quite well from contact ones
      • +
      • Sneezing now spreads viruses in front of mob. Sometimes he gets a warning beforehand though
      • +
      +
      + +
      +

      5 March 2014

      +

      RavingManiac updated:

      +
        +
      • Smartfridges added to the bar, chemistry and virology. No more clutter!
      • +
      • A certain musical instrument has returned to the bar.
      • +
      • There is now a ten second delay between ingesting a pill/donut/milkshake and regretting it.
      • +
      +
      + +
      +

      1 March 2014

      +

      Various updated:

      +
        +
      • Paint Mixing, red and blue makes purple!
      • +
      • New posters to tell you to respect those darned cat people
      • +
      • NanoUI for APC's, Canisters, Tank Transfer Valves and the heaters / coolers
      • +
      • PDA bombs are now less annoying, and won't always blow up / cause internal bleeding
      • +
      • Blob made less deadly
      • +
      • Objectiveless Antags now a configuration option, choose your own adventure!
      • +
      • Engineering redesign, now with better monitoring of the explodium supermatter!
      • +
      • Security EOD
      • +
      • New playable race, IPC's, go beep boop boop all over the station!
      • +
      • Gamemode autovoting, now players don't have to call for gamemode votes, it's automatic!
      • +
      +
      + +
      +

      19 February 2014

      +

      Aryn updated:

      +
        +
      • New air model. Nothing should change to a great degree, but temperature flow might be affected due to closed connections not sticking around.
      • +
      +
      + +
      +

      1 February 2014

      +

      Various updated:

      +
        +
      • NanoUI for PDA
      • +
      • Write in blood while a ghost in cult rounds with enough cultists
      • +
      • Cookies, absurd sandwiches, and even cookable dioanae nymphs!
      • +
      • A bunch of new guns and other weapons
      • +
      • Species specific blood
      • +
      +
      + +
      +

      1 January 2014

      +

      Various updated:

      +
        +
      • AntagHUD and MedicalHUD for ghosts, see who the baddies are, check for new configuration options.
      • +
      • Ghosts will now have bold text if they are in the same room as the person making conversations easier to follow.
      • +
      • New hairstyles! Now you can use something other then hotpink floor length braid.
      • +
      • DNA rework, tell us how you were cloned and became albino!
      • +
      • Dirty floors, so now you know exactly how lazy the janitors are!
      • +
      • A new UI system, feel free to color it yourself, don't set it to completely clear or you will have a bad time.
      • +
      • Cryogenic storage, for all your SSD needs.
      • +
      • New hardsuits for those syndicate tajaran
      • +
      +
      + +
      +

      18 December 2013

      +

      RavingManiac updated:

      +
        +
      • Mousetraps can now be "hidden" through the right-click menu. This makes them go under tables, clutter and the like. The filthy rodents will never see it coming!
      • +
      • Monkeys will no longer move randomly while being pulled.
      • +
      +
      + +
      +

      1 December 2013

      +

      Various Developers banged their keyboards together:

      +
        +
      • New Engine, the supermatter, figure out what a cooling loop is, or don't and blow up engineering!
      • +
      • Each department will have it's own fax, make a copy of your butt and fax it to the admins!
      • +
      • Booze and soda dispensers, they are like chemmasters, only with booze and soda!
      • +
      • Bluespace and Cryostasis beakers, how do they work? Fuggin bluespace how do they work?
      • +
      • You can now shove things into vending machines, impress your friends on how things magically disappear out of your hands into the machine!
      • +
      • Robots and Androids (And gynoids too!) can now use custom job titles
      • +
      • Various bugfixes
      • +
      +
      + +
      +

      24 November 2013

      +

      Yinadele updated:

      +
        +
      • Supermatter engine added! Please treat your new engine gently, and report any strangeness!
      • +
      • Rebalanced events so people don't explode into appendicitis or have their organs constantly explode.
      • +
      • Vending machines have had bottled water, iced tea, and grape soda added.
      • +
      • Head reattachment surgery added! Sew heads back on proper rather than monkey madness.
      • +
      • Pain crit rebalanced - Added aim variance depending on pain levels, nerfed blackscreen severely.
      • +
      • Cyborg alt titles: Robot, and Android added! These will make you spawn as a posibrained robot. Please enjoy!
      • +
      • Fixed the sprite on the modified welding goggles, added a pair to the CE's office where they'll be used.
      • +
      • Fixed atmos computers- They are once again responsive!
      • +
      • Added in functionality proper for explosive implants- You can now set their level of detonation, and their effects are more responsively concrete depending on setting.
      • +
      • Hemostats re-added to autolathe!
      • +
      • Added two manuals on atmosia and EVA, by MagmaRam! Found in engineering and the engineering bookcase.
      • +
      • Fixed areas in medbay to have fully functional APC sectors.
      • +
      • Girders are now lasable.
      • +
      • Please wait warmly, new features planned for next merge!
      • +
      +
      + +
      +

      23 November 2013

      +

      Ccomp5950 updated:

      +
        +
      • Players are now no longer able to commit suicide with a lasertag gun, and will feel silly for doing so.
      • +
      • Ghosts hit with the cult book shall now actually become visible.
      • +
      • The powercells spawned with Exosuits will now properly be named to not confuse bearded roboticists.
      • +
      • Blindfolded players will now no longer require eye surgery to repair their sight, removing the blindfold will be sufficient.
      • +
      • Atmospheric Technicians will now have access to Exterior airlocks.
      • +
      +
      + +
      +

      1 November 2013

      +

      Various updated:

      +
        +
      • Autovoting, Get off the station when your 15 hour workweek is done, thanks unions!
      • +
      • Some beach props that Chinsky finds useless.
      • +
      • Updated NanoUI
      • +
      • Dialysis while in sleepers - removes reagents from mobs, like the chemist, toss him in there!
      • +
      • Pipe Dispensers can now be ordered by Cargo
      • +
      • Fancy G-G-G-G-Ghosts!
      • +
      +
      + +
      +

      29 October 2013

      +

      Cael_Aislinn updated:

      +
        +
      • Xenoarchaeology's chemical analysis and six analysis machines are gone, replaced by a single one which can be beaten in a minigame.
      • +
      • Sneaky traitors will find new challenges to overcome at the research outpost, but may also find new opportunities (transit tubes can now be traversed).
      • +
      • Finding active alien machinery should now be made significantly easier with the Alden-Saraspova counter.
      • +
      +
      + + +
      +

      06 October 2013

      +

      Chinsky updated:

      +
        +
      • Added contact-spread viruses. Spread if infected guy touches someone with bare hands, or if someone touches bare infected guy. Biosuits/gloves help.
      • +
      • Changed way airborne viruses spread a bit. Now 20% of breaths will carry viruses to adjacent tiles. Wearing sterile mask cuts down it to 5%. Masks, bio/space suits (only when worn with matching helmet) protect, internals protect completely.
      • +
      • Raised infection chances considerably. They were so low people reported that infection does not work. Now it's 50-90% chance for unprotected folks.
      • +
      • Blood puddles and mucus now spread the fun again
      • +
      +
      + + +
      +

      06 October 2013

      +

      Chinsky updated:

      +
        +
      • Return of dreaded side effects. They now manifest well after their cause disappears, so curing them should be possible without them reappearing immediately. They also lost last stage damaging effects.
      • +
      +
      + +
      +

      September 24th, 2013

      +

      Snapshot updated:

      +
        +
      • Removed hidden vote counts.
      • +
      • Removed hiding of vote results.
      • +
      • Removed OOC muting during votes.
      • +
      • Crew transfers are no longer callable during Red and Delta alert.
      • +
      • Started work on Auto transfer framework.
      • +
      +
      + +
      +

      18 September 2013

      +

      Kilakk updated:

      +
        +
      • Fax machines! The Captain and IA agents can use the fax machine to send properly formatted messages to Central Command.
      • +
      • Gave the fax machine a fancy animated sprite. Thanks Cajoes!
      • +
      +
      + +
      +

      August 8th, 2013

      +

      Erthilo updated:

      +
        +
      • Raise Dead rune now properly heals and revives dead corpse.
      • +
      • Admin-only rejuvenate verb now heals all organs, limbs, and diseases.
      • +
      • Cyborg sprites now correctly reset with reset boards. This means cyborg appearances can now be changed without admin intervention.
      • +
      +
      + +
      +

      2013/08/4

      +

      Chinsky updated:

      +
        +
      • Health HUD indicator replaced with Pain indicator. Now health indicator shows pain level instead of actual vitals level. Some types of damage contribute more to pain, some less, usually feeling worse than they really are.
      • +
      +
      + +
      +
      +

      2013/08/01

      +

      Chinsky updated:

      +
        +
      • Old new medical features:
      • +
      • Autoinjectors! They come preloaded with 5u of inapro, can be used instantly, and are one-use. You can replace chems inside using a syringe. Box of them is added to Medicine closet and medical supplies crate.
      • +
      • Splints! Target broken liimb and click on person to apply. Can be taken off in inventory menu, like handcuffs. Splinted limbs have less negative effects.
      • +
      • Advanced medikit! Red and mean, all doctors spawn with one. Contains better stuff - advanced versions of bandaids and aloe heal 12 damage on the first use.
      • +
      • Wounds with damage above 50 won't heal by themselves even if bandaged/salved. Would have to seek advanced medical attention for those.
      • +
      +
      + +
      +

      July 30th, 2013

      +

      Erthilo updated:

      +
        +
      • EFTPOS and ATM machines should now connect to databases.
      • +
      • Gravitational Catapults can now be removed from mechs.
      • +
      • Ghost manifest rune paper naming now works correctly.
      • +
      • Fix for newscaster special characters. Still not recommended.
      • +
      +
      + +
      +

      30.07.2013

      +

      Kilakk updated:

      +
        +
      • Added colored department radio channels.
      • +
      +
      + +
      +

      28.07.2013

      +

      Segrain updated:

      +
        +
      • Camera console circuits can be adjusted for different networks.
      • +
      • Nuclear operatives and ERT members have built-in cameras in their helmets. Activate helmet to initialize it.
      • +
      +
      + +
      +

      26.07.2013

      +

      Kilakk updated:

      +
        +
      • Brig cell timers will no longer start counting down automatically.
      • +
      • Separated the actual countdown timer from the timer controls. Pressing "Set" while the timer is counting down will reset the countdown timer to the time selected.
      • +
      +
      +
      +

      2013-11-07

      +

      Chinsky updated:

      +
        +
      • Gun delays. All guns now have delays between shots. Most have less than second, lasercannons and pulse rifles have around 2 seconds delay. Automatics have zero, click-speed.
      • +
      +
      +
      +

      2013/07/06

      +

      Chinsky updated:

      +
        +
      • Humans now can be infected with more than one virus at once.
      • +
      • All analyzed viruses are put into virus DB. You can view it and edit their name and description on medical record consoles.
      • +
      • Only known viruses (ones in DB) will be detected by the machinery and HUDs.
      • +
      • Viruses cause fever, body temperature rising the more stage is.
      • +
      • Humans' body temperature does not drift towards room one unless there's big difference in them.
      • +
      • Virus incubators now can transmit viuses from dishes to blood sample.
      • +
      • New machine - centrifuge. It can isolate antibodies or viruses (spawning virus dish) from a blood sample in vials. Accepts vials only.
      • +
      • Fancy vial boxes in virology, one of them is locked by ID with MD access.
      • +
      • Engineered viruses are now ariborne too.
      • +
      +
      +
      +

      05.07.2013

      +

      Spamcat updated:

      +
        +
      • Pulse! Humans now have hearbeat rate, which can be measured by right-clicking someone - Check pulse or by health analyzer. Medical machinery also has heartbeat monitors. Certain meds and conditions can influence it.
      • +
      +
      +
      +

      03.07.2013

      +

      Segrain updated:

      +
        +
      • Security and medical cyborgs can use their HUDs to access records.
      • +
      +
      +
      +

      June 28th, 2013

      +

      Segrain updated:

      +
        +
      • AIs are now able to examine what they see.
      • +
      +
      +
      +

      June 27th, 2013

      +

      Segrain updated:

      +
        +
      • ID cards properly setup bloodtype, DNA and fingerprints again.
      • +
      +
      +
      +

      June 26th, 2013

      +

      Whitellama updated:

      +
        +
      • One-antag rounds (like wizard/ninja) no longer end automatically upon death
      • +
      • Space ninja has been implemented as a voteable gamemode
      • +
      • Space ninja spawn landmarks have been implemented (but not yet placed on the map), still spawn at carps-pawns instead. (The code will warn you about this and ask you to report it, it's a known issue.)
      • +
      • Five new space ninja directives have been added, old directives have been reworded to be less harsh
      • +
      • Space ninjas have been given their own list as antagonists, and are no longer bundled up with traitors
      • +
      • Space ninjas with a "steal a functional AI" objective will now succeed by downloading one into their suits
      • +
      • Space ninja suits' exploding on death has been nerfed, so as not to cause breaches
      • +
      • A few space ninja titles/names have been added and removed to be slightly more believable
      • +
      • The antagonist selector no longer chooses jobbanned players when it runs out of willing options
      • +
      +
      +
      +

      June 26th, 2013

      +

      Segrain updated:

      +
        +
      • Autopsy scanner properly displays time of wound infliction and death.
      • +
      • Autopsy scanner properly displays wounds by projectile weapons.
      • +
      +
      +
      +

      June 23rd, 2013

      +

      Segrain updated:

      +
        +
      • Airlocks of various models can be constructed again.
      • +
      +
      + +
      +

      June 23rd, 2013

      +

      faux updated:

      +
        +
      • There has been a complete medbay renovation spearheaded by Vetinarix. http://baystation12.net/forums/viewtopic.php?f=20&t=7847 <-- Please put any commentary good or bad, here.
      • +
      • Some maintenance doors within RnD and Medbay have had their accesses changed. Maintenance doors in the joint areas (leading to the research shuttle, virology, and xenobiology) are now zero access. Which means anyone in those joints can enter the maintenance tunnels. This was done to add additional evacuation locations during radiation storms. Additional maintenance doors were added to the tunnels in these areas to prevent docs and scientists from running about.
      • +
      • Starboard emergency storage isn't gone now, it's simply located in the escape wing.
      • +
      • An engineering training room has been added to engineering. This location was previously where surgery was located. If you are new to engineering or need to brush up on your skills, please use this area for testing.
      • +
      +
      + +
      +

      June 22nd 2013

      +

      Cael_Aislinn updated:

      +
        +
      • The xenoarchaeology depth scanner will now tell you what energy field is required to safely extract a find.
      • +
      • Excavation picks will now dig faster, and xenoarchaeology as a whole should be easier to do.
      • +
      +
      + +
      +

      21.06.2013

      +

      Jupotter updated:

      +
        +
      • Fix the robotiscist preview in the char setupe screen
      • +
      +
      + +
      +

      18.06.2013

      +

      Segrain updated:

      +
        +
      • Fixed some bugs in windoor construction.
      • +
      • Secure windoors are made with rods again.
      • +
      • Windoors drop their electronics when broken. Emagged windoors can have theirs removed by crowbar.
      • +
      • Airlock electronics can be configured to make door open for any single access on it instead of all of them.
      • +
      • Cyborgs can preview their icons before choosing.
      • +
      +
      + +
      +

      13.06.2013

      +

      Kilakk updated:

      +
        +
      • Added the Xenobiologist job. Has access to the research hallway and to xenobiology.
      • +
      • Removed Xenobiology access from Scientists.
      • +
      • Removed the Xenobiologist alternate title from Scientists.
      • +
      • Added "Xenoarchaeology" to the RD, Scientists, and to the ID computer.
      • +
      • Changed the Research Outpost doors to use "Xenoarchaeology" access.
      • +
      +
      + +
      +

      6-13-13

      +

      Asanadas updated:

      +
        +
      • Added a whimsical suit to the head of personnel's secret clothing locker.
      • +
      +
      + +
      +

      12/06/2013

      +

      Zuhayr updated:

      +
        +
      • Added pneumatic cannon and harpoons.
      • +
      • Added embedded projectiles. Bullets and thrown weapons may stick in targets. Throwing them by hand won't make them stick, firing them from a cannon might. Implant removal surgery will get rid of shrapnel and stuck items.
      • +
      +
      + + +
      +

      6/11/13

      +

      Meyar updated:

      +
        +
      • Fixes a security door with a firedoor ontop of it.
      • +
      • Fixed a typo relating to the admin Select Equipment Verb. (It's RESPONSE team not RESCUE team)
      • +
      • ERT are now automated, from their spawn to their shuttle. Admin intervention no longer required! (Getting to the mechs still requires admin permission generally)
      • +
      • Added flashlights to compensate for the weakened PDA lights
      • +
      • ERT Uniforms updated to be in line with Centcom uniforms. No more turtlenecks, no sir.
      • +
      +
      + + +
      +

      09.06.2013

      +

      Segrain updated:

      +
        +
      • Emagged supply console can order SpecOp crates again.
      • +
      +
      + +
      +

      Meyar

      +

      6/6/13 updated:

      +
        +
      • Adds missing disposal pipes in chemistry
      • +
      +
      + +
      +

      05.06.2013

      +

      Segrain updated:

      +
        +
      • Exosuits now can open firelocks by walking into them.
      • +
      +
      + +
      +

      6/5/13

      +

      Meyar updated:

      +
        +
      • Departments SHOULD have access to adjacent maintinence tunnels incase of radstorm or nafarious dealings.
      • +
      • Fixed the northern EVA maintinence door.
      • +
      • Hand full of mapbugs.
      • +
      • MULES should be able to get to security now.
      • +
      • Nerfed PDA lights to a 3x3 area, makes the flashlight actually worthwhile.
      • +
      +
      + + +
      +

      6/4/13

      +

      Meyar updated:

      +
        +
      • Disposal's mail routing fixed. Missing pipes replaced.
      • +
      • Chemistry is once again a part of the disposals delivery circuit.
      • +
      • Added missing sorting junctions to Security and HoS office.
      • +
      • Fixed a duplicate sorting junction.
      • +
      +
      + + +
      +

      5.06.2013

      +

      Chinsky updated:

      +
        +
      • Load bearing equipment - webbings and vests for engineers and sec. Attach to jumpsuit, use 'Look in storage' verb (object tab) to open.
      • +
      +
      + + + + + + + + + + + + +
      +

      1.06.2013

      +

      Chinsky updated:

      +
        +
      • Bloody footprints! Now stepping in the puddle will dirty your shoes/feet and make you leave bloody footprints for a bit.
      • +
      • Blood now dries up after some time. Puddles take ~30 minutes, small things 5 minutes.
      • +
      • Untreated wounds now heal. No more toe stubs spamming you with pain messages for the rest of the shift.
      • +
      • On the other side, everything is healed slowly. Maximum you cna squeeze out of first aid is 0.5 health per tick per organ. Lying down makes it faster too, by 1.5x factor.
      • +
      • Lids! Click beaker/bottle in hand to put them on/off. Prevent spilling
      • +
      • Added 'hailer' to security lockers. If used in hand, says "Halt! Security!". For those who can't run and type.
      • +
      + +
      + +
      +

      31.05.2013

      +

      Segrain updated:

      +
        +
      • Portable canisters now properly connect to ports beneath them on map load.
      • +
      • Fixed unfastening gas meters.
      • +
      +
      + +
      +

      30th May 2013

      +

      proliberate updated:

      +
        +
      • Station time is now displayed in the status tab for new players and AIs.
      • +
      +
      + +
      +

      30.05.2013

      +

      Segrain updated:

      +
        +
      • Meteor showers actually spawn meteors now.
      • +
      • Engineering tape fits into toolbelt and can be placed on doors.
      • +
      • Pill bottles can hold paper.
      • +
      +
      + +
      +

      May 28th, 2013

      +

      VitrescentTortoise updated:

      +
        +
      • Wizard's forcewall now works.
      • +
      +
        +
      • Xenoarchaeology picksets can now hold everything they started with.
      • +
      +
      +
      +

      28th May 2013

      +

      Erthilo updated:

      +
        +
      • Fixes everyone being able to understand alien languages. HERE IS YOUR TOWER OF BABEL
      • +
      +
      + +
      +

      26th May 2013

      +

      Chinsky updated:

      +
        +
      • Tentacles! Now clone damage will make you horribly malformed like examine text says.
      • +
      +

      VitrescentTortoise updated:

      +
        +
      • Added a third option for not getting any job preferences. It allows you to return to the lobby instead of joining.
      • +
      +
      + +
      +

      5/26/2013

      +

      Meyar updated:

      +
        +
      • The syndicate shuttle now has a cycling airlock during Nuke rounds.
      • +
      • Restored the ability for the syndicate Agent ID to change the name on the card (reforge it) more than once.
      • +
      • ERT Radio now functional again.
      • +
      • Research blast doors now actually lock down the entirety of station-side Research.
      • +
      • Added lock down buttons to the wardens office.
      • +
      • The randomized barsign has made a return.
      • +
      • Syndicate Agent ID's external airlock access restored.
      • +
      +
      + +
      +

      25th May 2013

      +

      Erthilo updated:

      +
        +
      • Fixes alien races appearing an unknown when speaking their language.
      • +
      • Fixes alien races losing their language when cloned.
      • +
      • Fixes UI getting randomly reset when trying to change it in Genetics Scanners.
      • +
      +
      + +
      +

      21 May 2013

      +

      SkyMarshal updated:

      +
        +
      • ZAS will now speed air movement into/out of a zone when unsimulated tiles (e.g. space) are involved, in relation to the number of tiles.
      • +
      • Portable Canisters will now automatically connect to any portable connecter beneath them on map load.
      • +
      • Bug involving mis-mapped disposal junction fixed
      • +
      • Air alarms now work for atmos techs (whoops!)
      • +
      • The Master Controller now properly stops atmos when it runtimes.
      • +
      • Backpacks can no longer be contaminated
      • +
      • ZAS no longer logs air statistics.
      • +
      • ZAS now rebuilds as soon as it detects a semi-complex change in geometry. (It was doing this already, but in a convoluted way which was actually less efficient)
      • +
      • General code cleanup/commenting of ZAS
      • +
      • Jungle now initializes after the random Z-level loads and atmos initializes.
      • +
      +
      + +
      +

      May 18th, 2013

      +

      CIB updated:

      +
        +
      • A new event type: Wallrot. Use welder or plantbgone on infected walls.
      • +
      • Newscasters now can deliver preset news stories over the course of a round. See http://baystation12.net/forums/viewtopic.php?f=14&t=7619 to add your own!
      • +
      +
      + +
      +

      April 24, 2013

      +

      Jediluke69 updated:

      +
        +
      • Added 5 new drinks (Kira Special, Lemonade, Brown Star, Milkshakes, Rewriter)
      • +
      • Nanopaste now heals about half of what it used to
      • +
      • Ballistic crates should now come with shotguns loaded with actual shells no more beanbags
      • +
      • Iced tea no longer makes a glass of .what?
      • +
      +
      + +
      +

      April 24, 2013

      +

      faux updated:

      +
        +
      • Mixed Wardrobe Closet now has colored shoes and plaid skirts.
      • +
      • Dress uniforms added to the Captain, RD, and HoP wardrobe closets. A uniform jacket has also been added to the Captain's closet. HoS' hat has been re-added to their closet. I do not love the CMO and CE enough to give them anything.
      • +
      • Atheletic closet now has five different swimsuits *for the ladies* in them. If you are a guy, be prepared to be yelled at if you run around like a moron in one of these. Same goes for ladies who run around in shorts with their titties swaying in the space winds.
      • +
      • A set of dispatcher uniforms will spawn in the security closet. These are for playtesting the dispatcher role.
      • +
      • New suit spawns in the laundry room. It's for geezer's only. You're welcome, Book.
      • +
      • Nurse outfit variant, orderly uniform, and first responder jacket will now spawn in the medical wardrobe closet.
      • +
      • A white wedding dress will spawn in the chaplain's closet. There are also several dresses currently only adminspawnable. Admins: Look either under "bride" or "dress." The bride one leads to the colored wedding dresses, and there are some other kinds of dresses under dress.
      • +
      • No more luchador masks or boxing gloves or boxing ring. You guys have a swimming pool now, dip in and enjoy it.
      • +
      • he meeting hall has been replaced with an awkwardly placed security office meant for prisoner processing.
      • +
      • Added a couple more welding goggles to engineering since you guys liked those a lot.
      • +
      • Flasks spawn behind the bar. Only three. Don't fight over them. I don't know how to add them to the bar vending machine otherwise I would have done that instead. Detective, you have your own flask in your office, it's underneath the cigarettes on your desk.
      • +
      • Added two canes to the medical storage, for people who have leg injuries and can't walk good and stuff. I do not want to see doctors pretending to be House. These are for patients. Do not make me delete this addition and declare you guys not being able to have nice things.
      • +
      • Secondary entance to EVA now directly leads into the medbay hardsuit section. Sorry for any inconviences this will cause. The CMO can now fetch the hardsuits whenever they want.
      • +
      • Secondary security hardsuit has been added to the armory. Security members please stop stealing engineer's hardsuits when you guys want to pair up for space travel.
      • +
      • Firelocks have been moved around in the main hallways to form really ghetto versions of airlocks.
      • +
      • Violin spawns in theatre storage now. I didn't put the piano there though, that was someone else.
      • +
      • Psych office in medbay has been made better looking.
      • +
      +
      + +
      +

      24th April 2013

      +

      NerdyBoy1104 updated:

      +
        +
      • New Botany additions: Rice and Plastellium. New sheet material: Plastic.
      • +
      • Plastellium is refined into plastic by first grinding the produce to get plasticide. 20 plasticide + 10 polytrinic acid makes 10 sheets of plastic which can be used to make crates, forks, spoons, knives, ashtrays or plastic bags from.
      • +
      • Rice seeds grows into rice stalks that you grind to get rice. 10 Rice + 5 Water makes boiled rice, 10 rice + 5 milk makes rice pudding, 10 rice + 5 universal enzyme (in beaker) makes Sake.
      • +
      +
      + +
      +

      Spamcat

      +

      04.05.2013 updated:

      +
        +
      • Blood type is now saved in character creation menu, no need to edit it manually every round.
      • +
      +
      + +
      +

      17 April 2013

      +

      SkyMarshal updated:

      +
        +
      • ZAS is now more deadly, as per decision by administrative team. May be tweaked, but currently AIRFLOW is the biggest griefer.
      • +
      • World startup optimized, many functions now delayed until a player joins the server. (Reduces server boot time significantly)
      • +
      • Zones will now equalize air more rapidly.
      • +
      • ZAS now respects active magboots when airflow occurs.
      • +
      • Airflow will no longer throw you into doors and open them.
      • +
      • Race condition in zone construction has been fixed, so zones connect properly at round start.
      • +
      • Plasma effects readded.
      • +
      • Fixed runtime involving away mission.
      • +
      +
      + +
      +

      17 April 2013

      +

      SkyMarshal updated:

      +
        +
      • ZAS is now more deadly, as per decision by administrative team. May be tweaked, but currently AIRFLOW is the biggest griefer.
      • +
      • World startup optimized, many functions now delayed until a player joins the server. (Reduces server boot time significantly)
      • +
      • Zones will now equalize air more rapidly.
      • +
      • ZAS now respects active magboots when airflow occurs.
      • +
      • Airflow will no longer throw you into doors and open them.
      • +
      • Race condition in zone construction has been fixed, so zones connect properly at round start.
      • +
      • Plasma effects readded.
      • +
      • Fixed runtime involving away mission.
      • +
      +
      + +
      +

      30.04.2013

      +

      Spamcat updated:

      +
        +
      • Pill bottle capacity increased to 14 items.
      • +
      • Fixed Lamarr (it now spawns properly)
      • +
      +
      + +
      +

      15.04.2013

      +

      Spamcat updated:

      +
        +
      • Added telescopic batons to HoS's and captain's lockers. These are quite robust and easily concealable.
      • +
      +
      + +
      +

      May 14th 2013

      +

      Cael_Aislinn updated:

      +
        +
      • Depth scanners can now be used to determine what material archaeological deposits are made of, meaning lab analysis is no longer required.
      • +
      • Some useability issues with xenoarchaeology tools have been resolved, and the transit pods cycle automatically now.
      • +
      +
      + +
      +

      11 April 2013

      +

      SkyMarshal updated:

      +
        +
      • Fire has been reworked.
      • +
      • In-game variable editor is both readded and expanded with fire controlling capability.
      • +
      +
      + +
      +

      9 April 2013

      +

      SkyMarshal updated:

      +
        +
      • Fire Issues (Firedoors, Flamethrowers, Incendiary Grenades) fixed.
      • +
      • Fixed a bad line of code that was preventing autoignition of flammable gas mixes.
      • +
      • Volatile fuel is burned up after a point.
      • +
      • Partial-tile firedoors removed. This is due to ZAS breaking when interacting with them.
      • +
      +
      + +
      +

      4 April 2013

      +

      SkyMarshal updated:

      +
        +
      • Fixed ZAS
      • +
      • Fixed Fire
      • +
      +
      + +
      +

      March 27th 2013

      +

      Asanadas updated:

      +
        +
      • The Null Rod has recovered its de-culting ability, for balance reasons. Metagaming with it is a big no-no!
      • +
      • Holy Water as a liquid is able to de-cult. Less effective, but less bloody. May be changed over the course of time for balance.
      • +
      +
      + +
      +

      26.03.2013

      +

      Spamcat updated:

      +
        +
      • Chemmaster now puts pills in pill bottles (if one is inserted).
      • +
      • Stabbing someone with a syringe now deals 3 damage instead of 7 because 7 is like, a crowbar punch.
      • +
      • Lizards can now join mid-round again.
      • +
      • Chemicals in bloodstream will transfer with blood now, so don't get drunk before your blood donation. Viruses and antibodies transfer through blood too.
      • +
      • Virology is working again.
      • +
      +
      + +
      +

      March 15th 2013

      +

      Cael_Aislinn updated:

      +
        +
      • Mapped a compact research base on the mining asteroid, with multiple labs and testing rooms. It's reachable through a new (old) shuttle dock that leaves from the research wing on the main station.
      • +
      +
      + +
      +

      14.03.2013

      +

      Spamcat updated:

      +
        +
      • Figured I should make one of these. Syringestabbing now produces a broken syringe complete with fingerprints of attacker and blood of a victim, so dispose your evidence carefully. Maximum transfer amount per stab is lowered to 10.
      • +
      +
      + +
      +

      11/03/2013

      +

      Chinsky updated:

      +
        +
      • Sec HUDs now can see short versions of sec records.on examine. Med HUDs do same for medical records, and can set medical status of patient.
      • +
      • Damage to the head can now cause brain damage.
      • +
      +
      + +
      +

      March 11th 2013

      +

      CIB updated:

      +
        +
      • Cloning now requires you to put slabs of meat into the cloning pod to replenish biomass.
      • +
      +
      + +
      +

      March 11th 2013

      +

      Cael Aislinn updated:

      +
        +
      • The xenoarchaeology update is here. This includes a major content overhaul and a bunch of new features for xenoarchaeology.
      • +
      • Digsites (strange rock deposits) are now much more nuanced and interesting, and a huge number of minor (non-artifact) finds have been added.
      • +
      • Excavation is now a complex process that involves digging into the rock to the right depth.
      • +
      • Chemical analysis is required for safe excavation of the digsites, in order to determine how best to extract the finds.
      • +
      • Anomalous artifacts have been overhauled and many longstanding bugs with existing effects have been fixed - the anomaly utiliser should now work much more often.
      • +
      • Numerous new artifact effects have been added and some new artifact types can be dug up from the asteroid.
      • +
      • New tools and equipment have been added, including normal and spaceworthy versions of the anomaly suits, excavation tools and other neat gadgets.
      • +
      • Five books have been written by subject matter experts from around the galaxy to help the crew of the Exodus come to grips with this exacting new science (over 3000 words of tutorials!).
      • +
      +
      + +
      +

      March 9th 2013

      +

      Cael Aislinn updated:

      +
        +
      • Beekeeping is now possible. Construct an apiary of out wood and embed it into a hydroponics tray, then get a queen bee and bottle of BeezEez from cargo bay. + Hives produce honey and honeycomb, but be wary if the bees start swarming.
      • +
      +
      + +
      +

      March 6th 2013

      +

      Cael Aislinn updated:

      +
        +
      • Type 1 thermoelectric generators and the associated binary circulators are now moveable (wrench to secure/unsecure) and orderable via Quartermaster.
      • +
      • code/maps/rust_test.dmm contains an example setup for a functional RUST reactor. Maximum output is in the range of 12 to 20MW (12 to 20 million watts).
      • +
      • Removed double announcement for gridchecks, reduced duration of gridchecks.
      • +
      +

      RavingManiac updated:

      +
        +
      • You can now stab people with syringes using the "harm" intent. This destroys the syringe and transfers a random percentage of its contents into the target. Armor has a 50% chance of blocking the syringe.
      • +
      +
      + +
      +

      March 5th 2013

      +

      Cael Aislinn updated:

      +
        +
      • Set roundstart music to randomly choose between space.ogg and traitor.ogg (see http://baystation12.net/forums/viewtopic.php?f=5&t=6972)
      • +
      • All RUST components except for TEGs (which generate the power) are now obtainable ingame, bored engineers should get hold of them and setup an experimental reactor for testing purposes.
      • +
      +

      CIB updated:

      +
        +
      • Added internal organs. They're currently all located in the chest. Use advanced scanner to detect damage. Use the same surgery as for ruptured lungs to fix them.
      • +
      +
      + +
      +

      February 27th 2013

      +

      Gamerofthegame updated:

      +
        +
      • Added the (base gear) ERT preset for the debug command.
      • +
      • Map fixes, Virology hole fixed. Atmospheric fixes for mining and, to a less extent, the science outpost. (No, not cycling airlocks)
      • +
      • Fiddled with the ERT set up location on Centcom. Radmins will now have a even easier time equiping a team of any real pratical size, especially coupled with the above debug command.
      • +
      +
      + +
      +

      February 25th 2013

      +

      Cael Aislinn updated:

      +
        +
      • As well as building hull shield generators, normal shield gens can now be built (see http://baystation12.net/forums/viewtopic.php?f=1&t=6993).
      • +
      • New random events: multiple new system wide-events have been have been added to the newscaster feeds, some not quite as respectable as others.
      • +
      • New random event: some lucky winners will win the TC Daily Grand Slam Lotto, while others may be the target of malicious hackers.
      • +
      +
      + +
      +

      February 23rd 2013

      +

      Cael Aislinn updated:

      +
        +
      • Finances! Players spawn with an account, and money can be transferred between accounts, withdrawn/deposited at ATMs and charged to accounts via EFTPOS scanners.

        + All players start with 500-5000 credits, credits can no longer be merged and only credits can be deposited into ATMs - so shelter your illegitimately gotten gains in physical assets and remember that fraud is frowned upon!
      • +
      • Turrets are no longer noiseless as the grave. Listen for the sound of machinery in their proximity.
      • +
      +
      + +
      +

      February 23rd 2013

      +

      Cael Aislinn updated:

      +
        +
      • RUST machinery components should now be researchable (with high requirements) and orderable through QM (with high cost).
      • +
      • Shield machinery should now be researchable (with high requirements) and orderable through QM (with high cost). This one is reportedly buggy.
      • +
      • Rogue vending machines should revert back to normal at the end of the event.
      • +
      • New Unathi hair styles.
      • +
      +
      + +
      +

      22/02/2013

      +

      Chinsky updated:

      +
        +
      • Change to body cavity surgery. Can only put items in chest, groind and head. Max size for item - 3 (chest), 2 (groin), 1 (head). For chest surgery ribs should be bent open, (lung surgery until second scalpel step). Surgery step needs preparation step, with drill. After that you can place item inside, or seal it with cautery to do other step instead.
      • +
      +
      + +
      +

      February 18th 2013

      +

      Cael Aislinn updated:

      +
        +
      • All RUST components are now buildable/orderable, with very high requirements (except for the TEGs). Emitters have replaced gyrotrons, for now.
      • +
      • Fixed up shield generators and made them buildable, with circuits obtainable through RnD. Hull shield gens project along space tiles adjacent to the hull (must be adjacent to a space tile to work).
      • +
      +
      + +
      +

      20/02/2013

      +

      Chinsky updated:

      +
        +
      • Added new surgery: putting items inside people. After you use retractor to keep incision open, just click with any item to put it inside. But be wary, if you try to fit something too big, you might rip the veins. To remove items, use implant removal surgery.
      • +
      • Crowbar can be used as alternative to retractor.
      • +
      • Can now unload guns by clicking them in hand.
      • +
      • Fixed distance calculation in bullet missing chance computation, it was always assuming 1 or 0 tiles. Now distace REALLY matters when you shoot.
      • +
      • To add more FUN to previous thing, bullets missed to not disappear but keep going until they hit something else.
      • +
      • Compressed Matter and Explosive implants spawn properly now.
      • +
      • Tweaks to medical effects: removed itch caused by bandages. Chemical effects now have non-100 chance of appearing, the stronger medicine, the more probality it'll have side effects.
      • +
      +
      + +
      +

      February 18th 2013

      +

      Cael Aislinn updated:

      +
        +
      • Security bots will now target hostile mobs, and vice versa.
      • +
      • Carp should actually emigrate now, instead of just immigrating then squatting around the outer hull.
      • +
      • Admins and moderators have been split up into separate 'who' verbs (adminwho and modwho respectively).
      • +
      +
      + +
      +

      February 14th 2013

      +

      CIB updated:

      +
        +
      • Medical side-effects(patients are going to come back for secondary treatment)
      • +
      • NT loyalty setting(affects command reports and gives antags hints who might collaborate with them)
      • +
      • Simple animal balance fixes(They're slower now)
      • +
      +

      CaelAislinn updated:

      +
        +
      • Re-added old ion storm laws, re-added grid check event.
      • +
      • Added Rogue Drone and Vermin Infestation random events.
      • +
      • Added/fixed space vines random event.
      • +
      • Updates to the virus events.
      • +
      • Spider infestation and alien infestation events turned off by default.
      • +
      • Soghun, taj and skrell all have unique language text colours.
      • +
      • Moderators will no longer be listed in adminwho, instead use modwho.
      • +
      + +

      Gamerofthegame updated:

      +
        +
      • Miscellaneous mapfixes.
      • +
      +
      + +
      +

      February 13th 2013

      +

      Erthilo updated:

      +
        +
      • Fixed SSD (logged-out) players not staying asleep.
      • +
      • Fixed set-pose verb and mice emotes having extra periods.
      • +
      • Fixed virus crate not appearing and breaking supply shuttle.
      • +
      • Fixed newcaster photos not being censored.
      • +
      +
      + +
      +

      January 23rd

      +

      Cael_Aislinn updated:

      + +
      + +
      + + +

      1/31/2013

      +

      CIB updated:

      +
        +
      • Chilis and cold chilis no longer kill in small amounts
      • +
      • Chloral now again needs around 5 units to start killing somebody
      • +
      +
      + +
      +

      January 21st

      +

      Cael_Aislinn updated:

      +
        +
      • Satchels and ore boxes can now hold strange rocks.
      • +
      • Closets and crates can now be built out of 5 and 10 plasteel respectively.
      • +
      • Observers can become mice once more.
      • +
      +
      + +
      +

      13/01/2013

      +

      Chinsky updated:

      +
        +
      • If you get enough (6) blood drips on one tile, it'll turn into a blood puddle. Should make bleeding out more visible.
      • +
      • Security belt now able to hold taser, baton and tape roll.
      • +
      • Added alternative security uniform to Security wardrobes.
      • +
      • Ported Urist cult runes. Down with the crayon drawings! Example: http://dl.dropbox.com/u/26846767/images/SS13/255_symbols.PNG
      • +
      • Engineering tape now require engineer OR atmos access instead of both.
      • +
      • Implants now will react to EMP, possibly in !!FUN!! ways
      • +
      +
      + +

      1/13/2013

      +

      GauHelldragon updated:

      +
        +
      • Servicebots now have RoboTray and Printing Pen. Robotray can be used to pick up and drop food/drinks. Printing pen can alternate between writing mode and rename paper mode by clicking it.
      • +
      • Farmbots. A new type of robot that weeds, waters and fertilizes. Use robot arm on water tank. Then use plant analyzer, mini-hoe, bucket and finally proximity sensor.
      • +
      • Chefs can clang their serving trays with a rolling pin. Just like a riot shield!
      • +
      +
      + +
      +

      January 7th

      +

      Cael_Aislinn updated:

      + +
      + +
      +

      7/01/2013

      +

      Chinsky updated:

      +
        +
      • Implants: Explosvie implant, exploding when victim hears the codephrase you set.
      • +
      • Implants: Compressed Matter implat, scan item (making it disappear), inject yourself and recall that item on will!
      • +
      • Implant removal surgery, with !!FUN!! results if you mess up it.
      • +
      • Coats now have pockets again.
      • +
      • Bash people on tabetops. an windows, or with stools. Grab people to bash them on tables or windows (better grab for better hit on windows). Drag stool sprite on you to pick it up, click on it in hand to make it usual stool again.
      • +
      • Surgical caps, and new sprites for bloodbags and fixovein.
      • +
      • Now some surgery steps will bloody your hands, Full-body blood coat in case youy mess up spectacualry.
      • +
      • Ported some crates (Art, Surgery, Sterile equiplemnt).
      • +
      • Changed contraband crates. Posters moved to Art Crate, cigs and lipstick ot party crate. Now contraband crate has illegal booze and illicit drugs.
      • +
      • Finally got evac party lights
      • +
      • Now disfigurment,now it WILL happen when damage is bad enough.
      • +
      • Now if you speak in depressurized area (less than 10 kPa) only people next to you can hear you. Radios still work though.
      • +
      +
      + + + +/tg/ station 13 Development Team + + + + +
      + Coders: TLE, NEO, Errorage, muskets, veryinky, Skie, Noise, Numbers, Agouri, Noka, Urist McDorf, Uhangi, Darem, Mport, rastaf0, Doohl, Superxpdude, Rockdtben, ConstantA, Petethegoat, Kor, Polymorph, Carn, Nodrak, Donkie
      + Spriters: Agouri, Cheridan, Cruazy Guest, Deeaych, Deuryn, Matty406, Microwave, ShiftyEyesShady, Skie, Uhangi, Veyveyr, Petethegoat, Kor, Ricotez, Ausops, TankNut
      + Sounds: Skie, Lasty/Vinyl
      + Thanks to: CDK Station devs, GoonStation devs, the original SpaceStation developers and Invisty for the title image +
      + +Daedalus Development Team + + + + +
      + Coders: DopeGhoti, Sunfall, ThVortex
      + Artwork: Captain Hammer
      + Spriters: ((TODO.))
      + Sounds: Peter J, due, Erik Satie
      + Thanks to: All the dev teams that came before: BS12, /tg/station13, the Goons, and the original SS13 folks.
      +
      + +GoonStation 13 Development Team +
      + Coders: Stuntwaffle, Showtime, Pantaloons, Nannek, Keelin, Exadv1, hobnob, Justicefries, 0staf, sniperchance, AngriestIBM, BrianOBlivion
      + Spriters: Supernorn, Haruhi, Stuntwaffle, Pantaloons, Rho, SynthOrange, I Said No
      +
      +

      Creative Commons License
      This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
      Rights are currently extended to SomethingAwful Goons only.

      +

      Some icons by Yusuke Kamiyamane. All rights reserved. Licensed under a Creative Commons Attribution 3.0 License.

      +
      + + From f2ab9611d7425dd6881db9a95adab4c6d59c9b14 Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Wed, 27 Aug 2014 11:33:07 +0100 Subject: [PATCH 06/23] Spelling Meow wanted it fixed --- html/changelog.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/changelog.html b/html/changelog.html index 0bfd9485..16cd111b 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -90,7 +90,7 @@ should be listed in the changelog upon commit though. Thanks. -->

      SoundScopes updated:

      • Workplace hazards baised of hair length
      • -
      • Gavity Generator Fix
      • +
      • Gravity Generator Fix
      • Fryed food no longer drops it's original item when eaten
      • Water now gets deleted
      • Medical Alarms
      • From 09e2cdd71d4ef6350b007eb324281e7e25641fe6 Mon Sep 17 00:00:00 2001 From: Duck- Date: Wed, 27 Aug 2014 07:38:51 -0400 Subject: [PATCH 07/23] Fixes logging. msg_admin_attacks. --- code/modules/reagents/reagent_containers/food/snacks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers/food/snacks.dm b/code/modules/reagents/reagent_containers/food/snacks.dm index 7f175325..9095434f 100644 --- a/code/modules/reagents/reagent_containers/food/snacks.dm +++ b/code/modules/reagents/reagent_containers/food/snacks.dm @@ -84,7 +84,7 @@ M.attack_log += text("\[[time_stamp()]\] Has been fed [src.name] by [user.name] ([user.ckey]) Reagents: [reagentlist(src)]") user.attack_log += text("\[[time_stamp()]\] Fed [src.name] by [M.name] ([M.ckey]) Reagents: [reagentlist(src)]") - log_attack("[user.name] ([user.ckey]) fed [M.name] ([M.ckey]) with [src.name] Reagents: [reagentlist(src)] (INTENT: [uppertext(user.a_intent)])") + msg_admin_attack("[user.name] ([user.ckey]) fed [M.name] ([M.ckey]) with [src.name] Reagents: [reagentlist(src)] (INTENT: [uppertext(user.a_intent)])") if(!iscarbon(user)) M.LAssailant = null else From 4f6284fa7dcbd424acab3715a302536b11416f49 Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Wed, 27 Aug 2014 12:43:34 +0100 Subject: [PATCH 08/23] Change log I should really do these all at once.customizables --- html/changelog.html | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index 16cd111b..48cb4672 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -56,13 +56,6 @@ should be listed in the changelog upon commit though. Thanks. --> - - - - - - -

        26 August 2014

        SoundScopes updated:

        @@ -73,6 +66,7 @@ should be listed in the changelog upon commit though. Thanks. -->
      • Candy
      • Telebacon
      • You know what, a lot of food
      • +
      • Customizable Foods
      • Oven
      • Ice Machine
      • Eating monkey cubes now results in disaster and pain
      • From 312206df96725b766ac611b9447b0bc16cd93324 Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Wed, 27 Aug 2014 13:55:34 +0100 Subject: [PATCH 09/23] Attack logs and face smashing - Attack logs that were missing - Smashing faces on walls --- code/game/objects/structures/tables_racks.dm | 1 + code/game/objects/structures/window.dm | 3 +++ code/game/turfs/simulated/walls.dm | 22 +++++++++++++++++++ code/game/turfs/simulated/walls_reinforced.dm | 22 +++++++++++++++++++ html/changelog.html | 3 ++- 5 files changed, 50 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index 85292bd8..c96dbb72 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -363,6 +363,7 @@ if (prob(15)) M.Weaken(5) M.apply_damage(8,def_zone = "head") visible_message("\red [G.assailant] slams [G.affecting]'s face against \the [src]!") + msg_admin_attack("[user.name]([user.ckey]) slams [M.name]'s([M.ckey]) face against \the [src]!") playsound(src.loc, 'sound/weapons/tablehit1.ogg', 50, 1) else user << "\red You need a better grip to do that!" diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 400f82aa..8ec234f8 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -180,17 +180,20 @@ M.apply_damage(7) hit(10) visible_message("\red [user] slams [M] against \the [src]!") + msg_admin_attack("[user.name]([user.ckey]) slams [M.name]'s([M.ckey]) against \the [src]!") if(2) if (prob(50)) M.Weaken(1) M.apply_damage(10) hit(25) visible_message("\red [user] bashes [M] against \the [src]!") + msg_admin_attack("[user.name]([user.ckey]) bashes [M.name]'s([M.ckey]) against \the [src]!") if(3) M.Weaken(5) M.apply_damage(20) hit(50) visible_message("\red [user] crushes [M] against \the [src]!") + msg_admin_attack("[user.name]([user.ckey]) crushes [M.name]'s([M.ckey]) against \the [src]!") return if(istype(W, /obj/item/weapon/screwdriver)) if(reinf && state >= 1) diff --git a/code/game/turfs/simulated/walls.dm b/code/game/turfs/simulated/walls.dm index 9e6f70d3..e3691b45 100644 --- a/code/game/turfs/simulated/walls.dm +++ b/code/game/turfs/simulated/walls.dm @@ -151,6 +151,28 @@ //get the user's location if( !istype(user.loc, /turf) ) return //can't do this stuff whilst inside objects and such + if (istype(W, /obj/item/weapon/grab) && get_dist(src,user)<2) + var/obj/item/weapon/grab/G = W + if (istype(G.affecting, /mob/living)) + var/mob/living/M = G.affecting + if (G.state < 2) + if(user.a_intent == "hurt") + if (prob(15)) M.Weaken(5) + M.apply_damage(8,def_zone = "head") + visible_message("\red [G.assailant] slams [G.affecting]'s face against \the [src]!") + msg_admin_attack("[user.name]([user.ckey]) slams [M.name]'s([M.ckey]) face against \the [src]!") +// switch(rand(1,3)) +// if(1) +// playsound(src.loc, 'sound/weapons/genhit1.ogg', 50, 1) +// if(2) +// playsound(src.loc, 'sound/weapons/genhit2.ogg', 50, 1) +// if(3) +// playsound(src.loc, 'sound/weapons/genhit3.ogg', 50, 1) + return + else + user << "\red You need a better grip to do that!" + return + if(rotting) if(istype(W, /obj/item/weapon/weldingtool) ) var/obj/item/weapon/weldingtool/WT = W diff --git a/code/game/turfs/simulated/walls_reinforced.dm b/code/game/turfs/simulated/walls_reinforced.dm index 822b4e77..53fc7bca 100644 --- a/code/game/turfs/simulated/walls_reinforced.dm +++ b/code/game/turfs/simulated/walls_reinforced.dm @@ -39,6 +39,28 @@ //get the user's location if( !istype(user.loc, /turf) ) return //can't do this stuff whilst inside objects and such + if (istype(W, /obj/item/weapon/grab) && get_dist(src,user)<2) + var/obj/item/weapon/grab/G = W + if (istype(G.affecting, /mob/living)) + var/mob/living/M = G.affecting + if (G.state < 2) + if(user.a_intent == "hurt") + if (prob(15)) M.Weaken(5) + M.apply_damage(16,def_zone = "head") + visible_message("\red [G.assailant] slams [G.affecting]'s face against \the [src]!") + msg_admin_attack("[user.name]([user.ckey]) slams [M.name]'s([M.ckey]) face against \the [src]!") +// switch(rand(1,3)) +// if(1) +// playsound(src.loc, 'sound/weapons/genhit1.ogg', 50, 1) +// if(2) +// playsound(src.loc, 'sound/weapons/genhit2.ogg', 50, 1) +// if(3) +// playsound(src.loc, 'sound/weapons/genhit3.ogg', 50, 1) + return + else + user << "\red You need a better grip to do that!" + return + if(rotting) if(istype(W, /obj/item/weapon/weldingtool) ) var/obj/item/weapon/weldingtool/WT = W diff --git a/html/changelog.html b/html/changelog.html index 48cb4672..6bdb75ac 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -60,7 +60,8 @@ should be listed in the changelog upon commit though. Thanks. -->

        26 August 2014

        SoundScopes updated:

          -
        • Hair torture
        • +
        • Hitting people against walls
        • +
        • Hair torture
        • Cerealmaker
        • Foodgrill
        • Candy
        • From 8aacc2ec9cd9697d1fce4ce40e12dc8700bef31f Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Wed, 27 Aug 2014 14:56:26 +0100 Subject: [PATCH 10/23] Change log It's now the 27th and Faithless sprite thing added --- html/changelog.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/html/changelog.html b/html/changelog.html index 6bdb75ac..027b3cf8 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -57,7 +57,7 @@ should be listed in the changelog upon commit though. Thanks. -->
          -

          26 August 2014

          +

          27 August 2014

          SoundScopes updated:

          • Hitting people against walls
          • @@ -74,6 +74,7 @@ should be listed in the changelog upon commit though. Thanks. -->
          • Weapons embed themselves into wounds
          • Vamp objectives removed if objectives are toggled off
          • HTML tags in logs
          • +
          • Faithless sprite unbork
          • Tossed Salad from microwave recipes
          • Law Giver settings
          From b02b0ef889bd1966f3f3b81ba2e82e346165de9e Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Wed, 27 Aug 2014 15:21:55 +0100 Subject: [PATCH 11/23] Delta Level debug Controller Added Delta Level Controller to debug controller list --- code/controllers/verbs.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/controllers/verbs.dm b/code/controllers/verbs.dm index 7793f44c..cf22c0bc 100644 --- a/code/controllers/verbs.dm +++ b/code/controllers/verbs.dm @@ -28,7 +28,7 @@ return -/client/proc/debug_controller(controller in list("Master","Failsafe","Ticker","Lighting","Air","Jobs","Sun","Radio","Supply Shuttle","Emergency Shuttle","Configuration","pAI", "Cameras", "Transfer Controller")) +/client/proc/debug_controller(controller in list("Master","Failsafe","Ticker","Lighting","Air","Jobs","Sun","Radio","Supply Shuttle","Emergency Shuttle","Configuration","pAI", "Cameras", "Transfer Controller", "Delta Level")) set category = "Debug" set name = "Debug Controller" set desc = "Debug the various periodic loop controllers for the game (be careful!)" @@ -77,5 +77,8 @@ if("Transfer Controller") debug_variables(transfer_controller) feedback_add_details("admin_verb","DAutovoter") + if("Delta Level") + debug_variables(delta_level) + feedback_add_details("admin_verb","DDeltaLevel") message_admins("Admin [key_name_admin(usr)] is debugging the [controller] controller.") return From 736b24d6428755ae0188ddd43747f138d9aac95d Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Wed, 27 Aug 2014 15:57:44 +0100 Subject: [PATCH 12/23] Delta level updates Allows cancelling using controller debug Shows the current active security level when selecting a level --- code/controllers/delta_level.dm | 3 +++ code/modules/admin/admin_verbs.dm | 3 ++- html/changelog.html | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/code/controllers/delta_level.dm b/code/controllers/delta_level.dm index 413c7f31..4b21f760 100644 --- a/code/controllers/delta_level.dm +++ b/code/controllers/delta_level.dm @@ -48,6 +48,9 @@ datum/delta_level/proc/dotheboom() datum/delta_level/proc/process() if(!active) + if(ticker.mode:explosion_in_progress == 1) + ticker.mode:explosion_in_progress = 0 + settimeleft(0) return var/timeleft = timeleft() if(timeleft > 1e5) // midnight rollover protection diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 454bf874..40f4f20a 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -903,7 +903,8 @@ var/list/admin_verbs_mod = list( "Delta", ) - var/input = input("Select the alert level.", "Alert Level", null, null) in L + var/current_level = get_security_level() + var/input = input("Select the alert level.", "Alert Level -( [current_level] )", null, null) in L switch(input) if("Green") set_security_level(SEC_LEVEL_GREEN) diff --git a/html/changelog.html b/html/changelog.html index 027b3cf8..7e4f6b43 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -76,6 +76,7 @@ should be listed in the changelog upon commit though. Thanks. -->
        • HTML tags in logs
        • Faithless sprite unbork
        • Tossed Salad from microwave recipes
        • +
        • Current Security Level now shown to the admin when choosing the new one
        • Law Giver settings
        From d7528701a9b13493f57f9920f678dc5bc0ad5252 Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Thu, 28 Aug 2014 06:56:27 +0100 Subject: [PATCH 13/23] bats fix Bats don't attack each other --- code/modules/mob/living/simple_animal/hostile/bat.dm | 2 +- html/changelog.html | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/bat.dm b/code/modules/mob/living/simple_animal/hostile/bat.dm index faebfd62..32e38ce9 100644 --- a/code/modules/mob/living/simple_animal/hostile/bat.dm +++ b/code/modules/mob/living/simple_animal/hostile/bat.dm @@ -35,7 +35,7 @@ // break_stuff_probability = 2 - faction = list("scarybat") + faction = "scarybat" var/mob/living/owner /mob/living/simple_animal/hostile/scarybat/New(loc, mob/living/L as mob) diff --git a/html/changelog.html b/html/changelog.html index 7e4f6b43..b69acc77 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -72,6 +72,7 @@ should be listed in the changelog upon commit though. Thanks. -->
      • Ice Machine
      • Eating monkey cubes now results in disaster and pain
      • Weapons embed themselves into wounds
      • +
      • Bats no longer attack each other
      • Vamp objectives removed if objectives are toggled off
      • HTML tags in logs
      • Faithless sprite unbork
      • From a8c8d1a30283e3c9d3de2be4f4039576c922c6df Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Thu, 28 Aug 2014 09:25:48 +0100 Subject: [PATCH 14/23] Bug fix Cryo item recovery now has a cancel button attack log message grammar stuff --- code/game/machinery/cryopod.dm | 4 ++-- code/modules/projectiles/projectile.dm | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 5246d97e..2f85c5f2 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -72,7 +72,7 @@ obj/machinery/computer/cryopod/Topic(href, href_list) user << "\blue There is nothing to recover from storage." return - var/obj/item/I = input(usr, "Please choose which object to retrieve.","Object recovery",null) as obj in frozen_items + var/obj/item/I = input(usr, "Please choose which object to retrieve.","Object recovery",null) as null|obj in frozen_items if(!I || frozen_items.len == 0) user << "\blue There is nothing to recover from storage." @@ -240,7 +240,7 @@ obj/machinery/computer/cryopod/Topic(href, href_list) current_mode.possible_traitors.Remove(occupant) // Delete them from datacore. - + if(PDA_Manifest.len) PDA_Manifest.Cut() for(var/datum/data/record/R in data_core.medical) diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index 41759378..8e19a9d1 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -104,12 +104,12 @@ else visible_message("\red [A.name] is hit by the [src.name] in the [parse_zone(def_zone)]!")//X has fired Y is now given by the guns so you cant tell who shot you if you could not see the shooter if(istype(firer, /mob)) - M.attack_log += "\[[time_stamp()]\] [firer]/[firer.ckey] shot [M]/[M.ckey] with a [src.type]" - firer.attack_log += "\[[time_stamp()]\] [firer]/[firer.ckey] shot [M]/[M.ckey] with a [src.type]" - msg_admin_attack("[firer] ([firer.ckey]) shot [M] ([M.ckey]) with a [src] (JMP)") //BS12 EDIT ALG + M.attack_log += "\[[time_stamp()]\] [firer]/[firer.ckey] shot [M]/[M.ckey] with [src.type]" + firer.attack_log += "\[[time_stamp()]\] [firer]/[firer.ckey] shot [M]/[M.ckey] with [src.type]" + msg_admin_attack("[firer] ([firer.ckey]) shot [M] ([M.ckey]) with [src] (JMP)") //BS12 EDIT ALG else - M.attack_log += "\[[time_stamp()]\] UNKNOWN SUBJECT (No longer exists) shot [M]/[M.ckey] with a [src]" - msg_admin_attack("UNKNOWN shot [M] ([M.ckey]) with a [src] (JMP)") //BS12 EDIT ALG + M.attack_log += "\[[time_stamp()]\] UNKNOWN SUBJECT (No longer exists) shot [M]/[M.ckey] with [src]" + msg_admin_attack("UNKNOWN shot [M] ([M.ckey]) with [src] (JMP)") //BS12 EDIT ALG if(A) if (!forcedodge) From 13d54439b045f0e6f4990f7203a2ba05e48dbcdd Mon Sep 17 00:00:00 2001 From: SoundScopes Date: Thu, 28 Aug 2014 16:11:25 +0100 Subject: [PATCH 15/23] Change log Stuffs --- html/changelog.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/html/changelog.html b/html/changelog.html index b69acc77..442d7a10 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -72,6 +72,8 @@ should be listed in the changelog upon commit though. Thanks. -->
      • Ice Machine
      • Eating monkey cubes now results in disaster and pain
      • Weapons embed themselves into wounds
      • +
      • Gold Slimes
      • +
      • Attack log errors
      • Bats no longer attack each other
      • Vamp objectives removed if objectives are toggled off
      • HTML tags in logs
      • @@ -79,6 +81,11 @@ should be listed in the changelog upon commit though. Thanks. -->
      • Tossed Salad from microwave recipes
      • Current Security Level now shown to the admin when choosing the new one
      • Law Giver settings
      • +
      • Cryo Item Recovery not has a cancel button
      • +
      • Security Hardsuits & Helmets for all species
      • +
      • Atmospheric Hardsuits & Helmets for all species
      • +
      • Mining Hardsuits & Helmets for all species
      • +
      • Engineering Hardsuits & Helmets for all species
      From c0c3e45df2a9db298861edeb13b52995d344b63e Mon Sep 17 00:00:00 2001 From: Duck- Date: Thu, 28 Aug 2014 11:26:06 -0400 Subject: [PATCH 16/23] Alien hardsuits part one, goldslimes WIP alienhardsuits, waiting on sprites. Goldslime re-enabled. Blood injection WIP. --- code/game/objects/items/devices/modkit.dm | 64 +++++-- code/modules/clothing/spacesuits/alien.dm | 207 +++++++++++++++++++++ code/modules/reagents/Chemistry-Recipes.dm | 63 ++++++- data/investigate/gravity.html | 4 +- 4 files changed, 319 insertions(+), 19 deletions(-) diff --git a/code/game/objects/items/devices/modkit.dm b/code/game/objects/items/devices/modkit.dm index a7c221aa..1037c6af 100644 --- a/code/game/objects/items/devices/modkit.dm +++ b/code/game/objects/items/devices/modkit.dm @@ -7,22 +7,30 @@ desc = "A kit containing all the needed tools and parts to modify a hardsuit for another user." icon_state = "modkit" var/parts = MODKIT_FULL - var/from_helmet = /obj/item/clothing/head/helmet/space/rig - var/from_suit = /obj/item/clothing/suit/space/rig - var/to_helmet = /obj/item/clothing/head/cardborg - var/to_suit = /obj/item/clothing/suit/cardborg + var/list/from_helmet = list(/obj/item/clothing/head/helmet/space/rig) + var/list/from_suit = list(/obj/item/clothing/suit/space/rig) + var/list/to_helmet = list(/obj/item/clothing/head/cardborg) + var/list/to_suit = list(/obj/item/clothing/suit/cardborg) /obj/item/device/modkit/afterattack(obj/O, mob/user as mob) var/flag var/to_type - if(istype(O,from_helmet)) - flag = MODKIT_HELMET - to_type = to_helmet - else if(istype(O,from_suit)) - flag = MODKIT_SUIT - to_type = to_suit - else + + for(var/i = 1, i <= from_helmet.len, i++) +// msg_scopes("[from_helmet[i]]") + if(istype(O, from_helmet[i])) + to_type = to_helmet[i] + flag = MODKIT_HELMET + break + + if(istype(O, from_suit[i])) + flag = MODKIT_SUIT + to_type = to_suit[i] + break + + if(!flag) return + if(!(parts & flag)) user << "This kit has no parts for this modification left." return @@ -33,6 +41,7 @@ user << "[O] must be safely placed on the ground for modification." return playsound(user.loc, 'sound/items/Screwdriver.ogg', 100, 1) + msg_scopes("[to_type]") var/N = new to_type(O.loc) user.visible_message("\red [user] opens \the [src] and modifies \the [O] into \the [N].","\red You open \the [src] and modify \the [O] into \the [N].") del(O) @@ -43,5 +52,34 @@ /obj/item/device/modkit/tajaran name = "tajara hardsuit modification kit" desc = "A kit containing all the needed tools and parts to modify a hardsuit for another user. This one looks like it's meant for Tajara." - to_helmet = /obj/item/clothing/head/helmet/space/rig/tajara - to_suit = /obj/item/clothing/suit/space/rig/tajara \ No newline at end of file + +//Keep the lists in matching orders to the relative type and keep the parents at the end. +// /obj/item/clothing/head/helmet/space/rig <- is a parent //i love you, sounds. + from_helmet = list(/obj/item/clothing/head/helmet/space/rig/security, /obj/item/clothing/head/helmet/space/rig/medical, /obj/item/clothing/head/helmet/space/rig/atmos, /obj/item/clothing/head/helmet/space/rig) + to_helmet = list(/obj/item/clothing/head/helmet/space/rig/security/tajara, /obj/item/clothing/head/helmet/space/rig/medical/tajara, /obj/item/clothing/head/helmet/space/rig/atmos/tajara, /obj/item/clothing/head/helmet/space/rig/tajara) + + from_suit = list(/obj/item/clothing/suit/space/rig/security, /obj/item/clothing/suit/space/rig/medical, /obj/item/clothing/suit/space/rig/atmos, /obj/item/clothing/suit/space/rig) + to_suit = list(/obj/item/clothing/suit/space/rig/security/tajara, /obj/item/clothing/suit/space/rig/medical/tajara, /obj/item/clothing/suit/space/rig/atmos/tajara, /obj/item/clothing/suit/space/rig/tajara) + +/obj/item/device/modkit/unathi + name = "unathi hardsuit modification kit" + desc = "A kit containing all the needed tools and parts to modify a hardsuit for another user. This one looks like it's meant for Unathi." + + from_helmet = list(/obj/item/clothing/head/helmet/space/rig/security, /obj/item/clothing/head/helmet/space/rig/medical, /obj/item/clothing/head/helmet/space/rig/atmos, /obj/item/clothing/head/helmet/space/rig) + to_helmet = list(/obj/item/clothing/head/helmet/space/rig/security/unathi, /obj/item/clothing/head/helmet/space/rig/medical/unathi, /obj/item/clothing/head/helmet/space/rig/atmos/unathi, /obj/item/clothing/head/helmet/space/rig/unathi) + + from_suit = list(/obj/item/clothing/suit/space/rig/security, /obj/item/clothing/suit/space/rig/medical, /obj/item/clothing/suit/space/rig/atmos, /obj/item/clothing/suit/space/rig) + to_suit = list(/obj/item/clothing/suit/space/rig/security/unathi, /obj/item/clothing/suit/space/rig/medical/unathi, /obj/item/clothing/suit/space/rig/atmos/unathi, /obj/item/clothing/suit/space/rig/unathi) + +/obj/item/device/modkit/skrell + name = "skrell hardsuit modification kit" + desc = "A kit containing all the needed tools and parts to modify a hardsuit for another user. This one looks like it's meant for Skrell." + + from_helmet = list(/obj/item/clothing/head/helmet/space/rig/security, /obj/item/clothing/head/helmet/space/rig/medical, /obj/item/clothing/head/helmet/space/rig/atmos, /obj/item/clothing/head/helmet/space/rig) + to_helmet = list(/obj/item/clothing/head/helmet/space/rig/security/skrell, /obj/item/clothing/head/helmet/space/rig/medical/skrell, /obj/item/clothing/head/helmet/space/rig/atmos/skrell, /obj/item/clothing/head/helmet/space/rig/skrell) + + from_suit = list(/obj/item/clothing/suit/space/rig/security, /obj/item/clothing/suit/space/rig/medical, /obj/item/clothing/suit/space/rig/atmos, /obj/item/clothing/suit/space/rig) + to_suit = list(/obj/item/clothing/suit/space/rig/security/skrell, /obj/item/clothing/suit/space/rig/medical/skrell, /obj/item/clothing/suit/space/rig/atmos/skrell, /obj/item/clothing/suit/space/rig/skrell) + + + diff --git a/code/modules/clothing/spacesuits/alien.dm b/code/modules/clothing/spacesuits/alien.dm index 4e931595..381259b8 100644 --- a/code/modules/clothing/spacesuits/alien.dm +++ b/code/modules/clothing/spacesuits/alien.dm @@ -282,3 +282,210 @@ item_state = "syndie_hardsuit" icon_state = "rig-syndie-human" species_restricted = list("Human") + +//BEGIN NEW ALIEN HARDSUIT ATTEMPT. + + +/obj/item/clothing/suit/space/rig/security/tajara + icon_state = "rig-sec" //change this when you can stop being dumb + desc = "A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor." + item_state = "sec_hardsuit" + species_restricted = list("Tajaran") + +/obj/item/clothing/suit/space/rig/security/skrell + icon_state = "rig-sec" + desc = "A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor." + item_state = "sec_hardsuit" + species_restricted = list("Skrell") + +/obj/item/clothing/suit/space/rig/security/unathi + icon_state = "rig-sec" + desc = "A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor." + item_state = "sec_hardsuit" + species_restricted = list("Unathi") + +/obj/item/clothing/head/helmet/space/rig/security/tajara + name = "security hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low pressure environment. Has an additional layer of armor." + icon_state = "rig0-sec" + item_state = "sec_helm" + species_restricted = list("Tajaran") + +/obj/item/clothing/head/helmet/space/rig/security/unathi + name = "security hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low pressure environment. Has an additional layer of armor." + icon_state = "rig0-sec" + item_state = "sec_helm" + species_restricted = list("Unathi") + +/obj/item/clothing/head/helmet/space/rig/security/skrell + name = "security hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low pressure environment. Has an additional layer of armor." + icon_state = "rig0-sec" + item_state = "sec_helm" + species_restricted = list("Skrell") + +/obj/item/clothing/suit/space/rig/atmos/tajara + icon_state = "rig-atmos" //change this when you can stop being dumb + desc = "A special suit that protects against hazardous, low pressure environments. Has improved thermal protection and minor radiation shielding." + item_state = "atmos_hardsuit" + species_restricted = list("Tajaran") + +/obj/item/clothing/suit/space/rig/atmos/skrell + icon_state = "rig-atmos" + desc = "A special suit that protects against hazardous, low pressure environments. Has improved thermal protection and minor radiation shielding." + item_state = "atmos_hardsuit" + species_restricted = list("Skrell") + +/obj/item/clothing/suit/space/rig/atmos/unathi + icon_state = "rig-atmos" + desc = "A special suit that protects against hazardous, low pressure environments. Has improved thermal protection and minor radiation shielding." + item_state = "atmos_hardsuit" + species_restricted = list("Unathi") + +/obj/item/clothing/head/helmet/space/rig/atmos/tajara + desc = "A special helmet designed for work in a hazardous, low pressure environments. Has improved thermal protection and minor radiation shielding." + name = "atmospherics hardsuit helmet" + icon_state = "rig0-atmos" + item_state = "atmos_helm" + species_restricted = list("Tajaran") + +/obj/item/clothing/head/helmet/space/rig/atmos/unathi + desc = "A special helmet designed for work in a hazardous, low pressure environments. Has improved thermal protection and minor radiation shielding." + name = "atmospherics hardsuit helmet" + icon_state = "rig0-atmos" + item_state = "atmos_helm" + species_restricted = list("Unathi") + +/obj/item/clothing/head/helmet/space/rig/atmos/skrell + desc = "A special helmet designed for work in a hazardous, low pressure environments. Has improved thermal protection and minor radiation shielding." + name = "atmospherics hardsuit helmet" + icon_state = "rig0-atmos" + item_state = "atmos_helm" + species_restricted = list("Skrell") + +/obj/item/clothing/suit/space/rig/medical/tajara + icon_state = "rig-medical" + name = "medical hardsuit" + desc = "A special suit that protects against hazardous, low pressure environments. Has minor radiation shielding." + item_state = "medical_hardsuit" + species_restricted = list("Tajaran") + +/obj/item/clothing/suit/space/rig/medical/unathi + icon_state = "rig-medical" + name = "medical hardsuit" + desc = "A special suit that protects against hazardous, low pressure environments. Has minor radiation shielding." + item_state = "medical_hardsuit" + species_restricted = list("Unathi") + +/obj/item/clothing/suit/space/rig/medical/skrell + icon_state = "rig-medical" + name = "medical hardsuit" + desc = "A special suit that protects against hazardous, low pressure environments. Has minor radiation shielding." + item_state = "medical_hardsuit" + species_restricted = list("Skrell") + +/obj/item/clothing/head/helmet/space/rig/medical/tajara + name = "medical hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low pressure environment. Has minor radiation shielding." + icon_state = "rig0-medical" + item_state = "medical_helm" + species_restricted = list("tajara") + +/obj/item/clothing/head/helmet/space/rig/medical/unathi + name = "medical hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low pressure environment. Has minor radiation shielding." + icon_state = "rig0-medical" + item_state = "medical_helm" + species_restricted = list("unathi") + +/obj/item/clothing/head/helmet/space/rig/medical/skrell + name = "medical hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low pressure environment. Has minor radiation shielding." + icon_state = "rig0-medical" + item_state = "medical_helm" + species_restricted = list("Skrell") + +/obj/item/clothing/suit/space/rig/mining/tajara + icon_state = "rig-mining" + name = "mining hardsuit" + desc = "A special suit that protects against hazardous, low pressure environments. Has reinforced plating." + item_state = "mining_hardsuit" + species_restricted = list("Tajaran") + +/obj/item/clothing/suit/space/rig/mining/unathi + icon_state = "rig-mining" + name = "mining hardsuit" + desc = "A special suit that protects against hazardous, low pressure environments. Has reinforced plating." + item_state = "mining_hardsuit" + species_restricted = list("Unathi") + +/obj/item/clothing/suit/space/rig/mining/skrell + icon_state = "rig-mining" + name = "mining hardsuit" + desc = "A special suit that protects against hazardous, low pressure environments. Has reinforced plating." + item_state = "mining_hardsuit" + species_restricted = list("Skrell") + +/obj/item/clothing/head/helmet/space/rig/mining/tajara + name = "mining hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low pressure environment. Has reinforced plating." + icon_state = "rig0-mining" + item_state = "mining_helm" + species_restricted = list("Tajaran") + +/obj/item/clothing/head/helmet/space/rig/mining/unathi + name = "mining hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low pressure environment. Has reinforced plating." + icon_state = "rig0-mining" + item_state = "mining_helm" + species_restricted = list("Unathi") + +/obj/item/clothing/head/helmet/space/rig/mining/skrell + name = "mining hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low pressure environment. Has reinforced plating." + icon_state = "rig0-mining" + item_state = "mining_helm" + species_restricted = list("Skrell") +/* +/obj/item/clothing/suit/space/rig/tajara + name = "engineering hardsuit" + desc = "A special suit that protects against hazardous, low pressure environments. Has radiation shielding." + icon_state = "rig-engineering" + item_state = "eng_hardsuit" + species_restricted = list("Tajaran") +*/ +/obj/item/clothing/suit/space/rig/unathi + name = "engineering hardsuit" + desc = "A special suit that protects against hazardous, low pressure environments. Has radiation shielding." + icon_state = "rig-engineering" + item_state = "eng_hardsuit" + species_restricted = list("Unathi") + +/obj/item/clothing/suit/space/rig/skrell + name = "engineering hardsuit" + desc = "A special suit that protects against hazardous, low pressure environments. Has radiation shielding." + icon_state = "rig-engineering" + item_state = "eng_hardsuit" + species_restricted = list("Skrell") +/* +/obj/item/clothing/head/helmet/space/rig/tajara + name = "engineering hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low-pressure environment. Has radiation shielding." + icon_state = "rig0-engineering" + item_state = "eng_helm" + species_restricted = list("Tajaran") +*/ +/obj/item/clothing/head/helmet/space/rig/unathi + name = "engineering hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low-pressure environment. Has radiation shielding." + icon_state = "rig0-engineering" + item_state = "eng_helm" + species_restricted = list("Unathi") + +/obj/item/clothing/head/helmet/space/rig/skrell + name = "engineering hardsuit helmet" + desc = "A special helmet designed for work in a hazardous, low-pressure environment. Has radiation shielding." + icon_state = "rig0-engineering" + item_state = "eng_helm" + species_restricted = list("Skrell") \ No newline at end of file diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 6be58256..00ad5725 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -1072,8 +1072,11 @@ datum required_container = /obj/item/slime_extract/gold required_other = 1 on_reaction(var/datum/reagents/holder) + for(var/mob/O in viewers(get_turf(holder.my_atom), null)) + O.show_message(text("The slime extract begins to vibrate violently !"), 1) + spawn(50) - /*var/blocked = list(/mob/living/simple_animal/hostile, + var/blocked = list(/mob/living/simple_animal/hostile, /mob/living/simple_animal/hostile/pirate, /mob/living/simple_animal/hostile/pirate/ranged, /mob/living/simple_animal/hostile/russian, @@ -1105,9 +1108,61 @@ datum C.loc = get_turf_loc(holder.my_atom) if(prob(50)) for(var/j = 1, j <= rand(1, 3), j++) - step(C, pick(NORTH,SOUTH,EAST,WEST))*/ - for(var/mob/O in viewers(get_turf_loc(holder.my_atom), null)) - O.show_message(text("\red The slime core fizzles disappointingly,"), 1) + step(C, pick(NORTH,SOUTH,EAST,WEST)) +// for(var/mob/O in viewers(get_turf_loc(holder.my_atom), null)) +// O.show_message(text("\red The slime core fizzles disappointingly,"), 1) +/* + slimecritlesser + name = "Slime Crit Lesser" + id = "m_tele3" + result = null + required_reagents = list("blood" = 1) + result_amount = 1 + required_container = /obj/item/slime_extract/gold + required_other = 1 + /datum/chemical_reaction/slimecritlesser/on_reaction(var/datum/reagents/holder) + feedback_add_details("slime_cores_used","[replacetext(name," ","_")]") + for(var/mob/O in viewers(get_turf(holder.my_atom), null)) + O.show_message(text("The slime extract begins to vibrate violently !"), 1) + spawn(50) + + if(holder && holder.my_atom) + + var/blocked = list(/mob/living/simple_animal/hostile, + /mob/living/simple_animal/hostile/pirate, + /mob/living/simple_animal/hostile/pirate/ranged, + /mob/living/simple_animal/hostile/russian, + /mob/living/simple_animal/hostile/russian/ranged, + /mob/living/simple_animal/hostile/syndicate, + /mob/living/simple_animal/hostile/syndicate/melee, + /mob/living/simple_animal/hostile/syndicate/melee/space, + /mob/living/simple_animal/hostile/syndicate/ranged, + /mob/living/simple_animal/hostile/syndicate/ranged/space, + /mob/living/simple_animal/hostile/alien/queen/large, + /mob/living/simple_animal/hostile/retaliate, + /mob/living/simple_animal/hostile/retaliate/clown, +/* /mob/living/simple_animal/hostile/mushroom, + /mob/living/simple_animal/hostile/asteroid, + /mob/living/simple_animal/hostile/asteroid/basilisk, + /mob/living/simple_animal/hostile/asteroid/goldgrub, + /mob/living/simple_animal/hostile/asteroid/goliath, + /mob/living/simple_animal/hostile/asteroid/hivelord, + /mob/living/simple_animal/hostile/asteroid/hivelordbrood, + /mob/living/simple_animal/hostile/carp/holocarp*/ + )//exclusion list for things you don't want the reaction to create. + var/list/critters = typesof(/mob/living/simple_animal/hostile) - blocked // list of possible hostile mobs + + playsound(get_turf(holder.my_atom), 'sound/effects/phasein.ogg', 100, 1) + + for(var/mob/living/carbon/human/M in viewers(get_turf(holder.my_atom), null)) + if(M:eyecheck() <= 0) + flick("e_flash", M.flash) + + var/chosen = pick(critters) + var/mob/living/simple_animal/hostile/C = new chosen + C.faction |= "neutral" + C.loc = get_turf(holder.my_atom) +*/ //Silver slimebork diff --git a/data/investigate/gravity.html b/data/investigate/gravity.html index 04e26d92..53516da6 100644 --- a/data/investigate/gravity.html +++ b/data/investigate/gravity.html @@ -1,2 +1,2 @@ -02:02 [0x2007767] (92,152,1) || the gravitational generator has regained power.
      -02:02 [0x2007767] (92,152,1) || the gravitational generator is now charging.
      +11:12 [0x200775e] (92,152,1) || the gravitational generator has regained power.
      +11:12 [0x200775e] (92,152,1) || the gravitational generator is now charging.
      From df3861c086a1ab67acf9e52d03910159ed8a4329 Mon Sep 17 00:00:00 2001 From: Duck- Date: Thu, 28 Aug 2014 15:22:06 -0400 Subject: [PATCH 17/23] Woops. Goldslimes. Re-enables, hopefully properly this time? Yay. Still figuring out cloneloss. Not enough time before update. Will puzzle more later or probably give up. I'm a giverupper. --- code/modules/reagents/Chemistry-Recipes.dm | 24 ++++++++-------------- data/investigate/gravity.html | 4 ++-- 2 files changed, 11 insertions(+), 17 deletions(-) diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 00ad5725..99d219f2 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -1072,10 +1072,6 @@ datum required_container = /obj/item/slime_extract/gold required_other = 1 on_reaction(var/datum/reagents/holder) - for(var/mob/O in viewers(get_turf(holder.my_atom), null)) - O.show_message(text("The slime extract begins to vibrate violently !"), 1) - spawn(50) - var/blocked = list(/mob/living/simple_animal/hostile, /mob/living/simple_animal/hostile/pirate, /mob/living/simple_animal/hostile/pirate/ranged, @@ -1100,7 +1096,6 @@ datum for(var/mob/living/carbon/human/M in viewers(get_turf_loc(holder.my_atom), null)) if(M:eyecheck() <= 0) flick("e_flash", M.flash) - for(var/i = 1, i <= 5, i++) var/chosen = pick(critters) var/mob/living/simple_animal/hostile/C = new chosen @@ -1141,14 +1136,14 @@ datum /mob/living/simple_animal/hostile/alien/queen/large, /mob/living/simple_animal/hostile/retaliate, /mob/living/simple_animal/hostile/retaliate/clown, -/* /mob/living/simple_animal/hostile/mushroom, - /mob/living/simple_animal/hostile/asteroid, - /mob/living/simple_animal/hostile/asteroid/basilisk, - /mob/living/simple_animal/hostile/asteroid/goldgrub, - /mob/living/simple_animal/hostile/asteroid/goliath, - /mob/living/simple_animal/hostile/asteroid/hivelord, - /mob/living/simple_animal/hostile/asteroid/hivelordbrood, - /mob/living/simple_animal/hostile/carp/holocarp*/ + /mob/living/simple_animal/hostile/mushroom, +/* /mob/living/simple_animal/hostile/asteroid, + /mob/living/simple_animal/hostile/asteroid/basilisk, + /mob/living/simple_animal/hostile/asteroid/goldgrub, + /mob/living/simple_animal/hostile/asteroid/goliath, + /mob/living/simple_animal/hostile/asteroid/hivelord, + /mob/living/simple_animal/hostile/asteroid/hivelordbrood, + /mob/living/simple_animal/hostile/carp/holocarp*/ Monsters we don't have )//exclusion list for things you don't want the reaction to create. var/list/critters = typesof(/mob/living/simple_animal/hostile) - blocked // list of possible hostile mobs @@ -1161,8 +1156,7 @@ datum var/chosen = pick(critters) var/mob/living/simple_animal/hostile/C = new chosen C.faction |= "neutral" - C.loc = get_turf(holder.my_atom) -*/ + C.loc = get_turf(holder.my_atom)*/ //Silver slimebork diff --git a/data/investigate/gravity.html b/data/investigate/gravity.html index 53516da6..c3b98f4e 100644 --- a/data/investigate/gravity.html +++ b/data/investigate/gravity.html @@ -1,2 +1,2 @@ -11:12 [0x200775e] (92,152,1) || the gravitational generator has regained power.
      -11:12 [0x200775e] (92,152,1) || the gravitational generator is now charging.
      +14:59 [0x200777c] (92,152,1) || the gravitational generator has regained power.
      +14:59 [0x200777c] (92,152,1) || the gravitational generator is now charging.
      From 6b4c959e0542c376ab8d0a93724f5c15ab57fa9a Mon Sep 17 00:00:00 2001 From: Duck- Date: Thu, 28 Aug 2014 15:29:21 -0400 Subject: [PATCH 18/23] Hacky vamp patchjob I probably should have left it alone! --- code/game/gamemodes/vampire/vampire.dm | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/code/game/gamemodes/vampire/vampire.dm b/code/game/gamemodes/vampire/vampire.dm index dd5f272b..188108cf 100644 --- a/code/game/gamemodes/vampire/vampire.dm +++ b/code/game/gamemodes/vampire/vampire.dm @@ -10,7 +10,7 @@ restricted_jobs = list("AI", "Cyborg", "Mobile MMI", "Security Officer", "Warden", "Detective", "Head of Security", "Captain", "Chaplain", "Security Pod Pilot", "Nanotrasen Recruiter", "Magistrate") //Consistent screening has filtered all infiltration attempts on high value jobs protected_jobs = list() required_players = 1 - required_players_secret = 15 + required_players_secret = 10 required_enemies = 1 recommended_enemies = 4 @@ -77,7 +77,8 @@ for(var/datum/mind/vampire in vampires) grant_vampire_powers(vampire.current) vampire.special_role = "Vampire" - forge_vampire_objectives(vampire) + if(!config.objectives_disabled) + forge_vampire_objectives(vampire) greet_vampire(vampire) spawn (rand(waittime_l, waittime_h)) @@ -121,13 +122,13 @@ special_role_text = lowertext(vampire.special_role) else special_role_text = "antagonist" - - if(traitorwin) - text += "
      The [special_role_text] was successful!" - feedback_add_details("traitor_success","SUCCESS") - else - text += "
      The [special_role_text] has failed!" - feedback_add_details("traitor_success","FAIL") + if (!config.objectives_disabled) + if(traitorwin) + text += "
      The [special_role_text] was successful!" + feedback_add_details("traitor_success","SUCCESS") + else + text += "
      The [special_role_text] has failed!" + feedback_add_details("traitor_success","FAIL") world << text return 1 @@ -152,6 +153,9 @@ /datum/game_mode/proc/forge_vampire_objectives(var/datum/mind/vampire) //Objectives are traitor objectives plus blood objectives + if (config.objectives_disabled) + return + var/datum/objective/blood/blood_objective = new blood_objective.owner = vampire blood_objective.gen_amount_goal(150, 400) From 80a7f8820b7e237848ed3efe8e704f3a1f66e4bf Mon Sep 17 00:00:00 2001 From: skull132 Date: Thu, 28 Aug 2014 22:30:06 +0300 Subject: [PATCH 19/23] Rapunzel 2 Fixes the odds of hair getting tangled. Adds delibirately feeding hair into certain machines. --- code/game/machinery/autolathe.dm | 41 +++++++++++++++++++- code/game/machinery/kitchen/gibber.dm | 2 +- code/game/mecha/mech_fabricator.dm | 41 +++++++++++++++++++- code/modules/reagents/Chemistry-Machinery.dm | 41 +++++++++++++++++++- code/modules/recycling/disposal.dm | 2 +- 5 files changed, 122 insertions(+), 5 deletions(-) diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index e1750ce9..e9fbe390 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -151,7 +151,7 @@ var/global/list/autolathe_recipes_hidden = list( \ if(istype(user, /mob/living/carbon/human)) var/mob/living/carbon/human/M = user if(M.h_style == "Floorlength Braid" || M.h_style == "Very Long Hair") - if(prob(25)) + if(prob(10)) M.apply_damage(30, BRUTE, "head") M.apply_damage(45, HALLOSS) M.visible_message("\red [user]'s hair catches in the [src]!", "\red Your hair gets caught in the [src]!") @@ -407,3 +407,42 @@ var/global/list/autolathe_recipes_hidden = list( \ w -= src.shock_wire src.disable_wire = pick(w) w -= src.disable_wire + + MouseDrop_T(mob/living/carbon/human/target as mob, mob/user as mob) + if (!istype(target) || target.buckled || get_dist(user, src) > 1 || get_dist(user, target) > 1 || user.stat || istype(user, /mob/living/silicon/ai)) + return + if(target == user) + if(target.h_style == "Floorlength Braid" || target.h_style == "Very Long Hair") + user.visible_message("\blue [user] looks like they're about to feed their own hair into the [src], but think better of it.", "\blue You grasp your hair and are about to feed it into the [src], but stop and come to your sense.") + return + src.add_fingerprint(user) + var/target_loc = target.loc + if(target != user && !user.restrained() && !user.stat && !user.weakened && !user.stunned && !user.paralysis) + if(target.h_style != "Cut Hair" || target.h_style != "Short Hair" || target.h_style != "Skinhead" || target.h_style != "Buzzcut" || target.h_style != "Crewcut" || target.h_style != "Bald" || target.h_style != "Balding Hair") + user.visible_message("\red [user] starts feeding [target]'s hair into the [src]!", "\red You start feeding [target]'s hair into the [src]!") + if(!do_after(usr, 50)) + return + if(target_loc != target.loc) + return + if(target != user && !user.restrained() && !user.stat && !user.weakened && !user.stunned && !user.paralysis) + user.visible_message("\red [user] feeds the [target]'s hair into the [src] and flicks it on!", "\red You turn the [src] on!") + target.apply_damage(30, BRUTE, "head") + target.apply_damage(25, HALLOSS) + target.say("*scream") + + user.attack_log += text("\[[time_stamp()]\] Has fed [target.name]'s ([target.ckey]) hair into a [src].") + target.attack_log += text("\[[time_stamp()]\] Has had their hair fed into [src] by [user.name] ([user.ckey])") + msg_admin_attack("[user] ([user.ckey]) fed [target]'s ([target.ckey]) in a [src]. (JMP)") + else + return + if(!do_after(usr, 35)) + return + if(target_loc != target.loc) + return + if(target != user && !user.restrained() && !user.stat && !user.weakened && !user.stunned && !user.paralysis) + user.visible_message("\red [user] starts tugging on [target]'s head as the [src] keeps running!", "\red You start tugging on [target]'s head!") + target.apply_damage(25, BRUTE, "head") + target.apply_damage(10, HALLOSS) + target.say("*scream") + spawn(10) + user.visible_message("\red [user] stops the [src] and leaves [target] resting as they are.", "\red You turn the [src] off and let go of [target].") \ No newline at end of file diff --git a/code/game/machinery/kitchen/gibber.dm b/code/game/machinery/kitchen/gibber.dm index 7d1a54d9..7d2ffc5a 100644 --- a/code/game/machinery/kitchen/gibber.dm +++ b/code/game/machinery/kitchen/gibber.dm @@ -82,7 +82,7 @@ if(istype(user, /mob/living/carbon/human)) var/mob/living/carbon/human/M = user if(M.h_style == "Floorlength Braid" || M.h_style == "Very Long Hair") - if(prob(25)) + if(prob(10)) M.apply_damage(30, BRUTE, "head") M.apply_damage(45, HALLOSS) M.visible_message("\red [user]'s hair catches in the [src]!", "\red Your hair gets caught in the [src]!") diff --git a/code/game/mecha/mech_fabricator.dm b/code/game/mecha/mech_fabricator.dm index d8794b83..081d997d 100644 --- a/code/game/mecha/mech_fabricator.dm +++ b/code/game/mecha/mech_fabricator.dm @@ -555,7 +555,7 @@ if(istype(user, /mob/living/carbon/human)) var/mob/living/carbon/human/M = user if(M.h_style == "Floorlength Braid" || M.h_style == "Very Long Hair") - if(prob(25)) + if(prob(10)) M.apply_damage(30, BRUTE, "head") M.apply_damage(45, HALLOSS) M.visible_message("\red [user]'s hair catches in the [src]!", "\red Your hair gets caught in the [src]!") @@ -850,3 +850,42 @@ else user << "The fabricator cannot hold more [sname]." return + +/obj/machinery/mecha_part_fabricator/MouseDrop_T(mob/living/carbon/human/target as mob, mob/user as mob) + if (!istype(target) || target.buckled || get_dist(user, src) > 1 || get_dist(user, target) > 1 || user.stat || istype(user, /mob/living/silicon/ai)) + return + if(target == user) + if(target.h_style == "Floorlength Braid" || target.h_style == "Very Long Hair") + user.visible_message("\blue [user] looks like they're about to feed their own hair into the [src], but think better of it.", "\blue You grasp your hair and are about to feed it into the [src], but stop and come to your sense.") + return + src.add_fingerprint(user) + var/target_loc = target.loc + if(target != user && !user.restrained() && !user.stat && !user.weakened && !user.stunned && !user.paralysis) + if(target.h_style != "Cut Hair" || target.h_style != "Short Hair" || target.h_style != "Skinhead" || target.h_style != "Buzzcut" || target.h_style != "Crewcut" || target.h_style != "Bald" || target.h_style != "Balding Hair") + user.visible_message("\red [user] starts feeding [target]'s hair into the [src]!", "\red You start feeding [target]'s hair into the [src]!") + if(!do_after(usr, 50)) + return + if(target_loc != target.loc) + return + if(target != user && !user.restrained() && !user.stat && !user.weakened && !user.stunned && !user.paralysis) + user.visible_message("\red [user] feeds the [target]'s hair into the [src] and flicks it on!", "\red You turn the [src] on!") + target.apply_damage(30, BRUTE, "head") + target.apply_damage(25, HALLOSS) + target.say("*scream") + + user.attack_log += text("\[[time_stamp()]\] Has fed [target.name]'s ([target.ckey]) hair into a [src].") + target.attack_log += text("\[[time_stamp()]\] Has had their hair fed into [src] by [user.name] ([user.ckey])") + msg_admin_attack("[user] ([user.ckey]) fed [target]'s ([target.ckey]) in a [src]. (JMP)") + else + return + if(!do_after(usr, 35)) + return + if(target_loc != target.loc) + return + if(target != user && !user.restrained() && !user.stat && !user.weakened && !user.stunned && !user.paralysis) + user.visible_message("\red [user] starts tugging on [target]'s head as the [src] keeps running!", "\red You start tugging on [target]'s head!") + target.apply_damage(25, BRUTE, "head") + target.apply_damage(10, HALLOSS) + target.say("*scream") + spawn(10) + user.visible_message("\red [user] stops the [src] and leaves [target] resting as they are.", "\red You turn the [src] off and let go of [target].") \ No newline at end of file diff --git a/code/modules/reagents/Chemistry-Machinery.dm b/code/modules/reagents/Chemistry-Machinery.dm index 520614c2..b43dc1f7 100644 --- a/code/modules/reagents/Chemistry-Machinery.dm +++ b/code/modules/reagents/Chemistry-Machinery.dm @@ -1023,7 +1023,7 @@ if(istype(user, /mob/living/carbon/human)) var/mob/living/carbon/human/M = user if(M.h_style == "Floorlength Braid" || M.h_style == "Very Long Hair") - if(prob(25)) + if(prob(10)) M.apply_damage(30, BRUTE, "head") M.apply_damage(45, HALLOSS) M.visible_message("\red [user]'s hair catches in the [src]!", "\red Your hair gets caught in the [src]!") @@ -1278,3 +1278,42 @@ O.reagents.trans_to(beaker, amount) if(!O.reagents.total_volume) remove_object(O) + +/obj/machinery/reagentgrinder/MouseDrop_T(mob/living/carbon/human/target as mob, mob/user as mob) + if (!istype(target) || target.buckled || get_dist(user, src) > 1 || get_dist(user, target) > 1 || user.stat || istype(user, /mob/living/silicon/ai)) + return + if(target == user) + if(target.h_style == "Floorlength Braid" || target.h_style == "Very Long Hair") + user.visible_message("\blue [user] looks like they're about to feed their own hair into the [src], but think better of it.", "\blue You grasp your hair and are about to feed it into the [src], but stop and come to your sense.") + return + src.add_fingerprint(user) + var/target_loc = target.loc + if(target != user && !user.restrained() && !user.stat && !user.weakened && !user.stunned && !user.paralysis) + if(target.h_style != "Cut Hair" || target.h_style != "Short Hair" || target.h_style != "Skinhead" || target.h_style != "Buzzcut" || target.h_style != "Crewcut" || target.h_style != "Bald" || target.h_style != "Balding Hair") + user.visible_message("\red [user] starts feeding [target]'s hair into the [src]!", "\red You start feeding [target]'s hair into the [src]!") + if(!do_after(usr, 50)) + return + if(target_loc != target.loc) + return + if(target != user && !user.restrained() && !user.stat && !user.weakened && !user.stunned && !user.paralysis) + user.visible_message("\red [user] feeds the [target]'s hair into the [src] and flicks it on!", "\red You turn the [src] on!") + target.apply_damage(30, BRUTE, "head") + target.apply_damage(25, HALLOSS) + target.say("*scream") + + user.attack_log += text("\[[time_stamp()]\] Has fed [target.name]'s ([target.ckey]) hair into a [src].") + target.attack_log += text("\[[time_stamp()]\] Has had their hair fed into [src] by [user.name] ([user.ckey])") + msg_admin_attack("[user] ([user.ckey]) fed [target]'s ([target.ckey]) in a [src]. (JMP)") + else + return + if(!do_after(usr, 35)) + return + if(target_loc != target.loc) + return + if(target != user && !user.restrained() && !user.stat && !user.weakened && !user.stunned && !user.paralysis) + user.visible_message("\red [user] starts tugging on [target]'s head as the [src] keeps running!", "\red You start tugging on [target]'s head!") + target.apply_damage(25, BRUTE, "head") + target.apply_damage(10, HALLOSS) + target.say("*scream") + spawn(10) + user.visible_message("\red [user] stops the [src] and leaves [target] resting as they are.", "\red You turn the [src] off and let go of [target].") \ No newline at end of file diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 85364608..82a3f9b9 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -235,7 +235,7 @@ if(istype(user, /mob/living/carbon/human)) var/mob/living/carbon/human/M = user if(M.h_style == "Floorlength Braid" || M.h_style == "Very Long Hair") - if(prob(25)) + if(prob(5)) M.apply_damage(30, BRUTE, "head") M.apply_damage(45, HALLOSS) M.visible_message("\red [user]'s hair catches in the [src]!", "\red Your hair gets caught in the [src]!") From 175ed36430c1f71e2939759125d7e1bc15167c00 Mon Sep 17 00:00:00 2001 From: skull132 Date: Thu, 28 Aug 2014 22:30:43 +0300 Subject: [PATCH 20/23] Teddy bears! One for the psychiatrist, one for the whiny nurse (Jenifer). --- code/game/objects/items/toys.dm | 42 +++++++++++++++++++++++- code/modules/customitems/item_defines.dm | 25 ++------------ 2 files changed, 43 insertions(+), 24 deletions(-) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index dcfbf14f..e6e41270 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -595,4 +595,44 @@ item_state = "inflatable" flags = FPRINT | TABLEPASS icon = 'icons/obj/clothing/belts.dmi' - slot_flags = SLOT_BELT \ No newline at end of file + slot_flags = SLOT_BELT + +/obj/item/toy/teddy + name = "toy monkey" + desc = "Diaper sold seperately." + icon = 'icons/obj/toy.dmi' + icon_state = "monkey" + w_class = 2 + force = 1 + throwforce = 2 + var/headless = 0 + + attack_self(mob/user as mob) + if(user.a_intent == "hurt") + if(headless == 1) + user.visible_message("[user] stares at [src] full of anger, but elects not to tear any more limbs off of it.", "You've already ripped [src]'s head off, what else do you want to do to it!?") + else + user.visible_message("[user] clutches [src] with anger, and rips its head off, dropping it to the ground!", "You are unable to contain your anger any longer! Off with its head!") + headless = 1 + var/turf/T = get_turf(user) + if(istype(src, /obj/item/toy/teddy)) + new /obj/item/toy/teddy_head(T) + if(istype(src, /obj/item/toy/teddy/fluff/jenifer_bear)) + new /obj/item/toy/fluff/jenifer_bear_head(T) + desc = "[initial(desc)] \red It's lacking a head!" + icon_state = "[initial(icon_state)]_headless" + src.update_icon() + else + if(headless == 1) + user.visible_message("[user] clutches [src] with both arms, weeping slightly as they embrace the headless toy.", "You clutch the toy, shivering and weeping slightly. Who would do such a monsterous thing?") + else + user.visible_message("[user] clutches [src] and embraces it!", "You hug the toy, and suddenly feel how the weight of the world is lifted from your shoulders!") + +/obj/item/toy/teddy_head + name = "\improper teddybear head" + desc = "The head of a brown teddy, cruelly torn from its original body. You can see stuffing fall out of it." + icon = 'icons/obj/toy.dmi' + icon_state = "monkey_head" + w_class = 1 + force = 1 + throwforce = 1 \ No newline at end of file diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 939ddf51..4eeac4b7 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -785,34 +785,13 @@ icon_state = "corpsoft" item_color = "corp" -/obj/item/fluff/jenifer_bear //Doctor SnuggleBuns - Jenifer Clewett - bluesp34r - SPRITE +/obj/item/toy/teddy/fluff/jenifer_bear //Doctor SnuggleBuns - Jenifer Clewett - bluesp34r - SPRITE name = "Doctor SnuggleBuns" desc = "A fluffy-wuffy brown teddy bear! This one is wearing a blue lab coat, much like a Chief Medical Officer!" icon = 'icons/obj/custom_items.dmi' icon_state = "jenifer_bear" - w_class = 2 - force = 1 - throwforce = 2 - var/headless = 0 - attack_self(mob/user as mob) - if(user.a_intent == "hurt") - if(headless == 1) - user.visible_message("[user] stares at [src] full of anger, but elects not to tear any more limbs off of it.", "You've already ripped [src]'s head off, what else do you want to do to it!?") - else - user.visible_message("[user] clutches [src] with anger, and rips its head off, dropping it to the ground!", "You are unable to contain your anger any longer! Off with its head!") - headless = 1 - var/turf/T = get_turf(user) - new /obj/item/fluff/jenifer_bear_head(T) - desc = "A fluffy-wuffy brown teddy bear! This one is wearing a blue lab coat, much like a Chief Medical Officer! \red It's lacking a head!" - update_icon() - else - if(headless == 1) - user.visible_message("[user] clutches [src] with both arms, weeping slightly as they embrace the headless toy.", "You clutch the toy, shivering and weeping slightly. Who would do such a monsterous thing?") - else - user.visible_message("[user] clutches [src] and embraces it!", "You hug the toy, and suddenly feel how the weight of the world is lifted from your shoulders!") - -/obj/item/fluff/jenifer_bear_head +/obj/item/toy/fluff/jenifer_bear_head name = "\improper teddybear head" desc = "The head of a brown teddy, cruelly torn from its original body. You can see stuffing fall out of it." icon = 'icons/obj/custom_items.dmi' From d97bbb53f739ce3cde7285bb876a91c566070d71 Mon Sep 17 00:00:00 2001 From: skull132 Date: Thu, 28 Aug 2014 22:30:53 +0300 Subject: [PATCH 21/23] Teddy Sprites Yes. --- icons/obj/toy.dmi | Bin 15559 -> 5066 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/toy.dmi b/icons/obj/toy.dmi index a921d45d4830b1a9783fc082814cc381d07abec4..85d41e31050e24e1f7a7440ddd0b6035509233fd 100644 GIT binary patch literal 5066 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 literal 15559 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 S2K<3CAoWS^W2LCB-~RzQt>A$G From 5b6797538a66f8a54061d4dda5c49328a2f5a600 Mon Sep 17 00:00:00 2001 From: skull132 Date: Thu, 28 Aug 2014 22:32:23 +0300 Subject: [PATCH 22/23] Defibs Burn Because yes. --- code/game/objects/items/weapons/defib.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/items/weapons/defib.dm b/code/game/objects/items/weapons/defib.dm index 3be86dfa..dc969588 100644 --- a/code/game/objects/items/weapons/defib.dm +++ b/code/game/objects/items/weapons/defib.dm @@ -91,9 +91,11 @@ if(charges >= 2) H.Weaken(10) H.adjustOxyLoss(10) + H.apply_damage(10, BURN, "chest") else H.Weaken(5) H.adjustOxyLoss(5) + H.apply_damage(5, BURN, "chest") H.updatehealth() //forces health update before next life tick spark_system.attach(M) spark_system.set_up(5, 0, M) From 4dd5aada33f78b0d1125573ac4122f616716ed7b Mon Sep 17 00:00:00 2001 From: skull132 Date: Thu, 28 Aug 2014 22:33:08 +0300 Subject: [PATCH 23/23] Map Update 28AUG2014 Adds teh huggable thing to the psych ward. --- maps/tgstation2.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/tgstation2.dmm b/maps/tgstation2.dmm index 79b4a72f..3f6c3788 100644 --- a/maps/tgstation2.dmm +++ b/maps/tgstation2.dmm @@ -5124,7 +5124,7 @@ "bUB" = (/obj/machinery/vending/medical,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) "bUC" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light_switch{pixel_x = -23},/turf/simulated/floor{icon_state = "bcarpet07"},/area/medical/psych) "bUD" = (/obj/machinery/light,/obj/structure/stool/bed/chair/comfy/brown{icon_state = "comfychair_brown"; dir = 4},/obj/effect/landmark/start{name = "Psychiatrist"},/obj/machinery/door_control{id = "Medical_Psychiatry"; name = "Privacy Shutters"; pixel_y = -25},/turf/simulated/floor{icon_state = "bcarpet08"},/area/medical/psych) -"bUE" = (/obj/structure/table,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "bcarpet08"},/area/medical/psych) +"bUE" = (/obj/structure/table,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/item/toy/teddy,/turf/simulated/floor{icon_state = "bcarpet08"},/area/medical/psych) "bUF" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = -28},/obj/structure/stool/bed/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 2; on = 1; scrub_CO2 = 0; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "bcarpet08"},/area/medical/psych) "bUG" = (/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/pill/methylphenidate,/obj/item/weapon/reagent_containers/pill/citalopram,/obj/item/weapon/reagent_containers/pill/citalopram,/obj/item/weapon/reagent_containers/pill/methylphenidate,/obj/item/weapon/reagent_containers/glass/bottle/stoxin,/obj/item/clothing/suit/straight_jacket{layer = 3},/obj/structure/closet/secure_closet{name = "Psychiatrist's Locker"; req_access = null; req_access_txt = "64"},/obj/item/weapon/storage/box/cups,/turf/simulated/floor{icon_state = "bcarpet09"},/area/medical/psych) "bUH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/securearea{pixel_x = 32},/turf/simulated/floor/plating,/area/maintenance/asmaint)