Empire modding - Stellaris Wiki (2024)

Version

Empire modding - Stellaris Wiki (1)

Please help with verifying or updating older sections of this article. At least some were last verified for version 2.0.

This article is for the PC version of Stellaris only.

This article is about creating mods adding custom (prescripted) empires. Please note the fact this guide is not describing the process of modding any graphic assets (alien portraits, flag symbols, starship models etc.), just txt instructions needed to create the custom empire using default assets of a game.

Some parts of this guide describe fairly easy or even obvious things, there are however parts of empire modding much more complicated or containing unexpected nuances.

Contents

  • 1 Prescripted countries
    • 1.1 Empire and species name
    • 1.2 Species class and portrait
    • 1.3 Traits
    • 1.4 Government and ethics
    • 1.5 Starting solar system
    • 1.6 Graphic style of spaceship and city
    • 1.7 Modding empire flag
    • 1.8 Modding starting leader of an empire
    • 1.9 Custom start screen flag
    • 1.10 Empire spawn enabled - how to make empires appear in random games as AI opponents
  • 2 Implementing custom Start Screen introductory text and empire description
    • 2.1 Prescripted_countries.txt
    • 2.2 Start_screen_messages.txt
    • 2.3 Localisation
  • 3 Custom AI personalities for AI-controlled custom empires
  • 4 Name lists
    • 4.1 General rules of adding names to namelists
    • 4.2 Names of ships, stations and planets
      • 4.2.1 Sequential
    • 4.3 Names of characters
  • 5 Other nuances
    • 5.1 Unique diplomatic responses
    • 5.2 Unique ruler titles
    • 5.3 Restricting human empires to particular skin color or gender
  • 6 References

Prescripted countries[edit | edit source]

99_prescripted_countries.txt is a file contained in a folder Stellaris->prescripted_countries, which is the base file you need to modify in order to make your custom empire appear correctly in a Stellaris New Game empire selection screen. Modding that file is enough to add the most basic custom empire to the game.

