String PArser - linkanr/UtopiaRises2d GitHub Wiki
This page documents all supported dynamic tokens available for card descriptions, tooltips, and game UI text. Tokens are parsed and rendered via GameStringParser.Parse()
.
Use these to define when an ability should activate:
@TriggerOnBattleStarts
@TriggerOnBattleEnd
@TriggerOnPlayed
@TriggerOnDeath
@TriggerOnCardDraw
@TriggerEveryXSecond
@TriggerContinuously
@TriggerAreaDamage
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
Use the format: @Dogma.<ID>
@Dogma.SwordsToPlowshare
@Dogma.AtomicUnity
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
Use the format: @Spirituality.<Alignment>
or short form: @Pol.<Letter>
@Spirituality.Spiritual
@Spirituality.Agnostic
@Spirituality.Materialistic
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
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
|