Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wisconsin (joke) realization [Sprite code needs fixed] #2700

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -350,3 +350,29 @@

/obj/item/ego_weapon/lance/wild_ride/get_clamped_volume()
return 40


// netz code, might be shit
// Wisconsin
/obj/item/ego_weapon/joke/realization/wisconsin
name = "Wisconsin"
desc = "You feel like you'll dream about cheese tonight."
icon = "code/modules/mob/living/simple_animal/abnormality/_auxiliary_modes/joke/!icons/ego_weapons.dmi"
icon_state = "cheesewedge_wisconsin"
force = 50
attack_speed = 0.5 // should be half the normal speed
Reene-Ramos marked this conversation as resolved.
Show resolved Hide resolved
damtype = WHITE_DAMAGE
attribute_requirements = list(
FORTITUDE_ATTRIBUTE = 60,
PRUDENCE_ATTRIBUTE = 120,
TEMPERANCE_ATTRIBUTE = 60,
JUSTICE_ATTRIBUTE = 60
)
var/list/random_colors = list(
"red" = "#FF0000",
"blue" = "#00FF00",
"green" = "#0000FF",
"yellow" = "#FFFF00",
"cyan" = "#00FFFF",
"purple" = "#FF00FF"
)
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
/obj/item/ego_weapon/paradise = /obj/item/toy/plush/ayin, // He-he
/obj/item/toy/plush/hokma = /obj/item/toy/plush/benjamin,
/obj/item/toy/plush/angela = /obj/item/toy/plush/carmen,
/obj/item/food/cheesewheel = /obj/item/ego_weapon/joke/realization/wisconsin // Joke Weapon
)

//Visual vars
Expand Down
Loading