Advertisement
BierfietsNL

Untitled

Dec 1st, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.85 KB | None | 0 0
  1. #Name of the advent calendar inventory
  2. inventoryName: "&2&lAdvent calendar"
  3. #Number of days in the advent calendar
  4. days: 24
  5. #Choose whether the day number should be displayed as the item quantity in advent calendar GUI
  6. displayDayNumber: true
  7. #Choose whether players should be able to claim gifts from previous days they haven't claimed yet
  8. allowClaimingUnclaimedGifts: true
  9. #Choose whether it should be broadcasted globally when someone claims their gift
  10. broadcastClaimedInfo: true
  11. #Choose whether players should be notified about not claimed gifts when joining the server
  12. notifyUponLogin: true
  13. #Choose whether single or multiple gift groups should be given. Eg. when player is eligible to receive default & donor gifts, he receives only donor one (which has higher priority)
  14. giveSingleGifts: false
  15. #Maximal amount of enchantments which can be applied to an item (it applies to enchantment gifts)
  16. maxEnchantments: 3
  17. placeholders:
  18. #Item placeholder for already claimed gifts
  19. claimed:
  20. material: STAINED_GLASS_PANE
  21. damage: 13
  22. #%day% is the placeholder for the day number
  23. name: "&2&lDay %day%"
  24. lore:
  25. - "&8Already claimed."
  26. #Item placeholder for gifts which weren't claimed but can be
  27. unclaimed:
  28. material: STAINED_GLASS_PANE
  29. damage: 5
  30. name: "&a&lDay %day%"
  31. lore:
  32. - "&8Click to claim!"
  33. #Item placeholder for gifts which weren't claimed and can't be
  34. expired:
  35. material: STAINED_GLASS_PANE
  36. damage: 14
  37. name: "&c&lDay %day%"
  38. lore:
  39. - "&8Gift has expired."
  40. #Item placeholder for today's gift
  41. current:
  42. material: STAINED_GLASS_PANE
  43. damage: 5
  44. name: "&a&lDay %day%"
  45. lore:
  46. - "&8Click to claim!"
  47. #Item placeholder for gifts from upcoming days
  48. upcoming:
  49. material: STAINED_GLASS_PANE
  50. damage: 14
  51. name: "&c&lDay %day%"
  52. lore:
  53. - "&8Can't be claimed yet."
  54. #Item placeholder for not configured gifts
  55. unavailable:
  56. material: STAINED_GLASS_PANE
  57. damage: 14
  58. name: "&c&lDay %day%"
  59. lore:
  60. - "&8This gift is unavailable."
  61. #Gift priorities. The format is PRIORITY:NAME (the name is used in the section below). Basically the higher priority, the earlier player will be checked for the christmasplus.adventcalendar.gift.NAME permissions. "default" is necessary and will be given to all players without any additional permission.
  62. #Example: with 1: default and 2: donor the player will be checked for christmasplus.adventcalendar.gift.donor first, if they don't have it they will receive the "default" one
  63. giftsPriorities:
  64. 1: default
  65. 2: donor
  66.  
  67. gifts:
  68. #Day number
  69. 1:
  70. #Type of the gift, explained above in giftPriorities section
  71. default:
  72. #Type of sold item, valid values are item/permission/enchantment/command
  73. type: item
  74. item:
  75. #Material name, full list can be found here: http://wiki.brcdev.net/Materials
  76. material: BREAD
  77. #(optional) Quantity of the item
  78. quantity: 32
  79. #(optional) Data value, for example 1 for WOOD:1 means spruce wood planks
  80. damage: 0
  81. #(optional) Custom name
  82. name: "&aYummy bread"
  83. #(optional) Lore, can contain multiple lines
  84. lore:
  85. - "&3<3"
  86. donor:
  87. type: item
  88. item:
  89. material: BREAD
  90. quantity: 64
  91. 2:
  92. default:
  93. type: item
  94. item:
  95. material: GOLD_INGOT
  96. quantity: 8
  97. donor:
  98. type: item
  99. item:
  100. material: GOLD_INGOT
  101. quantity: 16
  102. 3:
  103. default:
  104. type: item
  105. item:
  106. material: IRON_INGOT
  107. quantity: 16
  108. donor:
  109. type: item
  110. item:
  111. material: IRON_INGOT
  112. quantity: 32
  113. 4:
  114. default:
  115. type: enchantment
  116. enchantment: MENDING
  117. enchantmentlevel: 1
  118. donor:
  119. type: enchantment
  120. enchantment: MENDING
  121. enchantmentLevel: 1
  122. 5:
  123. default:
  124. type: item
  125. item:
  126. material: DIAMOND
  127. quantity: 3
  128. donor:
  129. type: command
  130. commands:
  131. - "say Merry christmas, %PLAYER%!"
  132. - "broadcast Merry christmas, everyone!"
  133. 6:
  134. default:
  135. type: item
  136. item:
  137. material: SLIME_BALL
  138. quantity: 12
  139. 7:
  140. default:
  141. type: enchantment
  142. enchantment: UNBREAKING
  143. enchantmentLevel: 3
  144. 8:
  145. default:
  146. type: item
  147. item:
  148. material: EMERALD
  149. quantity: 10
  150. 9:
  151. default:
  152. type: item
  153. item:
  154. material: IRON_BLOCK
  155. quantity: 1
  156. 10:
  157. default:
  158. type: item
  159. item:
  160. material: DIAMOND
  161. quantity: 3
  162. donor:
  163. type: command
  164. commands:
  165. - "say Merry christmas, %PLAYER%!"
  166. - "broadcast Merry christmas, everyone!"
  167. 11:
  168. default:
  169. type: item
  170. item:
  171. material: SLIME_BALL
  172. quantity: 12
  173. 12:
  174. default:
  175. type: enchantment
  176. enchantment: UNBREAKING
  177. enchantmentLevel: 3
  178. 13:
  179. default:
  180. type: item
  181. item:
  182. material: EMERALD
  183. quantity: 10
  184. 14:
  185. default:
  186. type: item
  187. item:
  188. material: IRON_BLOCK
  189. quantity: 1
  190. 15:
  191. default:
  192. type: enchantment
  193. enchantment: PROTECTION
  194. enchantmentLevel: 4
  195. 16:
  196. default:
  197. type: enchantment
  198. enchantment: FEATHER_FALLING
  199. enchantmentLevel: 2
  200. 17:
  201. default:
  202. type: enchantment
  203. enchantment: LOOTING
  204. enchantmentLevel: 3
  205. 18:
  206. default:
  207. type: enchantment
  208. enchantment: FORTUNE
  209. enchantmentLevel: 3
  210. 19:
  211. default:
  212. type: enchantment
  213. enchantment: UNBREAKING
  214. enchantmentLevel: 3
  215. 20:
  216. default:
  217. type: item
  218. item:
  219. material: COAL
  220. quantity: 64
  221. 21:
  222. default:
  223. type: item
  224. item:
  225. material: APPLE
  226. quantity: 32
  227. 22:
  228. default:
  229. type: item
  230. item:
  231. material: 22
  232. quantity: 8
  233. 23:
  234. default:
  235. type: item
  236. item:
  237. material: 152
  238. quantity: 32
  239. 24:
  240. default:
  241. type: item
  242. item:
  243. material: 437
  244. quantity: 12
  245. 25:
  246. default:
  247. type: item
  248. item:
  249. material: SLIME_BALL
  250. quantity: 12
  251. 26:
  252. default:
  253. type: enchantment
  254. enchantment: UNBREAKING
  255. enchantmentLevel: 3
  256. 27:
  257. default:
  258. type: item
  259. item:
  260. material: EMERALD
  261. quantity: 10
  262. 28:
  263. default:
  264. type: item
  265. item:
  266. material: IRON_BLOCK
  267. quantity: 1
  268. 29:
  269. default:
  270. type: enchantment
  271. enchantment: PROTECTION
  272. enchantmentLevel: 5
  273. 30:
  274. default:
  275. type: item
  276. item:
  277. material: DIAMOND
  278. quantity: 32
  279. 31:
  280. default:
  281. type: item
  282. item:
  283. material: NETHER_STAR
  284. quantity: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement