Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.86 KB | None | 0 0
  1.    
  2.     class sapphire_refined{
  3.         variable = "sapphire_refined";
  4.         displayName = "STR_Item_Sapphire";
  5.         weight = 2;
  6.         buyPrice = -1;
  7.         sellPrice = 7500;
  8.         illegal = false;
  9.         edible = -1;
  10.         icon = "icons\Sapphire.paa";
  11.     };
  12.    
  13.     class ruby_refined{
  14.         variable = "ruby_refined";
  15.         displayName = "STR_Item_Ruby";
  16.         weight = 3;
  17.         buyPrice = -1;
  18.         sellPrice = 7200;
  19.         illegal = false;
  20.         edible = -1;
  21.         icon = "icons\Rubin.paa";
  22.     };
  23.    
  24.     class paper {
  25.         variable = "paper";
  26.         displayName = "STR_Item_Board";
  27.         weight = 4;
  28.         buyPrice = -1;
  29.         sellPrice = 500;
  30.         illegal = false;
  31.         edible = -1;
  32.         icon = "icons\wood_refined.paa";
  33.     };
  34.    
  35.         class obsidienne_refined{
  36.         variable = "obsidienne_refined";
  37.         displayName = "STR_Item_Obsidian";
  38.         weight = 6;
  39.         buyPrice = -1;
  40.         sellPrice = 1500;
  41.         illegal = false;
  42.         edible = -1;
  43.         icon = "icons\Obsidian.paa";
  44.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement