StellarisCommands.com

Victory against the …

The "Victory against the …" event in Stellaris — flavor, choices, and how to trigger it with the event console command.

Victory against the …

Country event

All is lost. We... we offer our unconditional surrender.

The command below will trigger the "Victory against the …" event in Stellaris:

Player choices

When this event fires, you can choose between these 9 options:

  • We accept your surrender.
  • They have been judged and found wanting.
  • Another enemy dealt with.
  • They left us no choice...
  • It is an unforgiving universe.
  • Acquisition successful.
  • The … expands.
  • Threat neutralized.
  • We accept your surrender.

Firing conditions

Show raw conditions
is_ai = no
fromfrom = {
  OR = {
    using_war_goal = {
      type = wg_conquest
      owner = root
    }
    using_war_goal = {
      type = wg_counterattack
      owner = root
    }
    using_war_goal = {
      type = wg_independence
      owner = root
    }
    using_war_goal = {
      type = wg_proxy_war
      owner = root
    }
  }
}
OR = {
  AND = {
    fromfrom = {
      any_attacker = { is_same_value = root }
    }
    NOT = {
      from = {
        any_owned_planet = {
          is_colony = yes
          NOT = {
            fromfrom = {
              any_attacker = { has_claim = prevprev.solar_system }
            }
          }
        }
      }
    }
  }
  AND = {
    fromfrom = {
      any_defender = { is_same_value = root }
    }
    NOT = {
      from = {
        any_owned_planet = {
          is_colony = yes
          NOT = {
            fromfrom = {
              any_defender = { has_claim = prevprev.solar_system }
            }
          }
        }
      }
    }
  }
}