FatherWh0

Types/LuckyBlock.yml

Apr 12th, 2018
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.56 KB | None | 0 0
  1. # @@@ Written by MCGamer199 @@@
  2. # Advanced Lucky Block Plugin
  3.  
  4. # The Default Lucky Block
  5. # Multiple files are allowed so you can have multiple lb types
  6.  
  7. ###############################
  8. # Version: 21 (optional)
  9. # Lucky Block ID
  10. # Must be unique
  11. # Must be a valid number between 0 and 256
  12. ID: 1
  13. # Item display name
  14. # Color codes can be used (use the "&" symbol)
  15. # Formatting codes: https://minecraft.gamepedia.com/Formatting_codes
  16. Name: '&eLucky Block'
  17. # Whether this type is the default types
  18. Default: true
  19. # Folder name
  20. Folder: default
  21. # Set to true to disable
  22. Disabled: false
  23. # Players in creative mode can break lucky blocks
  24. CreativeMode: true
  25. # false by default (slightly bugged i guess?)
  26. UseDefaultBlock: false
  27. # Show lucky blocks name above them
  28. ShowName: true
  29. # Show additional data above lucky blocks (ShowName must be enabled)
  30. ShowData: false
  31. # Fortune enchantment increases luck for this lb type
  32. LuckEnchantment: false
  33. # Can be used to create portal to the lucky block world
  34. Portal: false
  35. # Item's lore
  36. Lore:
  37. - '&7The default lucky block'
  38. - ''
  39. ###############################
  40.  
  41.  
  42.  
  43. ###############################
  44. # Block material and data
  45. # Type must be a valid material (available materials: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html)
  46. Type: SPONGE
  47. # Data might be changed in a later version (1.13 will replace Block Data with Block States)
  48. # Red wool has the data 14 for example
  49. Data: 0
  50. # To use skulls follow the instructions below (using skins is not recommended btw)
  51. # Set "Type" to SKULL_ITEM
  52. # Set Data to 3
  53. # Set UseSkin to true
  54. # Choose a skin by either using the "Skin" option as shown below or by using both SkinId and SkinValue options
  55. # Skin: LUCKY
  56. # Available skins: LUCKY, PRESENT, COLORED, BLUE_PRESENT, CHEESE, CHEST, CANDY_CANE, GOLD_BLOCK, SPONGE, BEACH_BALL, SOCCER_BALL, CHECKER_BOARD
  57. ###############################
  58.  
  59.  
  60.  
  61. ###############################
  62. # Permissions
  63. # Allowed permissions: Placing, Breaking, Crafting, SilkTouch
  64. # Adding something else will cause an error
  65. Permissions:
  66. Crafting:
  67. Name: 'lb.typeDefault.craft'
  68. Default: 'false'
  69. # The field below is not required
  70. Description: 'Allows players to craft the default lucky blocks!'
  71. Placing:
  72. Name: 'lb.typeDefault.place'
  73. Default: 'false'
  74. Description: 'Allows players to place the default lucky blocks!'
  75. Breaking:
  76. Name: 'lb.typeDefault.break'
  77. Default: 'true'
  78. Description: 'Allows players to break the default lucky blocks!'
  79. SilkTouch:
  80. Name: 'lb.typeDefault.silktouch'
  81. Default: 'false'
  82. Description: 'Allows players to have silk touch feature!'
  83. ###############################
  84.  
  85.  
  86.  
  87. ###############################
  88. # Sounds
  89. # Play sound on place?
  90. AllowPlaceSound: true
  91.  
  92. # Play sound on break?
  93. AllowBreakSound: true
  94.  
  95. # Arguments: soundname(string) volume(float) pitch(float)
  96. # Available sounds can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Sound.html
  97.  
  98. # Sound played when placing
  99. PlaceSound: ENTITY_CREEPER_DEATH 1 0
  100.  
  101. # Sound played when breaking
  102. BreakSound: ENTITY_CHICKEN_EGG 1 1
  103. ###############################
  104.  
  105.  
  106.  
  107. ###############################
  108. # Particles
  109. # Spawn particles on place?
  110. AllowPlaceParticles: true
  111.  
  112. # Spawn particles on break?
  113. AllowBreakParticles: true
  114.  
  115. # Spawn particles every x tick?
  116. AllowTickParticles: true
  117.  
  118. # Arguments: particle_name locX locY locZ speed amount dX dY dZ
  119. # Available particles can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Particle.html
  120.  
  121. # Particle spawned when placing
  122. PlaceParticles: SPELL_WITCH 0.4 0.5 0.4 0 48 0.4 0.3 0.4
  123.  
  124. # Particle spawned when breaking
  125. BreakParticles: END_ROD 0.6 0.7 0.6 0 20 0.4 0.3 0.4
  126.  
  127. # Random number between 35 and 75
  128. a_Random: '35,75'
  129.  
  130. # Particle spawned every "a_Random" tick
  131. TickParticles: VILLAGER_HAPPY 0.3 0.3 0.3 0 12 0.3 0.3 0.3
  132. ###############################
  133.  
  134.  
  135.  
  136. ###############################
  137. # Luck
  138. # Minimum luck
  139. MinLuck: -100
  140.  
  141. # Maximum luck
  142. MaxLuck: 100
  143. ###############################
  144.  
  145.  
  146.  
  147. ###############################
  148. # Delay in ticks before drops spawn after breaking a lucky block #
  149. Delay: 0
  150. ###############################
  151.  
  152.  
  153.  
  154. ###############################
  155. # Properties
  156. Properties:
  157. - CAN_BE_PUSHED
  158. - CAN_BE_THROWN
  159.  
  160. # ItemProperties:
  161. # - CUSTOM_PERCENT_COLORS
  162. # PercentColors:
  163. # - '0=gold'
  164. # - '1:49=yellow'
  165. # - '50:I=green'
  166. # - 'I:-1=red'
  167. ###############################
  168.  
  169.  
  170.  
  171. ###############################
  172. # Whether it can be crafted
  173. Craftable: false
  174.  
  175. # Crafting Recipes
  176. # Available options: Amount,Luck,Drop
  177. Recipes:
  178. Recipe1:
  179. Amount: 1
  180. Luck: 0
  181. Shape:
  182. - XXX
  183. - XVX
  184. - XXX
  185. Ingredients:
  186. - X BEDROCK
  187. - V DROPPER
  188. Recipe2:
  189. Amount: 1
  190. Luck: 100
  191. Shape:
  192. - XXX
  193. - XVX
  194. - XXX
  195. Ingredients:
  196. - X BEDROCK
  197. - V DROPPER
  198. ###############################
  199.  
  200.  
  201.  
  202. ###############################
  203. # Allowed worlds for this type
  204. Worlds:
  205. - 'w_loot'
  206. ###############################
  207.  
  208.  
  209.  
  210. ###############################
  211. # Spawn naturally in worlds
  212. # LBGeneration option in the config file must be enabled
  213. GenerateNaturally: true
  214. # Spawn Rate = x / 1000
  215. SpawnRate: 3
  216. SpawnWorlds:
  217. - 'w_loot'
  218. # Random number between -100 and 100
  219. GenerateWithLuck: '-100,100'
  220. # remove the "#" symbols below if you want to make this lucky block type spawn in certain biomes
  221. # Available biomes can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/block/Biome.html
  222. # SpawnBiomes:
  223. # - PLAINS
  224. ###############################
Advertisement
Add Comment
Please, Sign In to add comment