@
Kainzo
Okay, here it goes: pardon my clunkiness, as this is my first attempt at this sort of thing.
On my version, I had it color coded for changes, but I am unsure how to make that happen as a reply on this thread.  Some of the changes I felt good about, the others I wasn't sure if I coded them correctly (marked with an **).  Most of the **'d items have to do with the question I posed to you in the prior post regarding whether an item number included all if its sub numbers.
After the marked changes, I gave an example of what the new Alchemist profession allowances would be as an example of the aforementioned suggestion that this thread started with.
I didn't notice the individual data values for each potion in the code.  I wondered how those were included in the brewing to allow Alchemists to sell them.
If this is on the right track, I can tackle a different profession in the future.
Changes:
Food
103: Added RawSalmon
104: Added CookedSalmon
NetherDrops
302: Added GoldSword
Plants
**309: Added DoubleTallgrass (code 175 conflicts with Sunflower)
311: Changed plant name to Dandelion
312: Changed plant name to Poppy
**313: Added Orchid
**314: Added Allium
**315: Added AzureBluet
**316: Added RedTulip
**317: Added OrangeTulip
**318: Added WhiteTulip
**319: Added PinkTulip
**320: Added OxeyeDaisy
321: Added Sunflower (175 conflicts with Tallgrass)
**322: Added Lilac
**323: Added RoseBush
**324: Added Peony
334: Added Haybale
Netherblocks
372: Added Quartzblock
**373: Added ChiseledQuartzBlock
**374: Added PillarQuartzBlock
Misc
379: Added CoalBlock
395: Renamed ItemFrame
396: Renamed FlowerPot
397: Renamed Map
398: Renamed MobHead
399: Renamed CarrotonaStick
400: Renamed NetherStar
401: Renamed FireworkRocket
402: Renamed EnchantedBook
403: Renamed FireworkStar
404: Renamed BookandQuill
405: Renamed WrittenBook
406: Renamed FireCharge
**407: Renamed SpawnEgg
**408: Renamed BottleoEnchanting
Brewing Material
416: Removed Milk (I was curious whether this was needed for some reason)
423: Added MagmaCream
424: Added Slimeball
425: Added GoldNugget
426: Added Melon
427: Added SpiderEye
428: Added BrownMushroom
429: Added GhastTear
430: Added RedstoneDust
431: Added GlowstoneDust
432: Added Sulfur
433: Added BrewingStand
434: Added BlazeRod
435: Added Cobblestone
Basic
**462: Renamed Snow to SnowBlock
**475: Added Podzol
Music
498: Added Diskwait
570: Created CauldronItems
571-631: Includes all cauldron items and recipe ingredients
632: Created Transmutation
633-640: Includes all transmuted items and recipe ingredients
Alchemist:
Include the following chest shop options:
303: ChestShop.shop.create.plants
413: ChestShop.shop.create.brewing
570: ChestShop.shop.create.cauldronitems
632: ChestShop.shop.create.transmutation
Remove:
375: ChestShop.shop.create.misc
	
	
	
		Code:
	
	
		1.    name: ChestShop
