Added helper function colorFromRGB(List<Int>)

This commit is contained in:
Yair Morgenstern
2020-09-30 19:26:20 +03:00
parent 43f5799578
commit 5677fb494a
8 changed files with 39 additions and 29 deletions

View File

@ -1,18 +1,22 @@
[
{
"name":"Scientist",
"science":3
"science":3,
"color": [0,0,255]
},
{
"name":"Merchant",
"gold":3
"gold":3,
"color": [255,215,0]
},
{
"name":"Artist",
"culture":2
"culture":2,
"color": [160,32,240]
},
{
"name":"Engineer",
"production":2
"production":2,
"color": [139,69,19]
}
]