diff --git a/src/coffee/constants.coffee b/src/coffee/constants.coffee index 4ea9febad..1f6cd9a73 100644 --- a/src/coffee/constants.coffee +++ b/src/coffee/constants.coffee @@ -24,6 +24,7 @@ exports.DefaultMods = mekanism: { defaultVersion: '7.1.1.127' } modular_powersuits: { defaultVersion: '0.11.0.176' } railcraft: { defaultVersion: '9.5.0' } + simply_jetpacks: { defaultVersion: '1.4.1' } thermal_dynamics: { defaultVersion: '1.0.0RC7-98' } thermal_expansion: { defaultVersion: '4.0.0B8-23' } ender_storage: { defaultVersion: '1.4.5.29' } diff --git a/src/coffee/models/item_slug.coffee b/src/coffee/models/item_slug.coffee index 206ad2079..ec3c617dd 100644 --- a/src/coffee/models/item_slug.coffee +++ b/src/coffee/models/item_slug.coffee @@ -15,7 +15,9 @@ module.exports = class ItemSlug @_item = @_mod = null if arguments.length is 1 - @item = arguments[0] + parts = _.decomposeSlug arguments[0] + @_mod = _.slugify parts[0] + @item = _.slugify parts[1] else if arguments.length is 2 @_mod = arguments[0] @item = arguments[1] diff --git a/src/coffee/models/mod_version.coffee b/src/coffee/models/mod_version.coffee index 564824ff3..efa68e13f 100644 --- a/src/coffee/models/mod_version.coffee +++ b/src/coffee/models/mod_version.coffee @@ -139,13 +139,21 @@ module.exports = class ModVersion extends BaseModel findRecipes: (itemSlug, result=[], options={})-> options.onlyPrimary ?= false + primaryRecipes = [] + otherRecipes = [] + for recipe in _.values @_recipes - if options.onlyPrimary - if recipe.itemSlug.matches itemSlug - result.push recipe - else - if recipe.produces itemSlug - result.push recipe + if recipe.itemSlug.matches itemSlug + primaryRecipes.push recipe + else if recipe.produces itemSlug + otherRecipes.push recipe + + for recipe in primaryRecipes + result.push recipe + + if not options.onlyPrimary + for recipe in otherRecipes + result.push recipe return result diff --git a/src/coffee/models/parser_versions/mod_version_parser_v1.coffee b/src/coffee/models/parser_versions/mod_version_parser_v1.coffee index 4a3377bee..e4e12d54e 100644 --- a/src/coffee/models/parser_versions/mod_version_parser_v1.coffee +++ b/src/coffee/models/parser_versions/mod_version_parser_v1.coffee @@ -168,7 +168,7 @@ module.exports = class ModVersionParserV1 extends CommandParserVersionBase if item? and item.type isnt 'update' slug = new ItemSlug modVersion.modSlug, _.slugify name else - slug = new ItemSlug _.slugify name + slug = new ItemSlug name modVersion.registerName slug, name return slug diff --git a/static/browse/simply_jetpacks/creative_flux_pack/icon.png b/static/browse/simply_jetpacks/creative_flux_pack/icon.png new file mode 100644 index 000000000..a9d4c2eec Binary files /dev/null and b/static/browse/simply_jetpacks/creative_flux_pack/icon.png differ diff --git a/static/browse/simply_jetpacks/creative_jetpack/icon.png b/static/browse/simply_jetpacks/creative_jetpack/icon.png new file mode 100644 index 000000000..1f8308a5b Binary files /dev/null and b/static/browse/simply_jetpacks/creative_jetpack/icon.png differ diff --git a/static/browse/simply_jetpacks/cryotheum_coolant_unit/icon.png b/static/browse/simply_jetpacks/cryotheum_coolant_unit/icon.png new file mode 100644 index 000000000..039bdf3d6 Binary files /dev/null and b/static/browse/simply_jetpacks/cryotheum_coolant_unit/icon.png differ diff --git a/static/browse/simply_jetpacks/cryotheum_coolant_unit/index.html b/static/browse/simply_jetpacks/cryotheum_coolant_unit/index.html new file mode 100644 index 000000000..41b164b4b --- /dev/null +++ b/static/browse/simply_jetpacks/cryotheum_coolant_unit/index.html @@ -0,0 +1,99 @@ + + Cryotheum Coolant Unit | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/cryotheum_coolant_unit_empty/icon.png b/static/browse/simply_jetpacks/cryotheum_coolant_unit_empty/icon.png new file mode 100644 index 000000000..b299033e8 Binary files /dev/null and b/static/browse/simply_jetpacks/cryotheum_coolant_unit_empty/icon.png differ diff --git a/static/browse/simply_jetpacks/cryotheum_coolant_unit_empty/index.html b/static/browse/simply_jetpacks/cryotheum_coolant_unit_empty/index.html new file mode 100644 index 000000000..74e11bb4c --- /dev/null +++ b/static/browse/simply_jetpacks/cryotheum_coolant_unit_empty/index.html @@ -0,0 +1,99 @@ + + Cryotheum Coolant Unit (Empty) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/enderium_armor_plating/icon.png b/static/browse/simply_jetpacks/enderium_armor_plating/icon.png new file mode 100644 index 000000000..3fd1a3e50 Binary files /dev/null and b/static/browse/simply_jetpacks/enderium_armor_plating/icon.png differ diff --git a/static/browse/simply_jetpacks/enderium_armor_plating/index.html b/static/browse/simply_jetpacks/enderium_armor_plating/index.html new file mode 100644 index 000000000..851d1c01f --- /dev/null +++ b/static/browse/simply_jetpacks/enderium_armor_plating/index.html @@ -0,0 +1,99 @@ + + Enderium Armor Plating | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/flux_crystal/icon.png b/static/browse/simply_jetpacks/flux_crystal/icon.png new file mode 100644 index 000000000..9eda86931 Binary files /dev/null and b/static/browse/simply_jetpacks/flux_crystal/icon.png differ diff --git a/static/browse/simply_jetpacks/flux_crystal/index.html b/static/browse/simply_jetpacks/flux_crystal/index.html new file mode 100644 index 000000000..aad82692a --- /dev/null +++ b/static/browse/simply_jetpacks/flux_crystal/index.html @@ -0,0 +1,99 @@ + + Flux Crystal | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/flux_infused_chestplate_assembly/icon.png b/static/browse/simply_jetpacks/flux_infused_chestplate_assembly/icon.png new file mode 100644 index 000000000..e9222e600 Binary files /dev/null and b/static/browse/simply_jetpacks/flux_infused_chestplate_assembly/icon.png differ diff --git a/static/browse/simply_jetpacks/flux_infused_chestplate_assembly/index.html b/static/browse/simply_jetpacks/flux_infused_chestplate_assembly/index.html new file mode 100644 index 000000000..8b236415f --- /dev/null +++ b/static/browse/simply_jetpacks/flux_infused_chestplate_assembly/index.html @@ -0,0 +1,99 @@ + + Flux-Infused Chestplate Assembly | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/flux_infused_jetplate/icon.png b/static/browse/simply_jetpacks/flux_infused_jetplate/icon.png new file mode 100644 index 000000000..e6e31a054 Binary files /dev/null and b/static/browse/simply_jetpacks/flux_infused_jetplate/icon.png differ diff --git a/static/browse/simply_jetpacks/flux_infused_jetplate/index.html b/static/browse/simply_jetpacks/flux_infused_jetplate/index.html new file mode 100644 index 000000000..10ef1af28 --- /dev/null +++ b/static/browse/simply_jetpacks/flux_infused_jetplate/index.html @@ -0,0 +1,99 @@ + + Flux-Infused JetPlate | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/flux_infused_jetplate_armored/icon.png b/static/browse/simply_jetpacks/flux_infused_jetplate_armored/icon.png new file mode 100644 index 000000000..d158b85fb Binary files /dev/null and b/static/browse/simply_jetpacks/flux_infused_jetplate_armored/icon.png differ diff --git a/static/browse/simply_jetpacks/fluxed_armor_plating/icon.png b/static/browse/simply_jetpacks/fluxed_armor_plating/icon.png new file mode 100644 index 000000000..c4c562709 Binary files /dev/null and b/static/browse/simply_jetpacks/fluxed_armor_plating/icon.png differ diff --git a/static/browse/simply_jetpacks/fluxed_armor_plating/index.html b/static/browse/simply_jetpacks/fluxed_armor_plating/index.html new file mode 100644 index 000000000..f7b932fae --- /dev/null +++ b/static/browse/simply_jetpacks/fluxed_armor_plating/index.html @@ -0,0 +1,99 @@ + + Fluxed Armor Plating | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/fluxed_electrum_blend/icon.png b/static/browse/simply_jetpacks/fluxed_electrum_blend/icon.png new file mode 100644 index 000000000..1aad76cfd Binary files /dev/null and b/static/browse/simply_jetpacks/fluxed_electrum_blend/icon.png differ diff --git a/static/browse/simply_jetpacks/fluxed_electrum_blend/index.html b/static/browse/simply_jetpacks/fluxed_electrum_blend/index.html new file mode 100644 index 000000000..aa9482043 --- /dev/null +++ b/static/browse/simply_jetpacks/fluxed_electrum_blend/index.html @@ -0,0 +1,99 @@ + + Fluxed Electrum Blend | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/fluxed_electrum_ingot/icon.png b/static/browse/simply_jetpacks/fluxed_electrum_ingot/icon.png new file mode 100644 index 000000000..7dd3d3c86 Binary files /dev/null and b/static/browse/simply_jetpacks/fluxed_electrum_ingot/icon.png differ diff --git a/static/browse/simply_jetpacks/fluxed_electrum_ingot/index.html b/static/browse/simply_jetpacks/fluxed_electrum_ingot/index.html new file mode 100644 index 000000000..53b463d3a --- /dev/null +++ b/static/browse/simply_jetpacks/fluxed_electrum_ingot/index.html @@ -0,0 +1,99 @@ + + Fluxed Electrum Ingot | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/fluxed_electrum_nugget/icon.png b/static/browse/simply_jetpacks/fluxed_electrum_nugget/icon.png new file mode 100644 index 000000000..bd81b1e3d Binary files /dev/null and b/static/browse/simply_jetpacks/fluxed_electrum_nugget/icon.png differ diff --git a/static/browse/simply_jetpacks/fluxed_electrum_nugget/index.html b/static/browse/simply_jetpacks/fluxed_electrum_nugget/index.html new file mode 100644 index 000000000..b8a4d3702 --- /dev/null +++ b/static/browse/simply_jetpacks/fluxed_electrum_nugget/index.html @@ -0,0 +1,99 @@ + + Fluxed Electrum Nugget | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/fluxed_thruster/icon.png b/static/browse/simply_jetpacks/fluxed_thruster/icon.png new file mode 100644 index 000000000..c5c531a3d Binary files /dev/null and b/static/browse/simply_jetpacks/fluxed_thruster/icon.png differ diff --git a/static/browse/simply_jetpacks/fluxed_thruster/index.html b/static/browse/simply_jetpacks/fluxed_thruster/index.html new file mode 100644 index 000000000..1f8ce6b3d --- /dev/null +++ b/static/browse/simply_jetpacks/fluxed_thruster/index.html @@ -0,0 +1,99 @@ + + Fluxed Thruster | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/glowstone_elevation_unit/icon.png b/static/browse/simply_jetpacks/glowstone_elevation_unit/icon.png new file mode 100644 index 000000000..ae37fe1bd Binary files /dev/null and b/static/browse/simply_jetpacks/glowstone_elevation_unit/icon.png differ diff --git a/static/browse/simply_jetpacks/glowstone_elevation_unit/index.html b/static/browse/simply_jetpacks/glowstone_elevation_unit/index.html new file mode 100644 index 000000000..40f5911d4 --- /dev/null +++ b/static/browse/simply_jetpacks/glowstone_elevation_unit/index.html @@ -0,0 +1,99 @@ + + Glowstone Elevation Unit | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/glowstone_elevation_unit_empty/icon.png b/static/browse/simply_jetpacks/glowstone_elevation_unit_empty/icon.png new file mode 100644 index 000000000..f98670306 Binary files /dev/null and b/static/browse/simply_jetpacks/glowstone_elevation_unit_empty/icon.png differ diff --git a/static/browse/simply_jetpacks/glowstone_elevation_unit_empty/index.html b/static/browse/simply_jetpacks/glowstone_elevation_unit_empty/index.html new file mode 100644 index 000000000..dea87c49a --- /dev/null +++ b/static/browse/simply_jetpacks/glowstone_elevation_unit_empty/index.html @@ -0,0 +1,99 @@ + + Glowstone Elevation Unit (Empty) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/hardened_flux_pack/icon.png b/static/browse/simply_jetpacks/hardened_flux_pack/icon.png new file mode 100644 index 000000000..874ad3f50 Binary files /dev/null and b/static/browse/simply_jetpacks/hardened_flux_pack/icon.png differ diff --git a/static/browse/simply_jetpacks/hardened_flux_pack/index.html b/static/browse/simply_jetpacks/hardened_flux_pack/index.html new file mode 100644 index 000000000..885916f86 --- /dev/null +++ b/static/browse/simply_jetpacks/hardened_flux_pack/index.html @@ -0,0 +1,99 @@ + + Hardened Flux Pack | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/hardened_flux_pack_armored/icon.png b/static/browse/simply_jetpacks/hardened_flux_pack_armored/icon.png new file mode 100644 index 000000000..7d465b6f2 Binary files /dev/null and b/static/browse/simply_jetpacks/hardened_flux_pack_armored/icon.png differ diff --git a/static/browse/simply_jetpacks/hardened_flux_pack_armored/index.html b/static/browse/simply_jetpacks/hardened_flux_pack_armored/index.html new file mode 100644 index 000000000..01567ae12 --- /dev/null +++ b/static/browse/simply_jetpacks/hardened_flux_pack_armored/index.html @@ -0,0 +1,99 @@ + + Hardened Flux Pack (Armored) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/hardened_jetpack/icon.png b/static/browse/simply_jetpacks/hardened_jetpack/icon.png new file mode 100644 index 000000000..6a0a9737e Binary files /dev/null and b/static/browse/simply_jetpacks/hardened_jetpack/icon.png differ diff --git a/static/browse/simply_jetpacks/hardened_jetpack/index.html b/static/browse/simply_jetpacks/hardened_jetpack/index.html new file mode 100644 index 000000000..c30e28a87 --- /dev/null +++ b/static/browse/simply_jetpacks/hardened_jetpack/index.html @@ -0,0 +1,99 @@ + + Hardened Jetpack | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/hardened_jetpack_armored/icon.png b/static/browse/simply_jetpacks/hardened_jetpack_armored/icon.png new file mode 100644 index 000000000..d22ac5f9c Binary files /dev/null and b/static/browse/simply_jetpacks/hardened_jetpack_armored/icon.png differ diff --git a/static/browse/simply_jetpacks/hardened_jetpack_armored/index.html b/static/browse/simply_jetpacks/hardened_jetpack_armored/index.html new file mode 100644 index 000000000..0a25c4ad4 --- /dev/null +++ b/static/browse/simply_jetpacks/hardened_jetpack_armored/index.html @@ -0,0 +1,99 @@ + + Hardened Jetpack (Armored) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/hardened_thruster/icon.png b/static/browse/simply_jetpacks/hardened_thruster/icon.png new file mode 100644 index 000000000..751b53a2f Binary files /dev/null and b/static/browse/simply_jetpacks/hardened_thruster/icon.png differ diff --git a/static/browse/simply_jetpacks/hardened_thruster/index.html b/static/browse/simply_jetpacks/hardened_thruster/index.html new file mode 100644 index 000000000..94d437e6d --- /dev/null +++ b/static/browse/simply_jetpacks/hardened_thruster/index.html @@ -0,0 +1,99 @@ + + Hardened Thruster | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/icon.png b/static/browse/simply_jetpacks/icon.png new file mode 100644 index 000000000..13b87e2aa Binary files /dev/null and b/static/browse/simply_jetpacks/icon.png differ diff --git a/static/browse/simply_jetpacks/index.html b/static/browse/simply_jetpacks/index.html new file mode 100644 index 000000000..69e15eb7a --- /dev/null +++ b/static/browse/simply_jetpacks/index.html @@ -0,0 +1,99 @@ + + Simply Jetpacks | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + + diff --git a/static/browse/simply_jetpacks/invar_armor_plating/icon.png b/static/browse/simply_jetpacks/invar_armor_plating/icon.png new file mode 100644 index 000000000..22998fa16 Binary files /dev/null and b/static/browse/simply_jetpacks/invar_armor_plating/icon.png differ diff --git a/static/browse/simply_jetpacks/invar_armor_plating/index.html b/static/browse/simply_jetpacks/invar_armor_plating/index.html new file mode 100644 index 000000000..629df19f6 --- /dev/null +++ b/static/browse/simply_jetpacks/invar_armor_plating/index.html @@ -0,0 +1,99 @@ + + Invar Armor Plating | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/iron_armor_plating/icon.png b/static/browse/simply_jetpacks/iron_armor_plating/icon.png new file mode 100644 index 000000000..9abb1e555 Binary files /dev/null and b/static/browse/simply_jetpacks/iron_armor_plating/icon.png differ diff --git a/static/browse/simply_jetpacks/iron_armor_plating/index.html b/static/browse/simply_jetpacks/iron_armor_plating/index.html new file mode 100644 index 000000000..ace3ffa26 --- /dev/null +++ b/static/browse/simply_jetpacks/iron_armor_plating/index.html @@ -0,0 +1,99 @@ + + Iron Armor Plating | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/leadstone_flux_pack/icon.png b/static/browse/simply_jetpacks/leadstone_flux_pack/icon.png new file mode 100644 index 000000000..143658ce2 Binary files /dev/null and b/static/browse/simply_jetpacks/leadstone_flux_pack/icon.png differ diff --git a/static/browse/simply_jetpacks/leadstone_flux_pack/index.html b/static/browse/simply_jetpacks/leadstone_flux_pack/index.html new file mode 100644 index 000000000..aa65aef81 --- /dev/null +++ b/static/browse/simply_jetpacks/leadstone_flux_pack/index.html @@ -0,0 +1,99 @@ + + Leadstone Flux Pack | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/leadstone_flux_pack_armored/icon.png b/static/browse/simply_jetpacks/leadstone_flux_pack_armored/icon.png new file mode 100644 index 000000000..0d761ba0b Binary files /dev/null and b/static/browse/simply_jetpacks/leadstone_flux_pack_armored/icon.png differ diff --git a/static/browse/simply_jetpacks/leadstone_jetpack/icon.png b/static/browse/simply_jetpacks/leadstone_jetpack/icon.png new file mode 100644 index 000000000..2fd3a8e5a Binary files /dev/null and b/static/browse/simply_jetpacks/leadstone_jetpack/icon.png differ diff --git a/static/browse/simply_jetpacks/leadstone_jetpack/index.html b/static/browse/simply_jetpacks/leadstone_jetpack/index.html new file mode 100644 index 000000000..a1adc4012 --- /dev/null +++ b/static/browse/simply_jetpacks/leadstone_jetpack/index.html @@ -0,0 +1,99 @@ + + Leadstone Jetpack | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/leadstone_jetpack_armored/icon.png b/static/browse/simply_jetpacks/leadstone_jetpack_armored/icon.png new file mode 100644 index 000000000..3bc302e37 Binary files /dev/null and b/static/browse/simply_jetpacks/leadstone_jetpack_armored/icon.png differ diff --git a/static/browse/simply_jetpacks/leadstone_jetpack_armored/index.html b/static/browse/simply_jetpacks/leadstone_jetpack_armored/index.html new file mode 100644 index 000000000..a6e585a00 --- /dev/null +++ b/static/browse/simply_jetpacks/leadstone_jetpack_armored/index.html @@ -0,0 +1,99 @@ + + Leadstone Jetpack (Armored) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/leadstone_thruster/icon.png b/static/browse/simply_jetpacks/leadstone_thruster/icon.png new file mode 100644 index 000000000..d91392c27 Binary files /dev/null and b/static/browse/simply_jetpacks/leadstone_thruster/icon.png differ diff --git a/static/browse/simply_jetpacks/leadstone_thruster/index.html b/static/browse/simply_jetpacks/leadstone_thruster/index.html new file mode 100644 index 000000000..8ed102feb --- /dev/null +++ b/static/browse/simply_jetpacks/leadstone_thruster/index.html @@ -0,0 +1,99 @@ + + Leadstone Thruster | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/leather_strap/icon.png b/static/browse/simply_jetpacks/leather_strap/icon.png new file mode 100644 index 000000000..135a19b7c Binary files /dev/null and b/static/browse/simply_jetpacks/leather_strap/icon.png differ diff --git a/static/browse/simply_jetpacks/leather_strap/index.html b/static/browse/simply_jetpacks/leather_strap/index.html new file mode 100644 index 000000000..b9a68c71d --- /dev/null +++ b/static/browse/simply_jetpacks/leather_strap/index.html @@ -0,0 +1,99 @@ + + Leather Strap | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+

Leather Strap

Recipe

Ingredients

Iron Ingot
Leather

Produces

Leather Strap
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/mysterious_potato/icon.png b/static/browse/simply_jetpacks/mysterious_potato/icon.png new file mode 100644 index 000000000..5df65ab15 Binary files /dev/null and b/static/browse/simply_jetpacks/mysterious_potato/icon.png differ diff --git a/static/browse/simply_jetpacks/mysterious_potato/index.html b/static/browse/simply_jetpacks/mysterious_potato/index.html new file mode 100644 index 000000000..870456f4c --- /dev/null +++ b/static/browse/simply_jetpacks/mysterious_potato/index.html @@ -0,0 +1,99 @@ + + Mysterious Potato | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+

Mysterious Potato

+ +
+ + + + + + + + + + + + diff --git a/static/browse/simply_jetpacks/particle_customizer_default/icon.png b/static/browse/simply_jetpacks/particle_customizer_default/icon.png new file mode 100644 index 000000000..6c9bc6254 Binary files /dev/null and b/static/browse/simply_jetpacks/particle_customizer_default/icon.png differ diff --git a/static/browse/simply_jetpacks/particle_customizer_default/index.html b/static/browse/simply_jetpacks/particle_customizer_default/index.html new file mode 100644 index 000000000..8de63eada --- /dev/null +++ b/static/browse/simply_jetpacks/particle_customizer_default/index.html @@ -0,0 +1,99 @@ + + Particle Customizer (Default) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+

Particle Customizer (Default)

Recipe

+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/particle_customizer_none/icon.png b/static/browse/simply_jetpacks/particle_customizer_none/icon.png new file mode 100644 index 000000000..f579133a3 Binary files /dev/null and b/static/browse/simply_jetpacks/particle_customizer_none/icon.png differ diff --git a/static/browse/simply_jetpacks/particle_customizer_none/index.html b/static/browse/simply_jetpacks/particle_customizer_none/index.html new file mode 100644 index 000000000..9305b126f --- /dev/null +++ b/static/browse/simply_jetpacks/particle_customizer_none/index.html @@ -0,0 +1,99 @@ + + Particle Customizer (None) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+

Particle Customizer (None)

Recipe

Ingredients

Produces

+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/particle_customizer_rainbow_smoke/icon.png b/static/browse/simply_jetpacks/particle_customizer_rainbow_smoke/icon.png new file mode 100644 index 000000000..54aa8332a Binary files /dev/null and b/static/browse/simply_jetpacks/particle_customizer_rainbow_smoke/icon.png differ diff --git a/static/browse/simply_jetpacks/particle_customizer_rainbow_smoke/index.html b/static/browse/simply_jetpacks/particle_customizer_rainbow_smoke/index.html new file mode 100644 index 000000000..0c9bb2240 --- /dev/null +++ b/static/browse/simply_jetpacks/particle_customizer_rainbow_smoke/index.html @@ -0,0 +1,99 @@ + + Particle Customizer (Rainbow Smoke) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+

Particle Customizer (Rainbow Smoke)

+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/particle_customizer_smoke_only/icon.png b/static/browse/simply_jetpacks/particle_customizer_smoke_only/icon.png new file mode 100644 index 000000000..5b3d6563f Binary files /dev/null and b/static/browse/simply_jetpacks/particle_customizer_smoke_only/icon.png differ diff --git a/static/browse/simply_jetpacks/particle_customizer_smoke_only/index.html b/static/browse/simply_jetpacks/particle_customizer_smoke_only/index.html new file mode 100644 index 000000000..bde3a1fdc --- /dev/null +++ b/static/browse/simply_jetpacks/particle_customizer_smoke_only/index.html @@ -0,0 +1,99 @@ + + Particle Customizer (Smoke Only) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+

Particle Customizer (Smoke Only)

Recipe

+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/redstone_flux_pack/icon.png b/static/browse/simply_jetpacks/redstone_flux_pack/icon.png new file mode 100644 index 000000000..1c8d9103b Binary files /dev/null and b/static/browse/simply_jetpacks/redstone_flux_pack/icon.png differ diff --git a/static/browse/simply_jetpacks/redstone_flux_pack/index.html b/static/browse/simply_jetpacks/redstone_flux_pack/index.html new file mode 100644 index 000000000..993389ff2 --- /dev/null +++ b/static/browse/simply_jetpacks/redstone_flux_pack/index.html @@ -0,0 +1,99 @@ + + Redstone Flux Pack | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/redstone_flux_pack_armored/icon.png b/static/browse/simply_jetpacks/redstone_flux_pack_armored/icon.png new file mode 100644 index 000000000..3ed3d0678 Binary files /dev/null and b/static/browse/simply_jetpacks/redstone_flux_pack_armored/icon.png differ diff --git a/static/browse/simply_jetpacks/redstone_flux_pack_armored/index.html b/static/browse/simply_jetpacks/redstone_flux_pack_armored/index.html new file mode 100644 index 000000000..844047ce5 --- /dev/null +++ b/static/browse/simply_jetpacks/redstone_flux_pack_armored/index.html @@ -0,0 +1,99 @@ + + Redstone Flux Pack (Armored) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/reinforced_jetpack/icon.png b/static/browse/simply_jetpacks/reinforced_jetpack/icon.png new file mode 100644 index 000000000..c346ea4fa Binary files /dev/null and b/static/browse/simply_jetpacks/reinforced_jetpack/icon.png differ diff --git a/static/browse/simply_jetpacks/reinforced_jetpack/index.html b/static/browse/simply_jetpacks/reinforced_jetpack/index.html new file mode 100644 index 000000000..e0589c3d2 --- /dev/null +++ b/static/browse/simply_jetpacks/reinforced_jetpack/index.html @@ -0,0 +1,99 @@ + + Reinforced Jetpack | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/reinforced_jetpack_armored/icon.png b/static/browse/simply_jetpacks/reinforced_jetpack_armored/icon.png new file mode 100644 index 000000000..a415820e5 Binary files /dev/null and b/static/browse/simply_jetpacks/reinforced_jetpack_armored/icon.png differ diff --git a/static/browse/simply_jetpacks/reinforced_jetpack_armored/index.html b/static/browse/simply_jetpacks/reinforced_jetpack_armored/index.html new file mode 100644 index 000000000..d0b0f0a89 --- /dev/null +++ b/static/browse/simply_jetpacks/reinforced_jetpack_armored/index.html @@ -0,0 +1,99 @@ + + Reinforced Jetpack (Armored) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/reinforced_thruster/icon.png b/static/browse/simply_jetpacks/reinforced_thruster/icon.png new file mode 100644 index 000000000..7196dcf07 Binary files /dev/null and b/static/browse/simply_jetpacks/reinforced_thruster/icon.png differ diff --git a/static/browse/simply_jetpacks/reinforced_thruster/index.html b/static/browse/simply_jetpacks/reinforced_thruster/index.html new file mode 100644 index 000000000..8026d43ef --- /dev/null +++ b/static/browse/simply_jetpacks/reinforced_thruster/index.html @@ -0,0 +1,99 @@ + + Reinforced Thruster | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/resonant_flux_pack/icon.png b/static/browse/simply_jetpacks/resonant_flux_pack/icon.png new file mode 100644 index 000000000..0292722c7 Binary files /dev/null and b/static/browse/simply_jetpacks/resonant_flux_pack/icon.png differ diff --git a/static/browse/simply_jetpacks/resonant_flux_pack/index.html b/static/browse/simply_jetpacks/resonant_flux_pack/index.html new file mode 100644 index 000000000..3aa53a201 --- /dev/null +++ b/static/browse/simply_jetpacks/resonant_flux_pack/index.html @@ -0,0 +1,99 @@ + + Resonant Flux Pack | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/resonant_flux_pack_armored/icon.png b/static/browse/simply_jetpacks/resonant_flux_pack_armored/icon.png new file mode 100644 index 000000000..0ba7b4e02 Binary files /dev/null and b/static/browse/simply_jetpacks/resonant_flux_pack_armored/icon.png differ diff --git a/static/browse/simply_jetpacks/resonant_flux_pack_armored/index.html b/static/browse/simply_jetpacks/resonant_flux_pack_armored/index.html new file mode 100644 index 000000000..548c4d7fe --- /dev/null +++ b/static/browse/simply_jetpacks/resonant_flux_pack_armored/index.html @@ -0,0 +1,99 @@ + + Resonant Flux Pack (Armored) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/resonant_jetpack/icon.png b/static/browse/simply_jetpacks/resonant_jetpack/icon.png new file mode 100644 index 000000000..95ebcdc80 Binary files /dev/null and b/static/browse/simply_jetpacks/resonant_jetpack/icon.png differ diff --git a/static/browse/simply_jetpacks/resonant_jetpack/index.html b/static/browse/simply_jetpacks/resonant_jetpack/index.html new file mode 100644 index 000000000..2572dbc06 --- /dev/null +++ b/static/browse/simply_jetpacks/resonant_jetpack/index.html @@ -0,0 +1,99 @@ + + Resonant Jetpack | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/resonant_jetpack_armored/icon.png b/static/browse/simply_jetpacks/resonant_jetpack_armored/icon.png new file mode 100644 index 000000000..34c4a5aed Binary files /dev/null and b/static/browse/simply_jetpacks/resonant_jetpack_armored/icon.png differ diff --git a/static/browse/simply_jetpacks/resonant_jetpack_armored/index.html b/static/browse/simply_jetpacks/resonant_jetpack_armored/index.html new file mode 100644 index 000000000..1cddf648e --- /dev/null +++ b/static/browse/simply_jetpacks/resonant_jetpack_armored/index.html @@ -0,0 +1,99 @@ + + Resonant Jetpack (Armored) | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/resonant_thruster/icon.png b/static/browse/simply_jetpacks/resonant_thruster/icon.png new file mode 100644 index 000000000..3393762e4 Binary files /dev/null and b/static/browse/simply_jetpacks/resonant_thruster/icon.png differ diff --git a/static/browse/simply_jetpacks/resonant_thruster/index.html b/static/browse/simply_jetpacks/resonant_thruster/index.html new file mode 100644 index 000000000..4b2a2a623 --- /dev/null +++ b/static/browse/simply_jetpacks/resonant_thruster/index.html @@ -0,0 +1,99 @@ + + Resonant Thruster | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/tinker_s_alloy_armor_plating/icon.png b/static/browse/simply_jetpacks/tinker_s_alloy_armor_plating/icon.png new file mode 100644 index 000000000..cfcf5a6ee Binary files /dev/null and b/static/browse/simply_jetpacks/tinker_s_alloy_armor_plating/icon.png differ diff --git a/static/browse/simply_jetpacks/tinker_s_alloy_armor_plating/index.html b/static/browse/simply_jetpacks/tinker_s_alloy_armor_plating/index.html new file mode 100644 index 000000000..85c05f36f --- /dev/null +++ b/static/browse/simply_jetpacks/tinker_s_alloy_armor_plating/index.html @@ -0,0 +1,99 @@ + + Tinker's Alloy Armor Plating | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+
+ +
+ + + + + + + + + + + +
diff --git a/static/browse/simply_jetpacks/tuberous_jetpack/icon.png b/static/browse/simply_jetpacks/tuberous_jetpack/icon.png new file mode 100644 index 000000000..836a172d7 Binary files /dev/null and b/static/browse/simply_jetpacks/tuberous_jetpack/icon.png differ diff --git a/static/browse/simply_jetpacks/tuberous_jetpack/index.html b/static/browse/simply_jetpacks/tuberous_jetpack/index.html new file mode 100644 index 000000000..d30f0641c --- /dev/null +++ b/static/browse/simply_jetpacks/tuberous_jetpack/index.html @@ -0,0 +1,99 @@ + + Tuberous Jetpack | The Ultimate Minecraft Crafting Guide + + + + + + +

