bjaebjoch

Untitled

Sep 7th, 2021 (edited)
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. //Under the assumption that the Nuclear Reactor omniconverter includes a small amount of storage for enriched uranium and depleted uranium
  2. //this patch inserts 3 units each of EnrichedUranium and DepletedFuel storage.
  3.  
  4. @PART[*]:HAS[@MODULE[WBIOmniConverter]:HAS[#currentTemplateName[Nuclear*]]]:FINAL
  5. {
  6. RESOURCE
  7. {
  8. name = EnrichedUranium
  9. amount = 0
  10. maxAmount = 3
  11. flowState = True
  12. isTweakable = True
  13. hideFlow = False
  14. isVisible = True
  15. flowMode = Both
  16. }
  17. RESOURCE
  18. {
  19. name = DepletedFuel
  20. amount = 0
  21. maxAmount = 3
  22. flowState = True
  23. isTweakable = False
  24. hideFlow = False
  25. isVisible = True
  26. flowMode = Both
  27. }
  28. }
Add Comment
Please, Sign In to add comment