Compare commits
2 Commits
4c6180e8f1
...
207423e987
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
207423e987 | ||
|
|
97198e9e17 |
45
items.md
Normal file
45
items.md
Normal 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?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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..."
|
||||||
],
|
],
|
||||||
|
|||||||
@ -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."
|
||||||
],
|
],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user