• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Kayila

Recruit
22 Badges
Jul 28, 2021
1
0
  • Stellaris: Synthetic Dawn
  • Stellaris: Necroids
  • Stellaris: Federations
  • Stellaris: Lithoids
  • Stellaris: Ancient Relics
  • Stellaris: Megacorp
  • Shadowrun: Dragonfall
  • Shadowrun Returns
  • Stellaris: Distant Stars
  • Stellaris: Apocalypse
  • Stellaris: Humanoids Species Pack
  • Dungeonland
  • Stellaris - Path to Destruction bundle
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Galaxy Edition
  • Stellaris: Galaxy Edition
  • Stellaris: Galaxy Edition
  • Stellaris
  • Magicka 2: Ice, Death and Fury
  • Magicka 2
  • Magicka
Hey folks!

I'm working on a mod that adds a new species archetype to the game. I know there is a way to inherit trait and trait points from another archetype, but is there a way to allow game triggers to treat my new archetype as valid if it validates using an archetype?

Specifically, I'm looking at the is_organic_species scripted trigger. It's reads:
Code:
is_organic_species = {
        species = {
                OR = {
                        is_archetype = BIOLOGICAL # original trigger did not include pre-sapient classes
                        is_archetype = LITHOID
                }
        }
}

Is there a way that I can get Stellaris to is my custom archetype and include it, since I want my archetype to be a subcategory of BIOLOGICAL?

Thanks!