TheOnlyTails

mods.toml

Oct 16th, 2020
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.03 KB | None | 0 0
  1. modLoader="kotlinforforge"
  2.  
  3. loaderVersion="[1,)"
  4.  
  5. license = "MIT License"
  6.  
  7. issueTrackerURL = "https://github.com/TheOnlyTails/RubyMod/issues/"
  8.  
  9. [[mods]]
  10. modId = "rubymod"
  11.  
  12. version = "${version}"
  13.  
  14. displayName = "Ruby Mod"
  15.  
  16. displayURL = "https://github.com/TheOnlyTails/RubyMod/"
  17.  
  18. logoFile = "logo.png"
  19.  
  20. credits = """
  21. Thanks to:
  22. - Forge, for providing the modding framework
  23. - TechnoVision, for creating the tutorial series that helped me create it
  24. - BlockBench, for giving me the tools to create the custom block models
  25. - Jelly Dash, for creating the beautiful textures for the Ruby sheep and the ruby wool
  26. and much more people.
  27. """
  28.  
  29. authors = "TheOnlyTails"
  30.  
  31. description = '''
  32. This mod adds rubies and some other stuff. Look at the description in Github to find out more.
  33. '''
  34.  
  35. [[dependencies.rubymod]]
  36. modId = "forge"
  37. mandatory = true
  38. versionRange = "[32,)"
  39. ordering = "NONE"
  40. side = "BOTH"
  41.  
  42. [[dependencies.rubymod]]
  43. modId = "minecraft"
  44. mandatory = true
  45. versionRange = "[1.16.1]"
  46. ordering = "NONE"
  47. side = "BOTH"
  48.  
Add Comment
Please, Sign In to add comment