Skip to content

Commit

Permalink
Reduce atmospheric shielding multiplier
Browse files Browse the repository at this point in the history
- With "proper" atmospheric density definitions for gas giants, there is less variance in most body's atmospheric density.
- Heavy atmospheric shielding on an AC33 still supports a maximum static pressure exceeding that of real-world nuclear submarines
  • Loading branch information
sturnclaw committed Jan 31, 2024
1 parent 6837fc6 commit 9761f82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/libs/Equipment.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ misc.missile_naval = EquipType.New({
})
misc.atmospheric_shielding = EquipType.New({
l10n_key="ATMOSPHERIC_SHIELDING", slots="atmo_shield", price=200,
capabilities={mass=1, atmo_shield=9},
capabilities={mass=1, atmo_shield=4},
purchasable=true, tech_level=3,
icon_name="equip_atmo_shield_generator"
})
misc.heavy_atmospheric_shielding = EquipType.New({
l10n_key="ATMOSPHERIC_SHIELDING_HEAVY", slots="atmo_shield", price=900,
capabilities={mass=2, atmo_shield=19},
capabilities={mass=2, atmo_shield=9},
purchasable=true, tech_level=5,
icon_name="equip_atmo_shield_generator"
})
Expand Down

0 comments on commit 9761f82

Please sign in to comment.