-
Notifications
You must be signed in to change notification settings - Fork 68
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
b219340
commit ff1d79c
Showing
20 changed files
with
160 additions
and
11 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
src/generated/resources/data/minecraft/tags/entity_types/freeze_immune_entity_types.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 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"touhou_little_maid:fairy" | ||
] | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/data/minecraft/tags/entity_types/impact_projectiles.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 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"touhou_little_maid:danmaku" | ||
] | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/data/minecraft/tags/entity_types/powder_snow_walkable_mobs.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 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"touhou_little_maid:fairy" | ||
] | ||
} |
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
21 changes: 21 additions & 0 deletions
21
src/main/java/com/github/tartaricacid/touhoulittlemaid/datagen/tag/EntityTypeGenerator.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,21 @@ | ||
package com.github.tartaricacid.touhoulittlemaid.datagen.tag; | ||
|
||
import com.github.tartaricacid.touhoulittlemaid.TouhouLittleMaid; | ||
import com.github.tartaricacid.touhoulittlemaid.init.InitEntities; | ||
import net.minecraft.data.DataGenerator; | ||
import net.minecraft.data.tags.EntityTypeTagsProvider; | ||
import net.minecraft.tags.EntityTypeTags; | ||
import net.minecraftforge.common.data.ExistingFileHelper; | ||
|
||
public class EntityTypeGenerator extends EntityTypeTagsProvider { | ||
public EntityTypeGenerator(DataGenerator generator, ExistingFileHelper existingFileHelper) { | ||
super(generator, TouhouLittleMaid.MOD_ID, existingFileHelper); | ||
} | ||
|
||
@Override | ||
public void addTags() { | ||
tag(EntityTypeTags.IMPACT_PROJECTILES).add(InitEntities.DANMAKU.get()); | ||
tag(EntityTypeTags.POWDER_SNOW_WALKABLE_MOBS).add(InitEntities.FAIRY.get()); | ||
tag(EntityTypeTags.FREEZE_IMMUNE_ENTITY_TYPES).add(InitEntities.FAIRY.get()); | ||
} | ||
} |
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
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/touhou_little_maid/models/item/tacz_gun_icon.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": "item/generated", | ||
"textures": { | ||
"layer0": "touhou_little_maid:item/tacz_gun_icon" | ||
} | ||
} |
Binary file added
BIN
+262 Bytes
src/main/resources/assets/touhou_little_maid/textures/item/tacz_gun_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+283 KB
(100%)
src/main/resources/assets/touhou_little_maid/tlm_custom_pack/touhou_little_maid-1.0.0.zip
Binary file not shown.
7 changes: 7 additions & 0 deletions
7
src/main/resources/data/minecraft/tags/items/piglin_loved.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,7 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"touhou_little_maid:servant_bell", | ||
"touhou_little_maid:trumpet" | ||
] | ||
} |
33 changes: 33 additions & 0 deletions
33
src/main/resources/data/touhou_little_maid/recipes/altar/craft_cchess.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,33 @@ | ||
{ | ||
"type": "touhou_little_maid:altar_crafting", | ||
"output": { | ||
"type": "minecraft:item", | ||
"nbt": { | ||
"Item": { | ||
"id": "touhou_little_maid:cchess", | ||
"Count": 1 | ||
} | ||
} | ||
}, | ||
"power": 0.1, | ||
"ingredients": [ | ||
{ | ||
"tag": "minecraft:planks" | ||
}, | ||
{ | ||
"tag": "minecraft:planks" | ||
}, | ||
{ | ||
"tag": "minecraft:planks" | ||
}, | ||
{ | ||
"tag": "forge:dyes/black" | ||
}, | ||
{ | ||
"tag": "forge:dyes/red" | ||
}, | ||
{ | ||
"tag": "forge:gems/diamond" | ||
} | ||
] | ||
} |
33 changes: 33 additions & 0 deletions
33
src/main/resources/data/touhou_little_maid/recipes/altar/craft_wchess.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,33 @@ | ||
{ | ||
"type": "touhou_little_maid:altar_crafting", | ||
"output": { | ||
"type": "minecraft:item", | ||
"nbt": { | ||
"Item": { | ||
"id": "touhou_little_maid:wchess", | ||
"Count": 1 | ||
} | ||
} | ||
}, | ||
"power": 0.1, | ||
"ingredients": [ | ||
{ | ||
"tag": "minecraft:planks" | ||
}, | ||
{ | ||
"tag": "minecraft:planks" | ||
}, | ||
{ | ||
"tag": "minecraft:planks" | ||
}, | ||
{ | ||
"tag": "forge:dyes/black" | ||
}, | ||
{ | ||
"tag": "forge:dyes/white" | ||
}, | ||
{ | ||
"tag": "forge:gems/emerald" | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
src/main/resources/data/touhou_little_maid/recipes/entity_id_copy.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,14 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:leather" | ||
}, | ||
{ | ||
"item": "minecraft:paper" | ||
} | ||
], | ||
"result": { | ||
"item": "touhou_little_maid:entity_id_copy" | ||
} | ||
} |