Skip to content

Update InsulatedDoors.cs #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: Davkas.Inc
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Source Code/Insulated Door/InsulatedDoors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,26 +122,26 @@ public class PREFABS
public class INSULATEDMANUALPRESSUREDOOR
{
public static LocString NAME = FormatAsLink("Insulated Manual Airlock", InsulatedManualPressureDoorConfig.ID);
public static LocString DESC = "The lowered thermal conductivity of insulated door slows any heat passing through them.";
public static LocString EFFECT = "Mantain temperature between two rooms";
public static LocString DESC = "Insulated airlocks can quarter off dangerous areas and reduce heat transfer.";
public static LocString EFFECT = $"Blocks {FormatAsLink("Liquid", "ELEMENTS_LIQUID")} and {FormatAsLink("Gas", "ELEMENTS_GAS")} flow and reduces {FormatAsLink("Heat", "HEAT")} transfer between rooms, maintaining pressure and ambient heat between areas.\n\nWild {FormatAsLink("Critters", "CRITTERS")} cannot pass through doors.";
}
public class INSULATEDPRESSUREDOOR
{
public static LocString NAME = FormatAsLink("Insulated Mechanized Airlock", InsulatedPressureDoorConfig.ID);
public static LocString DESC = "Tiny Mechanized Airlocks fitted for very tiny duplicant.";
public static LocString EFFECT = "Mantain temperature between two rooms";
public static LocString DESC = "Insulated mechanized airlocks open and close more quickly than other types of door.";
public static LocString EFFECT = $"Blocks {FormatAsLink("Liquid", "ELEMENTS_LIQUID")} and {FormatAsLink("Gas", "ELEMENTS_GAS")} flow and reduces {FormatAsLink("Heat", "HEAT")} transfer between rooms, maintaining pressure and ambient heat between areas.\n\nFunctions as an {FormatAsLink("Insulated Manual Airlock", "INSULATEDMANUALPRESSUREDOOR")} when no {FormatAsLink("Power", "POWER")} is available.\n\nWild {FormatAsLink("Critters", "CRITTERS")} cannot pass through doors.";
}
public class TINYINSULATEDMANUALPRESSUREDOOR
{
public static LocString NAME = FormatAsLink("`Tiny Insulated Manual Airlock", TinyInsulatedManualPressureDoorConfig.ID);
public static LocString DESC = "The lowered thermal conductivity of insulated door slows any heat passing through them.";
public static LocString EFFECT = "Mantain temperature between two rooms";
public static LocString NAME = FormatAsLink("Tiny Insulated Manual Airlock", TinyInsulatedManualPressureDoorConfig.ID);
public static LocString DESC = "Insulated airlocks can quarter off dangerous areas and reduce heat transfer.";
public static LocString EFFECT = $"Blocks {FormatAsLink("Liquid", "ELEMENTS_LIQUID")} and {FormatAsLink("Gas", "ELEMENTS_GAS")} flow and reduces {FormatAsLink("Heat", "HEAT")} transfer between rooms, maintaining pressure and ambient heat between areas.\n\nWild {FormatAsLink("Critters", "CRITTERS")} cannot pass through doors.";
}
public class TINYINSULATEDPRESSUREDOOR
{
public static LocString NAME = FormatAsLink("Tiny Insulated Mechanized Airlock", TinyInsulatedPressureDoorConfig.ID);
public static LocString DESC = "Tiny Mechanized Airlocks fitted for very tiny duplicant.";
public static LocString EFFECT = "Mantain temperature between two rooms";
public static LocString DESC = "Insulated mechanized airlocks open and close more quickly than other types of door.";
public static LocString EFFECT = $"Blocks {FormatAsLink("Liquid", "ELEMENTS_LIQUID")} and {FormatAsLink("Gas", "ELEMENTS_GAS")} flow and reduces {FormatAsLink("Heat", "HEAT")} transfer between rooms, maintaining pressure and ambient heat between areas.\n\nFunctions as a {FormatAsLink("Tiny Insulated Manual Airlock", "TINYINSULATEDMANUALPRESSUREDOOR")} when no {FormatAsLink("Power", "POWER")} is available.\n\nWild {FormatAsLink("Critters", "CRITTERS")} cannot pass through doors.";
}
}
}
Expand Down