Compare commits

..

2 Commits

Author SHA1 Message Date
Jackson Hodge
207423e987 item work 2026-04-15 21:04:39 -05:00
Jackson Hodge
97198e9e17 Exclude mythic essence from mythic essence rolls 2026-04-15 11:04:28 -05:00
4 changed files with 51 additions and 3 deletions

45
items.md Normal file
View File

@ -0,0 +1,45 @@
# Brainstorming
## Piglin set
Some sort of gold focused set? maybe just a pickaxe & sword?
extra gold drops from piglins
extra gold drops in the nether?
Greed or midas related name? Hubris?
## Misc (not a set)
- Lamenting Malice (crossbow OR bow that drops extra ghast tears)
- Roman Candle (Sword with extra fortune when killing blazes)
- Axe with wither skeleton head fortune
> Cortex Rampage?
> Chaotic Solutions?
> Demon Days?
# Set Ideas
## Generic
All tools / armor are unbreakable, high effiency, nothing special
Armor should probably only be like prot 6
**Full set effect**: Maybe the full armor set could give you a particle effect?

View File

@ -11,7 +11,10 @@ public class MythicEssence {
private static final List<MythicItem> mythics = MythicItem.getMythics(); private static final List<MythicItem> mythics = MythicItem.getMythics();
public static ItemStack rollMythic() { public static ItemStack rollMythic() {
int mythic_id = random.nextInt(mythics.size()); int mythic_id;
do {
mythic_id = random.nextInt(mythics.size());
} while (mythic_id == 0);
return mythics.get(mythic_id).item; return mythics.get(mythic_id).item;
} }
} }

View File

@ -4,7 +4,7 @@
"UNBREAKING" : 9, "UNBREAKING" : 9,
"EFFICIENCY" : 9 "EFFICIENCY" : 9
}, },
"Name" : "Terra Pickaxe", "Name" : "§2§lTerra§r §fPickaxe",
"Lore" : [ "Lore" : [
"and the land thrashes in furious pain..." "and the land thrashes in furious pain..."
], ],

View File

@ -4,7 +4,7 @@
"UNBREAKING" : 10, "UNBREAKING" : 10,
"EFFICIENCY" : 9 "EFFICIENCY" : 9
}, },
"Name" : "Terra Shovel", "Name" : "§2§lTerra§r§f Shovel",
"Lore" : [ "Lore" : [
"All will eventually return to Terra." "All will eventually return to Terra."
], ],