Skip to content

Commit

Permalink
Add more Insignias (#155)
Browse files Browse the repository at this point in the history
* Add Insignia

Adds following insignia's

-Brand Of Sacrifice
-Bridge Four
-I Am Unstoppable
-Judge
-Natural Twenty
-Never Forget
-Raptor Squad

* Update from code review

fix spacing and indentation

* Casing

* More casing

Co-authored-by: jonpas <[email protected]>
  • Loading branch information
Lairdd1989 and jonpas authored Feb 24, 2021
1 parent 852e8ee commit dadbc05
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 1 deletion.
42 changes: 42 additions & 0 deletions addons/insignias/CfgUnitInsignia.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,18 @@ class CfgUnitInsignia {
displayName = "Boba Fett (Black-Silver)";
texture = QPATHTOF(data\bobafett_blacksilver.paa);
};
class CLASS(Insignia_BrandOfSacrifice) {
MACRO_INSIGNIA_COMMON
author = "Lairdd1989";
displayName = "Brand Of Sacrifice";
texture = QPATHTOF(data\brandofsacrifice.paa);
};
class CLASS(Insignia_BridgeFour) {
MACRO_INSIGNIA_COMMON
author = "Lairdd1989";
displayName = "Bridge Four";
texture = QPATHTOF(data\bridgefour.paa);
};
class CLASS(Insignia_BobaFett_CoyoteBrown) {
MACRO_INSIGNIA_COMMON
author = "System98";
Expand Down Expand Up @@ -249,6 +261,12 @@ class CfgUnitInsignia {
displayName = "I'm A Lead Farmer (Arid)";
texture = QPATHTOF(data\iamaleadfarmer_arid.paa);
};
class CLASS(Insignia_IAmUnstoppable) {
MACRO_INSIGNIA_COMMON
author = "Lairdd1989";
displayName = "I Am Unstoppable";
texture = QPATHTOF(data\iamunstoppable.paa);
};
class CLASS(Insignia_IComeILeave) {
MACRO_INSIGNIA_COMMON
author = "BadHabitz";
Expand All @@ -273,6 +291,12 @@ class CfgUnitInsignia {
displayName = "Jedi Order Shield";
texture = QPATHTOF(data\jediordershield.paa);
};
class CLASS(Insignia_Judge) {
MACRO_INSIGNIA_COMMON
author = "Lairdd1989";
displayName = "Judge";
texture = QPATHTOF(data\judge.paa);
};
class CLASS(Insignia_KeepCalmAndReload) {
MACRO_INSIGNIA_COMMON
author = "BadHabitz";
Expand Down Expand Up @@ -369,6 +393,18 @@ class CfgUnitInsignia {
displayName = "Murica (Multicam)";
texture = QPATHTOF(data\murica_Multicam.paa);
};
class CLASS(Insignia_NaturalTwenty) {
MACRO_INSIGNIA_COMMON
author = "Lairdd1989";
displayName = "Natural Twenty";
texture = QPATHTOF(data\naturaltwenty.paa);
};
class CLASS(Insignia_NeverForget) {
MACRO_INSIGNIA_COMMON
author = "Lairdd1989";
displayName = "Never Forget";
texture = QPATHTOF(data\neverforget.paa);
};
class CLASS(Insignia_NeverGoFullRetard) {
MACRO_INSIGNIA_COMMON
author = "BadHabitz";
Expand Down Expand Up @@ -441,6 +477,12 @@ class CfgUnitInsignia {
displayName = "Punisher Tactical";
texture = QPATHTOF(data\punishertactical.paa);
};
class CLASS(Insignia_RaptorSquad) {
MACRO_INSIGNIA_COMMON
author = "Lairdd1989";
displayName = "Raptor Squad";
texture = QPATHTOF(data\raptorsquad.paa);
};
class CLASS(Insignia_RatsAss) {
MACRO_INSIGNIA_COMMON
author = "BadHabitz";
Expand Down
2 changes: 1 addition & 1 deletion addons/insignias/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class CfgPatches {
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"tacs_main"};
author = ECSTRING(main,Author);
authors[] = {"Jonpas", "BadHabitz", "System98", "GilleeDoo"};
authors[] = {"Jonpas", "BadHabitz", "System98", "GilleeDoo", "Lairdd1989"};
url = ECSTRING(main,URL);
VERSION_CONFIG;
};
Expand Down
Binary file added addons/insignias/data/brandofsacrifice.paa
Binary file not shown.
Binary file added addons/insignias/data/bridgefour.paa
Binary file not shown.
Binary file added addons/insignias/data/iamunstoppable.paa
Binary file not shown.
Binary file added addons/insignias/data/judge.paa
Binary file not shown.
Binary file added addons/insignias/data/naturaltwenty.paa
Binary file not shown.
Binary file added addons/insignias/data/neverforget.paa
Binary file not shown.
Binary file added addons/insignias/data/raptorsquad.paa
Binary file not shown.

0 comments on commit dadbc05

Please sign in to comment.