2021-10-14 15:46:43 +00:00
|
|
|
class ACEX_Fortify_Presets {
|
|
|
|
class small {
|
|
|
|
displayName = CSTRING(small);
|
|
|
|
objects[] = {
|
|
|
|
{"Land_BagFence_Round_F", 5},
|
|
|
|
{"Land_BagFence_Short_F", 5},
|
|
|
|
{"Land_BagFence_Long_F", 10},
|
|
|
|
{"Land_Plank_01_4m_F", 10},
|
|
|
|
{"Land_BagBunker_Small_F", 25}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class smallGreen {
|
|
|
|
displayName = CSTRING(smallGreen);
|
|
|
|
objects[] = {
|
|
|
|
{"Land_BagFence_01_round_green_F", 5},
|
|
|
|
{"Land_BagFence_01_short_green_F", 5},
|
|
|
|
{"Land_BagFence_01_long_green_F", 10},
|
|
|
|
{"Land_Plank_01_4m_F", 10},
|
|
|
|
{"Land_WoodenShelter_01_F", 25}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class medium {
|
|
|
|
displayName = CSTRING(medium);
|
|
|
|
objects[] = {
|
|
|
|
{"Land_HBarrierTower_F", 100},
|
|
|
|
{"Land_HBarrierWall4_F", 25},
|
|
|
|
{"Land_HBarrierWall_corner_F", 25},
|
|
|
|
{"Land_HBarrier_1_F", 5}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class mediumGreen {
|
|
|
|
displayName = CSTRING(mediumGreen);
|
|
|
|
objects[] = {
|
|
|
|
{"Land_HBarrier_01_big_tower_green_F", 100},
|
|
|
|
{"Land_HBarrier_01_wall_4_green_F", 25},
|
|
|
|
{"Land_HBarrier_01_wall_corner_green_F", 25},
|
|
|
|
{"Land_HBarrier_01_line_1_green_F", 5}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class big {
|
|
|
|
displayName = CSTRING(big);
|
|
|
|
objects[] = {
|
|
|
|
{"Land_BagBunker_Tower_F", 50},
|
|
|
|
{"Land_BagBunker_Large_F", 100},
|
|
|
|
{"Land_BagBunker_Small_F", 25},
|
|
|
|
{"Land_Cargo_Patrol_V1_F", 100},
|
|
|
|
{"Land_BagFence_Round_F", 5},
|
|
|
|
{"Land_BagFence_Short_F", 5},
|
|
|
|
{"Land_BagFence_Long_F", 10}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class bigGreen {
|
|
|
|
displayName = CSTRING(bigGreen);
|
|
|
|
objects[] = {
|
|
|
|
{"Land_PillboxBunker_01_big_F", 100},
|
|
|
|
{"Land_PillboxWall_01_3m_F", 10},
|
|
|
|
{"Land_PillboxWall_01_6m_F", 15},
|
|
|
|
{"Land_PillboxBunker_01_hex_F", 50},
|
|
|
|
{"Land_PillboxBunker_01_rectangle_F", 50},
|
|
|
|
{"Land_Plank_01_8m_F", 10},
|
|
|
|
{"Land_Plank_01_4m_F", 5},
|
|
|
|
{"Land_BagFence_01_round_green_F", 5},
|
|
|
|
{"Land_BagFence_01_short_green_F", 5},
|
|
|
|
{"Land_BagFence_01_long_green_F", 10}
|
|
|
|
};
|
|
|
|
};
|
2023-03-19 00:23:20 +00:00
|
|
|
class bigCombo {
|
|
|
|
displayName = CSTRING(bigCombo);
|
|
|
|
objects[] = {
|
|
|
|
{"Land_BagBunker_Tower_F", 50, "big"},
|
|
|
|
{"Land_BagBunker_Large_F", 100, "big"},
|
|
|
|
{"Land_BagBunker_Small_F", 25, "big"},
|
|
|
|
{"Land_Cargo_Patrol_V1_F", 100, "big"},
|
|
|
|
{"Land_BagFence_Round_F", 5, "big"},
|
|
|
|
{"Land_BagFence_Short_F", 5, "big"},
|
|
|
|
{"Land_BagFence_Long_F", 10, "big"},
|
|
|
|
{"Land_PillboxBunker_01_big_F", 100, "bigGreen"},
|
|
|
|
{"Land_PillboxWall_01_3m_F", 10, "bigGreen"},
|
|
|
|
{"Land_PillboxWall_01_6m_F", 15, "bigGreen"},
|
|
|
|
{"Land_PillboxBunker_01_hex_F", 50, "bigGreen"},
|
|
|
|
{"Land_PillboxBunker_01_rectangle_F", 50, "bigGreen"},
|
|
|
|
{"Land_Plank_01_8m_F", 10, "bigGreen"},
|
|
|
|
{"Land_Plank_01_4m_F", 5, "bigGreen"},
|
|
|
|
{"Land_BagFence_01_round_green_F", 5, "bigGreen"},
|
|
|
|
{"Land_BagFence_01_short_green_F", 5, "bigGreen"},
|
|
|
|
{"Land_BagFence_01_long_green_F", 10, "bigGreen"}
|
|
|
|
};
|
|
|
|
};
|
2021-10-14 15:46:43 +00:00
|
|
|
};
|