Patreon Reward - Blue marker

added a new rewards.dm in hyperstation to keep better track of rewards.
This commit is contained in:
QuoteFox
2020-03-07 20:12:25 +00:00
parent 85db9b4946
commit 602602c2f0
4 changed files with 21 additions and 9 deletions
+9
View File
@@ -0,0 +1,9 @@
/obj/item/pen/bluemarker
name = "blue marker"
desc = "A simple blueberry scented marker."
icon_state = "marker_blue"
colour = "blue"
/obj/item/pen/bluemarker/attack_self(mob/user)
user.emote("sniff")
to_chat(user, "<span class='notice'>Ahh~ blueberries!</span>")
Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

@@ -7,16 +7,11 @@
path = /obj/item/bikehorn/golden
ckeywhitelist = list("This entry should never appear with this variable set.") //If it does, then that means somebody fucked up the whitelist system pretty hard
/datum/gear/donortestingbikehorn
name = "Donor item testing bikehorn"
/datum/gear/testreward
//Just so admins can test the recent rewards added.
name = "test reward"
category = SLOT_IN_BACKPACK
path = /obj/item/bikehorn
geargroupID = list("DONORTEST") //This is a list mainly for the sake of testing, but geargroupID works just fine with ordinary strings
/datum/gear/quotestestitem
name = "Will Plushy"
category = SLOT_IN_BACKPACK
path = /obj/item/toy/plush/mammal/winterbloo
path = /obj/item/pen/bluemarker
ckeywhitelist = list("quotefox")
/datum/gear/winterblooplush
@@ -26,6 +21,7 @@
ckeywhitelist = list("wolfy_wolf967")
/datum/gear/winterblooplushextra
//for some reason bloo has had issues with his plushie
name = "Will Plush"
category = SLOT_IN_BACKPACK
path = /obj/item/toy/plush/mammal/winterbloo
@@ -36,3 +32,9 @@
category = SLOT_IN_BACKPACK
path = /obj/item/toy/plush/lizardplushie/chris
ckeywhitelist = list("heliocintrini")
/datum/gear/seramarker
name = "Blueberry Marker"
category = SLOT_IN_BACKPACK
path = /obj/item/pen/bluemarker
ckeywhitelist = list("blooberri")
+1
View File
@@ -2877,6 +2877,7 @@
#include "hyperstation\code\obj\decal.dm"
#include "hyperstation\code\obj\plushes.dm"
#include "hyperstation\code\obj\pregnancytester.dm"
#include "hyperstation\code\obj\rewards.dm"
#include "interface\interface.dm"
#include "interface\menu.dm"
#include "interface\stylesheet.dm"