Compare commits
3 Commits
930cc8e4e1
...
3.11.x
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9a4cff17b8 | ||
|
|
578a91552f | ||
|
|
e540e3fb2e |
@@ -1,9 +1,2 @@
|
|||||||
# Real-Gray
|
# Real-Gray
|
||||||
Stellaris mod real gray page.
|
Stellaris mod real gray page.
|
||||||
3.12卫星
|
|
||||||
单槽虚空辉光舰 高射速不间断T槽武器
|
|
||||||
灰风堕落帝国
|
|
||||||
灰风狗开
|
|
||||||
灰风机仆
|
|
||||||
绑定银河机仆数量的灰风意识完整度系统
|
|
||||||
终局天灾纳迪沙协议
|
|
||||||
@@ -1,3 +1,99 @@
|
|||||||
|
rg_create_fallen_empire_species_effect = {
|
||||||
|
create_species = {
|
||||||
|
name = 纳米构造体
|
||||||
|
class = RG_MACHINE
|
||||||
|
portrait = "rg_machine_maid"
|
||||||
|
traits = {
|
||||||
|
trait = trait_machine_unit
|
||||||
|
trait = rg_machine_maid_trait
|
||||||
|
trait = trait_robot_mass_produced
|
||||||
|
trait = ramdom_trait
|
||||||
|
}
|
||||||
|
extra_trait_points = 3
|
||||||
|
allow_negative_traits = no
|
||||||
|
namelist = MACHINE3
|
||||||
|
effect = {
|
||||||
|
save_event_target_as = rg_fallen_maid_species
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rg_create_fallen_empire_country_effect = {
|
||||||
|
create_country = {
|
||||||
|
name = 德萨努-纳迪沙协议
|
||||||
|
type = fallen_empire
|
||||||
|
flag = {
|
||||||
|
icon = {
|
||||||
|
category = "special"
|
||||||
|
file = "gray_goo.dds"
|
||||||
|
}
|
||||||
|
background = {
|
||||||
|
category = "backgrounds"
|
||||||
|
file = "sinus.dds"
|
||||||
|
}
|
||||||
|
colors = {
|
||||||
|
"grey"
|
||||||
|
"dark_grey"
|
||||||
|
"null"
|
||||||
|
"null"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ignore_initial_colony_error = yes
|
||||||
|
authority = auth_machine_intelligence
|
||||||
|
civics = {
|
||||||
|
civic = civic_machine_remnants
|
||||||
|
civic = civic_custodian_directives
|
||||||
|
}
|
||||||
|
species = last_created_species
|
||||||
|
ethos = {
|
||||||
|
ethic = ethic_gestalt_consciousness
|
||||||
|
}
|
||||||
|
origin = "origin_fallen_empire"
|
||||||
|
effect = {
|
||||||
|
set_built_species = last_created_species
|
||||||
|
save_global_event_target_as = rg_scion_fe
|
||||||
|
set_country_flag = rg_fallen_empire_machine
|
||||||
|
add_resource = {
|
||||||
|
minerals = 10000
|
||||||
|
energy = 10000
|
||||||
|
food = 1000
|
||||||
|
influence = 500
|
||||||
|
}
|
||||||
|
if = {
|
||||||
|
limit = { host_has_dlc = "Apocalypse" }
|
||||||
|
give_technology = {
|
||||||
|
tech = tech_colossus
|
||||||
|
message = no
|
||||||
|
}
|
||||||
|
}
|
||||||
|
# must initialize global designs here
|
||||||
|
add_global_ship_design = "NAME_Gray_Omega"
|
||||||
|
add_global_ship_design = "NAME_Gray_Alpha"
|
||||||
|
add_global_ship_design = "NAME_Gray_Beta"
|
||||||
|
add_global_ship_design = "NAME_Gray_Gamma"
|
||||||
|
add_global_ship_design = "NAME_Gray_Theta"
|
||||||
|
add_global_ship_design = "NAME_Gray_Tau"
|
||||||
|
add_global_ship_design = "NAME_Gray_Sigma"
|
||||||
|
add_global_ship_design = "NAME_Gray_FE_Starbase"
|
||||||
|
if = {
|
||||||
|
limit = {
|
||||||
|
NOT = {
|
||||||
|
exist = event_target:rg_gray_country_leader
|
||||||
|
}
|
||||||
|
}
|
||||||
|
rg_gray_country_leader_init = yes
|
||||||
|
set_leader = last_created_leader
|
||||||
|
}
|
||||||
|
else = {
|
||||||
|
set_leader = last_created_leader
|
||||||
|
}
|
||||||
|
ruler = {
|
||||||
|
add_skill = 9
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
rg_create_fallen_empire_reinforcements = {
|
rg_create_fallen_empire_reinforcements = {
|
||||||
create_fleet = {
|
create_fleet = {
|
||||||
effect = {
|
effect = {
|
||||||
|
|||||||
@@ -480,7 +480,7 @@ rg_create_gray_warship = {
|
|||||||
rg_create_gray_army = {
|
rg_create_gray_army = {
|
||||||
if = {
|
if = {
|
||||||
limit = {
|
limit = {
|
||||||
has_leader_flag = gray_army_active
|
has_country_flag = gray_army_active
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else = {
|
else = {
|
||||||
|
|||||||
@@ -1,37 +1,3 @@
|
|||||||
# 避免代码复用原则:
|
|
||||||
# 如果你需要在不同的地方重复调用同一套代码,你应当把他们封装在这样的函数里。
|
|
||||||
# 避免需要修改代码时需要重复修改n次,或是发生修改了A处忘记修改B处导致bug发生的问题。
|
|
||||||
# 当然,这种分块需要到什么程度,我也不知道
|
|
||||||
#灰风
|
|
||||||
################################
|
|
||||||
# 舰R 灰风领袖好感度设定块部分:采样时间戳:2023/6/1 8:17
|
|
||||||
# 仅用于留档比对不进行改动
|
|
||||||
# wg_affection_wg_gray_system_launch = {
|
|
||||||
# if = {
|
|
||||||
# limit = { has_leader_flag = gray_leader }
|
|
||||||
# set_leader_flag = has_wg_affection
|
|
||||||
# set_leader_flag = has_wg_affection_wg_gray
|
|
||||||
# set_leader_flag = wg_affection_auto_change_no
|
|
||||||
# add_trait_no_notify = leader_trait_wg_gray_affection
|
|
||||||
# set_variable = { which = affection value = owner.wg_gray_affection }
|
|
||||||
# set_variable = { which = wg_leader_affection_to_lv2 value = @wg_gray_affection_to_lv2 }
|
|
||||||
# set_variable = { which = wg_leader_affection_to_lv3 value = @wg_gray_affection_to_lv3 }
|
|
||||||
# set_variable = { which = wg_leader_affection_to_lv4 value = @wg_gray_affection_to_lv4 }
|
|
||||||
# set_variable = { which = wg_leader_affection_to_lv5 value = @wg_gray_affection_to_lv5 }
|
|
||||||
# set_variable = { which = wg_leader_affection_reduce value = @wg_gray_affection_reduce }
|
|
||||||
# set_variable = { which = wg_leader_affection_increase value = @wg_gray_affection_increase }
|
|
||||||
# }
|
|
||||||
#
|
|
||||||
# }
|
|
||||||
# wg_affection_wg_gray_system_check = {
|
|
||||||
# if = {
|
|
||||||
# limit = {
|
|
||||||
# has_leader_flag = has_wg_affection_wg_gray
|
|
||||||
# }
|
|
||||||
# set_variable = { which = affection value = owner.wg_gray_affection }
|
|
||||||
# }
|
|
||||||
# }
|
|
||||||
################################
|
|
||||||
rg_gray_govener_init = {
|
rg_gray_govener_init = {
|
||||||
event_target:rg_gray_country = {
|
event_target:rg_gray_country = {
|
||||||
create_leader = {
|
create_leader = {
|
||||||
@@ -74,7 +40,7 @@ rg_gray_govener_init = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
set_leader_flag = "gray_leader" #某个mod新旧flag混用,我不说是谁。嗯嘿嘿
|
set_leader_flag = "gray_leader"
|
||||||
set_leader_flag = gray_leader
|
set_leader_flag = gray_leader
|
||||||
add_trait_no_notify = leader_trait_governor_gray
|
add_trait_no_notify = leader_trait_governor_gray
|
||||||
add_trait_no_notify = RG_leader_trait_ruler_gray
|
add_trait_no_notify = RG_leader_trait_ruler_gray
|
||||||
|
|||||||
@@ -49,96 +49,9 @@ rg_fallen_machine = {
|
|||||||
center = this.solar_system
|
center = this.solar_system
|
||||||
}
|
}
|
||||||
|
|
||||||
create_species = {
|
rg_create_fallen_empire_species_effect = yes
|
||||||
name = 纳米构造体
|
rg_create_fallen_empire_country_effect = yes
|
||||||
class = RG_MACHINE
|
|
||||||
portrait = "rg_machine_maid"
|
|
||||||
traits = {
|
|
||||||
trait = trait_machine_unit
|
|
||||||
trait = rg_machine_maid_trait
|
|
||||||
trait = trait_robot_mass_produced
|
|
||||||
trait = ramdom_trait
|
|
||||||
}
|
|
||||||
extra_trait_points = 3
|
|
||||||
allow_negative_traits = no
|
|
||||||
namelist = MACHINE3
|
|
||||||
effect = {
|
|
||||||
save_event_target_as = rg_fallen_maid_species
|
|
||||||
}
|
|
||||||
}
|
|
||||||
create_country = {
|
|
||||||
name = 德萨努-纳迪沙协议
|
|
||||||
type = fallen_empire
|
|
||||||
flag = {
|
|
||||||
icon = {
|
|
||||||
category = "special"
|
|
||||||
file = "gray_goo.dds"
|
|
||||||
}
|
|
||||||
background = {
|
|
||||||
category = "backgrounds"
|
|
||||||
file = "sinus.dds"
|
|
||||||
}
|
|
||||||
colors = {
|
|
||||||
"grey"
|
|
||||||
"dark_grey"
|
|
||||||
"null"
|
|
||||||
"null"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ignore_initial_colony_error = yes
|
|
||||||
authority = auth_machine_intelligence
|
|
||||||
civics = {
|
|
||||||
civic = civic_machine_remnants
|
|
||||||
civic = civic_custodian_directives
|
|
||||||
}
|
|
||||||
species = last_created_species
|
|
||||||
ethos = {
|
|
||||||
ethic = ethic_gestalt_consciousness
|
|
||||||
}
|
|
||||||
origin = "origin_fallen_empire"
|
|
||||||
effect = {
|
|
||||||
set_built_species = last_created_species
|
|
||||||
save_global_event_target_as = rg_scion_fe
|
|
||||||
set_country_flag = rg_fallen_empire_machine
|
|
||||||
add_resource = {
|
|
||||||
minerals = 10000
|
|
||||||
energy = 10000
|
|
||||||
food = 1000
|
|
||||||
influence = 500
|
|
||||||
}
|
|
||||||
if = {
|
|
||||||
limit = { host_has_dlc = "Apocalypse" }
|
|
||||||
give_technology = {
|
|
||||||
tech = tech_colossus
|
|
||||||
message = no
|
|
||||||
}
|
|
||||||
}
|
|
||||||
# must initialize global designs here
|
|
||||||
add_global_ship_design = "NAME_Gray_Omega"
|
|
||||||
add_global_ship_design = "NAME_Gray_Alpha"
|
|
||||||
add_global_ship_design = "NAME_Gray_Beta"
|
|
||||||
add_global_ship_design = "NAME_Gray_Gamma"
|
|
||||||
add_global_ship_design = "NAME_Gray_Theta"
|
|
||||||
add_global_ship_design = "NAME_Gray_Tau"
|
|
||||||
add_global_ship_design = "NAME_Gray_Sigma"
|
|
||||||
add_global_ship_design = "NAME_Gray_FE_Starbase"
|
|
||||||
if = {
|
|
||||||
limit = {
|
|
||||||
NOT = {
|
|
||||||
exist = event_target:rg_gray_country_leader
|
|
||||||
}
|
|
||||||
}
|
|
||||||
rg_gray_country_leader_init = yes
|
|
||||||
set_leader = last_created_leader
|
|
||||||
}
|
|
||||||
else = {
|
|
||||||
set_leader = last_created_leader
|
|
||||||
}
|
|
||||||
ruler = {
|
|
||||||
add_skill = 9
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
set_planet_flag = fallen_empire_world
|
set_planet_flag = fallen_empire_world
|
||||||
prevent_anomaly = yes
|
prevent_anomaly = yes
|
||||||
set_owner = event_target:rg_scion_fe
|
set_owner = event_target:rg_scion_fe
|
||||||
@@ -342,3 +255,653 @@ rg_fallen_machine = {
|
|||||||
# }
|
# }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
rg_fallen_machine_1 = {
|
||||||
|
usage = fallen_empire_init
|
||||||
|
name = 芬里尔III
|
||||||
|
class = "rl_standard_stars"
|
||||||
|
|
||||||
|
flags = {
|
||||||
|
ring_world_built
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
class = star
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
change_orbit = 45
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
class = "pc_ringworld_tech"
|
||||||
|
name = 外环
|
||||||
|
orbit_angle = -30
|
||||||
|
orbit_distance = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
class = "pc_ringworld_seam"
|
||||||
|
name = 泡芙碗
|
||||||
|
orbit_angle = 30
|
||||||
|
orbit_distance = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
class = "pc_ringworld_habitable"
|
||||||
|
name = 菠萝包工厂
|
||||||
|
orbit_angle = 30
|
||||||
|
orbit_distance = 0
|
||||||
|
deposit_blockers = none
|
||||||
|
modifiers = none
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
|
||||||
|
create_cluster = {
|
||||||
|
id = fe_mach_cluster
|
||||||
|
radius = 80
|
||||||
|
center = this.solar_system
|
||||||
|
}
|
||||||
|
|
||||||
|
rg_create_fallen_empire_species_effect = yes
|
||||||
|
rg_create_fallen_empire_country_effect = yes
|
||||||
|
|
||||||
|
set_planet_flag = fallen_empire_world
|
||||||
|
prevent_anomaly = yes
|
||||||
|
set_owner = event_target:rg_scion_fe
|
||||||
|
set_controller = event_target:rg_scion_fe
|
||||||
|
set_capital = yes
|
||||||
|
|
||||||
|
add_building = building_ancient_control_center
|
||||||
|
add_building = building_nourishment_center
|
||||||
|
add_building = building_nourishment_center
|
||||||
|
add_building = building_nourishment_center
|
||||||
|
add_building = building_nourishment_center
|
||||||
|
add_building = building_ancient_palace
|
||||||
|
add_building = building_affluence_center
|
||||||
|
add_building = building_affluence_center
|
||||||
|
add_building = building_affluence_center
|
||||||
|
add_building = building_affluence_center
|
||||||
|
add_building = building_dimensional_fabricator
|
||||||
|
add_building = building_dimensional_fabricator
|
||||||
|
|
||||||
|
while = {
|
||||||
|
count = 5
|
||||||
|
add_district = district_rw_science
|
||||||
|
}
|
||||||
|
while = {
|
||||||
|
count = 5
|
||||||
|
add_district = district_rw_nexus
|
||||||
|
}
|
||||||
|
while = {
|
||||||
|
count = 105
|
||||||
|
create_pop = {
|
||||||
|
species = owner_main_species
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
while = {
|
||||||
|
count = 94
|
||||||
|
create_pop = {
|
||||||
|
species = event_target:rg_scion_slave.species
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rg_create_fallen_empire_starting_navy = yes
|
||||||
|
|
||||||
|
while = {
|
||||||
|
count = 40
|
||||||
|
create_army = {
|
||||||
|
name = random
|
||||||
|
owner = event_target:rg_scion_fe
|
||||||
|
type = "gray_army"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
spawn_megastructure = {
|
||||||
|
type = "ring_world_ruined"
|
||||||
|
orbit_angle = -90
|
||||||
|
orbit_distance = 45
|
||||||
|
}
|
||||||
|
# rg_create_fe_citadel = yes
|
||||||
|
set_star_flag = lgate
|
||||||
|
spawn_megastructure = {
|
||||||
|
type = lgate_base
|
||||||
|
orbit_angle = 225
|
||||||
|
orbit_distance = 30
|
||||||
|
}
|
||||||
|
|
||||||
|
rg_create_fe_citadel = yes
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
class = "pc_ringworld_tech"
|
||||||
|
name = 中环
|
||||||
|
orbit_angle = 30
|
||||||
|
orbit_distance = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
class = "pc_ringworld_seam"
|
||||||
|
name = 烤面包机
|
||||||
|
orbit_angle = 30
|
||||||
|
orbit_distance = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
class = "pc_ringworld_habitable"
|
||||||
|
name = 可颂工厂
|
||||||
|
orbit_angle = 30
|
||||||
|
orbit_distance = 0
|
||||||
|
deposit_blockers = none
|
||||||
|
modifiers = none
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
|
||||||
|
set_planet_flag = fallen_empire_world
|
||||||
|
prevent_anomaly = yes
|
||||||
|
set_owner = event_target:rg_scion_fe
|
||||||
|
|
||||||
|
add_building = building_ancient_control_center
|
||||||
|
add_building = building_dimensional_fabricator
|
||||||
|
add_building = building_dimensional_fabricator
|
||||||
|
add_building = building_dimensional_fabricator
|
||||||
|
add_building = building_dimensional_fabricator
|
||||||
|
add_building = building_dimensional_fabricator
|
||||||
|
add_building = building_nano_forge
|
||||||
|
add_building = building_nano_forge
|
||||||
|
add_building = building_nano_forge
|
||||||
|
add_building = building_nano_forge
|
||||||
|
add_building = building_nano_forge
|
||||||
|
|
||||||
|
while = {
|
||||||
|
count = 5
|
||||||
|
add_district = district_rw_nexus
|
||||||
|
}
|
||||||
|
while = {
|
||||||
|
count = 50
|
||||||
|
create_pop = {
|
||||||
|
species = owner_main_species
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while = {
|
||||||
|
count = 20
|
||||||
|
create_pop = {
|
||||||
|
species = event_target:rg_scion_slave.species
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while = {
|
||||||
|
count = 20
|
||||||
|
create_army = {
|
||||||
|
name = random
|
||||||
|
owner = event_target:rg_scion_fe
|
||||||
|
type = "gray_army"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
class = "pc_ringworld_tech"
|
||||||
|
name = 内环
|
||||||
|
orbit_angle = 30
|
||||||
|
orbit_distance = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
class = "pc_ringworld_seam"
|
||||||
|
name = 奶油核心
|
||||||
|
orbit_angle = 30
|
||||||
|
orbit_distance = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
class = "pc_ringworld_habitable"
|
||||||
|
name = 糖霜工厂
|
||||||
|
orbit_angle = 30
|
||||||
|
orbit_distance = 0
|
||||||
|
deposit_blockers = none
|
||||||
|
modifiers = none
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
set_planet_flag = fallen_empire_world
|
||||||
|
prevent_anomaly = yes
|
||||||
|
set_owner = event_target:rg_scion_fe
|
||||||
|
|
||||||
|
add_building = building_ancient_control_center
|
||||||
|
add_building = building_class_4_singularity
|
||||||
|
add_building = building_class_4_singularity
|
||||||
|
add_building = building_class_4_singularity
|
||||||
|
add_building = building_class_4_singularity
|
||||||
|
add_building = building_nano_forge
|
||||||
|
add_building = building_nano_forge
|
||||||
|
add_building = building_nano_forge
|
||||||
|
add_building = building_nano_forge
|
||||||
|
add_building = building_nano_forge
|
||||||
|
add_building = building_nano_forge
|
||||||
|
|
||||||
|
while = {
|
||||||
|
count = 5
|
||||||
|
add_district = district_rw_generator
|
||||||
|
}
|
||||||
|
while = {
|
||||||
|
count = 22
|
||||||
|
create_pop = {
|
||||||
|
species = owner_main_species
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while = {
|
||||||
|
count = 10
|
||||||
|
create_pop = {
|
||||||
|
species = event_target:rg_scion_slave.species
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while = {
|
||||||
|
count = 10
|
||||||
|
create_army = {
|
||||||
|
name = random
|
||||||
|
owner = event_target:rg_scion_fe
|
||||||
|
type = "gray_army"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
spawn_system = {
|
||||||
|
min_distance >= 10
|
||||||
|
max_distance <= 50
|
||||||
|
initializer = rg_fallen_machine_01b
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
# EXTRAS
|
||||||
|
rg_fallen_machine_01b = {
|
||||||
|
class = "rl_trinary_stars"
|
||||||
|
|
||||||
|
asteroid_belt = {
|
||||||
|
type = rocky_asteroid_belt
|
||||||
|
radius = 140
|
||||||
|
}
|
||||||
|
init_effect = {
|
||||||
|
rg_create_fe_citadel = yes
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
count = 1
|
||||||
|
class = star
|
||||||
|
orbit_distance = 25
|
||||||
|
orbit_angle = 0
|
||||||
|
size = {
|
||||||
|
min = 20
|
||||||
|
max = 30
|
||||||
|
}
|
||||||
|
has_ring = no
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
count = 1
|
||||||
|
class = star
|
||||||
|
orbit_distance = {
|
||||||
|
min = 0
|
||||||
|
max = 20
|
||||||
|
}
|
||||||
|
orbit_angle = 120
|
||||||
|
size = {
|
||||||
|
min = 25
|
||||||
|
max = 30
|
||||||
|
}
|
||||||
|
has_ring = no
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
count = 1
|
||||||
|
class = star
|
||||||
|
orbit_distance = {
|
||||||
|
min = 0
|
||||||
|
max = 20
|
||||||
|
}
|
||||||
|
orbit_angle = 120
|
||||||
|
size = {
|
||||||
|
min = 25
|
||||||
|
max = 30
|
||||||
|
}
|
||||||
|
has_ring = no
|
||||||
|
}
|
||||||
|
change_orbit = 92
|
||||||
|
planet = {
|
||||||
|
count = {
|
||||||
|
min = 3
|
||||||
|
max = 6
|
||||||
|
}
|
||||||
|
class = pc_asteroid
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
count = 1
|
||||||
|
class = pc_asteroid
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
init_effect = {
|
||||||
|
set_deposit = d_rare_crystals_2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
change_orbit = -60
|
||||||
|
planet = {
|
||||||
|
class = pc_gray_goo
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
class = pc_broken
|
||||||
|
orbit_distance = 25
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
change_orbit = 80
|
||||||
|
planet = {
|
||||||
|
class = pc_shattered
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
class = pc_shattered
|
||||||
|
orbit_distance = 25
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
spawn_system = {
|
||||||
|
min_distance >= 10
|
||||||
|
max_distance <= 50
|
||||||
|
initializer = rg_fallen_machine_02b
|
||||||
|
}
|
||||||
|
|
||||||
|
add_hyperlane = {
|
||||||
|
from = this
|
||||||
|
to = prev
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
rg_fallen_machine_02b = {
|
||||||
|
class = "rl_standard_stars"
|
||||||
|
|
||||||
|
asteroid_belt = {
|
||||||
|
type = rocky_asteroid_belt
|
||||||
|
radius = 135
|
||||||
|
}
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
rg_create_fe_citadel = yes
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
count = 1
|
||||||
|
class = star
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = 0
|
||||||
|
size = {
|
||||||
|
min = 30
|
||||||
|
max = 35
|
||||||
|
}
|
||||||
|
has_ring = no
|
||||||
|
}
|
||||||
|
change_orbit = 135
|
||||||
|
planet = {
|
||||||
|
count = {
|
||||||
|
min = 3
|
||||||
|
max = 6
|
||||||
|
}
|
||||||
|
class = pc_asteroid
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
change_orbit = -80
|
||||||
|
planet = {
|
||||||
|
class = pc_gray_goo
|
||||||
|
orbit_distance = 30
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
change_orbit = 90
|
||||||
|
planet = {
|
||||||
|
class = pc_shattered
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
class = pc_broken
|
||||||
|
orbit_distance = 30
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
spawn_system = {
|
||||||
|
min_distance >= 10
|
||||||
|
max_distance <= 50
|
||||||
|
initializer = rg_fallen_machine_03b
|
||||||
|
}
|
||||||
|
|
||||||
|
add_hyperlane = {
|
||||||
|
from = this
|
||||||
|
to = prev
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rg_fallen_machine_03b = {
|
||||||
|
class = "rl_standard_stars"
|
||||||
|
|
||||||
|
asteroid_belt = {
|
||||||
|
type = rocky_asteroid_belt
|
||||||
|
radius = 120
|
||||||
|
}
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
rg_create_fe_citadel = yes
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
count = 1
|
||||||
|
class = star
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = 1
|
||||||
|
size = {
|
||||||
|
min = 20
|
||||||
|
max = 30
|
||||||
|
}
|
||||||
|
has_ring = no
|
||||||
|
}
|
||||||
|
change_orbit = 120
|
||||||
|
planet = {
|
||||||
|
count = {
|
||||||
|
min = 3
|
||||||
|
max = 5
|
||||||
|
}
|
||||||
|
class = pc_asteroid
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
count = 1
|
||||||
|
class = pc_asteroid
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
init_effect = {
|
||||||
|
set_deposit = d_volatile_motes_2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
change_orbit = -70
|
||||||
|
planet = {
|
||||||
|
class = pc_shattered
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
class = pc_broken
|
||||||
|
orbit_distance = 25
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
change_orbit = 70
|
||||||
|
planet = {
|
||||||
|
class = pc_gray_goo
|
||||||
|
orbit_distance = 25
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
class = pc_gas_giant
|
||||||
|
orbit_distance = 25
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
class = pc_gray_goo
|
||||||
|
orbit_distance = 25
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
spawn_system = {
|
||||||
|
min_distance >= 10
|
||||||
|
max_distance <= 50
|
||||||
|
initializer = rg_fallen_machine_04b
|
||||||
|
}
|
||||||
|
|
||||||
|
add_hyperlane = {
|
||||||
|
from = this
|
||||||
|
to = prev
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rg_fallen_machine_04b = {
|
||||||
|
class = "rl_standard_stars"
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
rg_create_fe_citadel = yes
|
||||||
|
}
|
||||||
|
|
||||||
|
planet = {
|
||||||
|
count = 1
|
||||||
|
class = star
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = 1
|
||||||
|
size = {
|
||||||
|
min = 20
|
||||||
|
max = 30
|
||||||
|
}
|
||||||
|
has_ring = no
|
||||||
|
}
|
||||||
|
change_orbit = 50
|
||||||
|
planet = {
|
||||||
|
class = pc_broken
|
||||||
|
orbit_distance = 0
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
class = pc_shattered
|
||||||
|
orbit_distance = 25
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
class = pc_shattered
|
||||||
|
orbit_distance = 25
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
class = pc_gray_goo
|
||||||
|
orbit_distance = 30
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
planet = {
|
||||||
|
class = pc_barren_cold
|
||||||
|
orbit_distance = 25
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
change_orbit = @base_moon_distance
|
||||||
|
moon = {
|
||||||
|
class = "pc_frozen"
|
||||||
|
orbit_angle = {
|
||||||
|
min = 90
|
||||||
|
max = 270
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
init_effect = {
|
||||||
|
add_hyperlane = {
|
||||||
|
from = this
|
||||||
|
to = prev
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -123,6 +123,7 @@ country_event = {
|
|||||||
save_event_target_as = rg_cluster_previous_home_planet
|
save_event_target_as = rg_cluster_previous_home_planet
|
||||||
solar_system = {
|
solar_system = {
|
||||||
save_event_target_as = rg_cluster_previous_home_system
|
save_event_target_as = rg_cluster_previous_home_system
|
||||||
|
set_star_flag = lgate
|
||||||
spawn_megastructure = {
|
spawn_megastructure = {
|
||||||
type = lgate_base
|
type = lgate_base
|
||||||
orbit_angle = 225
|
orbit_angle = 225
|
||||||
|
|||||||
@@ -41,7 +41,30 @@ country_event = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
set_country_flag = rg_scion_needs_fe
|
set_country_flag = rg_scion_needs_fe
|
||||||
rg_lcluster_spawn_effect_scion = yes
|
if = {
|
||||||
|
limit ={
|
||||||
|
any_playable_country = {
|
||||||
|
AND = {
|
||||||
|
has_origin = origin_rg_gray
|
||||||
|
# NOT = { has_global_flag = rg_origin_l_cluster }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
random_system = {
|
||||||
|
limit = { has_owner = no }
|
||||||
|
spawn_system = { initializer = "rg_fallen_machine_1" }
|
||||||
|
}
|
||||||
|
add_extra_hyperlane_to_spawned_system_effect = yes
|
||||||
|
}
|
||||||
|
else = {
|
||||||
|
rg_lcluster_spawn_effect_scion = yes
|
||||||
|
every_system = {
|
||||||
|
limit = {
|
||||||
|
has_star_flag = lcluster
|
||||||
|
}
|
||||||
|
rg_create_fe_citadel = yes
|
||||||
|
}
|
||||||
|
}
|
||||||
event_target:rg_scion_fe = {
|
event_target:rg_scion_fe = {
|
||||||
set_policy = {
|
set_policy = {
|
||||||
policy = artificial_intelligence_policy
|
policy = artificial_intelligence_policy
|
||||||
@@ -85,6 +108,7 @@ country_event = {
|
|||||||
}
|
}
|
||||||
capital_scope = {
|
capital_scope = {
|
||||||
solar_system = {
|
solar_system = {
|
||||||
|
set_star_flag = lgate
|
||||||
spawn_megastructure = {
|
spawn_megastructure = {
|
||||||
type = lgate_base
|
type = lgate_base
|
||||||
orbit_angle = 225
|
orbit_angle = 225
|
||||||
@@ -92,12 +116,6 @@ country_event = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
every_system = {
|
|
||||||
limit = {
|
|
||||||
has_star_flag = lcluster
|
|
||||||
}
|
|
||||||
rg_create_fe_citadel = yes
|
|
||||||
}
|
|
||||||
# add_extra_hyperlane_to_spawned_system_effect = yes
|
# add_extra_hyperlane_to_spawned_system_effect = yes
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user