mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-09 16:07:40 +00:00
Merge branch 'pokerchips' of github.com:Citadel-Station-13/Citadel-Station-13
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 31 KiB |
@@ -572,3 +572,10 @@
|
||||
path = SLOT_WEAR_SUIT
|
||||
path = /obj/item/clothing/suit/spacehoodie
|
||||
ckeywhitelist = list("bidlink2")
|
||||
|
||||
/datum/gear/donator/pokerchips
|
||||
name = "pokerchip set"
|
||||
slot = SLOT_IN_BACKPACK
|
||||
path = /obj/item/storage/box/pockerchips
|
||||
ckeywhitelist = list("greed2323")
|
||||
|
||||
|
||||
@@ -627,3 +627,49 @@
|
||||
icon = 'icons/obj/custom.dmi'
|
||||
mob_overlay_icon = 'icons/mob/clothing/custom_w.dmi'
|
||||
mutantrace_variation = NONE
|
||||
|
||||
/obj/item/coin/red
|
||||
name = "red pokerchip"
|
||||
desc = "A red pokerchip."
|
||||
icon_state = "c_red"
|
||||
item_state = "c_red"
|
||||
icon = 'icons/obj/custom.dmi'
|
||||
|
||||
/obj/item/coin/blue
|
||||
name = "blue pokerchip"
|
||||
desc = "A blue pokerchip."
|
||||
icon_state = "c_nlue"
|
||||
item_state = "c_blue"
|
||||
icon = 'icons/obj/custom.dmi'
|
||||
|
||||
/obj/item/coin/green
|
||||
name = "green pokerchip"
|
||||
desc = "A green pokerchip."
|
||||
icon_state = "c_green"
|
||||
item_state = "c_green"
|
||||
icon = 'icons/obj/custom.dmi'
|
||||
|
||||
/obj/item/coin/black
|
||||
name = "black pokerchip"
|
||||
desc = "A black pokerchip."
|
||||
icon_state = "c_black"
|
||||
item_state = "c_black"
|
||||
icon = 'icons/obj/custom.dmi'
|
||||
|
||||
/obj/item/storage/box/pockerchips
|
||||
name = "tray of pocker chips"
|
||||
desc = "A tray of green, red, blue, and black pocker chips."
|
||||
icon_state = "c_holder"
|
||||
icon = 'icons/obj/custom.dmi'
|
||||
illustration=null
|
||||
|
||||
/obj/item/storage/box/pokerchips/PopulateContents()
|
||||
for(var/i in 1 to 5)
|
||||
new /obj/item/coin/red(src)
|
||||
for(var/i in 1 to 10)
|
||||
new /obj/item/coin/blue(src)
|
||||
for(var/i in 1 to 15)
|
||||
new /obj/item/coin/black(src)
|
||||
for(var/i in 1 to 20)
|
||||
new /obj/item/coin/green(src)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user