minetest-lexip16/rules/technic_worldgen.py
2016-05-21 21:48:20 +08:00

31 lines
1.7 KiB
Python

textures = {
'technic_brass_block': ('brass', 'ore_block'),
'technic_brass_ingot': ('brass', 'cuboid', 'cuboid'),
'technic_carbon_steel_block': ('carbon_steel', 'ore_block'),
'technic_carbon_steel_ingot': ('carbon_steel', 'cuboid', 'cuboid'),
'technic_cast_iron_block': ('cast_iron', 'ore_block'),
'technic_cast_iron_ingot': ('cast_iron', 'cuboid', 'cuboid'),
'technic_chromium_block': ('chromium', 'ore_block'),
'technic_chromium_ingot': ('chromium', 'cuboid', 'cuboid'),
'technic_chromium_lump': ('chromium', 'ore_lump', 'ore_lump'),
'technic_lead_block': ('lead', 'ore_block'),
'technic_lead_ingot': ('lead', 'cuboid', 'cuboid'),
'technic_lead_lump': ('lead', 'ore_lump', 'ore_lump'),
'technic_mineral_chromium': ('chromium', 'simple_block', 'mineral'),
'technic_mineral_lead': ('lead', 'simple_block', 'mineral'),
'technic_mineral_sulfur': ('sulfur', 'simple_block', 'mineral'),
'technic_mineral_uranium': ('uranium', 'simple_block', 'mineral'),
'technic_mineral_zinc': ('zinc', 'simple_block', 'mineral'),
'technic_stainless_steel_block': ('stainless_steel', 'ore_block'),
'technic_stainless_steel_ingot': ('stainless_steel', 'cuboid', 'cuboid'),
'technic_sulfur_lump': ('sulfur', 'ore_lump', 'ore_lump'),
'technic_uranium_block': ('uranium', 'ore_block'),
'technic_uranium_ingot': ('uranium', 'cuboid', 'cuboid'),
'technic_uranium_lump': ('uranium', 'ore_lump', 'ore_lump'),
'technic_wrought_iron_block': 'default_steel_block',
'technic_wrought_iron_ingot': 'default_steel_ingot',
'technic_zinc_block': ('zinc', 'ore_block'),
'technic_zinc_ingot': ('zinc', 'cuboid', 'cuboid'),
'technic_zinc_lump': ('zinc', 'ore_lump', 'ore_lump'),
}