mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-24 00:21:52 +00:00
27 lines
682 B
Plaintext
27 lines
682 B
Plaintext
/obj/item/toy/cards/deck/blank
|
|
name = "custom deck of cards"
|
|
desc = "A deck of playing cards that can be customized with writing."
|
|
cardgame_desc = "custom card game"
|
|
icon_state = "deck_white_full"
|
|
deckstyle = "white"
|
|
has_unique_card_icons = FALSE
|
|
is_standard_deck = FALSE
|
|
decksize = 25
|
|
can_play_52_card_pickup = FALSE
|
|
|
|
/obj/item/toy/cards/deck/blank/black
|
|
icon_state = "deck_black_full"
|
|
deckstyle = "black"
|
|
|
|
/obj/item/toy/cards/deck/blank/Initialize(mapload)
|
|
. = ..()
|
|
|
|
for(var/_ in 1 to decksize)
|
|
initial_cards += /datum/deck_card/blank
|
|
|
|
/datum/deck_card/blank
|
|
name = "blank card"
|
|
|
|
/datum/deck_card/blank/update_card(obj/item/toy/singlecard/card)
|
|
card.blank = TRUE
|