-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@PART[*]:HAS[@MODULE[ModuleGenerator]]:FOR[Entropy] | ||
{ | ||
MODULE | ||
{ | ||
name = ModuleGeneratorReliability | ||
|
||
// Two years | ||
MTBF = 525600 | ||
|
||
// Engines must decay *VERY* quickly compared to other parts | ||
LifeTime = 142800 | ||
|
||
// Amount of spare parts needed to repair the part | ||
RepairCost = 3 | ||
// Fraction of the age that is discounted when repairing (from 0 to 1) | ||
RepairBonus = 0.8 | ||
|
||
// Amount of spare parts needed for preemptive maintenance | ||
MaintenanceCost = 1 | ||
|
||
// Fraction of the age that is discounted when doing maintenance (from 0 to 1) | ||
MaintenanceBonus = 0.3 | ||
|
||
// Duration of the inspection bonus, in seconds | ||
InspectionBonus = 300 | ||
|
||
// Set to true to suppress all notifications about this module | ||
Silent = false | ||
|
||
DANGIT_PERKS | ||
{ | ||
perk = Mechanic:Normal | ||
perk = Electrician:Skilled | ||
} | ||
} | ||
} |