forked from SlimeKnights/TinkersConstruct
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Obtained from melting spiders Right now its just useful in spilling, but I like the idea enough that it will find use in other modifiers
- Loading branch information
1 parent
8fb2764
commit b265660
Showing
14 changed files
with
120 additions
and
7 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
src/generated/resources/data/tconstruct/recipes/smeltery/entity_melting/heads/spider.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,17 @@ | ||
{ | ||
"type": "tconstruct:melting", | ||
"ingredient": [ | ||
{ | ||
"item": "tconstruct:spider_head" | ||
}, | ||
{ | ||
"item": "tconstruct:cave_spider_head" | ||
} | ||
], | ||
"result": { | ||
"fluid": "tconstruct:venom", | ||
"amount": 500 | ||
}, | ||
"temperature": 10, | ||
"time": 53 | ||
} |
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
src/generated/resources/data/tconstruct/recipes/smeltery/entity_melting/spider.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": "tconstruct:entity_melting", | ||
"entity": { | ||
"types": [ | ||
"minecraft:spider", | ||
"minecraft:cave_spider" | ||
] | ||
}, | ||
"result": { | ||
"fluid": "tconstruct:venom", | ||
"amount": 25 | ||
}, | ||
"damage": 2 | ||
} |
12 changes: 12 additions & 0 deletions
12
src/generated/resources/data/tconstruct/recipes/smeltery/melting/venom/eye.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,12 @@ | ||
{ | ||
"type": "tconstruct:melting", | ||
"ingredient": { | ||
"item": "minecraft:spider_eye" | ||
}, | ||
"result": { | ||
"fluid": "tconstruct:venom", | ||
"amount": 50 | ||
}, | ||
"temperature": 10, | ||
"time": 29 | ||
} |
12 changes: 12 additions & 0 deletions
12
src/generated/resources/data/tconstruct/recipes/smeltery/melting/venom/fermented_eye.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,12 @@ | ||
{ | ||
"type": "tconstruct:melting", | ||
"ingredient": { | ||
"item": "minecraft:fermented_spider_eye" | ||
}, | ||
"result": { | ||
"fluid": "tconstruct:venom", | ||
"amount": 100 | ||
}, | ||
"temperature": 10, | ||
"time": 29 | ||
} |
15 changes: 15 additions & 0 deletions
15
src/generated/resources/data/tconstruct/recipes/tools/spilling/venom.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,15 @@ | ||
{ | ||
"type": "tconstruct:spilling", | ||
"fluid": { | ||
"tag": "tconstruct:venom", | ||
"amount": 50 | ||
}, | ||
"effects": [ | ||
{ | ||
"type": "tconstruct:effect", | ||
"name": "minecraft:poison", | ||
"time": 25, | ||
"level": 1 | ||
} | ||
] | ||
} |
7 changes: 7 additions & 0 deletions
7
src/generated/resources/data/tconstruct/tags/fluids/venom.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": [ | ||
"tconstruct:venom", | ||
"tconstruct:flowing_venom" | ||
] | ||
} |
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
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/tconstruct/blockstates/venom_fluid.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 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "tconstruct:block/fluid/venom" | ||
} | ||
} | ||
} |
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
9 changes: 9 additions & 0 deletions
9
src/main/resources/assets/tconstruct/models/block/fluid/venom.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,9 @@ | ||
{ | ||
"loader": "mantle:fluid_texture", | ||
"textures": { | ||
"still": "tconstruct:block/fluid/liquid/still", | ||
"flowing": "tconstruct:block/fluid/liquid/flowing" | ||
}, | ||
"color": "FFFFFF" | ||
} | ||
|
5 changes: 5 additions & 0 deletions
5
src/main/resources/assets/tconstruct/models/item/venom_bucket.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,5 @@ | ||
{ | ||
"parent": "forge:item/bucket_drip", | ||
"loader": "forge:bucket", | ||
"fluid": "tconstruct:venom" | ||
} |