diff --git a/CardList.json b/CardList.json index fbf5f33..0315b44 100644 --- a/CardList.json +++ b/CardList.json @@ -69,14 +69,14 @@ "id": "003", "face": { "front": { - "name": "SoftOffset", + "name": "CompositeGesture", "type": "Unit", "cost": 1, "image": "https://docs.brut.systems/judah/entropy/003.png", "isHorizontal": true } }, - "name": "SoftOffset", + "name": "CompositeGesture", "type": "Unit", "cost": 1, "isToken": false, @@ -91,14 +91,14 @@ "id": "004", "face": { "front": { - "name": "MootConviction", + "name": "BareLapse", "type": "Unit", "cost": 2, "image": "https://docs.brut.systems/judah/entropy/004.png", "isHorizontal": true } }, - "name": "MootConviction", + "name": "BareLapse", "type": "Unit", "cost": 2, "isToken": false, @@ -113,14 +113,14 @@ "id": "005", "face": { "front": { - "name": "CivicLapse", + "name": "ExcessCompact", "type": "Unit", "cost": 3, "image": "https://docs.brut.systems/judah/entropy/005.png", "isHorizontal": true } }, - "name": "CivicLapse", + "name": "ExcessCompact", "type": "Unit", "cost": 3, "isToken": false, @@ -135,14 +135,14 @@ "id": "006", "face": { "front": { - "name": "ExcessLapse", + "name": "ErrantTendon", "type": "Unit", "cost": 4, "image": "https://docs.brut.systems/judah/entropy/006.png", "isHorizontal": true } }, - "name": "ExcessLapse", + "name": "ErrantTendon", "type": "Unit", "cost": 4, "isToken": false, @@ -157,14 +157,14 @@ "id": "007", "face": { "front": { - "name": "FormerAperture", + "name": "BluntSurplus", "type": "Unit", "cost": 10, "image": "https://docs.brut.systems/judah/entropy/007.png", "isHorizontal": true } }, - "name": "FormerAperture", + "name": "BluntSurplus", "type": "Unit", "cost": 10, "isToken": false, diff --git a/cards.go b/cards.go index e8e1767..8fa9796 100644 --- a/cards.go +++ b/cards.go @@ -14,7 +14,7 @@ var CARDS = []struct { {typ: Passive, recovery: 2, name: `Breaker`, desc: `The first {{unit}} you play per turn costs {{1 entropy}} less.`}, {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, desc: ``}, diff --git a/docs/000.png b/docs/000.png index 788d148..95bbbdc 100644 Binary files a/docs/000.png and b/docs/000.png differ diff --git a/docs/001.png b/docs/001.png index c8cea96..f8e466f 100644 Binary files a/docs/001.png and b/docs/001.png differ diff --git a/docs/002.png b/docs/002.png index 0e98ec4..ba8a128 100644 Binary files a/docs/002.png and b/docs/002.png differ diff --git a/docs/003.png b/docs/003.png index 065da72..2d6c12c 100644 Binary files a/docs/003.png and b/docs/003.png differ diff --git a/docs/004.png b/docs/004.png index b24b542..f012197 100644 Binary files a/docs/004.png and b/docs/004.png differ diff --git a/docs/005.png b/docs/005.png index db106f6..be0c657 100644 Binary files a/docs/005.png and b/docs/005.png differ diff --git a/docs/006.png b/docs/006.png index ef14483..c0a5cd6 100644 Binary files a/docs/006.png and b/docs/006.png differ diff --git a/docs/007.png b/docs/007.png index a0b10b2..af62982 100644 Binary files a/docs/007.png and b/docs/007.png differ diff --git a/main.go b/main.go index 7875de3..707a141 100644 --- a/main.go +++ b/main.go @@ -154,7 +154,7 @@ func main() { { ctx.Translate(435, 985) 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()