From 8d243233bf8e106b0c27443bde930018355efa12 Mon Sep 17 00:00:00 2001 From: Tidal <79838533+tidalcadence@users.noreply.github.com> Date: Sun, 18 Jun 2023 11:08:21 -0400 Subject: [PATCH] Update InsulatedDoors.cs Fixed several typos, including in the name of one door. Also updated the descriptions to include relevant links and information to bring them in line with vanilla doors descriptions and grammar. --- Source Code/Insulated Door/InsulatedDoors.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Source Code/Insulated Door/InsulatedDoors.cs b/Source Code/Insulated Door/InsulatedDoors.cs index 98cff51..fa5945e 100644 --- a/Source Code/Insulated Door/InsulatedDoors.cs +++ b/Source Code/Insulated Door/InsulatedDoors.cs @@ -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."; } } }