mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
start on advancements
This commit is contained in:
parent
0b1036009e
commit
43e376adc0
5 changed files with 90 additions and 2 deletions
|
@ -28,13 +28,14 @@ import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
|||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
|
||||
@Mod(modid = NaturesAura.MOD_ID, name = NaturesAura.MOD_NAME, version = NaturesAura.VERSION)
|
||||
@Mod(modid = NaturesAura.MOD_ID, name = NaturesAura.MOD_NAME, version = NaturesAura.VERSION, dependencies = NaturesAura.DEPS)
|
||||
public final class NaturesAura {
|
||||
|
||||
public static final String MOD_ID = "naturesaura";
|
||||
public static final String PROXY_LOCATION = "de.ellpeck." + MOD_ID + ".proxy.";
|
||||
public static final String MOD_NAME = "Nature's Aura";
|
||||
public static final String VERSION = "@VERSION@";
|
||||
public static final String DEPS = "required:patchouli;";
|
||||
|
||||
public static final Logger LOGGER = LogManager.getLogger(MOD_NAME);
|
||||
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "patchouli:guide_book"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancement.naturesaura.get_book"
|
||||
},
|
||||
"description": {
|
||||
"translate": "advancement.naturesaura.get_book.desc"
|
||||
}
|
||||
},
|
||||
"parent": "naturesaura:root",
|
||||
"criteria": {
|
||||
"book": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "patchouli:guide_book"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "naturesaura:gold_leaf"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancement.naturesaura.gold_leaf"
|
||||
},
|
||||
"description": {
|
||||
"translate": "advancement.naturesaura.gold_leaf.desc"
|
||||
}
|
||||
},
|
||||
"parent": "naturesaura:get_book",
|
||||
"criteria": {
|
||||
"book": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "naturesaura:gold_leaf"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
28
src/main/resources/assets/naturesaura/advancements/root.json
Normal file
28
src/main/resources/assets/naturesaura/advancements/root.json
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "naturesaura:eye"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancement.naturesaura.root"
|
||||
},
|
||||
"description": {
|
||||
"translate": "advancement.naturesaura.root.desc"
|
||||
},
|
||||
"background": "minecraft:textures/gui/advancements/backgrounds/stone.png",
|
||||
"show_toast": false,
|
||||
"announce_to_chat": false
|
||||
},
|
||||
"criteria": {
|
||||
"book": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "patchouli:guide_book"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -27,4 +27,11 @@ item.naturesaura.aura_cache.name=Aura Cache
|
|||
container.naturesaura.tree_ritual.name=Ritual of the Forest
|
||||
container.naturesaura.altar.name=Natural Altar Infusion
|
||||
|
||||
info.naturesaura.aura_in_area=Aura Around
|
||||
info.naturesaura.aura_in_area=Aura Around
|
||||
|
||||
advancement.naturesaura.root=Nature's Aura
|
||||
advancement.naturesaura.root.desc=Becoming a magical botanist
|
||||
advancement.naturesaura.get_book=Pages of discovery
|
||||
advancement.naturesaura.get_book.desc=Create the Book of Natural Aura
|
||||
advancement.naturesaura.gold_leaf=Time = Brilliance
|
||||
advancement.naturesaura.gold_leaf.desc=Create and harvest a Brilliant Tree
|
Loading…
Reference in a new issue