--I give credit from Oldcoder and the website that shows basic mod making --This is for U.S.A flag, its flag15 minetest.register_node("moreflags:flag_us", { tiles = {"moreflags_flag_us.png"}, light_source = 15, description = "U.S.A Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_us" 4', recipe = { {'wool:red', 'wool:white', 'wool:blue'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Canada, Flag1 minetest.register_node("moreflags:flag_ca", { tiles = {"moreflags_flag_ca.png"}, light_source = 15, description = "Canada Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_ca" 4', recipe = { {'wool:red', 'wool:white', ''}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for France, flag2 minetest.register_node("moreflags:flag_fe", { tiles = {"moreflags_flag_fe.png"}, light_source = 15, description = "France Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_fe" 4', recipe = { {'wool:blue', 'wool:white', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --this is for Germany, flag3 minetest.register_node("moreflags:flag_gy", { tiles = {"moreflags_flag_gy.png"}, light_source = 15, description = "Germany Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_gy" 4', recipe = { {'wool:black', 'wool:red', 'wool:yellow'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --this is for Italy, flag4 minetest.register_node("moreflags:flag_iy", { tiles = {"moreflags_flag_iy.png"}, light_source = 15, description = "Italy Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_iy" 4', recipe = { {'wool:green', 'wool:white', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --Tjis is for Mexico, Flag5 minetest.register_node("moreflags:flag_mx", { tiles = {"moreflags_flag_mx.png"}, light_source = 15, description = "Mexico Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_mx" 4', recipe = { {'wool:green', 'wool:brown', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Poleland, Flag6 minetest.register_node("moreflags:flag_pd", { tiles = {"moreflags_flag_pd.png"}, light_source = 15, description = "Poleland Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_pd" 4', recipe = { {'wool:white', 'wool:red', ''}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is Puerto Rico, Flag7 minetest.register_node("moreflags:flag_pr", { tiles = {"moreflags_flag_pr.png"}, light_source = 15, description = " Puerto Rico Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_pr" 4', recipe = { {'wool:white', 'wool:blue', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is Romania, Flag8 minetest.register_node("moreflags:flag_ra", { tiles = {"moreflags_flag_ra.png"}, light_source = 15, description = "Romania Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_ra" 4', recipe = { {'wool:blue', 'wool:yellow', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is Spain Flag9 minetest.register_node("moreflags:flag_sn", { tiles = {"moreflags_flag_sn.png"}, light_source = 15, description = "Spain Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_sn" 4', recipe = { {'wool:red', 'wool:yellow', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for United Kindom, Flag10 minetest.register_node("moreflags:flag_uk", { tiles = {"moreflags_flag_uk.png"}, light_source = 15, description = "United Kindom Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_uk" 4', recipe = { {'wool:blue', 'wool:red', 'wool:white'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for China, Flag11 minetest.register_node("moreflags:flag_ch", { tiles = {"moreflags_flag_ch.png"}, light_source = 15, description = "China Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_ch" 4', recipe = { {'wool:yellow', 'wool:red', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Japan, Flag12 minetest.register_node("moreflags:flag_jp", { tiles = {"moreflags_flag_jp.png"}, light_source = 15, description = "Japan Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_jp" 4', recipe = { {'wool:white', 'wool:red', 'wool:white'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Argentina, Flag13 minetest.register_node("moreflags:flag_aa", { tiles = {"moreflags_flag_aa.png"}, light_source = 15, description = "Argentina Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_aa" 4', recipe = { {'wool:blue', 'wool:yellow', 'wool:blue'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for North Korea, Flag14 minetest.register_node("moreflags:flag_nk", { tiles = {"moreflags_flag_nk.png"}, light_source = 15, description = "North Korea", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_nk" 4', recipe = { {'wool:blue', 'wool:white', 'wool:blue'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Columbia, Flag16 minetest.register_node("moreflags:flag_cl", { tiles = {"moreflags_flag_cl.png"}, light_source = 15, description = "Columbia Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_cl" 4', recipe = { {'wool:yellow', 'wool:blue', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Uraguay, Flag17 minetest.register_node("moreflags:flag_ua", { tiles = {"moreflags_flag_ua.png"}, light_source = 15, description = "Uraguay Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_ua" 4', recipe = { {'wool:yellow', 'wool:blue', 'wool:white'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Israel, Flag18 minetest.register_node("moreflags:flag_il", { tiles = {"moreflags_flag_il.png"}, light_source = 15, description = "Israel Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_il" 4', recipe = { {'wool:blue', 'wool:white', ''}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --To down textures are from the help kaeza --This iis for Jamaica, Flag 19 minetest.register_node("moreflags:flag_jc", { tiles = {"moreflags_flag_jc.png"}, light_source = 15, description = "Jamaica Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_jc" 4', recipe = { {'wool:green', 'wool:black', 'wool:yellow'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for New Zealand, Flag20 minetest.register_node("moreflags:flag_nz", { tiles = {"moreflags_flag_nz.png"}, light_source = 15, description = "New Zealand Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_nz" 4', recipe = { {'wool:red', 'wool:blue', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --this is for Australia, Flag21 minetest.register_node("moreflags:flag_au", { tiles = {"moreflags_flag_au.png"}, light_source = 15, description = "Australia Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_au" 4', recipe = { {'wool:red', 'wool:blue', 'wool:blue'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --Thsi is for Brazil, Flag22 minetest.register_node("moreflags:flag_br", { tiles = {"moreflags_flag_br.png"}, light_source = 15, description = "Brazil Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_br" 4', recipe = { {'wool:green', 'wool:yellow', 'wool:blue'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --Thsi is for Chile, Flag23 minetest.register_node("moreflags:flag_ci", { tiles = {"moreflags_flag_ci.png"}, light_source = 15, description = "Chile Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_ci" 4', recipe = { {'wool:white', 'wool:red', 'wool:blue'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Honduras, Flag24 minetest.register_node("moreflags:flag_hs", { tiles = {"moreflags_flag_hs.png"}, light_source = 15, description = "Honduras Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_hs" 4', recipe = { {'wool:cyan', 'wool:white', 'wool:cyan'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Guatemala, Flag25 minetest.register_node("moreflags:flag_ga", { tiles = {"moreflags_flag_ga.png"}, light_source = 15, description = "Guatemala Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_ga" 4', recipe = { {'wool:cyan', 'wool:yellow', 'wool:cyan'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for South Africa, Flag26 minetest.register_node("moreflags:flag_sf", { tiles = {"moreflags_flag_sf.png"}, light_source = 15, description = "South Africa Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_sf" 4', recipe = { {'wool:black', 'wool:red', 'wool:blue'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) -- This is for Panama, Flag27 minetest.register_node("moreflags:flag_pa", { tiles = {"moreflags_flag_pa.png"}, light_source = 15, description = "Panama Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_pa" 4', recipe = { {'wool:blue', 'wool:red', ''}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) -- This is for Paraguay, Flag28 minetest.register_node("moreflags:flag_py", { tiles = {"moreflags_flag_py.png"}, light_source = 15, description = "Paraguay Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_py" 4', recipe = { {'wool:red', 'wool:green', 'wool:blue'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Peru. Flag29 minetest.register_node("moreflags:flag_pu", { tiles = {"moreflags_flag_pu.png"}, light_source = 15, description = "Peru Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_pu" 4', recipe = { {'wool:red', 'wool:white', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Portugal, Flag30 minetest.register_node("moreflags:flag_pl", { tiles = {"moreflags_flag_pl.png"}, light_source = 15, description = "Portugal Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_pl" 4', recipe = { {'wool:green', 'wool:yellow', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Russia, Flag31 minetest.register_node("moreflags:flag_rs", { tiles = {"moreflags_flag_rs.png"}, light_source = 15, description = "Russia Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_rs" 4', recipe = { {'wool:white', 'wool:blue', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for South Korea, Flag32 minetest.register_node("moreflags:flag_sa", { tiles = {"moreflags_flag_sa.png"}, light_source = 15, description = "South Korea Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_sa" 4', recipe = { {'wool:white', 'wool:black', 'wool:red'}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for Vietnam, Flag33 minetest.register_node("moreflags:flag_vm", { tiles = {"moreflags_flag_vm.png"}, light_source = 15, description = "Vietnam Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_vm" 4', recipe = { {'wool:red', 'wool:yellow', ''}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } }) --This is for India, Flag34 minetest.register_node("moreflags:flag_in", { tiles = {"moreflags_flag_in.png"}, light_source = 15, description = "India Flag", groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3} }) minetest.register_craft({ output = '"moreflags:flag_in" 4', recipe = { {'wool:orange', 'wool:green', ''}, {'default:torch', 'default:torch', ''}, {'', '', ''}, } })