-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Scythe, New Ring, tons of changes, oh my god
- Loading branch information
1 parent
1c5a956
commit d537a8e
Showing
83 changed files
with
864 additions
and
725 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/malum/models/item/ring_of_echoing_arcana.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "minecraft:item/generated", | ||
"textures": { | ||
"layer0": "malum:item/ring_of_echoing_arcana" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
src/generated/resources/data/malum/recipes/spirit_infusion/ring_of_echoing_arcana.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"type": "malum:spirit_infusion", | ||
"extra_items": [ | ||
{ | ||
"count": 16, | ||
"item": "malum:null_slate" | ||
}, | ||
{ | ||
"count": 8, | ||
"item": "malum:mnemonic_fragment" | ||
} | ||
], | ||
"input": { | ||
"count": 1, | ||
"item": "malum:ring_of_manaweaving" | ||
}, | ||
"output": { | ||
"item": "malum:ring_of_echoing_arcana" | ||
}, | ||
"spirits": [ | ||
{ | ||
"type": "aqueous", | ||
"count": 32 | ||
}, | ||
{ | ||
"type": "arcane", | ||
"count": 16 | ||
}, | ||
{ | ||
"type": "wicked", | ||
"count": 16 | ||
}, | ||
{ | ||
"type": "eldritch", | ||
"count": 8 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
}, | ||
{ | ||
"type": "eldritch", | ||
"count": 16 | ||
"count": 8 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
}, | ||
{ | ||
"type": "eldritch", | ||
"count": 16 | ||
"count": 8 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/java/com/sammy/malum/common/effect/EchoingArcanaEffect.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.sammy.malum.common.effect; | ||
|
||
import com.sammy.malum.registry.common.*; | ||
import net.minecraft.world.effect.*; | ||
import net.minecraft.world.entity.*; | ||
import net.minecraft.world.entity.ai.attributes.*; | ||
import team.lodestar.lodestone.helpers.*; | ||
|
||
import java.awt.*; | ||
|
||
public class EchoingArcanaEffect extends MobEffect { | ||
public EchoingArcanaEffect() { | ||
super(MobEffectCategory.BENEFICIAL, ColorHelper.getColor(new Color(255, 79, 234))); | ||
addAttributeModifier(AttributeRegistry.ARCANE_RESONANCE.get(), "04448cbf-ee2c-4f36-b71f-e641a312834a", 0.05f, AttributeModifier.Operation.MULTIPLY_TOTAL); | ||
} | ||
|
||
@Override | ||
public void applyEffectTick(LivingEntity entityLivingBaseIn, int amplifier) { | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/java/com/sammy/malum/common/effect/ImminentDeliveranceEffect.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.sammy.malum.common.effect; | ||
|
||
import com.sammy.malum.registry.common.*; | ||
import net.minecraft.world.effect.*; | ||
import net.minecraft.world.entity.*; | ||
import net.minecraft.world.entity.ai.attributes.*; | ||
import team.lodestar.lodestone.helpers.*; | ||
|
||
import java.awt.*; | ||
|
||
public class ImminentDeliveranceEffect extends MobEffect { | ||
public ImminentDeliveranceEffect() { | ||
super(MobEffectCategory.HARMFUL, ColorHelper.getColor(235, 207, 249)); | ||
} | ||
} |
Oops, something went wrong.