sorcery  Check-in [049207a61e]

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: 049207a61e22d53a86004190da592c031a2dcc43b8da9165ddc88dae773c7674
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     31   			};
    32     32   		};
    33     33   		bless = {
    34     34   			potions = {};
    35     35   			tools = {};
    36     36   		};
    37     37   		gifts = {
    38         -			['sorcery:screw_steel'] = {7,1};
    39         -			['sorcery:pipe'] = {16,2};
    40         -			['sorcery:valve'] = {18,3};
    41         -			['sorcery:fragment_vidrium'] = {20,4};
    42         -			['sorcery:fragment_lithium'] = {23,5};
    43         -			['sorcery:screw_platinum'] = {31,5};
    44         -			['sorcery:screw_tungsten'] = {33,5};
    45         -			['sorcery:powder_firestorm'] = {48,7};
           38  +			['sorcery:screw_steel'] = {7,4};
           39  +			['basic_materials:plastic_strip'] = {11,5};
           40  +			['sorcery:pipe'] = {16,6};
           41  +			['sorcery:valve'] = {18,8};
           42  +			['sorcery:fragment_vidrium'] = {20,7};
           43  +			['sorcery:fragment_lithium'] = {23,9};
           44  +			['basic_materials:plastic_sheet'] = {25,6};
           45  +			['sorcery:screw_platinum'] = {31,6};
           46  +			['sorcery:screw_tungsten'] = {33,8};
           47  +			['sorcery:powder_firestorm'] = {48,6};
    46     48   		};
    47     49   		consecrate = {
    48     50   			["sorcery:dagger"] = {17, "sorcery:dagger_consecrated"};
    49     51   			["sorcery:oil_mystic"] = {9, "sorcery:oil_purifying"};
    50     52   			["sorcery:potion_water"] = {4, "sorcery:holy_water"};
    51     53   			["default:paper"] = function(ctx)
    52     54   				local stack = ItemStack('sorcery:recipe')

Modified recipes.lua from [22986aed9f] to [2f8b7e24c9].

   411    411   
   412    412   
   413    413   regtech('warding_plate', 'Warding Plate', {metal = 1}, {
   414    414   	{'basic_materials:gold_wire','basic_materials:gold_wire','basic_materials:gold_wire'};
   415    415   	{'',mtlp('vidrium','block'),''};
   416    416   	{'basic_materials:gold_wire','basic_materials:gold_wire','basic_materials:gold_wire'};
   417    417   }, 4)
   418         -regtech('ley_puncture', 'Ley Puncture', {metal = 1})
          418  +regtech('ley_puncture', 'Ley Puncture', {metal = 1}, {
          419  +	{'default:flint','sorcery:tungsten_ingot','group:sorcery_ley_cable'};
          420  +	{'','group:sorcery_ley_cable',''};
          421  +	{'group:sorcery_ley_cable','sorcery:tungsten_ingot','default:flint'};
          422  +})
   419    423   regtech('pulse_rectifier', 'Pulse Rectifier', {metal = 1})
   420         -regtech('current_felicitator', 'Current Felicitator', {metal = 1})
          424  +regtech('current_felicitator', 'Current Felicitator', {metal = 1}, {
          425  +	{'basic_materials:silver_wire','basic_materials:silver_wire','basic_materials:silver_wire'};
          426  +	{'sorcery:cobalt_ingot','sorcery:inversion_matrix','sorcery:cobalt_ingot'};
          427  +	{'default:bronze_ingot','sorcery:platinum_ingot','default:bronze_ingot'};
          428  +})
   421    429   
   422    430   regtech('conduction_plate', 'Conduction Plate', {metal = 1}, {
   423    431   	{'','default:copper_ingot',''};
   424    432   	{'','stairs:slab_stone',''};
   425    433   	{'basic_materials:copper_wire','basic_materials:steel_bar','basic_materials:copper_wire'};
   426    434   })
   427    435