Skip to content

Commit d957af1

Browse files
authored
Add tobruk layers and map images (#1005)
1 parent 5b399c4 commit d957af1

File tree

4 files changed

+88
-0
lines changed

4 files changed

+88
-0
lines changed

rcon/maps.py

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,16 @@ def image_name(self) -> str:
430430
axis=Faction(name=FactionName.GER.value, team=Team.AXIS),
431431
orientation=Orientation.VERTICAL,
432432
),
433+
Map(
434+
id="tobruk",
435+
name="TOBRUK",
436+
tag="TBK",
437+
pretty_name="Tobruk",
438+
shortname="Tobruk",
439+
allies=Faction(name=FactionName.GB.value, team=Team.ALLIES),
440+
axis=Faction(name=FactionName.GER.value, team=Team.AXIS),
441+
orientation=Orientation.HORIZONTAL,
442+
),
433443
)
434444
}
435445

@@ -1154,6 +1164,84 @@ def image_name(self) -> str:
11541164
game_mode=GameMode.CONTROL,
11551165
environment=Environment.NIGHT,
11561166
),
1167+
Layer(
1168+
id="tobruk_warfare_day",
1169+
map=MAPS["tobruk"],
1170+
game_mode=GameMode.WARFARE,
1171+
environment=Environment.DAY,
1172+
),
1173+
Layer(
1174+
id="tobruk_warfare_dusk",
1175+
map=MAPS["tobruk"],
1176+
game_mode=GameMode.WARFARE,
1177+
environment=Environment.DUSK,
1178+
),
1179+
Layer(
1180+
id="tobruk_warfare_morning",
1181+
map=MAPS["tobruk"],
1182+
game_mode=GameMode.WARFARE,
1183+
environment=Environment.DAWN,
1184+
),
1185+
Layer(
1186+
id="tobruk_offensivebritish_day",
1187+
map=MAPS["tobruk"],
1188+
game_mode=GameMode.OFFENSIVE,
1189+
attackers=Team.ALLIES,
1190+
environment=Environment.DAY,
1191+
),
1192+
Layer(
1193+
id="tobruk_offensiveger_day",
1194+
map=MAPS["tobruk"],
1195+
game_mode=GameMode.OFFENSIVE,
1196+
attackers=Team.AXIS,
1197+
environment=Environment.DAY,
1198+
),
1199+
Layer(
1200+
id="tobruk_offensivebritish_dusk",
1201+
map=MAPS["tobruk"],
1202+
game_mode=GameMode.OFFENSIVE,
1203+
attackers=Team.ALLIES,
1204+
environment=Environment.DUSK,
1205+
),
1206+
Layer(
1207+
id="tobruk_offensiveger_dusk",
1208+
map=MAPS["tobruk"],
1209+
game_mode=GameMode.OFFENSIVE,
1210+
attackers=Team.AXIS,
1211+
environment=Environment.DUSK,
1212+
),
1213+
Layer(
1214+
id="tobruk_offensivebritish_morning",
1215+
map=MAPS["tobruk"],
1216+
game_mode=GameMode.OFFENSIVE,
1217+
attackers=Team.ALLIES,
1218+
environment=Environment.DAWN,
1219+
),
1220+
Layer(
1221+
id="tobruk_offensiveger_morning",
1222+
map=MAPS["tobruk"],
1223+
game_mode=GameMode.OFFENSIVE,
1224+
attackers=Team.AXIS,
1225+
environment=Environment.DAWN,
1226+
),
1227+
Layer(
1228+
id="tobruk_skirmish_day",
1229+
map=MAPS["tobruk"],
1230+
game_mode=GameMode.CONTROL,
1231+
environment=Environment.DAY,
1232+
),
1233+
Layer(
1234+
id="tobruk_skirmish_dusk",
1235+
map=MAPS["tobruk"],
1236+
game_mode=GameMode.CONTROL,
1237+
environment=Environment.DUSK,
1238+
),
1239+
Layer(
1240+
id="tobruk_skirmish_morning",
1241+
map=MAPS["tobruk"],
1242+
game_mode=GameMode.CONTROL,
1243+
environment=Environment.DAWN,
1244+
),
11571245
)
11581246
}
11591247

54.1 KB
Loading
73.7 KB
Loading
79.7 KB
Loading

0 commit comments

Comments
 (0)