Adds altevian ramenpacks

This commit is contained in:
Heroman
2023-04-28 15:21:31 +10:00
parent 000457df4a
commit ffa7b9d3d9
4 changed files with 56 additions and 2 deletions
+27 -1
View File
@@ -64,4 +64,30 @@
/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"
+29 -1
View File
@@ -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,31 @@
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]")
Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB