Overview
Comment: | add more recipes and god gifts |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
049207a61e22d53a86004190da592c03 |
User & Date: | lexi on 2021-07-05 23:59:44 |
Other Links: | manifest | tags |
Context
2021-07-06
| ||
04:18 | replace hellaciously overcomplicated function with simpler, faster one check-in: 5322b9e068 user: lexi tags: trunk | |
2021-07-05
| ||
23:59 | add more recipes and god gifts check-in: 049207a61e user: lexi tags: trunk | |
20:43 | add support for instantiation callbacks, god tweaks and bug fixes check-in: 3354e2aa29 user: lexi tags: trunk | |
Changes
Modified data/gods.lua from [39659f8d92] to [555bdcec59].
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
}; }; bless = { potions = {}; tools = {}; }; gifts = { ['sorcery:screw_steel'] = {7,1}; ['sorcery:pipe'] = {16,2}; ['sorcery:valve'] = {18,3}; ['sorcery:fragment_vidrium'] = {20,4}; ['sorcery:fragment_lithium'] = {23,5}; ['sorcery:screw_platinum'] = {31,5}; ['sorcery:screw_tungsten'] = {33,5}; ['sorcery:powder_firestorm'] = {48,7}; }; consecrate = { ["sorcery:dagger"] = {17, "sorcery:dagger_consecrated"}; ["sorcery:oil_mystic"] = {9, "sorcery:oil_purifying"}; ["sorcery:potion_water"] = {4, "sorcery:holy_water"}; ["default:paper"] = function(ctx) local stack = ItemStack('sorcery:recipe') |
| > | | | | > | | | |
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
}; }; bless = { potions = {}; tools = {}; }; gifts = { ['sorcery:screw_steel'] = {7,4}; ['basic_materials:plastic_strip'] = {11,5}; ['sorcery:pipe'] = {16,6}; ['sorcery:valve'] = {18,8}; ['sorcery:fragment_vidrium'] = {20,7}; ['sorcery:fragment_lithium'] = {23,9}; ['basic_materials:plastic_sheet'] = {25,6}; ['sorcery:screw_platinum'] = {31,6}; ['sorcery:screw_tungsten'] = {33,8}; ['sorcery:powder_firestorm'] = {48,6}; }; consecrate = { ["sorcery:dagger"] = {17, "sorcery:dagger_consecrated"}; ["sorcery:oil_mystic"] = {9, "sorcery:oil_purifying"}; ["sorcery:potion_water"] = {4, "sorcery:holy_water"}; ["default:paper"] = function(ctx) local stack = ItemStack('sorcery:recipe') |
Modified recipes.lua from [22986aed9f] to [2f8b7e24c9].
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 |
regtech('warding_plate', 'Warding Plate', {metal = 1}, { {'basic_materials:gold_wire','basic_materials:gold_wire','basic_materials:gold_wire'}; {'',mtlp('vidrium','block'),''}; {'basic_materials:gold_wire','basic_materials:gold_wire','basic_materials:gold_wire'}; }, 4) regtech('ley_puncture', 'Ley Puncture', {metal = 1}) regtech('pulse_rectifier', 'Pulse Rectifier', {metal = 1}) regtech('current_felicitator', 'Current Felicitator', {metal = 1}) regtech('conduction_plate', 'Conduction Plate', {metal = 1}, { {'','default:copper_ingot',''}; {'','stairs:slab_stone',''}; {'basic_materials:copper_wire','basic_materials:steel_bar','basic_materials:copper_wire'}; }) |
| > > > > | > > > > |
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 |
regtech('warding_plate', 'Warding Plate', {metal = 1}, { {'basic_materials:gold_wire','basic_materials:gold_wire','basic_materials:gold_wire'}; {'',mtlp('vidrium','block'),''}; {'basic_materials:gold_wire','basic_materials:gold_wire','basic_materials:gold_wire'}; }, 4) regtech('ley_puncture', 'Ley Puncture', {metal = 1}, { {'default:flint','sorcery:tungsten_ingot','group:sorcery_ley_cable'}; {'','group:sorcery_ley_cable',''}; {'group:sorcery_ley_cable','sorcery:tungsten_ingot','default:flint'}; }) regtech('pulse_rectifier', 'Pulse Rectifier', {metal = 1}) regtech('current_felicitator', 'Current Felicitator', {metal = 1}, { {'basic_materials:silver_wire','basic_materials:silver_wire','basic_materials:silver_wire'}; {'sorcery:cobalt_ingot','sorcery:inversion_matrix','sorcery:cobalt_ingot'}; {'default:bronze_ingot','sorcery:platinum_ingot','default:bronze_ingot'}; }) regtech('conduction_plate', 'Conduction Plate', {metal = 1}, { {'','default:copper_ingot',''}; {'','stairs:slab_stone',''}; {'basic_materials:copper_wire','basic_materials:steel_bar','basic_materials:copper_wire'}; }) |