Set bonus
A set bonus is an extra effect that some armor gives when several pieces of the same material are worn together. Set bonuses belong to a wider family of equipment intrinsics: built-in abilities of the pack's alloy equipment and jewelry that are shown in the tooltip as glyphs rather than words, such as
,
and
.
The developer designed the alloys so that "every player, even after they kill the dragon, will choose different armor depending on their preferences", and later wrote that each tier's armor, tool and weapon intrinsics should be "more varied and distinct".[1][2]
Tooltips
Intrinsics appear as colored lines in the item's tooltip, made of the pack's custom glyphs. The developer chose symbols over text on purpose, so that players have to experiment and ask each other what they mean.[3] A tooltip can contain these sections:
- Per-piece lines directly under the armor values, for effects every piece has on its own.
- Set Bonus: for effects that need the full set of four pieces.
- Per Equipment Bonus: for effects that grow with each extra piece (shakudo).
- Elytra Bonus: for effects of an alloy elytra.
- When Blocking: for weapons that can block (claymores).
| Glyph | Name | Meaning |
|---|---|---|
| Warding | Slows and burns nearby undead. The number is the level. | |
| Apotropaic | Maximum warding ( | |
| Electrum | On armor, +1 warding per piece. On tools, Fortune. | |
| Doom | Damages nearby creatures that have Weakness. | |
| Healing on a timer | Hearts gained every so many seconds, such as divinity's absorption hearts. | |
| Cleanse | Removes harmful effects. | |
| Magic protection | Protection points against magic damage. | |
| Weakness | The weapon inflicts Weakness (adamant weapons). | |
| Smelting | The tool smelts what it mines (adamant tools). | |
| Permanent effect | An effect that lasts while the item is worn, as on jewelry. |
Set bonuses
| Set | Per piece | Set bonus (all four pieces) |
|---|---|---|
| Electrum armor | Divinity: | |
| Adamant armor | Divinity: | |
| Shakudo armor | A different cleanse on each piece, |
None; the bonus is per piece |
The electrum and adamant set bonuses are only active when all four pieces of the same material are worn.[4] Only players benefit from armor intrinsics that run on timers; the pieces are counted with per-player scores that are reset every tick.[5]
Shakudo regeneration
Each shakudo armor piece, including the Shakudo Elytra, adds 1 to the wearer's shakudo count. Depending on the count, the wearer receives Regeneration for 3 seconds on a repeating timer:[6][7][8]
| Count | Effect | Every |
|---|---|---|
| 1 | Regeneration I | 30 s |
| 2 | Regeneration I | 26 s |
| 3 | Regeneration I | 22 s |
| 4 | Regeneration I | 18 s |
| 5 | Regeneration II | 20 s |
| 6 | Regeneration II | 16 s |
| 7 | Regeneration II | 12 s |
| 8 | Regeneration II | 8 s |
The tooltip shows this as
(00:30) on each piece, with a Per Equipment Bonus of
-(00:04). The shakudo elytra's tooltip promises an Elytra Bonus of
-(00:10), and the pack has an enchantment, matcha:shakudo_elytra, that adds 5 to the count. However, the shakudo elytra itself carries the ordinary per-piece intrinsic, which adds only 1. Since the elytra takes the chest slot, a player can wear at most four shakudo pieces, and counts 5 to 8 are not reached.[9][10]
Intrinsic enchantments
Under the hood, every equipment intrinsic is a custom enchantment in the pack's matcha namespace, such as matcha:warding_1, matcha:adamant_armour or matcha:cleanse_armor_chest. Their descriptions are the glyph lines, which is why the tooltip shows symbols in place of an enchantment name and level.[11] Most of them run a function every tick while the item is in the right slot. Some apply an effect straight away, and others add to a score that a timer reads later (every 0.5, 1, 3 or 30 seconds, or on shakudo's own timers).
Applying intrinsics after smithing
Alloy equipment is made in a smithing table by upgrading a base item, and the upgraded item keeps the base item's enchantments. To keep those enchantments and add the alloy's intrinsics without one overwriting the other, smithed items leave the table with their intrinsics stored the way an enchanted book stores enchantments, plus a has_intrinsic_enchants marker. The intrinsics are then applied as soon as the item enters the player's inventory:[12][13]
- Picking up or crafting a marked item triggers a hidden advancement, which runs the processing function.
- The function takes the first marked item in the player's inventory and copies its current enchantments.
- For each of the pack's intrinsics and each vanilla enchantment, it compares the level already on the item with the stored level, and keeps the higher one.[14]
- The item's enchantments are replaced with the merged set, the stored copy is deleted and the marker is cleared.[15]
- If another marked item is still in the inventory, the process repeats.
For example, smithing an iron sword with Sharpness II and Unbreaking III into a Silver Sword gives a sword with Sharpness II, Unbreaking III, Smite III and
1. Because the merge writes the enchantments directly, it is not limited by the usual rules about incompatible enchantments.
Jewelry and a few other items, such as the Nazar, have their intrinsics as ordinary enchantments from the start and skip this step.
Exclusivity
Each category of intrinsic is exclusive within itself, so an anvil can't put two on one item:[16][17]
- Weapon intrinsics: the four warding levels, the shakudo life steal and the adamant Weakness.
- Armor intrinsics: electrum, shakudo and adamant armor.
History
| 1.10 | Added the "Set Bonus", "Per Equipment Bonus" and "Elytra Bonus" tooltip headers. Shakudo gained per-piece regeneration, the electrum set bonus was buffed and made clearer, and the adamant set bonus was slightly nerfed. |
|---|---|
| 1.12 | Fixed electrum, adamant and shakudo armor causing severe lag in multiplayer. |
| 1.12.1-alpha | The electrum, shakudo and adamant intrinsics became exclusive with each other.
Fixed enchantments being overwritten when smithing, by applying intrinsics after the item is made. Adamant and electrum intrinsics no longer apply to every player on a server. Intrinsic enchantments became glyph-only in the tooltip. |
| 1.12.2 | Added new intrinsic and effect glyphs, made by Voxybuns.
Adamant's intrinsic was reworked into Doom, and the full electrum set was given |
See also
Notes
- ↑ The shakudo elytra still only counts as one shakudo piece in the current code; see Shakudo regeneration.
References
- ↑ Klei Wright, "Minecraft punishes casual players. I made a datapack to fix it." (YouTube)
- "The goal with these sets was to make each option enticing enough that every player will have a different idea on what the best set and combination is."
- ↑ Matcha Flavoured 1.12.2 release notes
- "A tier's armour, tool, and weapon intriniscs should be more varried and distinct. This will be the ethos going forward."
- ↑ Matcha Flavoured 1.12.1-alpha release notes
- "I want players to ask their friends "What the cross symbol mean?" I think that stuff is fun."
- ↑
divinity/on restart.mcfunction - ↑
function/stopwatches.mcfunction - ↑
enchantment effects/shakudo armour.mcfunction - ↑
function/stopwatches.mcfunction - ↑
shakudo regen 1/shakudo regen.mcfunction - ↑
smithing/shakudo elytra.json - ↑
enchantment/shakudo elytra.json - ↑
enchantment/warding 1.json - ↑
mechanics/intrinsic enchants obtained.json - ↑
intrinsic enchants/process intrinsic enchants.mcfunction - ↑
intrinsic enchants/select higher level.mcfunction - ↑
intrinsic enchants/apply intrinsic enchants.mcfunction - ↑
exclusive set/intrinsic weapon.json - ↑
exclusive set/intrinsic armor.json
| Mechanics |
|
|---|---|
| Warding items | |
| Gems | |
| Jewelry | |
| Other | |