This commit is contained in:
Judah 2026-04-01 21:11:12 -06:00
parent e36b6e46aa
commit 70f1a1b7fc
11 changed files with 12 additions and 12 deletions

View file

@ -69,14 +69,14 @@
"id": "003", "id": "003",
"face": { "face": {
"front": { "front": {
"name": "SoftOffset", "name": "CompositeGesture",
"type": "Unit", "type": "Unit",
"cost": 1, "cost": 1,
"image": "https://docs.brut.systems/judah/entropy/003.png", "image": "https://docs.brut.systems/judah/entropy/003.png",
"isHorizontal": true "isHorizontal": true
} }
}, },
"name": "SoftOffset", "name": "CompositeGesture",
"type": "Unit", "type": "Unit",
"cost": 1, "cost": 1,
"isToken": false, "isToken": false,
@ -91,14 +91,14 @@
"id": "004", "id": "004",
"face": { "face": {
"front": { "front": {
"name": "MootConviction", "name": "BareLapse",
"type": "Unit", "type": "Unit",
"cost": 2, "cost": 2,
"image": "https://docs.brut.systems/judah/entropy/004.png", "image": "https://docs.brut.systems/judah/entropy/004.png",
"isHorizontal": true "isHorizontal": true
} }
}, },
"name": "MootConviction", "name": "BareLapse",
"type": "Unit", "type": "Unit",
"cost": 2, "cost": 2,
"isToken": false, "isToken": false,
@ -113,14 +113,14 @@
"id": "005", "id": "005",
"face": { "face": {
"front": { "front": {
"name": "CivicLapse", "name": "ExcessCompact",
"type": "Unit", "type": "Unit",
"cost": 3, "cost": 3,
"image": "https://docs.brut.systems/judah/entropy/005.png", "image": "https://docs.brut.systems/judah/entropy/005.png",
"isHorizontal": true "isHorizontal": true
} }
}, },
"name": "CivicLapse", "name": "ExcessCompact",
"type": "Unit", "type": "Unit",
"cost": 3, "cost": 3,
"isToken": false, "isToken": false,
@ -135,14 +135,14 @@
"id": "006", "id": "006",
"face": { "face": {
"front": { "front": {
"name": "ExcessLapse", "name": "ErrantTendon",
"type": "Unit", "type": "Unit",
"cost": 4, "cost": 4,
"image": "https://docs.brut.systems/judah/entropy/006.png", "image": "https://docs.brut.systems/judah/entropy/006.png",
"isHorizontal": true "isHorizontal": true
} }
}, },
"name": "ExcessLapse", "name": "ErrantTendon",
"type": "Unit", "type": "Unit",
"cost": 4, "cost": 4,
"isToken": false, "isToken": false,
@ -157,14 +157,14 @@
"id": "007", "id": "007",
"face": { "face": {
"front": { "front": {
"name": "FormerAperture", "name": "BluntSurplus",
"type": "Unit", "type": "Unit",
"cost": 10, "cost": 10,
"image": "https://docs.brut.systems/judah/entropy/007.png", "image": "https://docs.brut.systems/judah/entropy/007.png",
"isHorizontal": true "isHorizontal": true
} }
}, },
"name": "FormerAperture", "name": "BluntSurplus",
"type": "Unit", "type": "Unit",
"cost": 10, "cost": 10,
"isToken": false, "isToken": false,

View file

@ -14,7 +14,7 @@ var CARDS = []struct {
{typ: Passive, recovery: 2, {typ: Passive, recovery: 2,
name: `Breaker`, desc: `The first {{unit}} you play per turn costs {{1 entropy}} less.`}, name: `Breaker`, desc: `The first {{unit}} you play per turn costs {{1 entropy}} less.`},
{typ: Passive, recovery: 0, {typ: Passive, recovery: 0,
name: `Inverse Entropy`, desc: `Add {{1 hp}} to all {{lifesteal}} bonuses`}, name: `Inverse Entropy`, desc: `Add {{1 hp}} to all {{lifesteal}} bonuses.`},
{typ: Unit, lane: Red, entropy: 1, force: 1, {typ: Unit, lane: Red, entropy: 1, force: 1,
desc: ``}, desc: ``},

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View file

@ -154,7 +154,7 @@ func main() {
{ {
ctx.Translate(435, 985) ctx.Translate(435, 985)
ctx.Rotate(270 * math.Pi / 180) ctx.Rotate(270 * math.Pi / 180)
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.DrawStringWrapped(fmt.Sprintf("#%03d %s - %s\n%s", i, card.name, card.typ.String(), cleandesc), 0, 0, 0.0, 0.0, 900, 1.70, gg.AlignLeft)
} }
ctx.Pop() ctx.Pop()