-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Major refactor of artefacts to accomodate config optimisations and updates - Broke out some of the necessary code for Fabric and NeoForge - Converted Mixins that could be Events to Events - Removed files that were no longer needed - Updated fzzyconfig to 0.5.9 - Changed to fzzy's maven for fzzyconfig
- Loading branch information
1 parent
e889a9d
commit 30f2972
Showing
134 changed files
with
1,144 additions
and
1,330 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
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
2 changes: 1 addition & 1 deletion
2
common/src/main/java/dev/timefall/mcdar/api/SummoningHelper.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
10 changes: 0 additions & 10 deletions
10
common/src/main/java/dev/timefall/mcdar/artifacts/ArtifactAgilityItem.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
common/src/main/java/dev/timefall/mcdar/artifacts/ArtifactDamagingItem.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
common/src/main/java/dev/timefall/mcdar/artifacts/ArtifactDefensiveItem.java
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
common/src/main/java/dev/timefall/mcdar/artifacts/ArtifactItem.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,17 @@ | ||
package dev.timefall.mcdar.artifacts; | ||
|
||
import dev.timefall.mcdar.config.artifact_types.ArtifactStats; | ||
import net.minecraft.item.Item; | ||
|
||
public class ArtifactItem extends Item { | ||
protected ArtifactStats artifactStats; | ||
|
||
public ArtifactStats mcdar$getStats() { | ||
return artifactStats; | ||
} | ||
|
||
public ArtifactItem(ArtifactStats artifactStats) { | ||
super(new Settings().maxCount(1).maxDamage(artifactStats.mcdar$getDurability())); | ||
this.artifactStats = artifactStats; | ||
} | ||
} |
10 changes: 0 additions & 10 deletions
10
common/src/main/java/dev/timefall/mcdar/artifacts/ArtifactQuiverItem.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
common/src/main/java/dev/timefall/mcdar/artifacts/ArtifactStatusInflictingItem.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
common/src/main/java/dev/timefall/mcdar/artifacts/ArtifactSummoningItem.java
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.