Skip to content

Commit

Permalink
Removes tatortots and fixes recipe issues (#3175)
Browse files Browse the repository at this point in the history
## About The Pull Request

Potatoes no longer turn into tator tots when put into the food
processor, instead becoming fries. The potato wedge to fries recipe was
removed as well.

## Why It's Good For The Game

Fixes: #2693, and
despite tator tots existing the sprite sucks ass big time, has a flavour
profile that references validhunting, and is Straight Up the only use
for potato wedges for an item that is never put on the table.

This subsequently prevents potato wedges from infinitely being able to
be cut into itself, and be used for normal potato recipes.

## Changelog

:cl:
del: Removed tator tots and raw potato wedges 
/:cl:
  • Loading branch information
generalthrax authored Jul 10, 2024
1 parent 730a080 commit 0ef5a0d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 37 deletions.
13 changes: 0 additions & 13 deletions code/modules/food_and_drinks/food/snacks_other.dm
Original file line number Diff line number Diff line change
Expand Up @@ -112,19 +112,6 @@
. = ..()
AddElement(/datum/element/dunkable, 10)

/obj/item/reagent_containers/food/snacks/tatortot
name = "tator tot"
desc = "A large fried potato nugget that may or may not try to valid you."
icon_state = "tatortot"
list_reagents = list(/datum/reagent/consumable/nutriment = 4)
filling_color = "FFD700"
tastes = list("potato" = 3, "valids" = 1)
foodtype = FRIED | VEGETABLES

/obj/item/reagent_containers/food/snacks/tatortot/Initialize()
. = ..()
AddElement(/datum/element/dunkable, 10)

/obj/item/reagent_containers/food/snacks/soydope
name = "soy dope"
desc = "Dope from a soy."
Expand Down
6 changes: 1 addition & 5 deletions code/modules/food_and_drinks/recipes/processor_recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,13 @@
input = /obj/item/reagent_containers/food/snacks/meat/rawcutlet
output = /obj/item/reagent_containers/food/snacks/meat/rawbacon

/datum/food_processor_process/potatowedges
input = /obj/item/reagent_containers/food/snacks/grown/potato/wedges
output = /obj/item/reagent_containers/food/snacks/fries

/datum/food_processor_process/sweetpotato
input = /obj/item/reagent_containers/food/snacks/grown/potato/sweet
output = /obj/item/reagent_containers/food/snacks/yakiimo

/datum/food_processor_process/potato
input = /obj/item/reagent_containers/food/snacks/grown/potato
output = /obj/item/reagent_containers/food/snacks/tatortot
output = /obj/item/reagent_containers/food/snacks/fries

/datum/food_processor_process/carrot
input = /obj/item/reagent_containers/food/snacks/grown/carrot
Expand Down
19 changes: 0 additions & 19 deletions code/modules/hydroponics/grown/potato.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,6 @@
juice_results = list(/datum/reagent/consumable/potato_juice = 0)
distill_reagent = /datum/reagent/consumable/ethanol/vodka

/obj/item/reagent_containers/food/snacks/grown/potato/wedges
name = "potato wedges"
desc = "Slices of neatly cut potato."
icon_state = "potato_wedges"
filling_color = "#E9967A"
bitesize = 100


/obj/item/reagent_containers/food/snacks/grown/potato/attackby(obj/item/W, mob/user, params)
if(W.get_sharpness())
to_chat(user, "<span class='notice'>You cut the potato into wedges with [W].</span>")
var/obj/item/reagent_containers/food/snacks/grown/potato/wedges/Wedges = new /obj/item/reagent_containers/food/snacks/grown/potato/wedges
remove_item_from_storage(user)
qdel(src)
user.put_in_hands(Wedges)
else
return ..()


// Sweet Potato
/obj/item/seeds/potato/sweet
name = "pack of sweet potato seeds"
Expand Down

0 comments on commit 0ef5a0d

Please sign in to comment.