InteractionTest.Constants.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. namespace Content.IntegrationTests.Tests.Interaction;
  2. // This partial class contains various constant prototype IDs common to interaction tests.
  3. // Should make it easier to mass-change hard coded strings if prototypes get renamed.
  4. public abstract partial class InteractionTest
  5. {
  6. // Tiles
  7. protected const string Floor = "FloorSteel";
  8. protected const string FloorItem = "FloorTileItemSteel";
  9. protected const string Plating = "Plating";
  10. protected const string Lattice = "Lattice";
  11. // Structures
  12. protected const string Airlock = "Airlock";
  13. // Tools/steps
  14. protected const string Wrench = "Wrench";
  15. protected const string Screw = "Screwdriver";
  16. protected const string Weld = "WelderExperimental";
  17. protected const string Pry = "Crowbar";
  18. protected const string Cut = "Wirecutter";
  19. // Materials/stacks
  20. protected const string Steel = "Steel";
  21. protected const string Glass = "Glass";
  22. protected const string RGlass = "ReinforcedGlass";
  23. protected const string Plastic = "Plastic";
  24. protected const string Cable = "Cable";
  25. protected const string Rod = "MetalRod";
  26. // Parts
  27. protected const string Bin1 = "MatterBinStockPart";
  28. protected const string Cap1 = "CapacitorStockPart";
  29. protected const string Manipulator1 = "MicroManipulatorStockPart";
  30. protected const string Battery1 = "PowerCellSmall";
  31. protected const string Battery4 = "PowerCellHyper";
  32. }