mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
39 lines
864 B
C++
39 lines
864 B
C++
class FriendlyDrinks {
|
|
tid = 601;
|
|
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};
|
|
};
|
|
};
|