mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
38 lines
852 B
C++
38 lines
852 B
C++
class FriendlyDrinks {
|
|
class ItemSodaCoke {
|
|
type = "trade_items";
|
|
buy[] = {2,"ItemSilverBar",1};
|
|
sell[] = {1,"ItemSilverBar",1};
|
|
};
|
|
class ItemSodaPepsi {
|
|
type = "trade_items";
|
|
buy[] = {2,"ItemSilverBar",1};
|
|
sell[] = {1,"ItemSilverBar",1};
|
|
};
|
|
class ItemSodaMdew {
|
|
type = "trade_items";
|
|
buy[] = {6,"ItemGoldBar",1};
|
|
sell[] = {3,"ItemGoldBar",1};
|
|
};
|
|
class ItemSodaR4z0r {
|
|
type = "trade_items";
|
|
buy[] = {6,"ItemGoldBar",1};
|
|
sell[] = {3,"ItemGoldBar",1};
|
|
};
|
|
class ItemWaterbottleUnfilled {
|
|
type = "trade_items";
|
|
buy[] = {3,"ItemSilverBar",1};
|
|
sell[] = {1,"ItemSilverBar",1};
|
|
};
|
|
class ItemSodaRbull {
|
|
type = "trade_items";
|
|
buy[] = {6,"ItemGoldBar",1};
|
|
sell[] = {3,"ItemGoldBar",1};
|
|
};
|
|
class ItemSodaOrangeSherbet {
|
|
type = "trade_items";
|
|
buy[] = {4,"ItemGoldBar",1};
|
|
sell[] = {2,"ItemGoldBar",1};
|
|
};
|
|
};
|