Pax Historia Wiki
  • Official Pax Historia Wiki
  • ▢️Gameplay
    • 🐣Creating A Game
    • 🧠Your Advisor
    • πŸ—ΊοΈThe Map
    • 🎩Chats
    • βš–οΈTrust Survey
    • πŸ–‹οΈCreating Actions
    • πŸ‘²Troop Movement
    • πŸ“ˆStatistics Changes
    • ⚠️Conflict
  • 🎱Editing Presets
    • ℹ️Basic Info
    • 🏞️Edit A Country
    • πŸ–ΌοΈEdit Map
    • ⏳Edit Timeline
    • πŸ‘ΊCreating a Region Map
  • βž—Scripting Language
    • Default Prompts
    • 🏭countries
    • 🧩thisCountry
    • 🏝️regions
  • πŸ€–AI Prompts
    • πŸ“¨Chat Invitations
    • πŸ”„Chat Consolidation
    • πŸ€–Chat Between AI
    • πŸ’¬Chats Involving User
    • πŸŽ™οΈNext Speaker
    • πŸ“œChat To Event
    • ✍️Description To Action
    • πŸ“Action Creation
    • πŸ”Action Review
    • ⚠️Threat Survey
    • πŸ“ŠStatistics Manager
    • πŸ›‘οΈDefense Requests
    • 🚨Defense Response
    • πŸͺ–Troop Redirection
    • πŸ†Conflict Conference
    • βš–οΈConference Judge
  • πŸ›£οΈRoadmap
Powered by GitBook
On this page
  1. Scripting Language

countries

`
  Active Countries: ${countries.with({ isPuppet: false })}
  Puppet Countries: ${countries.with({ isPuppet: true })}
  Countries bordering ${thisCountry.name}: ${countries.with({ borderingCountry: thisCountry.name })}
  Countries with Master: ${countries.with({ master: thisCountry.master })}
  Countries with Min Core Population: ${countries.with({ minCorePopulation: thisCountry.corePopulation })}
  Countries with Max Core Population: ${countries.with({ maxCorePopulation: thisCountry.corePopulation })}
  Countries with Puppets: ${countries.with({ puppets: thisCountry.name })}
`

include the output examples bc the default toString will just be a comma separated list of the country names

PreviousDefault PromptsNextthisCountry

Last updated 10 months ago

βž—
🏭