101 lines
3.5 KiB
Plaintext
101 lines
3.5 KiB
Plaintext
#define STANDARD_CHARGE 1
|
|
#define CONTRABAND_CHARGE 2
|
|
#define COIN_CHARGE 3
|
|
|
|
/obj/machinery/vending/kink
|
|
name = "KinkMate"
|
|
desc = "A vending machine for all your unmentionable desires."
|
|
icon = 'icons/obj/citvending.dmi'
|
|
icon_state = "kink"
|
|
product_slogans = "Kinky!;Sexy!;Check me out, big boy!"
|
|
vend_reply = "Have fun, you shameless pervert!"
|
|
products = list(
|
|
/obj/item/clothing/under/maid = 5,
|
|
/obj/item/clothing/under/stripper_pink = 5,
|
|
/obj/item/clothing/under/stripper_green = 5,
|
|
/obj/item/weapon/dildo/custom = 5
|
|
)
|
|
contraband = list(/obj/item/weapon/restraints/handcuffs/fake/kinky = 5,
|
|
/obj/item/clothing/neck/petcollar = 5,
|
|
/obj/item/clothing/under/mankini = 1,
|
|
/obj/item/weapon/dildo/flared/huge = 1
|
|
)
|
|
premium = list()
|
|
refill_canister = /obj/item/weapon/vending_refill/kink
|
|
|
|
/obj/machinery/vending/nazivend
|
|
name = "Nazivend"
|
|
desc = "A vending machine containing Nazi German supplies. A label reads: \"Remember the gorrilions lost.\""
|
|
icon = 'icons/obj/citvending.dmi'
|
|
icon_state = "nazi"
|
|
vend_reply = "SIEG HEIL!"
|
|
product_slogans = "Das Vierte Reich wird zuruckkehren!;ENTFERNEN JUDEN!;Billiger als die Juden jemals geben!;Rader auf dem adminbus geht rund und rund.;Warten Sie, warum wir wieder hassen Juden?- *BZZT*"
|
|
products = list(
|
|
/obj/item/clothing/head/stalhelm = 20,
|
|
/obj/item/clothing/head/panzer = 20,
|
|
/obj/item/clothing/suit/soldiercoat = 20,
|
|
/obj/item/clothing/under/soldieruniform = 20,
|
|
/obj/item/clothing/shoes/jackboots = 20
|
|
)
|
|
contraband = list(
|
|
/obj/item/clothing/head/naziofficer = 10,
|
|
/obj/item/clothing/suit/officercoat = 10,
|
|
/obj/item/clothing/under/officeruniform = 10,
|
|
/obj/item/clothing/suit/space/hardsuit/nazi = 3,
|
|
/obj/item/weapon/gun/energy/plasma/MP40k = 4
|
|
)
|
|
premium = list()
|
|
|
|
refill_canister = /obj/item/weapon/vending_refill/nazi
|
|
|
|
/obj/machinery/vending/sovietvend
|
|
name = "KomradeVendtink"
|
|
desc = "Rodina-mat' zovyot!"
|
|
icon = 'icons/obj/citvending.dmi'
|
|
icon_state = "soviet"
|
|
vend_reply = "The fascist and capitalist svin'ya shall fall, komrade!"
|
|
product_slogans = "Quality worth waiting in line for!; Get Hammer and Sickled!; Sosvietsky soyuz above all!; With capitalist pigsky, you would have paid a fortunetink! ; Craftink in Motherland herself!"
|
|
products = list(
|
|
/obj/item/clothing/under/soviet = 20,
|
|
/obj/item/clothing/head/ushanka = 20,
|
|
/obj/item/clothing/shoes/jackboots = 20,
|
|
/obj/item/clothing/head/squatter_hat = 20,
|
|
/obj/item/clothing/under/squatter_outfit = 20,
|
|
/obj/item/clothing/under/russobluecamooutfit = 20,
|
|
/obj/item/clothing/head/russobluecamohat = 20
|
|
)
|
|
contraband = list(
|
|
/obj/item/clothing/under/syndicate/tacticool = 4,
|
|
/obj/item/clothing/mask/balaclava = 4,
|
|
/obj/item/clothing/suit/russofurcoat = 4,
|
|
/obj/item/clothing/head/russofurhat = 4,
|
|
/obj/item/clothing/suit/space/hardsuit/soviet = 3,
|
|
/obj/item/weapon/gun/energy/laser/LaserAK = 4
|
|
)
|
|
premium = list()
|
|
|
|
refill_canister = /obj/item/weapon/vending_refill/soviet
|
|
|
|
|
|
#undef STANDARD_CHARGE
|
|
#undef CONTRABAND_CHARGE
|
|
#undef COIN_CHARGE
|
|
|
|
|
|
/obj/item/weapon/vending_refill/kink
|
|
machine_name = "KinkMate"
|
|
icon_state = "refill_kink"
|
|
charges = list(8, 5, 0)// of 20 standard, 12 contraband, 0 premium
|
|
init_charges = list(8, 5, 0)
|
|
|
|
/obj/item/weapon/vending_refill/nazi
|
|
machine_name = "nazivend"
|
|
icon_state = "refill_nazi"
|
|
charges = list(33, 13, 0)
|
|
init_charges = list(33, 13, 0)
|
|
|
|
/obj/item/weapon/vending_refill/soviet
|
|
machine_name = "sovietvend"
|
|
icon_state = "refill_soviet"
|
|
charges = list(47, 7, 0)
|
|
init_charges = list(47, 7, 0) |