diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2016-12-10 12:33:05 +0100 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2016-12-10 12:38:01 +0100 |
commit | dcb972a587a21204f962e7ad1c347506664ba7d4 (patch) | |
tree | 34ab8d6823c7a7c20d7b1899c09f92232e322641 /src/main | |
parent | Fix Arena card effect data (diff) | |
download | seven-wonders-dcb972a587a21204f962e7ad1c347506664ba7d4.tar.gz seven-wonders-dcb972a587a21204f962e7ad1c347506664ba7d4.tar.bz2 seven-wonders-dcb972a587a21204f962e7ad1c347506664ba7d4.zip |
Add multi-color support in cards.json
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/resources/org/luxons/sevenwonders/game/data/cards.json | 42 |
1 files changed, 30 insertions, 12 deletions
diff --git a/src/main/resources/org/luxons/sevenwonders/game/data/cards.json b/src/main/resources/org/luxons/sevenwonders/game/data/cards.json index 51282569..6eaf4fae 100644 --- a/src/main/resources/org/luxons/sevenwonders/game/data/cards.json +++ b/src/main/resources/org/luxons/sevenwonders/game/data/cards.json @@ -767,7 +767,7 @@ "RIGHT" ], "type": "CARD", - "color": "GREY", + "colors": ["GREY"], "points": 2 } }, @@ -843,7 +843,9 @@ "RIGHT" ], "type": "CARD", - "color": "BROWN", + "colors": [ + "BROWN" + ], "points": 1 } }, @@ -1173,7 +1175,9 @@ "SELF" ], "type": "CARD", - "color": "GREY", + "colors": [ + "GREY" + ], "gold": 2, "points": 2 } @@ -1202,7 +1206,9 @@ "SELF" ], "type": "CARD", - "color": "BROWN", + "colors": [ + "BROWN" + ], "gold": 1, "points": 1 } @@ -1231,7 +1237,9 @@ "SELF" ], "type": "CARD", - "color": "GREY", + "colors": [ + "GREY" + ], "gold": 1, "points": 1 } @@ -1553,9 +1561,9 @@ "effect": { "perBoardElement": { "boards": [ - "LEFT_PLAYER", + "LEFT", "SELF", - "RIGHT_PLAYER" + "RIGHT" ], "type": "WONDER_LEVEL", "points": 1 @@ -1580,7 +1588,9 @@ "RIGHT" ], "type": "CARD", - "color": "GREY", + "colors": [ + "GREY" + ], "points": 2 } }, @@ -1603,7 +1613,9 @@ "RIGHT" ], "type": "CARD", - "color": "BLUE", + "colors": [ + "BLUE" + ], "points": 1 } }, @@ -1626,7 +1638,9 @@ "RIGHT" ], "type": "CARD", - "color": "GREEN", + "colors": [ + "GREEN" + ], "points": 1 } }, @@ -1737,7 +1751,9 @@ "RIGHT" ], "type": "CARD", - "color": "YELLOW", + "colors": [ + "YELLOW" + ], "points": 1 } }, @@ -1760,7 +1776,9 @@ "RIGHT" ], "type": "CARD", - "color": "BROWN", + "colors": [ + "BROWN" + ], "points": 1 } }, |