diff --git a/src/main/resources/assets/things/lang/en_us.json b/src/main/resources/assets/things/lang/en_us.json index 1552f03..6ce3b68 100644 --- a/src/main/resources/assets/things/lang/en_us.json +++ b/src/main/resources/assets/things/lang/en_us.json @@ -35,17 +35,17 @@ ], "item.things.displacement_page": "Displacement Page", "item.things.mining_gloves": "Mining Glove", - "item.things.mining_gloves.tooltip": "Grants permanent Haste II", + "item.things.mining_gloves.tooltip": "Grants Momentum II while equipped", "item.things.riot_gauntlet": "Riot Gauntlet", - "item.things.riot_gauntlet.tooltip": "Grants permanent Strength", + "item.things.riot_gauntlet.tooltip": "Grants Strength while equipped", "item.things.infernal_scepter": "Infernal Scepter", - "item.things.infernal_scepter.tooltip": "Shoots fireballs, uses Fire Charges as ammunition", + "item.things.infernal_scepter.tooltip": "Shoots fireballs, using Fire Charges as ammunition", "item.things.gleaming_powder": "Gleaming Powder", "item.things.gleaming_compound": "Gleaming Compound", "item.things.hades_crystal": "Hades Crystal", - "item.things.hades_crystal.tooltip": "Grants permanent Fire Resistance. Wear together with a §fWax Gland §7for extra awesomeness", + "item.things.hades_crystal.tooltip": "Grants Fire Resistance while equipped. Wear together with a §fWax Gland §7for extra awesomeness!", "item.things.enchanted_wax_gland": "Enchanted Wax Gland", - "item.things.enchanted_wax_gland.tooltip": "Makes you float in water. And apparently also really fast", + "item.things.enchanted_wax_gland.tooltip": "Makes you float in water. Apparently also makes you swim really fast", "item.things.item_magnet": "Item Magnet", "item.things.item_magnet.tooltip": [ {"text": "⚡ ", "color": "#8000ff"}, @@ -60,9 +60,9 @@ {"text": "❤", "color": "#EB1D36"} ], "item.things.rabbit_foot_charm": "Rabbit Foot Charm", - "item.things.rabbit_foot_charm.tooltip": "Grants permanent Jump Boost II", + "item.things.rabbit_foot_charm.tooltip": "Grants Jump Boost II while equipped", "item.things.luck_of_the_irish": "Luck of the Irish", - "item.things.luck_of_the_irish.tooltip": "Kinda turns Poisonous Potatoes into Golden Apples", + "item.things.luck_of_the_irish.tooltip": "Kinda makes Poisonous Potatoes taste like Golden Apples", "item.things.socks": "Socks", "item.things.socks.tooltip": [ "Provides increased walking speed and optionally Jump Boost including step-assist. Press ", @@ -85,6 +85,8 @@ "item.things.empty_agglomeration.tooltip": "Combine with two trinkets which share at least one slot to agglomerate them", "effect.things.momentum": "Momentum", + "effect.things.momentum.description": "Increases mining speed. Stacks with Haste.", + "effect.things.momentum.desc": "Increases mining speed. Stacks with Haste.", "enchantment.things.retribution": "Retribution", "enchantment.things.retribution.desc": "Rewards the user with strength upon blocking an attack with their enchanted shield", @@ -196,4 +198,4 @@ "text.config.things.option.effectLevels.miningGloveMomentum": "Mining Glove Momentum Level", "text.config.things.option.effectLevels.mossNecklaceRegen": "Mossy Necklace Regeneration Level", "text.config.things.option.effectLevels.riotGauntletStrength": "Riot Gauntlet Strength Level" -} \ No newline at end of file +} diff --git a/src/main/resources/data/things/recipes/jeed_compat/minecraft/fire_resistance.json b/src/main/resources/data/things/recipes/jeed_compat/minecraft/fire_resistance.json new file mode 100644 index 0000000..f8e32aa --- /dev/null +++ b/src/main/resources/data/things/recipes/jeed_compat/minecraft/fire_resistance.json @@ -0,0 +1,18 @@ +{ + "replace": false, + "type": "jeed:effect_provider", + "effect": "minecraft:fire_resistance", + "providers": [ + { + "item": "things:hades_crystal" + } + ], + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "jeed" + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/things/recipes/jeed_compat/minecraft/jump_boost.json b/src/main/resources/data/things/recipes/jeed_compat/minecraft/jump_boost.json new file mode 100644 index 0000000..ebf7708 --- /dev/null +++ b/src/main/resources/data/things/recipes/jeed_compat/minecraft/jump_boost.json @@ -0,0 +1,21 @@ +{ + "replace": false, + "type": "jeed:effect_provider", + "effect": "minecraft:jump_boost", + "providers": [ + { + "item": "things:rabbit_foot_charm" + }, + { + "item": "things:socks" + } + ], + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "jeed" + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/things/recipes/jeed_compat/minecraft/luck.json b/src/main/resources/data/things/recipes/jeed_compat/minecraft/luck.json new file mode 100644 index 0000000..fa4adb7 --- /dev/null +++ b/src/main/resources/data/things/recipes/jeed_compat/minecraft/luck.json @@ -0,0 +1,18 @@ +{ + "replace": false, + "type": "jeed:effect_provider", + "effect": "minecraft:luck", + "providers": [ + { + "item": "things:luck_of_the_irish" + } + ], + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "jeed" + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/things/recipes/jeed_compat/minecraft/night_vision.json b/src/main/resources/data/things/recipes/jeed_compat/minecraft/night_vision.json new file mode 100644 index 0000000..26cd8bc --- /dev/null +++ b/src/main/resources/data/things/recipes/jeed_compat/minecraft/night_vision.json @@ -0,0 +1,18 @@ +{ + "replace": false, + "type": "jeed:effect_provider", + "effect": "minecraft:night_vision", + "providers": [ + { + "item": "things:monocle" + } + ], + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "jeed" + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/things/recipes/jeed_compat/minecraft/regeneration.json b/src/main/resources/data/things/recipes/jeed_compat/minecraft/regeneration.json new file mode 100644 index 0000000..a9dcf73 --- /dev/null +++ b/src/main/resources/data/things/recipes/jeed_compat/minecraft/regeneration.json @@ -0,0 +1,21 @@ +{ + "replace": false, + "type": "jeed:effect_provider", + "effect": "minecraft:regeneration", + "providers": [ + { + "item": "things:moss_necklace" + }, + { + "item": "things:luck_of_the_irish" + } + ], + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "jeed" + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/things/recipes/jeed_compat/minecraft/saturation.json b/src/main/resources/data/things/recipes/jeed_compat/minecraft/saturation.json new file mode 100644 index 0000000..7899bd7 --- /dev/null +++ b/src/main/resources/data/things/recipes/jeed_compat/minecraft/saturation.json @@ -0,0 +1,18 @@ +{ + "replace": false, + "type": "jeed:effect_provider", + "effect": "minecraft:saturation", + "providers": [ + { + "item": "things:luck_of_the_irish" + } + ], + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "jeed" + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/things/recipes/jeed_compat/minecraft/strength.json b/src/main/resources/data/things/recipes/jeed_compat/minecraft/strength.json new file mode 100644 index 0000000..ec92881 --- /dev/null +++ b/src/main/resources/data/things/recipes/jeed_compat/minecraft/strength.json @@ -0,0 +1,18 @@ +{ + "replace": false, + "type": "jeed:effect_provider", + "effect": "minecraft:strength", + "providers": [ + { + "item": "things:riot_gauntlet" + } + ], + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "jeed" + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/things/recipes/jeed_compat/things/momentum.json b/src/main/resources/data/things/recipes/jeed_compat/things/momentum.json new file mode 100644 index 0000000..2bc3da5 --- /dev/null +++ b/src/main/resources/data/things/recipes/jeed_compat/things/momentum.json @@ -0,0 +1,17 @@ +{ + "type": "jeed:effect_provider", + "effect": "things:momentum", + "providers": [ + { + "item": "things:mining_gloves" + } + ], + "fabric:load_conditions": [ + { + "condition": "fabric:all_mods_loaded", + "values": [ + "jeed" + ] + } + ] +} \ No newline at end of file