Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. class car_wheel { //Шина
  2. variable = "car_wheel";
  3. displayName = "STR_wheel";
  4. weight = 2;
  5. buyPrice = 10;
  6. sellPrice = 5;
  7. illegal = false;
  8. edible = -1;
  9. icon = "\rodina_data\VirtItems\repair\ico_wheel.paa";
  10. };
  11.  
  12. class car_engine { //Двигатель
  13. variable = "car_engine";
  14. displayName = "STR_engine";
  15. weight = 2;
  16. buyPrice = 10;
  17. sellPrice = 5;
  18. illegal = false;
  19. edible = -1;
  20. icon = "\rodina_data\VirtItems\repair\ico_engine";
  21. };
  22.  
  23. class car_fueltank { //БАК
  24. variable = "car_fueltank";
  25. displayName = "STR_fueltank";
  26. weight = 2;
  27. buyPrice = 10;
  28. sellPrice = 5;
  29. illegal = false;
  30. edible = -1;
  31. icon = "\rodina_data\VirtItems\repair\ico_fueltank.paa";
  32. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement