Ports Not-Uno and changes card stacks (#50357)

* I GOT MINE ON DAY ONE

* I have the oldest xbox known to man

* e

* whee

* shits broke

* lol

* Update code/game/objects/items/toys.dm

Co-Authored-By: Bobbahbrown <bobbahbrown@gmail.com>

Co-authored-by: Bobbahbrown <bobbahbrown@gmail.com>
This commit is contained in:
TiviPlus
2020-04-06 19:39:04 -04:00
committed by GitHub
co-authored by Bobbahbrown
parent 13b06bf3b5
commit 8bf449ca67
5 changed files with 40 additions and 21 deletions
+20
View File
@@ -0,0 +1,20 @@
/obj/item/toy/cards/deck/kotahi
name = "\improper KOTAHI deck"
desc = "A deck of kotahi cards. House rules to argue over not included."
icon = 'icons/obj/toy.dmi'
icon_state = "deck_kotahi_full"
deckstyle = "kotahi"
//Populate the deck.
/obj/item/toy/cards/deck/kotahi/populate_deck()
for(var/colour in list("Red","Yellow","Green","Blue"))
cards += "[colour] 0" //kotahi decks have only one colour of each 0, weird huh?
for(var/k in 0 to 1) //two of each colour of number
cards += "[colour] skip"
cards += "[colour] reverse"
cards += "[colour] draw 2"
for(var/i in 1 to 9)
cards += "[colour] [i]"
for(var/k in 0 to 3) //4 wilds and draw 4s
cards += "Wildcard"
cards += "Draw 4"
+1
View File
@@ -7,6 +7,7 @@
/obj/item/storage/pill_bottle/dice = 10,
/obj/item/toy/cards/deck/cas = 3,
/obj/item/toy/cards/deck/cas/black = 3,
/obj/item/toy/cards/deck/kotahi = 3,
/obj/item/hourglass = 2,
/obj/item/instrument/piano_synth/headphones = 4,
/obj/item/camera = 3)