Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Faction: ger_army_2010 #20

Merged
merged 2 commits into from
Jul 2, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions addons/tmf_loadouts/CfgLoadouts.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class CfgLoadouts {
delete OPF_F;
delete OPF_G_F;

// US Factions
class us_army_1985 {
displayName = "US Army (1985, M81)";
category = "USA";
Expand All @@ -20,18 +21,33 @@ class CfgLoadouts {
tooltip = "Author: Freddo";
#include "loadouts\us_army_2010.hpp"
};
// Western Factions
class ger_army_2010 {
displayName = "Bundeswehr (2010, Flecktarn)";
category = "Western Factions";
tooltip = "Author: Freddo\n\nNote: All units have LPOs (1.5x)";
#include "loadouts\ger_army_2010.hpp"
};
class ger_army_trop_2010 {
displayName = "Bundeswehr (2010, Tropentarn)";
category = "Western Factions";
tooltip = "Author: Freddo\n\nNote: All units have LPOs (1.5x)";
#include "loadouts\ger_army_trop_2010.hpp"
};
class uk_army_2010 {
displayName = "UK Army (2010, MTP)";
category = "Western Factions";
tooltip = "Author: Freddo";
#include "loadouts\uk_army_2010.hpp"
};
// Russian/Soviet Factions
class ru_army_2010 {
displayName = "Russian Army (2010, VSR-98)";
category = "Russia";
tooltip = "Author: Freddo";
#include "loadouts\ru_army_2010.hpp"
};
// Armaverse factions
class tk_locals {
displayName = "Takistani Locals";
category = "Armaverse Factions";
Expand Down
Loading