mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
20 lines
688 B
Plaintext
20 lines
688 B
Plaintext
/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass/syndicate
|
|
name = "shot glass"
|
|
desc = "A shot glass - the universal symbol for terrible decisions."
|
|
icon_state = "shotglass"
|
|
base_icon_state = "shotglass"
|
|
gulp_size = 50
|
|
amount_per_transfer_from_this = 50
|
|
possible_transfer_amounts = list(50)
|
|
volume = 50
|
|
initial_reagent_flags = REFILLABLE | DRAINABLE
|
|
|
|
/obj/item/storage/box/syndieshotglasses
|
|
name = "box of shot glasses"
|
|
desc = "It has a picture of shot glasses on it."
|
|
illustration = "drinkglass"
|
|
|
|
/obj/item/storage/box/syndieshotglasses/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/reagent_containers/cup/glass/drinkingglass/shotglass/syndicate(src)
|