2.6.1 全是bug

This commit is contained in:
kalospacer
2020-06-18 18:57:48 +08:00
commit b7db7734e0
15 changed files with 3038 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Gray Nanite Army
gray_army = {
damage = 30.0
health = 54.0
has_morale = no
morale_damage = 18.0
collateral_damage = 15.0
war_exhaustion = 12.0
time = 5
resources = {
category = armies
produces = {
energy = 1
}
}
has_species = no
icon_frame = 11
potential = {
always = no
}
}

View File

@@ -0,0 +1,85 @@
utility_component_template = {
key = "SMALL_GRAY_MIX_ARMOR"
size = small
hidden = yes
icon = "GFX_ship_part_armor_5"
icon_frame = 1
power = -45
modifier = {
ship_armor_add = 120
ship_hull_add = 80
ship_shield_add = 120
ship_shield_regen_add_static = 3
}
resources = {
category = ship_components
cost = {
alloys = 15
}
upkeep = {
energy = 0.2
alloys = 0.8
}
}
}
utility_component_template = {
key = "MEDIUM_GRAY_MIX_ARMOR"
size = medium
hidden = yes
icon = "GFX_ship_part_armor_5"
icon_frame = 1
power = 0
power = -100
modifier = {
ship_armor_add = 400
ship_hull_add = 360
ship_shield_add = 320
ship_shield_regen_add_static = 6
}
resources = {
category = ship_components
cost = {
alloys = 20
}
upkeep = {
energy = 0.8
alloys = 1.2
}
}
}
utility_component_template = {
key = "LARGE_GRAY_MIX_ARMOR"
size = large
hidden = yes
icon = "GFX_ship_part_armor_5"
icon_frame = 1
power = 0
power = -180
modifier = {
ship_armor_add = 960
ship_hull_add = 960
ship_shield_add = 600
ship_shield_regen_add_static = 9
}
resources = {
category = ship_components
cost = {
alloys = 35
}
upkeep = {
energy = 1.2
alloys = 2
}
}
}

View File

@@ -0,0 +1,43 @@
weapon_component_template = {
key = "LARGE_GRAY_WEAPON_LANCE"
size = large
entity = "invisible_turret_entity"
type = instant
hidden = yes
icon = "GFX_ship_part_space_whale_weapon_1"
icon_frame = 1
damage = { min = 120 max = 960 }
windup = { min = 1 max = 5 }
total_fire_time = 45
range = 110.0
accuracy = 0.85
shield_penetration = 0.5
armor_damage = 1.5
tracking = 0.40
projectile_gfx = "gatebuilder_lance_weapon"
tags = { weapon_type_energy }
}
weapon_component_template = {
key = "GG_BEAM_STATIC_EX"
size = titanic
entity = "invisible_turret_entity"
type = instant
prio_projectile = yes
hidden = yes
icon = "GFX_ship_part_space_whale_weapon_1"
icon_frame = 1
firing_arc = 15.0
min_range = 30.0
static_rotation = yes
tags = { weapon_type_energy }
projectile_gfx = "gatebuilder_titan_weapon_ex"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,115 @@
ship_section_template = {
key = "gray_warship_key"
ship_size = graygoo_mothership
fits_on_slot = mid
entity = "gatebuilder_01_mothership_section_entity"
icon = "GFX_ship_part_core_mid"
component_slot = {
name = "PLANET_KILLER_GUN_01"
template = "invisible_planet_killer_fixed"
locatorname = "xl_gun_01"
}
component_slot = {
name = "TITAN_01"
template = "invisible_titanic_fixed"
locatorname = "titan_gun_01"
}
component_slot = {
name = "TORPEDO_01"
template = "medium_missile_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "TORPEDO_02"
template = "medium_missile_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "TORPEDO_03"
template = "medium_missile_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "TORPEDO_04"
template = "medium_missile_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "LARGE_GUN_01"
template = "large_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "LARGE_GUN_02"
template = "large_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "LARGE_GUN_03"
template = "large_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "LARGE_GUN_04"
template = "large_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "LARGE_GUN_05"
template = "large_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "LARGE_GUN_06"
template = "large_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "STRIKE_CRAFT_01"
template = "large_strike_craft"
rotation = 90
locatorname = "xl_gun_01"
}
component_slot = {
name = "STRIKE_CRAFT_02"
template = "large_strike_craft"
rotation = 90
locatorname = "xl_gun_01"
}
component_slot = {
name = "STRIKE_CRAFT_03"
template = "large_strike_craft"
rotation = 90
locatorname = "xl_gun_01"
}
component_slot = {
name = "STRIKE_CRAFT_04"
template = "large_strike_craft"
rotation = 90
locatorname = "xl_gun_01"
}
component_slot = {
name = "PD_01"
template = "point_defence_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "PD_02"
template = "point_defence_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "PD_03"
template = "point_defence_turret"
locatorname = "xl_gun_01"
}
component_slot = {
name = "PD_04"
template = "point_defence_turret"
locatorname = "xl_gun_01"
}
large_utility_slots = 16
aux_utility_slots = 5
}

View File

@@ -0,0 +1,26 @@
###################
# Governor Traits #
###################
leader_trait_governor_gray = {
cost = 0
modification = no
icon = "gfx/interface/icons/traits/leader_traits/leader_trait_psionic_chosen_one.dds"
immortal_leaders = yes
modifier = {
planet_buildings_cost_mult = -0.8
planet_building_build_speed_mult = 1
planet_jobs_energy_produces_mult = 1
planet_jobs_minerals_produces_mult = 1
deposit_blockers_cost_mult = -0.8
planet_clear_blocker_time_mult = -0.8
planet_jobs_engineering_research_produces_mult = 1
planet_jobs_physics_research_produces_mult = 1
planet_jobs_society_research_produces_mult = 1
planet_jobs_alloys_research_produces_mult = 1
}
leader_trait = { governor }
leader_class = { governor }
initial = no
randomized = no
}