diff --git a/icons/obj/custom.dmi b/icons/obj/custom.dmi index 7b00d52f8f..2503c1d3e5 100644 Binary files a/icons/obj/custom.dmi and b/icons/obj/custom.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index 39ed9d6ec8..cae7236b14 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -554,3 +554,9 @@ slot = SLOT_W_UNIFORM path = /obj/item/clothing/under/smaiden ckeywhitelist = list("ultimarifox") + +/datum/gear/donator/pokerchips + name = "pokerchip set" + slot = SLOT_IN_BACKPACK + path = /obj/item/storage/box/pockerchips + ckeywhitelist = list("daveyjones") \ No newline at end of file diff --git a/modular_citadel/code/modules/custom_loadout/custom_items.dm b/modular_citadel/code/modules/custom_loadout/custom_items.dm index b7d04e0780..4f437a5df9 100644 --- a/modular_citadel/code/modules/custom_loadout/custom_items.dm +++ b/modular_citadel/code/modules/custom_loadout/custom_items.dm @@ -610,3 +610,48 @@ 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) \ No newline at end of file