mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-22 06:56:31 +00:00
* Card Shark DLC - GIMMIE MY MONEY OR I BREAK YOUR KNEECAPS (#64200) Co-authored-by: Seth Scherer <supernovaa41@gmx.com> Co-authored-by: Kylerace <kylerlumpkin1@gmail.com> * Update piratefort.dmm Co-authored-by: Tim <timothymtorres@gmail.com> Co-authored-by: Seth Scherer <supernovaa41@gmx.com> Co-authored-by: Kylerace <kylerlumpkin1@gmail.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
22 lines
629 B
Plaintext
22 lines
629 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/i in 1 to decksize)
|
|
var/obj/item/toy/singlecard/blank_card = new (src, "blank card", src)
|
|
blank_card.blank = TRUE
|
|
cards += blank_card
|