This commit is contained in:
ProjectKoi-Kalo\Kalo
2024-09-16 21:47:30 +08:00
parent 2c478b0e20
commit a2a825ac26
8 changed files with 208 additions and 69 deletions

View File

@@ -15,6 +15,12 @@ origin_rg_gray = {
playable = {
host_has_dlc = "Distant Stars Story Pack"
}
potential = {
OR = {
has_civic = civic_rg_gray_cluster
has_civic = civic_rg_gray_non_cluster
}
}
}
rg_origin_scion = {

View File

@@ -0,0 +1,37 @@
civic_rg_gray_cluster = {
icon = gfx/interface/icons/governments/civics/civic_efficient_bureaucracy.dds
potential = {
origin = { value = origin_rg_gray }
}
possible = {
ethics = { NOT = { value = civic_rg_gray_non_cluster } }
origin = { value = origin_rg_gray }
}
random_weight = {
base = 0
}
modification = no
description = "civic_tooltip_rg_gray_cluster"
modifier = {
country_government_civic_points_add = 1
}
}
civic_rg_gray_non_cluster = {
icon = gfx/interface/icons/governments/civics/civic_nationalistic_zeal.dds
potential = {
origin = { value = origin_rg_gray }
}
possible = {
ethics = { NOT = { value = civic_rg_gray_cluster } }
origin = { value = origin_rg_gray }
}
random_weight = {
base = 0
}
modification = no
description = "civic_tooltip_rg_gray_non_cluster"
modifier = {
country_government_civic_points_add = 1
}
}