mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
Merge pull request #14822 from Heroman3003/ramenratr
Adds altevian ramenpacks and tacopacks
This commit is contained in:
committed by
CHOMPStation2
parent
b6b1c06e85
commit
0f13258b0f
@@ -64,4 +64,35 @@
|
||||
/obj/item/trash/ratpackturkey
|
||||
name = "\improper Prepackaged Meal Tray"
|
||||
icon = 'icons/obj/trash_vr.dmi'
|
||||
icon_state = "altevian_pack_turkey-trash"
|
||||
icon_state = "altevian_pack_turkey-trash"
|
||||
|
||||
/obj/item/trash/ratpackramen
|
||||
name = "\improper Prepackaged Meal Tray"
|
||||
icon = 'icons/obj/trash_vr.dmi'
|
||||
icon_state = "altevian_pack_ramen_standard-trash"
|
||||
|
||||
/obj/item/trash/ratpackramen/standard
|
||||
icon_state = "altevian_pack_ramen_standard-trash"
|
||||
|
||||
/obj/item/trash/ratpackramen/lacquer1
|
||||
icon_state = "altevian_pack_ramen_lacquer1-trash"
|
||||
|
||||
/obj/item/trash/ratpackramen/lacquer2
|
||||
icon_state = "altevian_pack_ramen_lacquer2-trash"
|
||||
|
||||
/obj/item/trash/ratpackramen/lacquer3
|
||||
icon_state = "altevian_pack_ramen_lacquer3-trash"
|
||||
|
||||
/obj/item/trash/ratpackramen/fleet
|
||||
icon_state = "altevian_pack_ramen_fleet-trash"
|
||||
|
||||
/obj/item/trash/ratpackramen/trans
|
||||
icon_state = "altevian_pack_ramen_trans-trash"
|
||||
|
||||
/obj/item/trash/ratpackramen/ace
|
||||
icon_state = "altevian_pack_ramen_ace-trash"
|
||||
|
||||
/obj/item/trash/ratpacktaco
|
||||
name = "\improper Prepackaged Meal Tray"
|
||||
icon = 'icons/obj/trash_vr.dmi'
|
||||
icon_state = "altevian_pack_taco-trash"
|
||||
@@ -864,7 +864,7 @@
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/ratpackturkey
|
||||
name = "Compact Holiday Special Bird"
|
||||
desc = "A great gift for holidays for assorted species. This contains a full freshly cooked turkey. Open and enjoy. Courtesy of altevian packaging"
|
||||
desc = "A great gift for holidays for assorted species. This contains a full freshly cooked turkey. Open and enjoy. Courtesy of altevian packaging."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "altevian_pack_turkey"
|
||||
package_open_state = "altevian_pack_turkey-open"
|
||||
@@ -873,3 +873,43 @@
|
||||
trash = /obj/item/trash/ratpackturkey
|
||||
nutriment_amt = 18
|
||||
nutriment_desc = list("high-quality poultry" = 4)
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/ratpackramen
|
||||
name = "Big Noodle Package"
|
||||
desc = "A pack containing fully cooked ramen meal, alongside some seafood-and-rice based sides. Utensils included. For those who prefer more traditional meals."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "altevian_pack_ramen"
|
||||
package_open_state = "altevian_pack_ramen_standard-open"
|
||||
package_opening_state = "altevian_pack_ramen_standard-opening"
|
||||
package = TRUE
|
||||
trash = /obj/item/trash/ratpackramen/standard
|
||||
nutriment_amt = 2
|
||||
nutriment_desc = list("savory noodles" = 4)
|
||||
var/list/bowl_color_options = list("standard" = 6,
|
||||
"lacquer1" = 2,
|
||||
"lacquer2" = 2,
|
||||
"lacquer3" = 2,
|
||||
"fleet" = 6,
|
||||
"trans" = 3,
|
||||
"ace" = 3)
|
||||
var/randomize_bowl_color = TRUE
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/ratpackramen/Initialize()
|
||||
. = ..()
|
||||
if(randomize_bowl_color)
|
||||
var/bowl_color = pickweight(bowl_color_options)
|
||||
package_open_state = "altevian_pack_ramen_[bowl_color]-open"
|
||||
package_opening_state = "altevian_pack_ramen_[bowl_color]-opening"
|
||||
trash = text2path("/obj/item/trash/ratpackramen/[bowl_color]")
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/ratpacktaco
|
||||
name = "Triple Taco Tuck"
|
||||
desc = "Three mini-tacos, minituarized further via altevian mad science into a convenient container. It comes with a salsa sauce!"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "altevian_pack_taco"
|
||||
package_open_state = "altevian_pack_taco-open"
|
||||
package_opening_state = "altevian_pack_taco-opening"
|
||||
package = TRUE
|
||||
trash = /obj/item/trash/ratpacktaco
|
||||
nutriment_amt = 2
|
||||
nutriment_desc = list("salsa sauce" = 2, "meat chunks" = 4, "cheese" = 3)
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 68 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 2.2 KiB |
Reference in New Issue
Block a user