magic_dust red_dust - magemonkeystudio/divinity GitHub Wiki

๐ŸŸฅ Red Magic Dust

This is an example configuration for a powerful Magic Dust item that boosts socketing success rates universally across all modules.


๐Ÿ“ File Location

plugins/Divinity/modules/magic_dust/items/red_dust.yml

๐Ÿงช Example: red_dust.yml

material: REDSTONE
name: '&cRed Magic Dust'
lore: []
tier: common
enchanted: true
item-flags:
  - '*'
level:
  min: 5
  max: 5
uses-by-level:
  '1': 3
rate-increasing:
  max-value: 100
  values-by-level:
    '1': 5
target-requirements:
  type:
    - '*'
  module:
    - '*'
  level:
    '1': 1

๐Ÿ”‘ Key Sections

  • material: The base Minecraft item (REDSTONE).
  • name: In-game display name, using color codes.
  • tier: Category for organizing dust items.
  • enchanted: If true, gives the item a visual enchantment glint.
  • uses-by-level: Number of uses consumed when applied.
  • rate-increasing:
    • max-value: The cap for how much success rate this dust can add.
    • values-by-level: Maps dust level to bonus rate.
  • target-requirements:
    • module: '*' means applies to all modules (universal).
    • type: '*' allows all item types.
    • level: Restricts based on item level.

โฌ… Return to Magic Dust Hub