2.
3.    main: com.Acrobot.ChestShop.ChestShop
4.
5.    version: 3.7.3
6.
7.    #for CButD
8.    dev-url: http://dev.bukkit.org/server-mods/chestshop/
9.
10.
11.    author: Acrobot
12.    description: >
13.                 A chest shop for economy plugins.
14.
15.
16.    softdepend: [LWC, Lockette, Deadbolt, OddItem, WorldGuard, Vault, Heroes,
17.                    iConomy, BOSEconomy, SimpleChestLock, Residence]
18.    commands:
19.      iteminfo:
20.        aliases: [iinfo]
21.        description: Lists item id and names
22.        usage: |
23.               /<command> §2(what's the item in hand?)
24.               /<command> §712§f §2(what's the item with ID §712§2?)
25.               /<command> §7log§f §2(what's the item ID of §7LOG§2?)
26.
27.      csGive:
28.        description: Gives an item to the appropriate player
29.        usage: /<command> <item code> (amount) (player)
30.      csVersion:
31.        aliases: [chestshop]
32.        description: Shows the ChestShop's version
33.        usage: /<command>
34.
35.    permissions:
36.      ChestShop.*:
37.        description: Gives access to all ChestShop permissions
38.        default: op
39.        children:
40.            ChestShop.shop.*: true
41.            ChestShop.admin: true
42.      ChestShop.shop.*:
43.        description: Gives access to all user ChestShop permissions
44.        children:
45.            ChestShop.shop.create: true
46.            ChestShop.shop.buy: true
47.            ChestShop.shop.sell: true
48.        default: true
49.      ChestShop.shop.create:
50.        description: Allows the user to create a shop that sells and buys any item
51.        children:
52.            ChestShop.shop.create.buy: true
53.            ChestShop.shop.create.sell: true
54.      ChestShop.shop.create.buy:
55.        description: Allows the user to create a shop that sells any item
56.      ChestShop.shop.create.sell:
57.        description: Allows the user to create a shop that buy any item
58.      ChestShop.shop.create.(itemID):
59.        description: Allows user to create a shop that sells item with itemID like in the permission node (replace (itemID) with NUMERICAL item ID)
60.      ChestShop.shop.buy.(itemID):
61.        description: Allows user to buy certain (itemID) from a shop (replace (itemID) with NUMERICAL item ID)
62.      ChestShop.shop.sell.(itemID):
63.        description: Allows user to sell certain (itemID) from a shop (replace (itemID) with NUMERICAL item ID)
64.      ChestShop.shop.buy:
65.        description: Allows user to buy from a shop
66.      ChestShop.shop.sell:
67.        description: Allows user to sell to a shop
68.      ChestShop.nofee:
69.        description: User doesn't have to pay the shop creation fee.
70.      ChestShop.admin:
71.        description: Allows user to modify/destroy other stores and create an Admin Shops
72.        default: op
73.      ChestShop.mod:
74.        description: Allows user only to view other store chests, he can't destroy them or create an Admin Shop
75.      ChestShop.name.(some name):
76.        description: Gives you the power to do create shops for (some name), for example your town.
77.      ChestShop.shop.create.food:
78.        description: Allows to create a shop that sells food
79.        children:
80.          ChestShop.shop.create.297: true #Bread
81.          ChestShop.shop.create.354: true #Cake
82.          ChestShop.shop.create.357: true #Cookie
83.          ChestShop.shop.create.349: true #RawFish
84.          ChestShop.shop.create.350: true #CookedFish
85.          ChestShop.shop.create.365: true #RawChicken
86.          ChestShop.shop.create.366: true #CookedChicken
87.          ChestShop.shop.create.363: true #RawSteak
88.          ChestShop.shop.create.364: true #CookedSteak
89.          ChestShop.shop.create.319: true #RawPork
90.          ChestShop.shop.create.320: true #CookedPork
91.          ChestShop.shop.create.282: true #MushroomSoup
92.          ChestShop.shop.create.360: true #Melon
93.          ChestShop.shop.create.260: true #Apple
94.          ChestShop.shop.create.322: true #GoldApple
95.          ChestShop.shop.create.297: true #Bread
96.          ChestShop.shop.create.335: true #Milk
97.          ChestShop.shop.create.391: true #Carrot
98.          ChestShop.shop.create.392: true #Potato
99.          ChestShop.shop.create.393: true #BakedPotato
100.          ChestShop.shop.create.396: true #GoldenCarrot
101.          ChestShop.shop.create.400: true #PumpkinPie
102.          ChestShop.shop.create.382: true #GlisteningMelon
103.          ChestShop.shop.create.349: true #RawSalmon
104.          ChestShop.shop.create.350: true #CookedSalmon
105.      ChestShop.shop.create.diamondgrade:
106.        description: Allows to create a shop that sells diamond gear
107.        children:
108.          ChestShop.shop.create.310: true #DiamondHelm
109.          ChestShop.shop.create.311: true #DiamondChestplate
110.          ChestShop.shop.create.312: true #DiamondLeggings
111.          ChestShop.shop.create.313: true #DiamondBoots
112.          ChestShop.shop.create.276: true #DiamondSword
113.          ChestShop.shop.create.277: true #DiamondShovel
114.          ChestShop.shop.create.278: true #DiamondPick
115.          ChestShop.shop.create.279: true #DiamondAxe
116.          ChestShop.shop.create.293: true #DiamondHoe
117.      ChestShop.shop.create.irongrade:
118.        description: Allows to create a shop that sells iron gear
119.        children:
120.          ChestShop.shop.create.306: true #IronHelm
121.          ChestShop.shop.create.307: true #IronChestplate
122.          ChestShop.shop.create.308: true #IronLeggings
123.          ChestShop.shop.create.309: true #IronBoots
124.          ChestShop.shop.create.267: true #IronSword
125.          ChestShop.shop.create.256: true #IronShovel
126.          ChestShop.shop.create.257: true #IronPick
127.          ChestShop.shop.create.258: true #IronAxe
128.          ChestShop.shop.create.292: true #IronHoe
129.      ChestShop.shop.create.goldgrade:
130.        description: Allows to create a shop that sells gold gear
131.        children:
132.          ChestShop.shop.create.314: true #GoldHelm
133.          ChestShop.shop.create.315: true #GoldChestplate
134.          ChestShop.shop.create.316: true #GoldLeggings
135.          ChestShop.shop.create.317: true #GoldBoots
136.          ChestShop.shop.create.283: true #GoldSword
137.          ChestShop.shop.create.284: true #GoldShovel
138.          ChestShop.shop.create.285: true #GoldPick
139.          ChestShop.shop.create.286: true #GoldAxe
140.          ChestShop.shop.create.294: true #GoldHoe
141.      ChestShop.shop.create.stonegrade:
142.        description: Allows to create a shop that sells stone tools and chain armor
143.        children:
144.          ChestShop.shop.create.302: true #ChainHelm
145.          ChestShop.shop.create.303: true #ChainChestplate
146.          ChestShop.shop.create.304: true #ChainLeggings
147.          ChestShop.shop.create.305: true #ChainBoots
148.          ChestShop.shop.create.272: true #StoneSword
149.          ChestShop.shop.create.273: true #StoneShovel
150.          ChestShop.shop.create.274: true #StonePick
151.          ChestShop.shop.create.275: true #StoneAxe
152.          ChestShop.shop.create.291: true #StoneHoe
153.      ChestShop.shop.create.woodgrade:
154.        description: Allows to create a shop that sells wood tools and leather armor
155.        children:
156.          ChestShop.shop.create.298: true #LeatherHelm
157.          ChestShop.shop.create.299: true #LeatherChestplate
158.          ChestShop.shop.create.300: true #LeatherLeggings
159.          ChestShop.shop.create.301: true #LeatherBoots
160.          ChestShop.shop.create.268: true #WoodSword
161.          ChestShop.shop.create.269: true #WoodShovel
162.          ChestShop.shop.create.270: true #WoodPick
163.          ChestShop.shop.create.271: true #WoodAxe
164.          ChestShop.shop.create.290: true #WoodHoe
165.      ChestShop.shop.create.diamondarmor:
166.        description: Allows to create a shop that sells diamond armor
167.        children:
168.          ChestShop.shop.create.310: true #DiamondHelm
169.          ChestShop.shop.create.311: true #DiamondChestplate
170.          ChestShop.shop.create.312: true #DiamondLeggings
171.          ChestShop.shop.create.313: true #DiamondBoots
172.      ChestShop.shop.create.diamondtools:
173.        description: Allows to create a shop that sells diamond tools
174.        children:
175.          ChestShop.shop.create.276: true #DiamondSword
176.          ChestShop.shop.create.277: true #DiamondShovel
177.          ChestShop.shop.create.278: true #DiamondPick
178.          ChestShop.shop.create.279: true #DiamondAxe
179.          ChestShop.shop.create.293: true #DiamondHoe
180.      ChestShop.shop.create.goldarmor:
181.        description: Allows to create a shop that sells gold armor
182.        children:
183.          ChestShop.shop.create.314: true #GoldHelm
184.          ChestShop.shop.create.315: true #GoldChestplate
185.          ChestShop.shop.create.316: true #GoldLeggings
186.          ChestShop.shop.create.317: true #GoldBoots
187.      ChestShop.shop.create.goldtools:
188.        description: Allows to create a shop that sells gold tools
189.        children:
190.          ChestShop.shop.create.283: true #GoldSword
191.          ChestShop.shop.create.284: true #GoldShovel
192.          ChestShop.shop.create.285: true #GoldPick
193.          ChestShop.shop.create.286: true #GoldAxe
194.          ChestShop.shop.create.294: true #GoldHoe
195.      ChestShop.shop.create.ironarmor:
196.        description: Allows to create a shop that sells iron armor
197.        children:
198.          ChestShop.shop.create.306: true #IronHelm
199.          ChestShop.shop.create.307: true #IronChestplate
200.          ChestShop.shop.create.308: true #IronLeggings
201.          ChestShop.shop.create.309: true #IronBoots
202.      ChestShop.shop.create.irontools:
203.        description: Allows to create a shop that sells iron tools
204.        children:
205.          ChestShop.shop.create.267: true #IronSword
206.          ChestShop.shop.create.256: true #IronShovel
207.          ChestShop.shop.create.257: true #IronPick
208.          ChestShop.shop.create.258: true #IronAxe
209.          ChestShop.shop.create.292: true #IronHoe 
210.      ChestShop.shop.create.chainarmor:
211.        description: Allows to create a shop that sells chain armor
212.        children:
213.          ChestShop.shop.create.302: true #ChainHelm
214.          ChestShop.shop.create.303: true #ChainChestplate
215.          ChestShop.shop.create.304: true #ChainLeggings
216.          ChestShop.shop.create.305: true #ChainBoots
217.      ChestShop.shop.create.stonetools:
218.        description: Allows to create a shop that sells stone tools
219.        children:
220.          ChestShop.shop.create.272: true #StoneSword
221.          ChestShop.shop.create.273: true #StoneShovel
222.          ChestShop.shop.create.274: true #StonePick
223.          ChestShop.shop.create.275: true #StoneAxe
224.          ChestShop.shop.create.291: true #StoneHoe       
225.      ChestShop.shop.create.leatherarmor:
226.        description: Allows to create a shop that sells leather armor
227.        children:
228.          ChestShop.shop.create.298: true #LeatherHelm
229.          ChestShop.shop.create.299: true #LeatherChestplate
230.          ChestShop.shop.create.300: true #LeatherLeggings
231.          ChestShop.shop.create.301: true #LeatherBoots
232.      ChestShop.shop.create.woodtools:
233.        description: Allows to create a shop that sells wood tools
234.        children:
235.          ChestShop.shop.create.268: true #WoodSword
236.          ChestShop.shop.create.269: true #WoodShovel
237.          ChestShop.shop.create.270: true #WoodPick
238.          ChestShop.shop.create.271: true #WoodAxe
239.          ChestShop.shop.create.290: true #WoodHoe
240.      ChestShop.shop.create.bows:
241.        description: Allows to create a shop that sells bows & arrows
242.        children:
243.          ChestShop.shop.create.261: true #Bow
244.          ChestShop.shop.create.262: true #Arrow
245.      ChestShop.shop.create.misctools:
246.        description: Allows to create a shop that sells misc tools
247.        children:
248.          ChestShop.shop.create.259: true #Flint&Steel
249.          ChestShop.shop.create.325: true #Bucket
250.          ChestShop.shop.create.326: true #WaterBucket
251.          ChestShop.shop.create.327: true #LavaBucket
252.          ChestShop.shop.create.345: true #Compass
253.          ChestShop.shop.create.346: true #FishingRod
254.          ChestShop.shop.create.347: true #Clock
255.          ChestShop.shop.create.358: true #Map
256.          ChestShop.shop.create.359: true #Sheers
257.      ChestShop.shop.create.ore:
258.        description: Allows to create a shop that sells ores
259.        children:
260.          ChestShop.shop.create.16: true #CoalOre
261.          ChestShop.shop.create.15: true #IronOre
262.          ChestShop.shop.create.21: true #LapisOre
263.          ChestShop.shop.create.14: true #GoldOre
264.          ChestShop.shop.create.56: true #DiamondOre
265.          ChestShop.shop.create.74: true #RedstoneOre
266.          ChestShop.shop.create.153: true #NetherQuartzOre
267.      ChestShop.shop.create.ingots:
268.        description: Allows to create a shop that sells ingots
269.        children:
270.          ChestShop.shop.create.265: true #IronIngot
271.          ChestShop.shop.create.266: true #GoldIngot
272.          ChestShop.shop.create.264: true #Diamond
273.          ChestShop.shop.create.388: true #Emerald
274.      ChestShop.shop.create.stairs:
275.        description: Allows to create a shop that sells stairs
276.        children:
277.          ChestShop.shop.create.53: true #WoodStairs
278.          ChestShop.shop.create.67: true #CobbleStairs
279.          ChestShop.shop.create.108: true #BrickStairs
280.          ChestShop.shop.create.109: true #StoneStairs
281.          ChestShop.shop.create.114: true #NetherBrickStairs
282.      ChestShop.shop.create.monsterdrops:
283.        description: Allows to create a shop that sells mob drops
284.        children:
285.          ChestShop.shop.create.289: true #Sulphur
286.          ChestShop.shop.create.288: true #Feather
287.          ChestShop.shop.create.287: true #String
288.          ChestShop.shop.create.341: true #Slimeball
289.          ChestShop.shop.create.344: true #Egg
290.          ChestShop.shop.create.352: true #Bone
291.          ChestShop.shop.create.334: true #Leather
292.          ChestShop.shop.create.367: true #RottenFlesh
293.          ChestShop.shop.create.368: true #EnderPearl
294.          ChestShop.shop.create.375: true #SpiderEye
295.      ChestShop.shop.create.netherdrops:
296.        description: Allows to create a shop that sells nether drops
297.        children:
298.          ChestShop.shop.create.369: true #BlazeRod
299.          ChestShop.shop.create.370: true #GhastTear
300.          ChestShop.shop.create.371: true #GoldNugget
301.          ChestShop.shop.create.378: true #MagmaCream
302.          ChestShop.shop.create.283: true #GoldSword
303.      ChestShop.shop.create.plants:
304.        description: Allows to create a shop that sells plants
305.        children:
306.          ChestShop.shop.create.6: true #Sapling
307.          ChestShop.shop.create.18: true #LeafBlock
308.          ChestShop.shop.create.31: true #TallGrass
309.          ChestShop.shop.create.175: true #DoubleTallgrass
310.          ChestShop.shop.create.32: true #DeadShrub
311.          ChestShop.shop.create.37: true #Dandelion
312.          ChestShop.shop.create.38: true #Poppy
313.          ChestShop.shop.create.38:1: true #Orchid
314.          ChestShop.shop.create.38:2: true #Allium
315.          ChestShop.shop.create.38:3: true #AzureBluet
316.          ChestShop.shop.create.38:4: true #RedTulip
317.          ChestShop.shop.create.38:5: true #OrangeTulip
318.          ChestShop.shop.create.38:6: true #WhiteTulip
319.          ChestShop.shop.create.38:7: true #PinkTulip
320.          ChestShop.shop.create.38:8: true: #OxeyeDaisy
321.          ChestShop.shop.create.175: true #Sunflower
322.          ChestShop.shop.create.175:1: true #Lilac
323.          ChestShop.shop.create.175:4: true #RoseBush
324.          ChestShop.shop.create.175:5: true #Peony
325.          ChestShop.shop.create.39: true #BrownMushroom
326.          ChestShop.shop.create.40: true #RedMushroom
327.          ChestShop.shop.create.81: true #Cactus
328.          ChestShop.shop.create.86: true #Pumpkin
329.          ChestShop.shop.create.103: true #MelonBlock
330.          ChestShop.shop.create.106: true #Vines
331.          ChestShop.shop.create.111: true #LillyPad
332.          ChestShop.shop.create.295: true #Seeds
333.          ChestShop.shop.create.296: true #Wheat
334.          ChestShop.shop.create.170: true #HayBale
335.          ChestShop.shop.create.338: true #Reeds
336.          ChestShop.shop.create.361: true #PumpkinSeeds
337.          ChestShop.shop.create.362: true #MelonSeeds
338.      ChestShop.shop.create.redstone:
339.        descriptions: Allows to create a shop that sells redstone items
340.        children:
341.          ChestShop.shop.create.69: true #Lever
342.          ChestShop.shop.create.77: true #Button
343.          ChestShop.shop.create.76: true #TorchOn
344.          ChestShop.shop.create.331: true #RedstoneDust
345.          ChestShop.shop.create.356: true #RedstoneRepeater
346.          ChestShop.shop.create.23: true #Dispenser
347.          ChestShop.shop.create.29: true #StickyPiston
348.          ChestShop.shop.create.33: true #Piston
349.          ChestShop.shop.create.27: true #PowerRail
350.          ChestShop.shop.create.28: true #DetectorRail
351.          ChestShop.shop.create.66: true #MinecartRail
352.          ChestShop.shop.create.70: true #StonePlate
353.          ChestShop.shop.create.72: true #WoodPlate
354.          ChestShop.shop.create.152: true #RedstoneBlock
355.          ChestShop.shop.create.154: true #Hopper
356.          ChestShop.shop.create.157: true #Activator Rail
357.          ChestShop.shop.create.158: true #Dropper
358.          ChestShop.shop.create.151: true #Daylight Sensor
359.          ChestShop.shop.create.404: true #Redstone Comparator
360.          ChestShop.shop.create.123: true #Redstone Lamp
361.      ChestShop.shop.create.netherblocks:
362.        descriptions: Allows to create a shop that sells netherblocks
363.        children:
364.          ChestShop.shop.create.87: true #NetherRack
365.          ChestShop.shop.create.88: true #SoulSand
366.          ChestShop.shop.create.89: true #GlowStone
367.          ChestShop.shop.create.112: true #NetherBrickBlock
368.          ChestShop.shop.create.113: true #NetherFence
369.          ChestShop.shop.create.114: true #NetherStairs
370.          ChestShop.shop.create.405: true #NetherBrick
371.          ChestShop.shop.create.406: true #NetherQuartz
372.          ChestShop.shop.create.155: true #QuartzBlock
373.          ChestShop.shop.create.155:1: true #ChiseledQuartzBlock
374.          ChestShop.shop.create.155:2: true #PillarQuartzBlock
375.      ChestShop.shop.create.misc:
376.        descriptions: Allows to create a shop that sells misc items
377.        children:
378.          ChestShop.shop.create.263: true #Coal
379.          ChestShop.shop.create.173: true #CoalBlock
380.          ChestShop.shop.create.280: true #Stick
381.          ChestShop.shop.create.281: true #Bowl
382.          ChestShop.shop.create.318: true #Flint
383.          ChestShop.shop.create.321: true #Painting
384.          ChestShop.shop.create.323: true #Sign
385.          ChestShop.shop.create.329: true #Saddle
386.          ChestShop.shop.create.332: true #Snowballs
387.          ChestShop.shop.create.336: true #Bricks
388.          ChestShop.shop.create.337: true #ClayBalls
389.          ChestShop.shop.create.339: true #Paper
390.          ChestShop.shop.create.340: true #Book
391.          ChestShop.shop.create.348: true #GlowstoneDust
392.          ChestShop.shop.create.353: true #Sugar
393.          ChestShop.shop.create.355: true #Bed
394.          ChestShop.shop.create.381: true #EnderEye
395.          ChestShop.shop.create.389: true #ItemFrame
396.          ChestShop.shop.create.390: true #FlowerPot
397.          ChestShop.shop.create.395: true #Map
398.          ChestShop.shop.create.397: true #MobHead
399.          ChestShop.shop.create.398: true #CarrotonaStick
400.          ChestShop.shop.create.399: true #NetherStar
401.          ChestShop.shop.create.401: true #FireworkRocket
402.          ChestShop.shop.create.403: true #EnchantedBook
403.          ChestShop.shop.create.402: true #FireworkStar
404.          ChestShop.shop.create.386: true #BookandQuill
405.          ChestShop.shop.create.387: true #WrittenBook
406.          ChestShop.shop.create.385: true #FireCharge
407.          ChestShop.shop.create.383: true #SpawnEgg
408.          ChestShop.shop.create.384: true #BottleoEnchanting
409.      ChestShop.shop.create.steps:
410.        description: Allows to create a shop that sells steps
411.        children:
412.          ChestShop.shop.create.44: true #Step
413.      ChestShop.shop.create.brewing:
414.        description: Allows to create a shop that sells brewing materials
415.        children:
416.          ChestShop.shop.create.335: true #Milk
417.          ChestShop.shop.create.372: true #NetherWart
418.          ChestShop.shop.create.373: true #WaterBottle
419.          ChestShop.shop.create.374: true #Bottle
420.          ChestShop.shop.create.376: true #FermentedSpiderEye
421.          ChestShop.shop.create.377: true #BlazePowder
422.          ChestShop.shop.create.382: true #GlisteringMelon
423.          ChestShop.shop.create.378: true #MagmaCream
424.          ChestShop.shop.create.341: true #Slimeball
425.          ChestShop.shop.create.371: true #GoldNugget
426.          ChestShop.shop.create.360: true #Melon
427.          ChestShop.shop.create.375: true #SpiderEye
428.          ChestShop.shop.create.39: true #BrownMushroom
429.          ChestShop.shop.create.370: true #GhastTear
430.          ChestShop.shop.create.331: true #RedstoneDust
431.          ChestShop.shop.create.348: true #GlowstoneDust
432.          ChestShop.shop.create.289: true #Sulfur
433.          ChestShop.shop.create.379: true #BrewingStand
434.          ChestShop.shop.create.369: true #BlazeRod
435.          ChestShop.shop.create.4: true #Cobblestone
436.      ChestShop.shop.create.basic:
437.        description: Allows to create a shop that sells basic blocks
438.        children:
439.          ChestShop.shop.create.1: true #Stone
440.          ChestShop.shop.create.2: true #Grass
441.          ChestShop.shop.create.3: true #Dirt
442.          ChestShop.shop.create.4: true #Cobble
443.          ChestShop.shop.create.5: true #Planks
444.          ChestShop.shop.create.12: true #Sand
445.          ChestShop.shop.create.13: true #Gravel
446.          ChestShop.shop.create.17: true #Log
447.          ChestShop.shop.create.20: true #Glass
448.          ChestShop.shop.create.22: true #LapisBlock
449.          ChestShop.shop.create.24: true #SandStone
450.          ChestShop.shop.create.41: true #GoldBlock
451.          ChestShop.shop.create.42: true #IronBlock
452.          ChestShop.shop.create.45: true #BrickBlock
453.          ChestShop.shop.create.46: true #TNT
454.          ChestShop.shop.create.47: true #BookShelf
455.          ChestShop.shop.create.48: true #MossyCobble
456.          ChestShop.shop.create.49: true #Obsidian
457.          ChestShop.shop.create.50: true #Torch
458.          ChestShop.shop.create.54: true #Chest
459.          ChestShop.shop.create.57: true #DiamondBlock
460.          ChestShop.shop.create.65: true #Ladder
461.          ChestShop.shop.create.79: true #Ice
462.          ChestShop.shop.create.80: true #SnowBlock
463.          ChestShop.shop.create.82: true #ClayBlock
464.          ChestShop.shop.create.91: true #JackoLantern
465.          ChestShop.shop.create.98: true #StoneBrick
466.          ChestShop.shop.create.99: true #MushroomBlock1
467.          ChestShop.shop.create.100: true #MushroomBlock2
468.          ChestShop.shop.create.101: true #IronBar
469.          ChestShop.shop.create.102: true #GlassPane
470.          ChestShop.shop.create.110: true #Mycelium
471.          ChestShop.shop.create.121: true #EndStone
472.          ChestShop.shop.create.122: true #DragonEgg
473.          ChestShop.shop.create.146: true #Trapped Chest
474.          ChestShop.shop.create.155: true #Block of Quartz
475.          ChestShop.shop.create.3:2: true #Podzol
476.      ChestShop.shop.create.doors:
477.        descriptions: Allows to create a shop that sells doors
478.        children:
479.          ChestShop.shop.create.324: true #WoodDoor
480.          ChestShop.shop.create.330: true #IronDoor
481.          ChestShop.shop.create.96: true #TrapDoor
482.      ChestShop.shop.create.music:
483.        description: Allows to create a shop that sells music items
484.        children:
485.          ChestShop.shop.create.25: true #Noteblock
486.          ChestShop.shop.create.84: true #Jukebox
487.          ChestShop.shop.create.2256: true #Disk13
488.          ChestShop.shop.create.2257: true #Diskcat
489.          ChestShop.shop.create.2258: true #Diskblocks
490.          ChestShop.shop.create.2259: true #Diskchirp
491.          ChestShop.shop.create.2260: true #Diskfar
492.          ChestShop.shop.create.2261: true #Diskmall
493.          ChestShop.shop.create.2262: true #Diskmellohi
494.          ChestShop.shop.create.2263: true #Diskstal
495.          ChestShop.shop.create.2264: true #Diskstrad
496.          ChestShop.shop.create.2265: true #Diskward
497.          ChestShop.shop.create.2266: true #Disk11
498.          ChestShop.shop.create.2267: true #Diskwait
499.      ChestShop.shop.create.vehicles:
500.        description: Allows to create a shop that sells vehicles
501.        children:
502.          ChestShop.shop.create.328: true #Minecart
503.          ChestShop.shop.create.333: true #Boat
504.          ChestShop.shop.create.342: true #StorageCart
505.          ChestShop.shop.create.343: true #PoweredCart
506.          ChestShop.shop.create.407: true #TNT cart
507.          ChestShop.shop.create.408: true #Hopper Cart
508.      ChestShop.shop.create.wool:
509.        description: Allows to create a shop that sells wool and dye
510.        children:
511.          ChestShop.shop.create.35: true #Wool
512.          ChestShop.shop.create.351: true #Dyes
513.      ChestShop.shop.create.fence:
514.        description: Allows to create a shop that sells fence
515.        children:
516.          ChestShop.shop.create.85: true #Fence
517.          ChestShop.shop.create.101: true #IronBar
518.          ChestShop.shop.create.107: true #FenceGate
519.          ChestShop.shop.create.113: true #NetherFence
520.      ChestShop.shop.create.bench:
521.        description: Allows to create a shop that sells crafting blocks
522.        children:
523.          ChestShop.shop.create.58: true #WorkBench
524.          ChestShop.shop.create.61: true #Furnace
525.          ChestShop.shop.create.116: true #EnchantingTable
526.          ChestShop.shop.create.379: true #BrewingStand
527.          ChestShop.shop.create.380: true #Cauldron
528.          ChestShop.shop.create.145: true #Anvil
529.      ChestShop.shop.create.unobtainables:
530.        description: Allows to create a shop that sells unobtainable items
531.        children:
532.          ChestShop.shop.create.7: true #Bedrock
533.          ChestShop.shop.create.8: true #Water
534.          ChestShop.shop.create.9: true #StillWater
535.          ChestShop.shop.create.10: true #Lava
536.          ChestShop.shop.create.11: true #StillLava
537.          ChestShop.shop.create.19: true #Sponge
538.          ChestShop.shop.create.26: true #PlacedBed
539.          ChestShop.shop.create.30: true #Cobweb
540.          ChestShop.shop.create.34: true #PistonHead
541.          ChestShop.shop.create.36: true #MovingPiston
542.          ChestShop.shop.create.43: true #Doublestep
543.          ChestShop.shop.create.51: true #Fire
544.          ChestShop.shop.create.52: true #MobSpawner
545.          ChestShop.shop.create.55: true #PlacedRedstone
546.          ChestShop.shop.create.59: true #GrowingCrop
547.          ChestShop.shop.create.60: true #TilledDirt
548.          ChestShop.shop.create.62: true #LitFurnace
549.          ChestShop.shop.create.63: true #SignPost
550.          ChestShop.shop.create.64: true #PlacedDoor
551.          ChestShop.shop.create.68: true #WallSign
552.          ChestShop.shop.create.71: true #PlacedIronDoor
553.          ChestShop.shop.create.73: true #GlowingRedstoneOre
554.          ChestShop.shop.create.75: true #RedstoneTorchOff
555.          ChestShop.shop.create.78: true #FallenSnow
556.          ChestShop.shop.create.83: true #PlacedReeds
557.          ChestShop.shop.create.90: true #Portal
558.          ChestShop.shop.create.92: true #PlacedCake
559.          ChestShop.shop.create.93: true #PlacedRepeaterOff
560.          ChestShop.shop.create.94: true #PlacedRepeaterOn
561.          ChestShop.shop.create.95: true #LockedChest
562.          ChestShop.shop.create.97: true #MonsterEgg
563.          ChestShop.shop.create.104: true #PumpkinStalk
564.          ChestShop.shop.create.105: true #MelonStalk
565.          ChestShop.shop.create.115: true #GrowingNetherwart
566.          ChestShop.shop.create.117: true #BrewingBlock
567.          ChestShop.shop.create.118: true #PlacedCauldron
568.          ChestShop.shop.create.119: true #EndPortal
569.          ChestShop.shop.create.120: true #EndPortalBlock
570.      ChestShop.shop.create.cauldronitems:
571.        description: Allows to create a shop that sells cauldron recipies
572.        children:
573.          ChestShop.shop.create.265: true #IronIngot
574.          ChestShop.shop.create.380: true #Cauldron
575.          ChestShop.shop.create.259: true #Flint&Steel
576.          ChestShop.shop.create.17: true #Log
577.          ChestShop.shop.create.2: true #Grass
578.          ChestShop.shop.create.6: true #Sapling
579.          ChestShop.shop.create.18: true #LeafBlock
580.          ChestShop.shop.create.264: true #Diamond
581.          ChestShop.shop.create.4: true #Cobblestone
582.          ChestShop.shop.create.48: true #MossyCobble
583.          ChestShop.shop.create.80: true #SnowBlock
584.          ChestShop.shop.create.326: true #WaterBucket
585.          ChestShop.shop.create.79: true #Ice
586.          ChestShop.shop.create.325: true #Bucket
587.          ChestShop.shop.create.3: true #Dirt
588.          ChestShop.shop.create.78: true #FallenSnow
589.          ChestShop.shop.create.338: true #SugarCane
590.          ChestShop.shop.create.82: true #ClayBlock
591.          ChestShop.shop.create.362: true #MelonSeeds
592.          ChestShop.shop.create.351:3 true #CocoaBeans
593.          ChestShop.shop.create.327: true #LavaBucket
594.          ChestShop.shop.create.1: true #Stone
595.          ChestShop.shop.create.45: true #BrickBlock
596.          ChestShop.shop.create.50: true #Torch
597.          ChestShop.shop.create.12: true #Sand
598.          ChestShop.shop.create.20: true #Glass
599.          ChestShop.shop.create.81: true #Cactus
600.          ChestShop.shop.create.298: true #LeatherHelm
601.          ChestShop.shop.create.299: true #LeatherChestplate
602.          ChestShop.shop.create.300: true #LeatherLeggings
603.          ChestShop.shop.create.301: true #LeatherBoots
604.          ChestShop.shop.create.101: true #IronBar
605.          ChestShop.shop.create.302: true #ChainHelm
606.          ChestShop.shop.create.303: true #ChainChestplate
607.          ChestShop.shop.create.304: true #ChainLeggings
608.          ChestShop.shop.create.305: true #ChainBoots
609.          ChestShop.shop.create.49: true #Obsidian
610.          ChestShop.shop.create.331: true #RedstoneDust
611.          ChestShop.shop.create.22: true #LapisBlock
612.          ChestShop.shop.create.341: true #Slimeball
613.          ChestShop.shop.create.106: true #Vines
614.          ChestShop.shop.create.111: true #LilyPad
615.          ChestShop.shop.create.98: true #StoneBrick
616.          ChestShop.shop.create.348: true #GlowstoneDust
617.          ChestShop.shop.create.289: true #Sulfur
618.          ChestShop.shop.create.377: true #BlazePowder
619.          ChestShop.shop.create.257: true #IronPick
620.          ChestShop.shop.create.93:3: true #ChiseledStoneBrick
621.          ChestShop.shop.create.266: true #GoldIngot
622.          ChestShop.shop.create.87: true #NetherRack
623.          ChestShop.shop.create.89: true #GlowStone
624.          ChestShop.shop.create.113: true #NetherFence
625.          ChestShop.shop.create.372: true #NetherWart
626.          ChestShop.shop.create.112: true #NetherBrickBlock
627.          ChestShop.shop.create.88: true #SoulSand
628.          ChestShop.shop.create.57: true #DiamondBlock
629.          ChestShop.shop.create.368: true #EnderPearl
630.          ChestShop.shop.create.369: true #BlazeRod
631.          ChestShop.shop.create.121: true #EndStone
632.      ChestShop.shop.create.transmutation:
633.        description: Allows to create a shop that sells transmuted items
634.        children:
635.          ChestShop.shop.create.22: true #LapisBlock
636.          ChestShop.shop.create.264: true #Diamond
637.          ChestShop.shop.create.263: true #Coal
638.          ChestShop.shop.create.15: true #IronOre
639.          ChestShop.shop.create.265: true #IronIngot
640.          ChestShop.shop.create.266: true #GoldIngot