String PArser - linkanr/UtopiaRises2d GitHub Wiki

🧩 String Parser Token Reference

This page documents all supported dynamic tokens available for card descriptions, tooltips, and game UI text. Tokens are parsed and rendered via GameStringParser.Parse().


🎯 Trigger Tokens

Use these to define when an ability should activate:

@TriggerOnBattleStarts
@TriggerOnBattleEnd
@TriggerOnPlayed
@TriggerOnDeath
@TriggerOnCardDraw
@TriggerEveryXSecond
@TriggerContinuously
@TriggerAreaDamage

🏳️ Faction Tokens

Use the format: @Faction.<Name>

🧠 The Unremembered → @Fac.UNR
🌌 Forgotten Logic → @Fac.FOR
🚄 Cloud → @Fac.CLD
🌾 Echoes of Eden → @Fac.EDN
💥 Zang Tumb Boom → @Fac.ZTB
⚖️ Stasium → @Fac.STA
🌱 Moldchant → @Fac.MLD
🧸 The Red Sisters → @Fac.RDS
🚖 Discipline of the Ruins → @Fac.DIS
🤖 The Synthites → @Fac.SYN
✝️ The Ascended Fold → @Fac.FLD
💰 The Egotecture → @Fac.EGO
🔮 The Clears → @Fac.CLR
☢️ The Apocalyptics → @Fac.APO
🔨 Red Assembly → @Fac.RAS

📜 Dogma Tokens

Use the format: @Dogma.<ID>

@Dogma.SwordsToPlowshare
@Dogma.AtomicUnity

🧠 Ideological Alignments

Use the format: @Ideology.<Alignment> or short form: @Pol.<Letter>

@Ideology.AuthoritarianLeft
@Ideology.AuthoritarianRight
@Ideology.LibertarianLeft
@Ideology.LibertarianRight
@Ideology.Centrist
@Ideology.Left
@Ideology.Right

@Pol.L  → Libertarian
@Pol.A  → Authoritarian
@Pol.C  → Collectivist
@Pol.I  → Individualist
@Pol.S  → Spiritual
@Pol.M  → Materialistic

✝️ Spiritual Alignments

Use the format: @Spirituality.<Alignment> or short form: @Pol.<Letter>

@Spirituality.Spiritual
@Spirituality.Agnostic
@Spirituality.Materialistic

⚔️ Pickup Effects

Use the format: @Pickup.<Name> or short form: @Pick.<Name>

@Pickup.Rage        | @Pick.Rage
@Pickup.Weak        | @Pick.Weak
@Pickup.Slow        | @Pick.Slow
@Pickup.Vulnerable  | @Pick.Vulnerable
@Pickup.Immortal    | @Pick.Immortal
@Pickup.Freeze      | @Pick.Freeze
@Pickup.Inspired    | @Pick.Inspired
@Pickup.Angry       | @Pick.Angry
@Pickup.Frenzy      | @Pick.Frenzy

📌 Summary

Category Format Examples
Trigger @TriggerOnPlayed, @TriggerEveryXSecond
Faction @Faction.Amish
Dogma @Dogma.SwordsToPlowshare
Ideology @Ideology.AuthoritarianLeft, @Pol.L
Spirituality @Spirituality.Materialistic, @Pol.S
Pickup Effects @Pickup.Frenzy, @Pick.Frenzy
⚠️ **GitHub.com Fallback** ⚠️