mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
•Added quick fix about processor not accepting the milk bottle
•Fixed blood decals and positioning of the chef's knife •Actually included a log this time, derp •Nutrition limit to get fat raised a lil' bit, from 400 to 600. We're gonna have a lot of fatsos now with meatbread. Working on East-West fatguy sprites. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@62 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -3,7 +3,7 @@ obj/machinery/processor/attackby(var/obj/item/O as obj, var/mob/user as mob)
|
||||
user << "Something is already in the processing chamber."
|
||||
return 0
|
||||
else
|
||||
if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/wheat) || istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/chili) || istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/tomato))
|
||||
if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/wheat) || istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/chili) || istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown/tomato) || istype(O, /obj/item/weapon/reagent_containers/food/drinks/milk))
|
||||
user.drop_item()
|
||||
O.loc = src
|
||||
else
|
||||
|
||||
@@ -341,7 +341,7 @@
|
||||
|
||||
if(reagents) reagents.metabolize(src)
|
||||
|
||||
if(src.nutrition > 400 && !(src.mutations & 32))
|
||||
if(src.nutrition > 600 && !(src.mutations & 32))
|
||||
if(prob(5 + round((src.nutrition - 200) / 2)))
|
||||
src << "\red You suddenly feel blubbery!"
|
||||
src.mutations |= 32
|
||||
|
||||
@@ -41,6 +41,16 @@
|
||||
<p><strong>Visit our IRC channel, #tgstation13 on irc.rizon.net</strong></p>
|
||||
|
||||
<h2>Changelog</h2>
|
||||
<h3>Monday, September 6, 11.04</h3>
|
||||
<ul>
|
||||
<li>Added kitchen stuff: Meatbread, Cheese wheel, Omelette Du fromage, Muffins. Kitchen knife now spawns in the chef's storage and can be used to slice the meatbread loaf or cheese wheel into wedges. Cheese wedges can be used in the microwave to make stuff. Cheese wheels made by using Milk (now spawns 8 bottles in the chef's fridge) on the food processor. Everything's got their respective icons.</li>
|
||||
<li>Recipes: Meatbread: 3 cheese 3 meat 3 flour Omelette: 2 eggs 2 cheese Muffin: 1 egg 1 flour</li>
|
||||
<li>Cholesterol is out, for now. Shit doesn't work.</li>
|
||||
<li>Raised the YOU-ARE-FAT limit to src.nutrition > 600 instead of 400. Meatbread tends to make people fat, fast.</li>
|
||||
<li>Included a fix for the cleaner spraying when added to the backpack.</li>
|
||||
<li>Fixed blood and positioning decals for the Kitchen Knife.</li>
|
||||
<li>Forkloads of food half-in, not yet working. Forks dont spawn but if someone gets his hands on one, he can hit the omelette with it and the fork will change its icon to a "loaded with omelette" fork. TO DO: Actually get the loaded fork to feed the user once he hits himself with it.
|
||||
</ul>
|
||||
<h3>Thursday, September 2, 22:45</h3>
|
||||
<ul>
|
||||
<li>Ghosts can no longer release the singularity.</li>
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Reference in New Issue
Block a user