Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JEED compatibility #43

Merged
merged 7 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/main/resources/assets/mcdar/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@
"effect.mcdar.shielding": "Shielding",
"effect.mcdar.soul_protection": "Soul Protection",
"effect.mcdar.stunned": "Stunned",
"effect.mcdar.chrmed": "Charmed",

"effect.mcdar.shielding.description": "Protects you against all projectiles, similar to a Shield. \n\nThis effect is obtained by standing in a lingering cloud of Shielding created by a Totem of Shielding."
"effect.mcdar.soul_protection.description": "Shields you against all forms of lethal damage, similar to a Totem of Undying. When taking a lethal blow, the effect will instead prevent death and provide Absorption II, Regeneration II, and Fire Resistance II. \n\nThis effect is obtained by standing in a lingering cloud of Soul Protection created by a Totem of Soul Protection."
"effect.mcdar.stunned.description": "Completely freezes the acceleration and animation of mobs; and disables most actions, including attacking and picking up items. \n\nSome mobs can resist the effect: Witches will still be able to drink potions and players will still be able to drop items."
"effect.mcdar.charmed.description": "Inflicted neutral and hostile mobs will seek out other entities to attack. \n\nCharmed entities can attack each other, and they may also attack their inflicter. Once the effect expires, the entity will take damage. \n\nThis effect can only be inflicted onto entities."

"enchantment.mcdar.beast_boss": "Beast Boss",
"enchantment.mcdar.beast_burst": "Beast Burst",
Expand Down Expand Up @@ -194,4 +200,4 @@
"tooltip_info_item.mcdar.wonderful_wheat_1": "This item has the faint smell of an",
"tooltip_info_item.mcdar.wonderful_wheat_2": "open field, baked bread, and freshly",
"tooltip_info_item.mcdar.wonderful_wheat_3": "cut crops."
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "jeed:effect_provider",
"effect": "mcdar:charmed",
"providers": [
{
"item": "mcdar:love_medallion"
}
],
"fabric:load_conditions": [
{
"condition": "fabric:all_mods_loaded",
"values": [
"jeed"
]
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "jeed:effect_provider",
"effect": "mcdar:shielding",
"providers": [
{
"item": "mcdar:totem_of_shielding"
}
],
"fabric:load_conditions": [
{
"condition": "fabric:all_mods_loaded",
"values": [
"jeed"
]
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "jeed:effect_provider",
"effect": "mcdar:soul_protection",
"providers": [
{
"item": "mcdar:totem_of_soul_protection"
}
],
"fabric:load_conditions": [
{
"condition": "fabric:all_mods_loaded",
"values": [
"jeed"
]
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "jeed:effect_provider",
"effect": "mcdar:stunned",
"providers": [
{
"item": "mcdar:shock_powder"
}
],
"fabric:load_conditions": [
{
"condition": "fabric:all_mods_loaded",
"values": [
"jeed"
]
}
]
}
6 changes: 6 additions & 0 deletions src/main/resources/datapacks/jeed_compat/pack.mcmeta
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"pack": {
"description": "MCDAR JEED compatibility",
"pack_format": 15
}
}
Loading