Skip to content

Commit

Permalink
Updated the Avionics and Decoupler Module Tags
Browse files Browse the repository at this point in the history
I had missed these with the earlier fixes. These provide more information to the player on where the rollout costs are coming from.
pap1723 committed Jan 18, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent ab6f77f commit 794a366
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Source/ModuleTag/Avionics.cs
Original file line number Diff line number Diff line change
@@ -8,7 +8,10 @@ public class ModuleTagAvionics : ModuleTag
{
public override string GetInfo()
{
return "Contains avionics";
string str = string.Empty;
str = "Contains avionics to control the craft which requires extensive testing which increase the overall Rollout Cost.\n\n" +
"<b><color=orange>Rollout Cost: Cost of This Part * 3.0</color></b>";
return str;
}
}
}
5 changes: 4 additions & 1 deletion Source/ModuleTag/Decoupler.cs
Original file line number Diff line number Diff line change
@@ -8,7 +8,10 @@ public class ModuleTagDecoupler : ModuleTag
{
public override string GetInfo()
{
return "Contains a decoupler";
string str = string.Empty;
str = "Contains a decoupler that requires extensive integration and testing which increase the overall Rollout Cost.\n\n" +
"<b><color=orange>Rollout Cost: Cost of This Part * 3.0</color></b>";
return str;
}
}
}

0 comments on commit 794a366

Please sign in to comment.