add type to card images
|
|
@ -69,14 +69,14 @@
|
|||
"id": "003",
|
||||
"face": {
|
||||
"front": {
|
||||
"name": "SpentReflex",
|
||||
"name": "SoftOffset",
|
||||
"type": "Unit",
|
||||
"cost": 1,
|
||||
"image": "https://docs.brut.systems/judah/entropy/003.png",
|
||||
"isHorizontal": true
|
||||
}
|
||||
},
|
||||
"name": "SpentReflex",
|
||||
"name": "SoftOffset",
|
||||
"type": "Unit",
|
||||
"cost": 1,
|
||||
"isToken": false,
|
||||
|
|
@ -91,14 +91,14 @@
|
|||
"id": "004",
|
||||
"face": {
|
||||
"front": {
|
||||
"name": "InlandAperture",
|
||||
"name": "MootConviction",
|
||||
"type": "Unit",
|
||||
"cost": 2,
|
||||
"image": "https://docs.brut.systems/judah/entropy/004.png",
|
||||
"isHorizontal": true
|
||||
}
|
||||
},
|
||||
"name": "InlandAperture",
|
||||
"name": "MootConviction",
|
||||
"type": "Unit",
|
||||
"cost": 2,
|
||||
"isToken": false,
|
||||
|
|
@ -113,14 +113,14 @@
|
|||
"id": "005",
|
||||
"face": {
|
||||
"front": {
|
||||
"name": "ObliqueCortex",
|
||||
"name": "CivicLapse",
|
||||
"type": "Unit",
|
||||
"cost": 3,
|
||||
"image": "https://docs.brut.systems/judah/entropy/005.png",
|
||||
"isHorizontal": true
|
||||
}
|
||||
},
|
||||
"name": "ObliqueCortex",
|
||||
"name": "CivicLapse",
|
||||
"type": "Unit",
|
||||
"cost": 3,
|
||||
"isToken": false,
|
||||
|
|
@ -135,14 +135,14 @@
|
|||
"id": "006",
|
||||
"face": {
|
||||
"front": {
|
||||
"name": "FormerDividend",
|
||||
"name": "ExcessLapse",
|
||||
"type": "Unit",
|
||||
"cost": 4,
|
||||
"image": "https://docs.brut.systems/judah/entropy/006.png",
|
||||
"isHorizontal": true
|
||||
}
|
||||
},
|
||||
"name": "FormerDividend",
|
||||
"name": "ExcessLapse",
|
||||
"type": "Unit",
|
||||
"cost": 4,
|
||||
"isToken": false,
|
||||
|
|
@ -157,14 +157,14 @@
|
|||
"id": "007",
|
||||
"face": {
|
||||
"front": {
|
||||
"name": "SoftReflex",
|
||||
"name": "FormerAperture",
|
||||
"type": "Unit",
|
||||
"cost": 10,
|
||||
"image": "https://docs.brut.systems/judah/entropy/007.png",
|
||||
"isHorizontal": true
|
||||
}
|
||||
},
|
||||
"name": "SoftReflex",
|
||||
"name": "FormerAperture",
|
||||
"type": "Unit",
|
||||
"cost": 10,
|
||||
"isToken": false,
|
||||
|
|
|
|||
BIN
docs/000.png
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 30 KiB |
BIN
docs/001.png
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 33 KiB |
BIN
docs/002.png
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 30 KiB |
BIN
docs/003.png
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
BIN
docs/004.png
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 22 KiB |
BIN
docs/005.png
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
BIN
docs/006.png
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 22 KiB |
BIN
docs/007.png
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 22 KiB |
2
main.go
|
|
@ -154,7 +154,7 @@ func main() {
|
|||
{
|
||||
ctx.Translate(435, 985)
|
||||
ctx.Rotate(270 * math.Pi / 180)
|
||||
ctx.DrawStringWrapped(fmt.Sprintf("%s -\n%s", card.name, cleandesc), 0, 0, 0.0, 0.0, 900, 1.70, gg.AlignLeft)
|
||||
ctx.DrawStringWrapped(fmt.Sprintf("%s - %s\n%s", card.name, card.typ.String(), cleandesc), 0, 0, 0.0, 0.0, 900, 1.70, gg.AlignLeft)
|
||||
}
|
||||
ctx.Pop()
|
||||
|
||||
|
|
|
|||