Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. class tobacco_unprocessed {
  2. variable = "tobaccoUnprocessed";
  3. displayName = "STR_Item_TobaccoU";
  4. weight = 4;
  5. buyPrice = -1;
  6. sellPrice = -1;
  7. illegal = true;
  8. edible = -1;
  9. icon = "";
  10. processedItem = "tobacco_processed";
  11. };
  12. class tobacco_processed {
  13. variable = "tobaccoProcessed";
  14. displayName = "STR_Item_Tobacco";
  15. weight = 2;
  16. buyPrice = -1;
  17. sellPrice = 3500;
  18. illegal = true;
  19. edible = -1;
  20. icon = "";
  21. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement