Skip to content

Commit

Permalink
grenades
Browse files Browse the repository at this point in the history
  • Loading branch information
MuteTiefling committed Jul 7, 2023
1 parent 0a52acf commit da12054
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 0 deletions.
64 changes: 64 additions & 0 deletions kubejs/server_scripts/expert/recipes/ars_nouveau/imbuement.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,70 @@ ServerEvents.recipes((event) => {
inputs: [],
source: 1000,
id: `${id_prefix}charged_certus_quartz_crystal`
},
{
output: 'thermal:fire_grenade',
count: 1,
reagent: 'thermal:explosive_grenade',
inputs: ['minecraft:blaze_powder'],
source: 50,
id: `${id_prefix}fire_grenade`
},
{
output: 'thermal:ice_grenade',
count: 1,
reagent: 'thermal:explosive_grenade',
inputs: ['thermal:blizz_powder'],
source: 50,
id: `${id_prefix}ice_grenade`
},
{
output: 'thermal:lightning_grenade',
count: 1,
reagent: 'thermal:explosive_grenade',
inputs: ['thermal:blitz_powder'],
source: 50,
id: `${id_prefix}lightning_grenade`
},
{
output: 'thermal:earth_grenade',
count: 1,
reagent: 'thermal:explosive_grenade',
inputs: ['thermal:basalz_powder'],
source: 50,
id: `${id_prefix}earth_grenade`
},
{
output: 'thermal:ender_grenade',
count: 1,
reagent: 'thermal:explosive_grenade',
inputs: ['#forge:gems/ender_pearl'],
source: 50,
id: `${id_prefix}ender_grenade`
},
{
output: 'thermal:glowstone_grenade',
count: 1,
reagent: 'thermal:explosive_grenade',
inputs: ['#forge:dusts/glowstone'],
source: 50,
id: `${id_prefix}glowstone_grenade`
},
{
output: 'thermal:redstone_grenade',
count: 1,
reagent: 'thermal:explosive_grenade',
inputs: ['#forge:dusts/redstone'],
source: 50,
id: `${id_prefix}redstone_grenade`
},
{
output: 'thermal:slime_grenade',
count: 1,
reagent: 'thermal:explosive_grenade',
inputs: ['#forge:slimeballs'],
source: 50,
id: `${id_prefix}slime_grenade`
}
];

Expand Down
1 change: 1 addition & 0 deletions kubejs/server_scripts/expert/recipes/enigmatica/remove.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,7 @@ ServerEvents.recipes((event) => {
{ id: /thermal:.*_mushroom_spores/ },
{ id: /thermal:parts\/.*_gear/ },
{ id: /thermal:earth_charge/ },
{ id: /thermal:.*_grenade/ },
{ id: 'thermal:enderium_dust_2' },
{ id: 'thermal:lumium_dust_4' },
{ id: 'thermal:signalum_dust_4' },
Expand Down
10 changes: 10 additions & 0 deletions kubejs/server_scripts/expert/recipes/thermal/shaped.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,16 @@ ServerEvents.recipes((event) => {
C: 'pneumaticcraft:logistics_core'
},
id: 'thermal:turbo_servo_attachment_2'
},
{
output: '8x thermal:explosive_grenade',
pattern: ['ABA', 'BCB', 'ABA'],
key: {
A: '#forge:gunpowder',
B: 'minecraft:sand',
C: '#forge:nuggets/lead'
},
id: `${id_prefix}explosive_grenade`
}
];

Expand Down

0 comments on commit da12054

Please sign in to comment.