16 lines
381 B
Python
16 lines
381 B
Python
# boosterShieldCapacityPenalty
|
|
#
|
|
# Used by:
|
|
# Implants from group: Booster (12 of 70)
|
|
type = "boosterSideEffect"
|
|
|
|
# User-friendly name for the side effect
|
|
displayName = "Shield Capacity"
|
|
|
|
# Attribute that this effect targets
|
|
attr = "boosterShieldCapacityPenalty"
|
|
|
|
|
|
def handler(fit, booster, context):
|
|
fit.ship.boostItemAttr("shieldCapacity", booster.getModifiedItemAttr(attr))
|