mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Removes All Weapons
This commit is contained in:
+11
-11
@@ -4,12 +4,12 @@
|
||||
/datum/storeitem
|
||||
var/name="Thing"
|
||||
var/desc="It's a thing."
|
||||
var/typepath=/obj/item/weapon/storage/box
|
||||
var/typepath=/obj/item/storage/box
|
||||
var/cost=0
|
||||
|
||||
/datum/storeitem/proc/deliver(var/mob/usr)
|
||||
if(!istype(typepath,/obj/item/weapon/storage))
|
||||
var/obj/item/weapon/storage/box/box=new(usr.loc)
|
||||
if(!istype(typepath,/obj/item/storage))
|
||||
var/obj/item/storage/box/box=new(usr.loc)
|
||||
new typepath(box)
|
||||
box.name="[name] package"
|
||||
box.desc="A special gift for doing your job."
|
||||
@@ -42,31 +42,31 @@
|
||||
/datum/storeitem/snap_pops
|
||||
name = "Snap-Pops"
|
||||
desc = "Ten-thousand-year-old chinese fireworks: IN SPACE"
|
||||
typepath = /obj/item/weapon/storage/box/snappops
|
||||
typepath = /obj/item/storage/box/snappops
|
||||
cost = 200
|
||||
|
||||
/datum/storeitem/dnd
|
||||
name = "Dungeons & Dragons set"
|
||||
desc = "A box containing minifigures suitable for a good game of D&D."
|
||||
typepath = /obj/item/weapon/storage/box/characters
|
||||
typepath = /obj/item/storage/box/characters
|
||||
cost = 200
|
||||
|
||||
/datum/storeitem/dice
|
||||
name = "Dice set"
|
||||
desc = "A box containing multiple different types of die."
|
||||
typepath = /obj/item/weapon/storage/box/dice
|
||||
typepath = /obj/item/storage/box/dice
|
||||
cost = 200
|
||||
|
||||
/datum/storeitem/nanomob_booster
|
||||
name = "Nano-Mob Hunter Trading Card Booster Pack"
|
||||
desc = "Contains 6 random Nano-Mob Hunter Trading Cards. May contain a holographic card!"
|
||||
typepath = /obj/item/weapon/storage/box/nanomob_booster_pack
|
||||
typepath = /obj/item/storage/box/nanomob_booster_pack
|
||||
cost = 250
|
||||
|
||||
/datum/storeitem/crayons
|
||||
name = "Crayons"
|
||||
desc = "Let security know how they're doing by scrawling lovenotes all over their hallways."
|
||||
typepath = /obj/item/weapon/storage/fancy/crayons
|
||||
typepath = /obj/item/storage/fancy/crayons
|
||||
cost = 350
|
||||
|
||||
/datum/storeitem/pipe
|
||||
@@ -78,7 +78,7 @@
|
||||
/datum/storeitem/candle
|
||||
name = "Candles"
|
||||
desc = "A box of chandles. Use them to fool others into thinking you're out for a romantic dinner...or something."
|
||||
typepath = /obj/item/weapon/storage/fancy/candle_box/full
|
||||
typepath = /obj/item/storage/fancy/candle_box/full
|
||||
cost = 200
|
||||
|
||||
/datum/storeitem/minigibber
|
||||
@@ -120,7 +120,7 @@
|
||||
/datum/storeitem/baby
|
||||
name = "Toddler"
|
||||
desc = "This baby looks almost real. Wait, did it just burp?"
|
||||
typepath = /obj/item/weapon/toddler
|
||||
typepath = /obj/item/toddler
|
||||
cost = 1000
|
||||
|
||||
/datum/storeitem/flag_slime
|
||||
@@ -210,5 +210,5 @@
|
||||
/datum/storeitem/banhammer
|
||||
desc = "A banhammer"
|
||||
name = "banhammer"
|
||||
typepath = /obj/item/weapon/banhammer
|
||||
typepath = /obj/item/banhammer
|
||||
cost = 2000
|
||||
|
||||
Reference in New Issue
Block a user