Advertisement
tomdodd4598

Untitled

Apr 29th, 2021
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #priority 2147483647
  2.  
  3. #loader preinit contenttweaker crafttweaker
  4.  
  5. zenClass FuelInfo {
  6. var name as string;
  7. var time as int;
  8. var heat as int;
  9. var efficiency as double;
  10. var crit as int;
  11. var decay as double;
  12. var prime as bool;
  13. var rad as double;
  14.  
  15. zenConstructor(name as string, time as int, heat as int, efficiency as double, crit as int, decay as double, prime as bool, rad as double) {
  16. this.name = name;
  17. this.time = time;
  18. this.heat = heat;
  19. this.efficiency = efficiency;
  20. this.crit = crit;
  21. this.decay = decay;
  22. this.prime = prime;
  23. this.rad = rad;
  24. }
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement