mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30a0e55843
* add field rations category * improve macro * second verse same as the first * account for empty items * switch to configClasses * documentation * add API variable * Update docs/wiki/framework/field-rations-framework.md
250 lines
9.9 KiB
C++
250 lines
9.9 KiB
C++
class CfgWeapons {
|
|
/*
|
|
* Consumable Items Config Entries:
|
|
* --------------------------------
|
|
* XGVAR(consumeText) - Text displayed for consumption progress bar
|
|
* XGVAR(consumeTime) - Time in seconds to consume item
|
|
* XGVAR(consumeAnims) - Array of animations [stand, crouch, prone]
|
|
* XGVAR(consumeSounds) - Array of sounds [stand, crouch, prone]
|
|
* XGVAR(thirstQuenched) - Thirst quenched on consumption
|
|
* XGVAR(hungerSatiated) - Hunger satiated on consumption
|
|
* XGVAR(replacementItem) - Replacement item on consumption (if any)
|
|
* XGVAR(refillItem) - Item added when refilled (makes item refillable)
|
|
* XGVAR(refillAmount) - Amount of water required to refill item
|
|
* XGVAR(refillTime) - Time in seconds to refill item
|
|
*/
|
|
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_Banana: ACE_ItemCore {
|
|
XGVAR(consumeTime) = 10;
|
|
XGVAR(hungerSatiated) = 3;
|
|
XGVAR(consumeText) = CSTRING(EatingX);
|
|
};
|
|
|
|
// - Water Bottles --------------------------------------------------------
|
|
class ACE_WaterBottle: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
displayName = CSTRING(WaterBottle_DisplayName);
|
|
descriptionShort = CSTRING(WaterBottle_Description);
|
|
model = "\a3\structures_f_epa\items\food\bottleplastic_v2_f.p3d";
|
|
picture = QPATHTOF(ui\item_waterbottle_full_co.paa);
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 5;
|
|
};
|
|
XGVAR(consumeTime) = 10;
|
|
XGVAR(thirstQuenched) = 10;
|
|
XGVAR(consumeText) = CSTRING(DrinkingFromX);
|
|
XGVAR(replacementItem) = "ACE_WaterBottle_Half";
|
|
XGVAR(consumeAnims)[] = {QGVAR(drinkStand), QGVAR(drinkCrouch), QGVAR(drinkProne)};
|
|
XGVAR(consumeSounds)[] = {QGVAR(drink1), QGVAR(drink1), QGVAR(drink2)};
|
|
ACE_isFieldRationItem = 1;
|
|
};
|
|
|
|
class ACE_WaterBottle_Half: ACE_WaterBottle {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(WaterBottleHalf_DisplayName);
|
|
descriptionShort = CSTRING(WaterBottleHalf_Description);
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 3;
|
|
};
|
|
XGVAR(replacementItem) = "ACE_WaterBottle_Empty";
|
|
XGVAR(refillItem) = "ACE_WaterBottle";
|
|
XGVAR(refillAmount) = 0.5;
|
|
XGVAR(refillTime) = 8;
|
|
};
|
|
|
|
class ACE_WaterBottle_Empty: ACE_WaterBottle {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(WaterBottleEmpty_DisplayName);
|
|
descriptionShort = CSTRING(WaterBottleEmpty_Description);
|
|
picture = QPATHTOF(ui\item_waterbottle_empty_co.paa);
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 1;
|
|
};
|
|
XGVAR(thirstQuenched) = 0;
|
|
XGVAR(replacementItem) = "";
|
|
XGVAR(refillItem) = "ACE_WaterBottle";
|
|
XGVAR(refillAmount) = 1;
|
|
XGVAR(refillTime) = 8;
|
|
};
|
|
|
|
// - Canteens -------------------------------------------------------------
|
|
class ACE_Canteen: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
displayName = CSTRING(Canteen_DisplayName);
|
|
descriptionShort = CSTRING(Canteen_Description);
|
|
model = "\a3\structures_f_epa\items\food\canteen_f.p3d";
|
|
picture = QPATHTOF(ui\item_canteen_co.paa);
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 5;
|
|
};
|
|
XGVAR(consumeTime) = 10;
|
|
XGVAR(thirstQuenched) = 10;
|
|
XGVAR(consumeText) = CSTRING(DrinkingFromX);
|
|
XGVAR(replacementItem) = "ACE_Canteen_Half";
|
|
XGVAR(consumeAnims)[] = {QGVAR(drinkStand), QGVAR(drinkCrouch), QGVAR(drinkProne)};
|
|
XGVAR(consumeSounds)[] = {QGVAR(drink1), QGVAR(drink1), QGVAR(drink2)};
|
|
ACE_isFieldRationItem = 1;
|
|
};
|
|
|
|
class ACE_Canteen_Half: ACE_Canteen {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(CanteenHalf_DisplayName);
|
|
descriptionShort = CSTRING(CanteenHalf_Description);
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 3;
|
|
};
|
|
XGVAR(replacementItem) = "ACE_Canteen_Empty";
|
|
XGVAR(refillItem) = "ACE_Canteen";
|
|
XGVAR(refillAmount) = 0.5;
|
|
XGVAR(refillTime) = 8;
|
|
};
|
|
|
|
class ACE_Canteen_Empty: ACE_Canteen {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(CanteenEmpty_DisplayName);
|
|
descriptionShort = CSTRING(CanteenEmpty_Description);
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 1;
|
|
};
|
|
XGVAR(thirstQuenched) = 0;
|
|
XGVAR(replacementItem) = "";
|
|
XGVAR(refillItem) = "ACE_Canteen";
|
|
XGVAR(refillAmount) = 1;
|
|
XGVAR(refillTime) = 8;
|
|
};
|
|
|
|
// - Soda Cans ------------------------------------------------------------
|
|
class ACE_Can_Spirit: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
displayName = "$STR_a3_cfgvehicles_land_can_v1_f0";
|
|
descriptionShort = CSTRING(Can_Spirit_Description);
|
|
model = "\a3\structures_f\items\food\can_v1_f.p3d";
|
|
picture = QPATHTOF(ui\icon_can_spirit_ca.paa);
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 3;
|
|
};
|
|
XGVAR(consumeTime) = 10;
|
|
XGVAR(thirstQuenched) = 5;
|
|
XGVAR(consumeText) = CSTRING(DrinkingX);
|
|
XGVAR(consumeAnims)[] = {QGVAR(drinkStandCan), QGVAR(drinkCrouchCan), QGVAR(drinkProneCan)};
|
|
XGVAR(consumeSounds)[] = {QGVAR(drinkCan1), QGVAR(drinkCan1), QGVAR(drinkCan2)};
|
|
ACE_isFieldRationItem = 1;
|
|
};
|
|
|
|
class ACE_Can_Franta: ACE_Can_Spirit {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = "$STR_a3_cfgvehicles_land_can_v2_f0";
|
|
descriptionShort = CSTRING(Can_Franta_Description);
|
|
model = "\a3\structures_f\items\food\can_v2_f.p3d";
|
|
picture = QPATHTOF(ui\icon_can_franta_ca.paa);
|
|
};
|
|
|
|
class ACE_Can_RedGull: ACE_Can_Spirit {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = "$STR_a3_cfgvehicles_land_can_v3_f0";
|
|
descriptionShort = CSTRING(Can_RedGull_Description);
|
|
model = "\a3\structures_f\items\food\can_v3_f.p3d";
|
|
picture = QPATHTOF(ui\icon_can_redgull_ca.paa);
|
|
};
|
|
|
|
// - MREs -----------------------------------------------------------------
|
|
class ACE_MRE_LambCurry: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
displayName = CSTRING(MRE_LambCurry_DisplayName);
|
|
descriptionShort = CSTRING(MRE_LambCurry_Description);
|
|
model = QPATHTOF(data\mre_type1.p3d);
|
|
picture = QPATHTOF(ui\item_mre_type1_co.paa);
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 5;
|
|
};
|
|
XGVAR(consumeTime) = 10;
|
|
XGVAR(hungerSatiated) = 20;
|
|
XGVAR(consumeText) = CSTRING(EatingX);
|
|
ACE_isFieldRationItem = 1;
|
|
};
|
|
|
|
class ACE_MRE_BeefStew: ACE_MRE_LambCurry {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(MRE_BeefStew_DisplayName);
|
|
descriptionShort = CSTRING(MRE_BeefStew_Description);
|
|
model = QPATHTOF(data\mre_type2.p3d);
|
|
picture = QPATHTOF(ui\item_mre_type2_co.paa);
|
|
};
|
|
|
|
class ACE_MRE_CreamTomatoSoup: ACE_MRE_LambCurry {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(MRE_CreamTomatoSoup_DisplayName);
|
|
descriptionShort = CSTRING(MRE_CreamTomatoSoup_Description);
|
|
model = QPATHTOF(data\mre_type3.p3d);
|
|
picture = QPATHTOF(ui\item_mre_type3_co.paa);
|
|
};
|
|
|
|
class ACE_MRE_CreamChickenSoup: ACE_MRE_CreamTomatoSoup {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(MRE_CreamChickenSoup_DisplayName);
|
|
descriptionShort = CSTRING(MRE_CreamChickenSoup_Description);
|
|
};
|
|
|
|
class ACE_MRE_ChickenTikkaMasala: ACE_MRE_LambCurry {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(MRE_ChickenTikkaMasala_DisplayName);
|
|
descriptionShort = CSTRING(MRE_ChickenTikkaMasala_Description);
|
|
model = QPATHTOF(data\mre_type4.p3d);
|
|
picture = QPATHTOF(ui\item_mre_type4_co.paa);
|
|
};
|
|
|
|
class ACE_MRE_SteakVegetables: ACE_MRE_LambCurry {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(MRE_SteakVegetables_DisplayName);
|
|
descriptionShort = CSTRING(MRE_SteakVegetables_Description);
|
|
model = QPATHTOF(data\mre_type5.p3d);
|
|
picture = QPATHTOF(ui\item_mre_type5_co.paa);
|
|
};
|
|
|
|
class ACE_MRE_MeatballsPasta: ACE_MRE_LambCurry {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(MRE_MeatballsPasta_DisplayName);
|
|
descriptionShort = CSTRING(MRE_MeatballsPasta_Description);
|
|
model = QPATHTOF(data\mre_type6.p3d);
|
|
picture = QPATHTOF(ui\item_mre_type6_co.paa);
|
|
};
|
|
|
|
class ACE_MRE_ChickenHerbDumplings: ACE_MRE_MeatballsPasta {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(MRE_ChickenHerbDumplings_DisplayName);
|
|
descriptionShort = CSTRING(MRE_ChickenHerbDumplings_Description);
|
|
};
|
|
|
|
class ACE_Humanitarian_Ration: ACE_MRE_LambCurry {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(Humanitarian_Ration_DisplayName);
|
|
descriptionShort = CSTRING(Humanitarian_Ration_Description);
|
|
model = QPATHTOF(data\mre_human.p3d);
|
|
picture = QPATHTOF(ui\item_mre_human_co.paa);
|
|
};
|
|
|
|
// - Misc Food ------------------------------------------------------------
|
|
class ACE_Sunflower_Seeds: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
displayName = CSTRING(SunflowerSeeds_DisplayName);
|
|
descriptionShort = CSTRING(SunflowerSeeds_Description);
|
|
model = QPATHTOF(data\sunflower_seeds.p3d);
|
|
picture = QPATHTOF(ui\item_sunflowerseeds_co.paa);
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 3;
|
|
};
|
|
XGVAR(consumeTime) = 10;
|
|
XGVAR(hungerSatiated) = 10;
|
|
XGVAR(consumeText) = CSTRING(EatingX);
|
|
ACE_isFieldRationItem = 1;
|
|
};
|
|
};
|