adds the POOL to box station

F in chat for dorms 7.
This commit is contained in:
Detective Google
2020-01-11 23:34:07 -06:00
parent ae46c1f63d
commit d5b227a0ca
31 changed files with 1768 additions and 247 deletions
+44
View File
@@ -0,0 +1,44 @@
//Pool noodles
/obj/item/toy/poolnoodle
icon = 'icons/obj/toy.dmi'
icon_state = "noodle"
name = "pool noodle"
desc = "A strange, bulky, bendable toy that can annoy people."
force = 0
color = "#000000"
w_class = WEIGHT_CLASS_SMALL
throwforce = 1
throw_speed = 10 //weeee
hitsound = 'sound/weapons/tap.ogg'
attack_verb = list("flogged", "poked", "jabbed", "slapped", "annoyed")
lefthand_file = 'icons/mob/inhands/items_lefthand.dmi'
righthand_file = 'icons/mob/inhands/items_righthand.dmi'
/obj/item/toy/poolnoodle/attack(target as mob, mob/living/user as mob)
..()
if(prob(80))
user.emote("spin")
if(prob(5))
user.emote("spin")
/obj/item/toy/poolnoodle/red
item_state = "noodlered"
/obj/item/toy/poolnoodle/blue
item_state = "noodleblue"
/obj/item/toy/poolnoodle/yellow
item_state = "noodleyellow"
/obj/item/toy/poolnoodle/red/Initialize()
. = ..()
color = "#ff4c4c"
/obj/item/toy/poolnoodle/blue/Initialize()
. = ..()
color = "#3232ff"
/obj/item/toy/poolnoodle/yellow/Initialize()
. = ..()
color = "#ffff66"