Feedback

+
+
+
+

+

Crafting Guide for Minecraft

+

+
+
+ +
+ +
+

Tuberous Jetpack

Recipes

Ingredients

Produces

Other Tier 0 Items

+ +
+ + + + + + + + + + + +
diff --git a/static/data/simply_jetpacks/1.4.1/mod-version.cg b/static/data/simply_jetpacks/1.4.1/mod-version.cg new file mode 100644 index 000000000..90b430213 --- /dev/null +++ b/static/data/simply_jetpacks/1.4.1/mod-version.cg @@ -0,0 +1,290 @@ +schema: 1 + +item: Leather Strap + recipe: + input: Iron Ingot, Leather + pattern: 101 101 ... + tools: Crafting Table + +item: Mysterious Potato + +item: Particle Customizer (Default) + recipe: + input: Pulverized Coal, Torch + pattern: .1. 101 .1. + tools: Crafting Table + +item: Particle Customizer (None) + recipe: + input: Glass, Pulverized Coal + pattern: .0. 010 .0. + tools: Crafting Table + +item: Particle Customizer (Rainbow Smoke) + recipe: + input: Lapis Lazuli, Lime Dye, Pulverized Coal, Rose Red + pattern: .3. .2. 1.0 + tools: Crafting Table + +item: Particle Customizer (Smoke Only) + recipe: + input: Pulverized Coal + pattern: .0. 000 .0. + tools: Crafting Table + +group: Tier 0 Items + + item: Tuberous Jetpack + recipe: + input: Gold Nugget, Potato, Redstone, String + pattern: 3.3 010 2.2 + tools: Crafting Table + recipe: + input: Gold Nugget, Poisonous Potato, Redstone, String + pattern: 3.3 010 2.2 + tools: Crafting Table + +group: Tier 1 Items + + item: Iron Armor Plating + recipe: + input: Iron Ingot, thermal_expansion__tin_ingot + pattern: 101 000 101 + tools: Crafting Table + + item: Leadstone Flux Pack + recipe: + input: thermal_expansion__lead_ingot, Leadstone Energy Cell, Leather Strap + pattern: 010 020 ... + tools: Crafting Table + + item: Leadstone Jetpack + recipe: + input: thermal_expansion__lead_ingot, Leadstone Flux Capacitor, Leadstone Thruster, Leather Strap + pattern: 010 030 2.2 + tools: Crafting Table + + item: Leadstone Jetpack (Armored) + recipe: + input: Iron Armor Plating, Leadstone Jetpack + pattern: .0. .1. ... + + item: Leadstone Thruster + recipe: + input: thermal_expansion__copper_gear, Glass, thermal_expansion__lead_ingot, Pneumatic Servo, Redstone Reception Coil, Steam Dynamo + pattern: 242 101 535 + tools: Crafting Table + +group: Tier 2 Items + + item: Hardened Flux Pack + recipe: + input: Invar Ingot, Leadstone Flux Pack + pattern: .0. 010 .0. + tools: Crafting Table + recipe: + input: Hardened Flux Pack (Armored) + pattern: ... .0. ... + + item: Hardened Flux Pack (Armored) + recipe: + input: Hardened Flux Pack, Iron Armor Plating + pattern: .1. .0. ... + + item: Hardened Jetpack + recipe: + input: Hardened Flux Capacitor, Hardened Thruster, Invar Ingot, Leadstone Jetpack + pattern: 202 232 1.1 + tools: Crafting Table + recipe: + input: Hardened Jetpack (Armored) + pattern: ... .0. ... + + item: Hardened Jetpack (Armored) + recipe: + input: Hardened Jetpack, Tinker's Alloy Armor Plating + pattern: .1. .0. ... + tools: Crafting Table + + item: Hardened Thruster + recipe: + input: Block of Redstone, Invar Ingot, Pneumatic Servo, Reactant Dynamo, Redstone Reception Coil, Tinker's Alloy Gear + pattern: 141 050 323 + tools: Crafting Table + + item: Tinker's Alloy Armor Plating + recipe: + input: 10 Tinker's Alloy Ingot, Iron Armor Plating + pattern: ... 0.1 ... + tools: Crafting Table + +group: Tier 3 Items + + item: Invar Armor Plating + recipe: + input: 10 Invar Ingot, Tinker's Alloy Armor Plating + pattern: ... 0.1 ... + tools: Induction Smelter + + item: Redstone Flux Pack + recipe: + input: Electrum Ingot, Hardened Flux Pack, thermal_expansion__lead_ingot, Redstone Conductance Coil, Redstone Energy Cell Frame (Full) + pattern: .4. 010 232 + tools: Crafting Table + recipe: + input: Redstone Flux Pack (Armored) + pattern: ... .0. ... + + item: Redstone Flux Pack (Armored) + recipe: + input: Redstone Flux Pack, Tinker's Alloy Armor Plating + pattern: .1. .0. ... + tools: Crafting Table + + item: Reinforced Jetpack + recipe: + input: Electrum Ingot, Hardened Jetpack, Redstone Flux Capacitor, Reinforced Thruster + pattern: 020 010 3.3 + tools: Crafting Table + recipe: + input: Reinforced Jetpack (Armored) + pattern: ... .0. ... + + item: Reinforced Jetpack (Armored) + recipe: + input: Invar Armor Plating, Reinforced Jetpack + pattern: .0. .1. ... + tools: Crafting Table + + item: Reinforced Thruster + recipe: + input: Electrum Ingot, Invar Gear, Magmatic Dynamo, Pneumatic Servo, Redstone Reception Coil, Signalum Ingot + pattern: 040 515 232 + tools: Crafting Table + +group: Tier 4 Items + + item: Enderium Armor Plating + recipe: + input: 10 Enderium Ingot, Invar Armor Plating + pattern: ... 0.1 ... + tools: Induction Smelter + + item: Resonant Flux Pack + recipe: + input: Enderium Ingot, Redstone Flux Pack + pattern: .0. 010 .0. + tools: Crafting Table + recipe: + input: Resonant Flux Pack (Armored) + pattern: ... .0. ... + + item: Resonant Flux Pack (Armored) + recipe: + input: Invar Armor Plating, Resonant Flux Pack + pattern: .0. .1. ... + tools: Crafting Table + + item: Resonant Jetpack + recipe: + input: Enderium Ingot, Reinforced Jetpack, Resonant Flux Capacitor, Resonant Thruster + pattern: 020 010 3.3 + tools: Crafting Table + recipe: + input: Resonant Jetpack (Armored) + pattern: ... .0. ... + + item: Resonant Jetpack (Armored) + recipe: + input: Enderium Armor Plating, Resonant Jetpack + pattern: .0. .1. ... + tools: Crafting Table + + item: Resonant Thruster + recipe: + input: Electrum Gear, Enderium Ingot, Enervation Dynamo, Lumium Ingot, Pneumatic Servo, Redstone Reception Coil + pattern: 151 303 242 + tools: Crafting Table + +group: Tier 5 Items + + item: Cryotheum Coolant Unit + recipe: + input: 4000 Gelid Cryotheum, Cryotheum Coolant Unit (Empty) + pattern: ... 1.0 ... + tools: Fluid Transposer + + item: Cryotheum Coolant Unit (Empty) + recipe: + input: Fluxed Electrum Ingot, Hardened Glass, thermal_expansion__tin_ingot + pattern: 020 212 020 + tools: Crafting Table + + item: Flux Crystal + recipe: + input: 200 Destabilized Redstone, Diamond + pattern: ... 1.0 ... + tools: Fluid Transposer + + item: Flux-Infused Chestplate Assembly + recipe: + input: Fluxed Armor Plating + pattern: 0.0 000 000 + tools: Crafting Table + + item: Flux-Infused JetPlate + recipe: + input: Cryotheum Coolant Unit, Flux-Infused Chestplate Assembly, Fluxed Armor Plating, Fluxed Thruster, Resonant Flux Pack, Resonant Jetpack + pattern: 212 050 343 + tools: Crafting Table + + item: Fluxed Armor Plating + recipe: + input: Flux Crystal, Fluxed Electrum Ingot, Fluxed Electrum Nugget + pattern: 222 010 222 + tools: Crafting Table + + item: Fluxed Electrum Blend + recipe: + input: 200 Destabilized Redstone, Electrum Blend + pattern: ... 1.0 ... + tools: Fluid Transposer + recipe: + input: Fluxed Electrum Ingot + pattern: ... .0. ... + tools: Pulverizer + + item: Fluxed Electrum Ingot + recipe: + input: 2 Fluxed Electrum Blend, Pyrotheum Dust + pattern: ... 1.0 ... + quantity: 2 + tools: Induction Smelter + recipe: + input: Fluxed Electrum Nugget + pattern: 000 000 000 + tools: Crafting Table + + item: Fluxed Electrum Nugget + recipe: + input: Fluxed Electrum Ingot + pattern: ... .0. ... + quantity: 9 + + item: Fluxed Thruster + recipe: + input: Fluxed Armor Plating, Fluxed Electrum Ingot, Glowstone Elevation Unit, Resonant Thruster + pattern: 101 232 ... + tools: Crafting Table + + item: Glowstone Elevation Unit + recipe: + input: Fluxed Electrum Ingot, Illuminator Frame, Lumium Ingot + pattern: 020 212 020 + tools: Crafting Table + + item: Glowstone Elevation Unit (Empty) + recipe: + input: 4000 Energized Glowstone, Glowstone Elevation Unit (Empty) + pattern: ... 1.0 ... + tools: Fluid Transposer \ No newline at end of file diff --git a/static/data/simply_jetpacks/mod.cg b/static/data/simply_jetpacks/mod.cg new file mode 100644 index 000000000..780830955 --- /dev/null +++ b/static/data/simply_jetpacks/mod.cg @@ -0,0 +1,10 @@ +schema: 1 + +name: Simply Jetpacks +author: Tonius +description: Adds multiple tiers of RF-powered Jetpacks and accessories +homePageUrl: http://minecraft.curseforge.com/mc-mods/79325-simply-jetpacks +documentationUrl: https://github.com/Tonius/SimplyJetpacks/wiki +downloadUrl: http://minecraft.curseforge.com/mc-mods/79325-simply-jetpacks + +version: 1.4.1 diff --git a/static/data/thermal_expansion/4.0.0B8-23/mod-version.cg b/static/data/thermal_expansion/4.0.0B8-23/mod-version.cg index 9a65c97e6..db6c2b715 100644 --- a/static/data/thermal_expansion/4.0.0B8-23/mod-version.cg +++ b/static/data/thermal_expansion/4.0.0B8-23/mod-version.cg @@ -1099,11 +1099,7 @@ group: Minerals item: Copper Ingot recipe: - input: Copper Ore, furnace fuel - pattern: .0. ... .1. - tools: Furnace - recipe: - input: Copper Ore + input: Pulverized Copper pattern: ... .0. ... tools: Redstone Furnace recipe: @@ -1111,9 +1107,13 @@ group: Minerals pattern: .0. ... .1. tools: Furnace recipe: - input: Pulverized Copper + input: Copper Ore pattern: ... .0. ... tools: Redstone Furnace + recipe: + input: Copper Ore, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: extras: Gold Ingot input: Cinnabar, Copper Ore @@ -1179,14 +1179,14 @@ group: Minerals tools: Crafting Table item: Electrum Ingot - recipe: - input: Electrum Blend, furnace fuel - pattern: .0. ... .1. - tools: Furnace recipe: input: Electrum Blend pattern: ... .0. ... tools: Redstone Furnace + recipe: + input: Electrum Blend, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: input: Gold Ingot, Silver Ingot pattern: ... 0.1 ... @@ -1262,22 +1262,22 @@ group: Minerals tools: Crafting Table item: Ferrous Ingot - recipe: - input: Pulverized Ferrous Metal, furnace fuel - pattern: .0. ... .1. - tools: Furnace recipe: input: Pulverized Ferrous Metal pattern: ... .0. ... tools: Redstone Furnace recipe: - input: Ferrous Ore, furnace fuel + input: Pulverized Ferrous Metal, furnace fuel pattern: .0. ... .1. tools: Furnace recipe: input: Ferrous Ore pattern: ... .0. ... tools: Redstone Furnace + recipe: + input: Ferrous Ore, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: extras: Shiny Ingot input: Cinnabar, Ferrous Ore @@ -1348,14 +1348,14 @@ group: Minerals tools: Crafting Table item: Invar Ingot - recipe: - input: Invar Blend, furnace fuel - pattern: .0. ... .1. - tools: Furnace recipe: input: Invar Blend pattern: ... .0. ... tools: Redstone Furnace + recipe: + input: Invar Blend, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: input: Pulverized Ferrous Metal, 2 Pulverized Iron pattern: ... 0.1 ... @@ -1406,11 +1406,7 @@ group: Minerals item: Lead Ingot recipe: - input: Lead Ore, furnace fuel - pattern: .0. ... .1. - tools: Furnace - recipe: - input: Lead Ore + input: Pulverized Lead pattern: ... .0. ... tools: Redstone Furnace recipe: @@ -1418,9 +1414,13 @@ group: Minerals pattern: .0. ... .1. tools: Furnace recipe: - input: Pulverized Lead + input: Lead Ore pattern: ... .0. ... tools: Redstone Furnace + recipe: + input: Lead Ore, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: extras: Silver Ingot input: Cinnabar, Lead Ore @@ -1501,14 +1501,14 @@ group: Minerals tools: Crafting Table item: Lumium Ingot - recipe: - input: Lumium Blend, furnace fuel - pattern: .0. ... .1. - tools: Furnace recipe: input: Lumium Blend pattern: ... .0. ... tools: Redstone Furnace + recipe: + input: Lumium Blend, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: input: 2 Lumium Blend, Sand pattern: ... 1.0 ... @@ -1538,22 +1538,22 @@ group: Minerals tools: Crafting Table item: Mana Infused Ingot - recipe: - input: Pulverized Mana Infused Metal, furnace fuel - pattern: .0. ... .1. - tools: Furnace - recipe: - input: Mana Infused Ore, furnace fuel - pattern: .0. ... .1. - tools: Furnace recipe: input: Pulverized Mana Infused Metal pattern: ... .0. ... tools: Redstone Furnace + recipe: + input: Pulverized Mana Infused Metal, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: input: Mana Infused Ore pattern: ... .0. ... tools: Redstone Furnace + recipe: + input: Mana Infused Ore, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: input: Cinnabar, Mana Infused Ore pattern: ... 0.1 ... @@ -1602,15 +1602,15 @@ group: Minerals tools: Pulverizer item: Pulverized Coal + recipe: + input: Coal + pattern: ... .0. ... + tools: Pulverizer recipe: input: Coal Ore pattern: ... .0. ... quantity: 3 tools: Pulverizer - recipe: - input: Coal - pattern: ... .0. ... - tools: Pulverizer item: Pulverized Copper recipe: @@ -1741,11 +1741,15 @@ group: Minerals item: Shiny Ingot recipe: - input: Shiny Ore, furnace fuel + input: Pulverized Shiny Metal + pattern: ... .0. ... + tools: Redstone Furnace + recipe: + input: Pulverized Shiny Metal, furnace fuel pattern: .0. ... .1. tools: Furnace recipe: - input: Pulverized Shiny Metal, furnace fuel + input: Shiny Ore, furnace fuel pattern: .0. ... .1. tools: Furnace recipe: @@ -1753,9 +1757,10 @@ group: Minerals pattern: ... .0. ... tools: Redstone Furnace recipe: - input: Pulverized Shiny Metal - pattern: ... .0. ... - tools: Redstone Furnace + input: Cinnabar, Shiny Ore + pattern: ... 0.1 ... + quantity: 3 + tools: Induction Smelter recipe: input: Pyrotheum Dust, Shiny Ore pattern: .1. ... .0. @@ -1764,11 +1769,6 @@ group: Minerals pattern: ... 0.1 ... quantity: 3 tools: Induction Smelter - recipe: - input: Cinnabar, Shiny Ore - pattern: ... 0.1 ... - quantity: 3 - tools: Induction Smelter recipe: input: Sand, Shiny Ore pattern: ... 0.1 ... @@ -1821,14 +1821,14 @@ group: Minerals tools: Crafting Table item: Signalum Ingot - recipe: - input: Signalum Blend, furnace fuel - pattern: .0. ... .1. - tools: Furnace recipe: input: Signalum Blend pattern: ... .0. ... tools: Redstone Furnace + recipe: + input: Signalum Blend, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: input: Sand, Signalum Blend pattern: ... 0.1 ... @@ -1857,11 +1857,7 @@ group: Minerals item: Silver Ingot recipe: - input: Silver Ore, furnace fuel - pattern: .0. ... .1. - tools: Furnace - recipe: - input: Silver Ore + input: Pulverized Silver pattern: ... .0. ... tools: Redstone Furnace recipe: @@ -1869,15 +1865,13 @@ group: Minerals pattern: .0. ... .1. tools: Furnace recipe: - input: Pulverized Silver + input: Silver Ore pattern: ... .0. ... tools: Redstone Furnace recipe: - extras: Lead Ingot - input: Cinnabar, Silver Ore - pattern: ... 0.1 ... - quantity: 3 - tools: Induction Smelter + input: Silver Ore, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: input: Rich Slag, Silver Ore pattern: ... 01. ... @@ -1900,6 +1894,12 @@ group: Minerals recipe: input: Pyrotheum Dust, Silver Ore pattern: ... 10. ... + recipe: + extras: Lead Ingot + input: Cinnabar, Silver Ore + pattern: ... 0.1 ... + quantity: 3 + tools: Induction Smelter recipe: input: Silver Nugget pattern: 000 000 000 @@ -1931,11 +1931,7 @@ group: Minerals item: Tin Ingot recipe: - input: Tin Ore, furnace fuel - pattern: .0. ... .1. - tools: Furnace - recipe: - input: Tin Ore + input: Pulverized Tin pattern: ... .0. ... tools: Redstone Furnace recipe: @@ -1943,15 +1939,13 @@ group: Minerals pattern: .0. ... .1. tools: Furnace recipe: - input: Pulverized Tin + input: Tin Ore pattern: ... .0. ... tools: Redstone Furnace recipe: - extras: Iron Ingot - input: Cinnabar, Tin Ore - pattern: ... 0.1 ... - quantity: 3 - tools: Induction Smelter + input: Tin Ore, furnace fuel + pattern: .0. ... .1. + tools: Furnace recipe: input: Rich Slag, Tin Ore pattern: ... 0.1 ... @@ -1971,6 +1965,12 @@ group: Minerals input: Pyrotheum Dust, Tin Ore pattern: ... 1.0 ... tools: Induction Smelter + recipe: + extras: Iron Ingot + input: Cinnabar, Tin Ore + pattern: ... 0.1 ... + quantity: 3 + tools: Induction Smelter recipe: input: Tin Nugget pattern: 000 000 000 @@ -2006,20 +2006,6 @@ group: Minerals tools: Crafting Table item: Tinker’s Alloy Ingot - recipe: - input: Tinker’s Alloy Blend, furnace fuel - pattern: .0. ... .1. - tools: Furnace - recipe: - input: Tinker’s Alloy Blend - pattern: ... .0. ... - tools: Redstone Furnace - recipe: - extras: Slag - input: Sand, 1 Tinker’s Alloy Blend - pattern: ... 0.1 ... - quantity: 3 - tools: Induction Smelter recipe: input: 3 Pulverized Copper, Pulverized Tin pattern: ... 0.1 ... @@ -2030,6 +2016,20 @@ group: Minerals pattern: ... 0.1 ... quantity: 4 tools: Induction Smelter + recipe: + input: Tinker’s Alloy Blend + pattern: ... .0. ... + tools: Redstone Furnace + recipe: + input: Tinker’s Alloy Blend, furnace fuel + pattern: .0. ... .1. + tools: Furnace + recipe: + extras: Slag + input: Sand, 1 Tinker’s Alloy Blend + pattern: ... 0.1 ... + quantity: 3 + tools: Induction Smelter recipe: input: Tinker’s Alloy Block pattern: ... .0. ... diff --git a/static/sitemap.txt b/static/sitemap.txt index 0e2500e9b..706ca3f91 100644 --- a/static/sitemap.txt +++ b/static/sitemap.txt @@ -17,6 +17,7 @@ http://crafting-guide.com/browse/mekanism/ http://crafting-guide.com/browse/minecraft/ http://crafting-guide.com/browse/modular_powersuits/ http://crafting-guide.com/browse/railcraft/ +http://crafting-guide.com/browse/simply_jetpacks/ http://crafting-guide.com/browse/thermal_dynamics/ http://crafting-guide.com/browse/thermal_expansion/ http://crafting-guide.com/browse/buildcraft/tutorials/gates_wires_and_chips/ @@ -3687,6 +3688,48 @@ http://crafting-guide.com/browse/railcraft/world_anchor/ http://crafting-guide.com/browse/railcraft/wye_track/ http://crafting-guide.com/browse/railcraft/yellow_metal_platform/ http://crafting-guide.com/browse/railcraft/yellow_metal_post/ +http://crafting-guide.com/browse/simply_jetpacks/cryotheum_coolant_unit/ +http://crafting-guide.com/browse/simply_jetpacks/cryotheum_coolant_unit_empty/ +http://crafting-guide.com/browse/simply_jetpacks/enderium_armor_plating/ +http://crafting-guide.com/browse/simply_jetpacks/flux_crystal/ +http://crafting-guide.com/browse/simply_jetpacks/flux_infused_chestplate_assembly/ +http://crafting-guide.com/browse/simply_jetpacks/flux_infused_jetplate/ +http://crafting-guide.com/browse/simply_jetpacks/fluxed_armor_plating/ +http://crafting-guide.com/browse/simply_jetpacks/fluxed_electrum_blend/ +http://crafting-guide.com/browse/simply_jetpacks/fluxed_electrum_ingot/ +http://crafting-guide.com/browse/simply_jetpacks/fluxed_electrum_nugget/ +http://crafting-guide.com/browse/simply_jetpacks/fluxed_thruster/ +http://crafting-guide.com/browse/simply_jetpacks/glowstone_elevation_unit/ +http://crafting-guide.com/browse/simply_jetpacks/glowstone_elevation_unit_empty/ +http://crafting-guide.com/browse/simply_jetpacks/hardened_flux_pack/ +http://crafting-guide.com/browse/simply_jetpacks/hardened_flux_pack_armored/ +http://crafting-guide.com/browse/simply_jetpacks/hardened_jetpack/ +http://crafting-guide.com/browse/simply_jetpacks/hardened_jetpack_armored/ +http://crafting-guide.com/browse/simply_jetpacks/hardened_thruster/ +http://crafting-guide.com/browse/simply_jetpacks/invar_armor_plating/ +http://crafting-guide.com/browse/simply_jetpacks/iron_armor_plating/ +http://crafting-guide.com/browse/simply_jetpacks/leadstone_flux_pack/ +http://crafting-guide.com/browse/simply_jetpacks/leadstone_jetpack/ +http://crafting-guide.com/browse/simply_jetpacks/leadstone_jetpack_armored/ +http://crafting-guide.com/browse/simply_jetpacks/leadstone_thruster/ +http://crafting-guide.com/browse/simply_jetpacks/leather_strap/ +http://crafting-guide.com/browse/simply_jetpacks/mysterious_potato/ +http://crafting-guide.com/browse/simply_jetpacks/particle_customizer_default/ +http://crafting-guide.com/browse/simply_jetpacks/particle_customizer_none/ +http://crafting-guide.com/browse/simply_jetpacks/particle_customizer_rainbow_smoke/ +http://crafting-guide.com/browse/simply_jetpacks/particle_customizer_smoke_only/ +http://crafting-guide.com/browse/simply_jetpacks/redstone_flux_pack/ +http://crafting-guide.com/browse/simply_jetpacks/redstone_flux_pack_armored/ +http://crafting-guide.com/browse/simply_jetpacks/reinforced_jetpack/ +http://crafting-guide.com/browse/simply_jetpacks/reinforced_jetpack_armored/ +http://crafting-guide.com/browse/simply_jetpacks/reinforced_thruster/ +http://crafting-guide.com/browse/simply_jetpacks/resonant_flux_pack/ +http://crafting-guide.com/browse/simply_jetpacks/resonant_flux_pack_armored/ +http://crafting-guide.com/browse/simply_jetpacks/resonant_jetpack/ +http://crafting-guide.com/browse/simply_jetpacks/resonant_jetpack_armored/ +http://crafting-guide.com/browse/simply_jetpacks/resonant_thruster/ +http://crafting-guide.com/browse/simply_jetpacks/tinker_s_alloy_armor_plating/ +http://crafting-guide.com/browse/simply_jetpacks/tuberous_jetpack/ http://crafting-guide.com/browse/thermal_dynamics/cryo_stabilized_fluxduct/ http://crafting-guide.com/browse/thermal_dynamics/cryo_stabilized_fluxduct_empty/ http://crafting-guide.com/browse/thermal_dynamics/dense_impulse_itemduct/