remove repair projection
This commit is contained in:
parent
55a01c1409
commit
a091514e2a
2 changed files with 4506 additions and 6 deletions
4480
Wavebreakers/OPC Ram - Naval Form/bp.sbc
Normal file
4480
Wavebreakers/OPC Ram - Naval Form/bp.sbc
Normal file
File diff suppressed because it is too large
Load diff
|
@ -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": []
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue