Advertisement
Guest User

MYSTconfig

a guest
Aug 22nd, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.50 KB | None | 0 0
  1. # == Anything requiring a duration or time: ==
  2. #   Format is quite loose. Place anything anywhere, in any order.
  3. #   <number> ::= Any valid integer
  4. #   "<number>t" ==> The time in ticks
  5. #   "<number>S" ==> The time in milliseconds
  6. #   "<number>s" ==> The time in seconds
  7. #   "<number>m" ==> The time in minutes
  8. #   "<number>h" ==> The time in hours
  9. #   "<number>d" ==> The time in days
  10.  
  11. # The time before you can teleport with a linking book.
  12. # Before you will be frozen in the air
  13. # Is a duration (see top of file)
  14. linking book warmup: 5s
  15.  
  16. # The warmup for the relto book
  17. relto book warmup: 5s
  18.  
  19. # The warmup for a prison book
  20. prison book warmup: 5s
  21.  
  22. # The time a relto invitation is valid
  23. relto_invitation_timeout: 20s
  24.  
  25. # The invulnerability after a teleport.
  26. # Is a duration (see top of file)
  27. no_damage_ticks_after_teleport: 5s
  28.  
  29. # The material for the descriptive book
  30. descriptive_book_item_material: enchanting_table
  31.  
  32. # The material for the finished linking book
  33. finished_linking_book_item_material: book
  34.  
  35. # The material for an unfinished linking book (one where the user hasn't right-clicked a location yet)
  36. unfinished_linking_book_item_material: book
  37.  
  38. # The material to use to right click on a descriptive book
  39. linking_book_base_material: book_and_quill
  40.  
  41. # The material to use for an unset Relto book
  42. unset_relto_book_item_material: book_and_quill
  43.  
  44. # The material to use for a Relto book
  45. relto_book_item_material: book
  46.  
  47. # The material to use for an unfinished prison book
  48. unfinished_prison_book_item_material: book_and_quill
  49.  
  50. # The material to use for a finished prison book
  51. finished_prison_book_item_material: written_book
  52.  
  53. # ?? Sound ??
  54. # List is probably here: http://www.minecraftforum.net/forums/mapping-and-modding/mapping-and-modding-tutorials/1571574-all-minecraft-playsound-file-names-1-9
  55.  
  56. # The sound when teleporting
  57. linking_sound_name: mob.enderdragon.growl
  58. linking_sound_volume: 100
  59. linking_sound_pitch: 1
  60.  
  61. # The sound when you create a link
  62. link_established_sound_name: fire.ignite
  63. link_established_sound_volume: 100
  64. link_established_sound_pitch: 1
  65.  
  66. # ?? Particle name??
  67. # A list is here. Look at the leftmost column. http://minecraft.gamepedia.com/Particles#Types_of_particles
  68.  
  69. # The particle to display in a helix around the descriptive book
  70. descriptive_book_particle_name: "fireworksSpark"
  71.  
  72. # The particles for an enabled bookstand
  73. bookstand_enabled_particle_name: "flame"
  74.  
  75. # The particles for a disabled bookstand
  76. bookstand_disabled_particle_name: "largesmoke"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement