blueprints/Wavebreakers/chopshop.json
2025-05-13 08:33:31 -07:00

51 lines
1.1 KiB
JSON

{
// Notice: This patches in top-down priority order, so the first match is the one that gets used.
"smallgrid": [
// Replace Full Armor
{
"repl": "^SmallBlockArmor(\\w+)",
"with": "CAP_Armor$1"
},
{
"repl": "^SmallHeavyBlockArmor(\\w+)",
"with": "CAP_Armor$1"
},
// Match Replace Half Armor
{
"repl": "^Half(\\w+)",
"with": "CAP_Half$1"
},
{
"repl": "^HeavyHalf(\\w+)",
"with": "CAP_Half$1"
},
// Replace Conveyor Tubes
{
"repl": "ConveyorTubeSmall(\\w+)",
"with": "AWGConveyorCube"
},
{
"repl": "ConveyorTubeSmall",
"with": "AWGConveyorStraight"
},
{
"repl": "SmallBlockConveyor(\\w+)",
"with": "AWGConveyorCube"
},
// Replace Reinforced Conveyor Tubes
{
"repl": "ConveyorTubeDuctSmall(\\w+)",
"with": "AWGConveyorCube"
},
// Replace Batteries
{
"repl": "SmallBlockSmallBatteryBlock",
"with": "TorpedoBattery"
}
],
"largegrid": []
}