remove repair projection

This commit is contained in:
Merith 2025-02-22 11:45:51 -08:00
parent 55a01c1409
commit a091514e2a
2 changed files with 4506 additions and 6 deletions

File diff suppressed because it is too large Load diff

View file

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