diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm index 76d084ffba7..f99fea98baa 100644 --- a/code/game/machinery/computer/arcade.dm +++ b/code/game/machinery/computer/arcade.dm @@ -31,7 +31,8 @@ /obj/item/toy/foamblade = 2, /obj/item/toy/redbutton = 2, /obj/item/toy/owl = 2, - /obj/item/toy/griffin = 2 + /obj/item/toy/griffin = 2, + /obj/item/weapon/coin/antagtoken = 2, ) /obj/machinery/computer/arcade/New() diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 947203a018d..405abb48ddc 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -779,6 +779,7 @@ products = list(/obj/item/weapon/restraints/handcuffs = 8,/obj/item/weapon/restraints/handcuffs/cable/zipties = 10,/obj/item/weapon/grenade/flashbang = 4,/obj/item/device/flash/handheld = 5, /obj/item/weapon/reagent_containers/food/snacks/donut = 12,/obj/item/weapon/storage/box/evidence = 6,/obj/item/device/flashlight/seclite = 4) contraband = list(/obj/item/clothing/glasses/sunglasses = 2,/obj/item/weapon/storage/fancy/donut_box = 2) + premium = list(/obj/item/weapon/coin/antagtoken = 1) /obj/machinery/vending/hydronutrients name = "\improper NutriMax" diff --git a/code/modules/mining/ores_coins.dm b/code/modules/mining/ores_coins.dm index e9cfeaeb1e7..bf394e7ac21 100644 --- a/code/modules/mining/ores_coins.dm +++ b/code/modules/mining/ores_coins.dm @@ -280,6 +280,16 @@ sideslist = list("heads") value = 20 +/obj/item/weapon/coin/antagtoken + name = "antag token" + icon_state = "coin_valid_valid" + cmineral = "valid" + desc = "A novelty coin that helps the heart know what hard evidence cannot prove." + sideslist = list("valid", "salad") + value = 20 + +/obj/item/weapon/coin/antagtoken/New() + return /obj/item/weapon/coin/attackby(obj/item/weapon/W as obj, mob/user as mob, params) if(istype(W, /obj/item/stack/cable_coil)) diff --git a/icons/obj/economy.dmi b/icons/obj/economy.dmi index f096851d1e8..4b65337dbee 100644 Binary files a/icons/obj/economy.dmi and b/icons/obj/economy.dmi differ