Welcome to the Cloudfall SMP Shop Configuration repository! Here you can contribute to our server's shop by submitting Pull Requests (PRs) with new items or balanced price changes.
If you'd like to add a new item to the shop, please edit the appropriate .yml file (e.g., blocks.yml, drops.yml, miscellaneous.yml) and follow the format below.
[Next ID Number]:
type: item
item:
material: [MATERIAL_NAME] # Must be a valid Spigot/Paper Material name (e.g., CHERRY_LOG)
quantity: [Amount] # How many items the player buys/sells at once
buyPrice: [Price] # Price to buy from the shop
sellPrice: [Price] # Price to sell to the shop (-1 if not sellable)
slot: [Slot Number] # GUI Slot number (0-53)
page: [Page Number] # Optional: If the shop needs multiple pages, specify the page number here 12:
type: item
item:
material: EXPERIENCE_BOTTLE
quantity: 64
buyPrice: 5000
sellPrice: 500
slot: 24- Material Names: Ensure you are using the correct uppercase material names. For example, use
EXPERIENCE_BOTTLEinstead ofBottle o' Enchanting. - Slots: Make sure the
slotyou choose isn't already taken by another item on the samepage. - Prices: Keep the economy balanced! Ridiculous prices will be rejected.
- ID Numbers: Ensure the
[Next ID Number]increments correctly from the last item in the list.
Once you have added your item, commit the changes and open a Pull Request. We will review it and merge it if everything looks good!