-
Notifications
You must be signed in to change notification settings - Fork 0
Names And Acronyms
Generated from the thetowersdk repository. Edits made here are overwritten on the next push — change the source file instead.
The game and the community use a lot of shorthand, and plenty of it collides. SL is Stellar Lift
to one player and Spotlight to another; GC is Galaxy Compressor or a glass-cannon run. The SDK
ships a glossary of 499 terms so you do not have to guess:
import { lookupGlossary, expandAcronym, listAmbiguousGlossaryTerms } from 'thetowersdk/data'
expandAcronym('CF') // 'Chrono Field'
expandAcronym('SL') // null — it is ambiguous, so there is no single answer
lookupGlossary('CF')[0] // { term, kind, domain: 'ultimate-weapon', expansion, definition }
lookupGlossary('SL') // Stellar Lift (module) and Spotlight (ultimate weapon)
listAmbiguousGlossaryTerms() // 27 terms that resolve to more than one thingEach entry carries a domain, which is usually enough to pick the one you meant. Usually, not
always: SR returns both Shrink Ray and Solar Reflector and both are modules, so for the terms in
listAmbiguousGlossaryTerms() you need the expansion rather than the domain.
The glossary covers what the game calls things, plus a short list of run concepts. Community
shorthand outside both — critical factor for CF — is not in it, so expandAcronym gives you the
game's meaning and nothing else.
Names in it are generated from the same catalogs the SDK ships, and every acronym is checked against those names, so a term cannot appear unless it is real.
Generated from TheTowerSDK — do not edit here. Docs and live demos: https://tmrxjd.github.io/TheTowerSDK/
- Quick Start
- Entry Points
- How It Fits Together
- Getting a Save File
- Reading a Save
- Reading The Community Wiki
- Formulas
- Builders
- Charts
- Effective Paths
- Examples
- Templates
- Building a Bot On This
- Google Sheets
- Desktop and Mobile
- Optional Add-ons
- Using It With An AI Agent
- Using Your Own Artwork
- Names And Acronyms
- Patch Notes
- Accuracy
- Versioning
- Where the Docs Live
- Contributing
- Credits
- License
Guides
Examples
- 01-browse-game-data.ts
- 02-read-a-save-file.ts
- 03-plan-upgrades-from-a-save.ts
- 04-generate-a-chart.ts
- 05-generate-a-cost-table.ts
- 06-read-the-community-wiki.ts
- 07-format-like-the-game.ts
- 08-build-a-calculator.ts
- 09-build-a-bot.ts
- 10-read-a-sheet.ts
- 11-build-a-knowledge-base.ts
- 12-show-module-and-card-art.ts
Templates