Mega nukies (#16110)

* Mega Nukies

Added a variety of Nukies called Mega Nukies that can only rarely be found in maintenance loot. These super caffeinated drinks come with a warning label about health hazards and may have the following effects:

The ability to see in the dark perfectly, with a small risk to your eyes.
Good healing of brute and burn damage at the risk of damaging your heart.
Putting you to sleep until you've processed all of it.
Repairing your NIF and filling you up, but confuses you if you don't have a NIF installed!
Hyperzine speed, way less addictive but may cause modest burns!
Gets you real high.
Slowly shrinks you.
Slowly grows you.

* Unique colours
This commit is contained in:
SatinIsle
2024-07-21 19:56:52 +10:00
committed by GitHub
parent b93ce5619e
commit 3775663482
8 changed files with 295 additions and 1 deletions
+2 -1
View File
@@ -114,7 +114,8 @@ something, make sure it's not in one of the other lists.*/
prob(1);/obj/item/toy/baseball,
prob(1);/obj/item/pizzavoucher,
prob(5);/obj/item/weapon/material/fishing_net/butterfly_net,
prob(2);/obj/item/weapon/cracker
prob(2);/obj/item/weapon/cracker,
prob(5);/obj/random/mega_nukies
/* VOREStation Edit End */
)
+18
View File
@@ -366,3 +366,21 @@
prob(10);/obj/item/device/perfect_tele/magic,
prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/truepolymorph
)
/obj/random/mega_nukies
name = "random mega nukie"
desc = "A random mega nukie."
icon = 'icons/obj/drinks.dmi'
icon_state = "nukie_mega_high"
spawn_nothing_percentage = 0
/obj/random/mega_nukies/item_to_spawn()
return pick(prob(5);/obj/item/weapon/reagent_containers/food/drinks/cans/nukie_mega_sight,
prob(2);/obj/item/weapon/reagent_containers/food/drinks/cans/nukie_mega_heart,
prob(5);/obj/item/weapon/reagent_containers/food/drinks/cans/nukie_mega_sleep,
prob(5);/obj/item/weapon/reagent_containers/food/drinks/cans/nukie_mega_shock,
prob(5);/obj/item/weapon/reagent_containers/food/drinks/cans/nukie_mega_fast,
prob(5);/obj/item/weapon/reagent_containers/food/drinks/cans/nukie_mega_high,
prob(10);/obj/item/weapon/reagent_containers/food/drinks/cans/nukie_mega_shrink,
prob(10);/obj/item/weapon/reagent_containers/food/drinks/cans/nukie_mega_grow
)