-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e4b998f
commit 00a9ca2
Showing
12 changed files
with
138 additions
and
22 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
21 changes: 21 additions & 0 deletions
21
shared/src/main/generated/data/waystones/tags/blocks/dyed_sharestones.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,21 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"waystones:white_sharestone", | ||
"waystones:orange_sharestone", | ||
"waystones:magenta_sharestone", | ||
"waystones:light_blue_sharestone", | ||
"waystones:yellow_sharestone", | ||
"waystones:lime_sharestone", | ||
"waystones:pink_sharestone", | ||
"waystones:gray_sharestone", | ||
"waystones:light_gray_sharestone", | ||
"waystones:cyan_sharestone", | ||
"waystones:purple_sharestone", | ||
"waystones:blue_sharestone", | ||
"waystones:brown_sharestone", | ||
"waystones:green_sharestone", | ||
"waystones:red_sharestone", | ||
"waystones:black_sharestone" | ||
] | ||
} |
21 changes: 21 additions & 0 deletions
21
shared/src/main/generated/data/waystones/tags/items/dyed_sharestones.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,21 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"waystones:white_sharestone", | ||
"waystones:orange_sharestone", | ||
"waystones:magenta_sharestone", | ||
"waystones:light_blue_sharestone", | ||
"waystones:yellow_sharestone", | ||
"waystones:lime_sharestone", | ||
"waystones:pink_sharestone", | ||
"waystones:gray_sharestone", | ||
"waystones:light_gray_sharestone", | ||
"waystones:cyan_sharestone", | ||
"waystones:purple_sharestone", | ||
"waystones:blue_sharestone", | ||
"waystones:brown_sharestone", | ||
"waystones:green_sharestone", | ||
"waystones:red_sharestone", | ||
"waystones:black_sharestone" | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
shared/src/main/generated/data/waystones/tags/items/sharestones.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,22 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"waystones:sharestone", | ||
"waystones:white_sharestone", | ||
"waystones:orange_sharestone", | ||
"waystones:magenta_sharestone", | ||
"waystones:light_blue_sharestone", | ||
"waystones:yellow_sharestone", | ||
"waystones:lime_sharestone", | ||
"waystones:pink_sharestone", | ||
"waystones:gray_sharestone", | ||
"waystones:light_gray_sharestone", | ||
"waystones:cyan_sharestone", | ||
"waystones:purple_sharestone", | ||
"waystones:blue_sharestone", | ||
"waystones:brown_sharestone", | ||
"waystones:green_sharestone", | ||
"waystones:red_sharestone", | ||
"waystones:black_sharestone" | ||
] | ||
} |
8 changes: 8 additions & 0 deletions
8
shared/src/main/generated/data/waystones/tags/items/waystones.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,8 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"waystones:waystone", | ||
"waystones:mossy_waystone", | ||
"waystones:sandy_waystone" | ||
] | ||
} |
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
14 changes: 14 additions & 0 deletions
14
shared/src/main/java/net/blay09/mods/waystones/tag/ModBlockTags.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,14 @@ | ||
package net.blay09.mods.waystones.tag; | ||
|
||
import net.blay09.mods.waystones.Waystones; | ||
import net.minecraft.core.registries.Registries; | ||
import net.minecraft.resources.ResourceLocation; | ||
import net.minecraft.tags.TagKey; | ||
import net.minecraft.world.level.block.Block; | ||
|
||
public class ModBlockTags { | ||
public static final TagKey<Block> IS_TELEPORT_TARGET = TagKey.create(Registries.BLOCK, new ResourceLocation(Waystones.MOD_ID, "is_teleport_target")); | ||
public static final TagKey<Block> WAYSTONES = TagKey.create(Registries.BLOCK, new ResourceLocation(Waystones.MOD_ID, "waystones")); | ||
public static final TagKey<Block> SHARESTONES = TagKey.create(Registries.BLOCK, new ResourceLocation(Waystones.MOD_ID, "sharestones")); | ||
public static final TagKey<Block> DYED_SHARESTONES = TagKey.create(Registries.BLOCK, new ResourceLocation(Waystones.MOD_ID, "dyed_sharestones")); | ||
} |
17 changes: 17 additions & 0 deletions
17
shared/src/main/java/net/blay09/mods/waystones/tag/ModItemTags.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 net.blay09.mods.waystones.tag; | ||
|
||
import net.blay09.mods.waystones.Waystones; | ||
import net.minecraft.core.registries.Registries; | ||
import net.minecraft.resources.ResourceLocation; | ||
import net.minecraft.tags.TagKey; | ||
import net.minecraft.world.item.Item; | ||
|
||
public class ModItemTags { | ||
public static final TagKey<Item> BOUND_SCROLLS = TagKey.create(Registries.ITEM, new ResourceLocation(Waystones.MOD_ID, "bound_scrolls")); | ||
public static final TagKey<Item> RETURN_SCROLLS = TagKey.create(Registries.ITEM, new ResourceLocation(Waystones.MOD_ID, "return_scrolls")); | ||
public static final TagKey<Item> WARP_SCROLLS = TagKey.create(Registries.ITEM, new ResourceLocation(Waystones.MOD_ID, "warp_scrolls")); | ||
public static final TagKey<Item> WARP_STONES = TagKey.create(Registries.ITEM, new ResourceLocation(Waystones.MOD_ID, "warp_stones")); | ||
public static final TagKey<Item> WAYSTONES = TagKey.create(Registries.ITEM, new ResourceLocation(Waystones.MOD_ID, "waystones")); | ||
public static final TagKey<Item> SHARESTONES = TagKey.create(Registries.ITEM, new ResourceLocation(Waystones.MOD_ID, "sharestones")); | ||
public static final TagKey<Item> DYED_SHARESTONES = TagKey.create(Registries.ITEM, new ResourceLocation(Waystones.MOD_ID, "dyed_sharestones")); | ||
} |
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