-
Notifications
You must be signed in to change notification settings - Fork 18
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
d0f058a
commit ab4d35c
Showing
6 changed files
with
80 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
ServerEvents.recipes(event => { | ||
|
||
event.custom({ | ||
"type": "tconstruct:melting", | ||
"ingredient": {"item": 'minecraft:glow_berries'}, | ||
"result": { | ||
"fluid": 'supplementaries:lumisene', | ||
"amount": 100 | ||
}, | ||
"temperature": 200, | ||
"time": 6 | ||
}).id(`kubejs:smeltery/melting/lumisene`) | ||
|
||
|
||
let illusion = (input) => { | ||
const output = `kubejs:trial_${input.replace(/^minecraft:|^trials:/, '')}`; | ||
event.custom({ | ||
"type": "create:filling", | ||
"ingredients": [ | ||
{ "item": input }, | ||
{ "fluid": "supplementaries:lumisene", "amount": 90 } | ||
], | ||
"results": [ | ||
{ "item": `9x ${output}` } | ||
] | ||
}) | ||
} | ||
|
||
illusion("minecraft:copper_block"); | ||
illusion("minecraft:cut_copper"); | ||
illusion("minecraft:cut_copper_stairs"); | ||
illusion("minecraft:cut_copper_slab"); | ||
illusion("minecraft:oxidized_copper"); | ||
illusion("minecraft:oxidized_cut_copper_stairs"); | ||
illusion("minecraft:oxidized_cut_copper_slab"); | ||
illusion("minecraft:oxidized_cut_copper"); | ||
if (Platform.isLoaded('trials')) { | ||
illusion("trials:chiseled_copper"); | ||
illusion("trials:copper_grate"); | ||
illusion("trials:chiseled_copper_oxidized"); | ||
illusion("trials:copper_grate_oxidized"); | ||
} | ||
}) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
# Why the mod jars? | ||
- Computercraft tweaked has stopped uploading patches to curseforge. This includes the patch that fixes it crashing with Create 6.0. The mod itself is on the [Approved Non-CurseForge Mods list](https://support.curseforge.com/en/support/solutions/articles/9000197913-non-curseforge-mods), and as such can be included in packs this way. Ideally I want this to be handed via buildscripts (no repo bloat), but for now this will work. | ||
- Ad Astra [has fixed](https://github.com/terrarium-earth/Ad-Astra/issues/692) crashing with Create V6, but has not pushed it to curseforge. As such, the repo will temporarily contain a patched build of the mod to help playtesters. | ||
# Why the mod jar? | ||
- Computercraft tweaked has stopped uploading patches to curseforge. This includes the patch that fixes it crashing with Create 6.0. The mod itself is on the [Approved Non-CurseForge Mods list](https://support.curseforge.com/en/support/solutions/articles/9000197913-non-curseforge-mods), and as such can be included in packs this way. Ideally I want this to be handed via buildscripts (no repo bloat), but for now this will work. |