By default, 99_prescripted_countries.txt contains code for the game's default empires, beginning with United Nations of Earth. The order of empires coded in this file is also the order of those empires displaying on the New Game scrolled list of empires, so uppermost humans display first. In your mod you can either delete default prescripted countries and replace them with your own, or simply add your own to the bottom of the list so they will display after default ones.

 tzynn = {name = "tzynn"adjective = "PRESCRIPTED_adjective_tzynn"spawn_enabled = yes # yes / no / alwaysship_prefix = "PRESCRIPTED_ship_prefix_tzynn"species = {class = "REP"portrait = "rep9"name = "PRESCRIPTED_species_name_tzynn"plural = "PRESCRIPTED_species_plural_tzynn"adjective = "PRESCRIPTED_species_adjective_tzynn"name_list = "REP1"trait = "trait_strong"trait = "trait_resilient"trait = "trait_talented"trait = "trait_rapid_breeders"trait = "trait_nonadaptive"}room = "personality_slaving_despots_room"authority = "auth_imperial"civics = { "civic_police_state" "civic_slaver_guilds" }government = gov_star_empireethic = "ethic_authoritarian"ethic = "ethic_fanatic_militarist"planet_name = "PRESCRIPTED_planet_name_tzynn"planet_class = "pc_desert"system_name = "PRESCRIPTED_system_name_tzynn"graphical_culture = "reptilian_01"city_graphical_culture = "reptilian_01"empire_flag = {icon= {category = "pointy"file = "flag_pointy_2.dds"}background= {category = "backgrounds"file = "v.dds"}colors={"red""black""null""null"}}ruler = {name = "PRESCRIPTED_ruler_name_tzynn"gender = maleportrait = "rep9"texture = 1clothes = 4} }

Empire and species name[edit | edit source]

  • PRESCRIPTED_species_name_xanid: "Xani"
  • PRESCRIPTED_species_plural_xanid: "Xanis"
  • PRESCRIPTED_species_adjective_xanid: "Xanid"
  • PRESCRIPTED_adjective_xanid: "Xanid"
  • PRESCRIPTED_planet_name_xanid: "Xanth"
  • PRESCRIPTED_system_name_xanid: "Dir-Xan"
  • PRESCRIPTED_ruler_name_xanid: "Zaox Huketkin"
  • PRESCRIPTED_ruler_title_xanid: "Suzerain"

Self-explanatory part. "humans1" in this case is the base code for the empire, it will be referenced in other files but won't display in game. Name = "humans1" means the full name of that empire displaying in the game - such as United Nations of Earth or Human Commonwealth - is coded in the localisation files this way. Species_name is the name a singular pop of those species will have, plural form is used in appropriate moments in game.The difference between species_adjective and adjective is, the first one applies to species and the second one to imperial adjectives. This shouldn't matter in most cases though.

  • PRESCRIPTED_ship_prefix_xanid: "XAN"

This is a ship prefix appearing before name of every single starship in the game. For example, if namelist contains starship name "Discovery" and you type "USS" as United States Ship in prefix, then the result in game will be USS Discovery. You can invent whatever abbreviation and prefix you want - for extra immersion check rules of real life ship prefixes here https://en.wikipedia.org/wiki/Ship_prefix

These scripted names are localised in the prescripted_countries_names.yml

Species class and portrait[edit | edit source]

species_class = "REP"

Here you put the phenotype of your species, one of the following: mammalian, reptilian, avian, molluscoid, arthropoid, fungoid, robotic and machine. You have to type the phenotype of your empires species portrait here, or portraits of your species may display wrongly.The code for species classes is: mammalians - MAM, reptilians - REP, avians - AVI, arthropoids - ART, molluscoids - MOL, fungoids - FUN, plants - PLANT, machine - MACHINE, robotic - ROBOT.

portrait = "rep9"

You put the codename of portrait here.For reference, code for all default Stellaris portraits is in file Stellaris->common->species_classes->00_species_classes.txt

Traits[edit | edit source]

trait = "trait_strong"trait = "trait_resilient"trait = "trait_talented"trait = "trait_rapid_breeders"trait = "trait_nonadaptive"

Reference file for traits is in Stellaris->common->traits->00_species_traits.txt, here is everything you need to know while assigning traits to your custom race.You just need to paste here all traits you want your race to have.Remember about default trait limits and rules. It is impossible for species to have more than 4 positive and negative traits, some of traits exclude each other (quick learners-slow learners etc.) and traits need to fit under trait points limit. If you break one of those rules then empire may be bugged or not display. 00_species_traits.txt contains cost of each traits point cost and list of traits contradicting each other, so use it for reference.

Government and ethics[edit | edit source]

authority = "auth_imperial"civics = { "civic_police_state" "civic_slaver_guilds" }government = gov_star_empire

ethic = "ethic_authoritarian"ethic = "ethic_fanatic_militarist"

The names of government types and general gov references are in common->governments->00_governments.txt. Ethics are in common->ethics->00_ethics.txtRemember about default government-ethics restrictions: democracies are not allowed with authoritarian ethics, autocracies with egalitarian, oligarchies with fanatic egalitarianism or fanatic authoritarianism etc. If you make the inappropriate combination of gov type and ethics, then custom empire may not work.

Starting solar system[edit | edit source]

planet_name = "Earth"system_name = "Sol"planet_class = "pc_continental"initializer = "sol_system_initializer" 

First two names are self-explanatory, here you input whatever names you want starting planet and system of your empire to have. As for the planet class, here you choose type (climate) of planet preferred by your species; code of allowed planet classes is pc_desert, pc_tropical, pc_continental, pc_ocean, pc_arctic, pc_tundra and pc_arid. As you probably care what climates your Xenomorph species want to inhabit, remember about the Habitability Wheel while assigning base planet class.

Setting planet class is mandatory and lack of it breaks the country, planet and system names are mandatory unless you want them to be blank.Initializer is an optional and more complicated thing. "System initializer" is a custom-made solar system with each celestial body in it and distances between them separately designed and named. If you created such system initializer, put its code name here. If you aren't that kind of perfectionist, delete the entire "initializer" line of code - then your custom empire will spawn in entirely randomly generated system, except custom name of it, homeworld planet and its class.

Graphic style of spaceship and city[edit | edit source]

graphical_culture = "mammalian_01"city_graphical_culture = "mammalian_01"

Each phenotype in Stellaris has different 3d models of ships and different 2d graphics of cities displayed on planetary view. The first line applies to ship 3d models, the second one is self-explanatory. You can freely mix phenotypes of your species portraits, starship graphics and city graphics, so don't worry about that. Code names of graphical cultures are simple: humanoid_01, plantoid_01, mammalian_01, reptilian_01, avian_01, molluscoid_01, fungoid_01, arthropoid_01.

Modding empire flag[edit | edit source]

In a new game screen, using graphical interface, editing flag of an empire is easy, but to code this flag in txt - using default Paradox flag symbols, patterns and colors - you need to know code names for all those elements. For reference, use this separate guide - it makes this task incomparably easier.

Modding starting leader of an empire[edit | edit source]

Remember, modding leader of an empire matters much more for autocracies and oligarchies than for democracies where he/she can change after 5 years anyway.

 ruler = {

name = "PRESCRIPTED_ruler_name_humans1"gender = femaleportrait = "human_female_05"texture = 0hair = 1clothes = 0

 }

Class should be left as "ruler" and experience as 1200, name is self-explanatory (if you don't type it here, it won't be imported from namelists - your starting ruler will display blank in game!), few other nuances are less obvious.

"Texture" means color variations of aliens (they are in game to make alien leaders have more individual character), this line doesn't matter for humans at all. Portrait of a leader should be usually the same as species portrait - humans are exception here, as humans have different portraits for sex and skin color. Regarding skin color of human portraits, 01 is "eastern white" (?), 02 "asian", 03 "brown", 04 "western white" and 05 "black". Regarding clothes and hair, check this illustrated reference guide [LINK TO THE GUIDE]

Custom start screen flag[edit | edit source]

flags = { human_1 custom_start_screen }

If you don't want your custom empire to have a custom introductory text, just delete this mysterious line. Then your mod empire will have auto-generated introduction similar to that of all normally generated species. If you do want a custom introduction, later part of this guide covers that issue in detail.

Empire spawn enabled - how to make empires appear in random games as AI opponents[edit | edit source]

spawn_enabled = no # yes / no / always

This may be one of the most confusing aspects of modding empires in Stellaris. Spawn_enabled is a setting that decides whether the empire you create will be available to appear in a random new game, controlled by AI, instead of usual randomized AI species. If you type "spawn_enabled = no", then your mod empire will be still possible for human player to chose, edit it and play it in the new game, but otherwise it will never appear randomly in galaxies under AI control (as an opponent to human player). Use this setting if you want your custom empires to be playable only for human, never possible to show up under AI control.If you type "spawn_enabled = yes", then the empire may (or may not) randomly spawn in the new game under AI control.If you type "spawn_enabled = always", then that empire is forced to appear in every random game as an AI nation instead of randomized race.

The last option means, if you have created 1 mod empire, set "spawn_enabled = always", then start a new game and set 1 AI opponent, then this opponent will always be that custom empire - because mod empires with "spawn_enabled = always" setting always have priority over default randomly generated species. If you created 16 mod empires, set "spawn_enabled = always" for all of them and then launch a new game with 16 AI opponents, every single of those AI opponents will be one of these mod empires. However, if you created 16 mod empires with that setting and then launch a new game with less than 16 AI opponents, then only some of your mod empires will appear in that game - but again, every AI opponent will be one of them, as I said: custom empires with spawn_enabled = always setting always have a priority over randomized ones.

WARNING - if human player on a new game screen chooses one of mod empires to play as, then this custom empire will not spawn in the game as AI opponent even with spawn_enabled = always, because it is already in game: human-controlled. Unless you change (edit) the name on the new game screen (then game thinks it is entirely different empire, and populates the galaxy with originally named one because of spawn_setting = always) - so don't change the name and everything will be fine.

Implementing custom Start Screen introductory text and empire description[edit | edit source]

In Stellaris, every single empire gets auto-generated introductory text when starting a new game, built from 'text pieces' based on ethics, government, planet class, FTL and few other "characteristic traits" of it. However, there is also an option of creating custom introductory text for a custom empire. If you want to do this, you will need to modify few separate files.

Prescripted_countries.txt[edit | edit source]

One of the lines in 00_prescripted_countries.txt is mysterious

flags = { human_1 custom_start_screen }

If you don't want your empire to have unique, custom introduction text, just delete it. Otherwise, leave it in place. Imperial "flag" (in this case human_1) is used to identify the particular empire, so it needs to be the same here and in the next file.

Start_screen_messages.txt[edit | edit source]

Go to Stellaris->common->start_screen_messages folder, here is the file 00_start_screen_messages.txt. On the bottom of this file there is code allowing custom introductory text to appear instead of a randomly generated one. In case of our example, United Nations of Earth, it is

# United Nations of Earthpart = { location = 0 localization = "START_SCREEN_UNE" trigger = { has_country_flag = human_1 }}

Just copy that code for your custom empire. Location should always be 0. Localization should be exactly the same code as in the localisation files, and has_country_flag has to point at the same "imperial flag" as in prescripted countries.txt

has_country_flag = human_1 human_1 custom_start_screen

Localisation[edit | edit source]

Then you just need to create localisation file which will contain introductory text for your empire. All localisation files need to be in YML format (in Stellaris->localisation you can see how do they look, you may copy one of them and remake it) and their names have to end in l_language (l_english, l_russian etc.) to work. For example, introductory text of United Nations of Earth look like this:

START_SCREEN_UNE:0 "Much has happened since modern Humans first emerged in Africa (...)"

Just use the same START_SCREEN_CUSTOMEMPIRENAME line here and in Start_screen_messages.txt file.Also, remember about two things. If you want your text to enter new paragraph, use \n\n as in

civilizations took form.\n\nScientific progress has been swift

And as for now, be careful not to create too long introductory text, as it will be cut if not fitting inside of the start screen window. Just make it not much longer than exemplary introduction of UNE.


Each Stellaris empire also may have a description displaying on a new game screen when browsing through playable empires. In case of United Nations on Earth this description is in localisation->prescripted_l_english.yml:

EMPIRE_DESIGN_humans1:0 "United Nations of Earth"EMPIRE_DESIGN_humans1_desc:0 "The myriad Human nations that constitute their interstellar government (...)"

You can, of course, do the similar description for your custom empire. Remember about appropriate codename, paragraphs and length (although in case of descriptions, 'too long' ones will display under scrollbar).


Due to how the game sets up the start screen messages, this can be overridden by the message created due to your empire's origin. As such, you should set the origin to one of Prosperous Unification, Post-Apocalyptic, Life-Seeded or Resource Consolidation, as these have the triggers to be ignored if the empire has the "imperial flag" custom_start_screen.

Custom AI personalities for AI-controlled custom empires[edit | edit source]

If you want your custom empire to be used as an AI opponent, you would probably like it to behave in "appropriate way" - for example custom Zerg or Tyranid empire should be extremely aggressive and unwilling of any diplomacy. You can make this happen in two ways.First one, you simply create custom empire and hope it will get appropriate default AI personality assigned (in this case, Fanatical Purifiers or Hive Mind). Personalities of AI nations in Stellaris are assigned on the beginning of new game basing on certain combinations (and, to lesser extent, government or traits) of empires - you can check the weights in Stellaris->common->personalities->00_personalities.txt.

However much more reliable way, and often the only one, is to make a new personality for your custom empire. This is much easier task than it sounds. 00_personalities.txt file contains notes which explain what each line of code in this file means, so you can easily create your own AI personality just by changing few words and tweaking few numbers.Example of such custom AI personality made for custom empire is

xenomorph_hive = { type = purifier #these words seems mysterious but they are all explained in original file aggressiveness = 2.0 trade_willingness = 0.0 bravery = 1.0 military_spending = 1.2 colony_spending = 1.2 alliance_acceptance = -1000 federation_acceptance = -1000 threat_modifier = 0 friction_modifier = 10 behaviour = { conqueror = yes subjugator = no liberator = no opportunist = yes slaver = no uplifter = no purger = yes dominator = yes infiltrator = no robot_exploiter = yes robot_liberator = no migrator = no } allow = { has_country_flag = xenomorph } weight_modifier = { weight = 1000 }}

This way, AI xenomorphs will always get the personality "Xenomorph Hive", making them unable of diplomacy, aggressive and murderous, and no other AI empire will ever get it.You can of course add the localisation of such custom personality too, so it will display when you encounter Xenomorphs in game - add something like that to your mod's localisation file:

personality_xenomorph_hive:0 "Xenomorph Hive"personality_xenomorph_hive_desc:0 "Xenomorph Hive is a collective of terrifying predatory species. Diplomacy with them is impossible, they wish to exterminate all other life they perceive as danger to them."

Name lists[edit | edit source]

"Name lists" are list of names used for starships, leaders, planets, stations and other features of empires. They are separate from localisation files, located in Stellaris->common->name_lists.In prescripted_countries.txt file, what name list is used by an empire is set by the line

name_list = "Human"

Where in this case "Human" is the name of a file Human.txt in name_lists folder. A single name list may be used by many empires (all default races but human use generic "phenotype-based" lists) but you probably want your empire to have unique names. Adding names to the namelists contains some not so obvious nuances, so they are listed here.

General rules of adding names to namelists[edit | edit source]

Do not use commas anywhere in namelist files, names are separated by space instead. If you want the name to consist of more than one word, for example Morning Star or al-Gezira, put them under quotation marks like this:

constructor = { Ziryab Zewail "al-Sufi" "ibn Ridwan" "Al-Zarkali" "al-Haytham" "al-Battani" "al Farabi"

Be very careful about using quotation marks in namelist files, though - one unnecessary quotation here, or one one quotation left open, may break an entire namelist (make names display blank). Try also to avoid using "weird" unicode symbols, for example at the current moment the game does not handle many diacritics such as đ, Ă or Ư.

Names of ships, stations and planets[edit | edit source]

Most of this section is self-explanatory — use Human.txt namelist as a reference. Regarding starships: the 'generic' category means names put here may appear for any type of starship. Additionally/alternatively you can make separate name lists by ship type: scientist ships, destroyers, battleships, transport etc. If a list includes names under both the 'generic' tag and a more specific tag (e.g. 'cruiser'), ships of that type will pull their names from either collection of names.

Similarly, you may make planet names apply for any type of planet (generic) or separate planet name lists for separate planet types. For example:

pc_tropical = {names = {Amazonia Congo Ecuador Rain Storm Monsoon Bengal "New Africa" Kishkindha Zanzibar Kipling }}

Sequential[edit | edit source]

Some fields allow a sequential_name. This should be a string. Numbers can be expressed in several formats using an escape sequence:

  • Cardinal: $C$ will produce cardinal numbers: 1, 2, 3, 4...
  • Ordinal: $ORD$ will produce ordinal numbers: 1st, 2nd, 3rd, 4th...
  • Roman: $R$ will produce cardinal numbers in the Roman numeral system: I, II, III, IV...
  • Hexadecimal: $HEX$ will produce cardinal numbers in the hexadecimal numbering system: 001, 002, 003, 004...

The fields that support sequential_name are the following:

  • fleet_names
  • army_names

As of 3.6, this only works if you use it a localization file, instead of the common->name_lists file.

Names of characters[edit | edit source]

Example of character namelist:

names7 = { weight = 15 first_names_male = { Aarav Vivaan Aditya Arjun Reyansh Arnav Krishna Ishaan Shaurya Atharv Advik Pranav Kayaan Darsh Veer Rahul Mahesh Shyam Raj Kumar Palash Rakesh Nishant Neeraj } first_names_female = { Saanvi Aanya Aadhya Aaradhya Ananya Pari Anika Navya Diya Avani Myra Ira Aahana Shanaya Kyra Siya Priyanka Divya Mahima Shivangi Juvina Anoushka Anushri Apoorva } second_names = { Kumar Moorthi Shastri Prasad Acharya Swamy Pillai Gowda Nayak Desmukh Bhat Kulkarni Dodamani Patil Gupta Sharma Namboodiri Pannikar Potti Kutty Varma } regnal_first_names_male = { Kayaan Darsh Veer Rahul Mahesh Shaurya Atharv Advik Pranav } regnal_first_names_female = { Saanvi Aanya Aadhya Aaradhya Ananya Priyanka Divya Mahima Shivangi } regnal_second_names = { Kumar Moorthi Shastri Prasad Acharya Patil Gupta Sharma Namboodiri Pannikar Potti } }

Each custom empire may contain many character name lists such as this one - United Nations of Earth, for example, have 15 such lists for 15 various major human ethnicities. This is why each of them has weight - if you create empire with few different lists of names, weight decides about the frequency of that group's characters appearing as recruitable leaders compared to others. That frequency is calculated as follows:

Weight / Total weight of all character namelists within the empire

So for example if your empire has character namelist of three nationalities, Swedish, Danish and Finnish, and their weights are appropriately 15-10-5, then chance of leader with Finnish name being generated is 5/(15+10+5) = 5/30 = 1/6, so on average one of six leaders generated within your empire will have a Finnish name.Try to always add some regnal names - if an empire has no regnal names and happens to be a monarchy, its monarch have no names at all (they are blank). Adding some regnal names may be necessary even if said empire is not a monarchic state, because if a rebellion happens and part of it secedes and adopts monarchic government, then its monarch will not have any names too (namelists of an empire are shared by any successor states born from it).WARNING - if you want to create namelist of some language with "unorthodox names", for example Korean in which first names written in Latin contain dash, do not put them in quotation marks like starship/planet names.

first_names_male = { Min-jun Seo-jun Ha-joon Do-yun Joo-won Ye-jun Joon-woo Ji-ho Ji-hu Jun-seo Young-ho Il-sung Kyung-soo Young-chul Sung-ki Jong-yul Sang-chul Young-hwan Byung-chul Sung-ho Sung-soo Jin-ho Jung-ho Sang-hoon Sung-min Sung-min}

^this way they will work.

Other nuances[edit | edit source]

Unique diplomatic responses[edit | edit source]

If you want for your Galactic Empire to contain unique diplomatic text while played by AI ("Welcome. I am Darth Vader and I will show you the power of the Force."), probably the simplest way to implement that is indirect one.

Go to Stellaris->localisation->dip_messages_l_english.yml, and in this file scroll down a bit - you'll see the base game contains diplomatic responses unique for particular AI personality types. As this guide shown few steps before, adding custom AI personalities for individual empires is very easy - you just need to make one for your empire, then you can give it unique diplomatic text.

To sum up, all you need to do is1) Make whatever unique AI personality applying just for that one empire, in 00_personalities.txt2) Write custom diplomatic text, code it (for example GE_FRIENDLY_GREETING_03) and put in mod's localisation file3) Go to Stellaris->diplo_phrases->00_diplo_phrases.txt, here you can see the way diplomatic phrases (including unique personality phrases) appear in game and do the same for your custom empire.The end result in 00_diplo_phrases.txt would be something like that:

GALACTIC_EMPIRE_FRIENDLY_GREETING_03trigger = { has_ai_personality = darth_vader [rest of the code]

Unique ruler titles[edit | edit source]

If you want your custom empire to use unique ruler titles just add the code below under the ruler section of the country.

ruler_title="Darth" heir_title="Apprentice" ruler_title_female="Darth" heir_title_female="Apprentice"

You can also give it unique government form. A broader solution can be to change the default ruler title in 00_governments.txt, so rulers of all empires of that government type will have the title.

Restricting human empires to particular skin color or gender[edit | edit source]

If you want to make custom human empire with or without particular skin colors or gender, doing it is fairly easy. Go to Stellaris->gfx->portraits->portraits->00_portraits.txt and here find the line portrait groups->human. Here you can see human species and code which makes their pops have one of 10 portraits (5 skin colors, 2 genders). Let's say for example you wanna create Asian faction with only Asian-looking pops. In such case you need to copy code used for humans in this file, rename "human" to "human_asian" or whatever (remember to put the same codename in the appropriate place in prescripted_countries.txt!), and then remove from that simple code portraits other than human_male_02 and human_female_02. As a result, all pops and all leaders of that empire ever generated over the course of game will be only of "asian" variation

References[edit | edit source]

Modding

EmpireEmpireEthicsGovernments • Civics • OriginsMandatesAgendasTraditions • Ascension perksEdictsPoliciesRelicsTechnologiesCustom empires
PopsJobsFactions
LeadersLeadersLeader traits
SpeciesSpeciesSpecies traits
PlanetsPlanetsPlanetary feature • Orbital depositBuildings • DistrictsPlanetary decisions
SystemsSystemsStarbasesMegastructuresBypassesMap
FleetsFleetsShips • Components
Land warfareArmiesBombardment stance
DiplomacyDiplomacy • Federations • Galactic communityOpinion modifiersCasus Belli • War goals
EventsEventsAnomaliesSpecial projectsArchaeological sites
GameplayGameplayDefinesResources • EconomyGame start
Dynamic moddingDynamic moddingEffectsConditionsScopesModifiersVariablesAIOn actions
Media/localisationMaya exporterPortraitsFlagsEvent picturesInterfaceIconsMusicLocalisation
OtherConsole commandsSave-game editingSteam WorkshopModding tutorial
Empire modding - Stellaris Wiki (2024)

References

Top Articles
Latest Posts
Article information

Author: Maia Crooks Jr

Last Updated:

Views: 5969

Rating: 4.2 / 5 (43 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Maia Crooks Jr

Birthday: 1997-09-21

Address: 93119 Joseph Street, Peggyfurt, NC 11582

Phone: +2983088926881

Job: Principal Design Liaison

Hobby: Web surfing, Skiing, role-playing games, Sketching, Polo, Sewing, Genealogy

Introduction: My name is Maia Crooks Jr, I am a homely, joyous, shiny, successful, hilarious, thoughtful, joyous person who loves writing and wants to share my knowledge and understanding with you.