Skip to content

challenge mod minetest para criar desafios de percursos e voos

License

Notifications You must be signed in to change notification settings

josegamestest/challenge

Repository files navigation

challenge

minetest mod challenge to create route and flight challenges

Two types of tools

challenge:tool_challenge_circle_open_#color

This tool places open circles on the map, each circle has a different color according to the tool used, when the player passes by one of them, it plays a sound to identify that the player has passed it

challenge:tool_challenge_flag_point_3d_cor

This tool does almost the same as the previous one, but with a different feature, its name cannot be changed, making it easier to mark the marking points

challenge_remove_tool tool currently disabled

It's a tool to clean nearby objects 5 blocks away, this tool is still being made and can remove any objects around. this tool is currently deactivating damage

gas balloons

The gas balloons come out of blocks a specific block placed on the ground, they can be used for target testing in vertical motion

To UPDATE

When the player passes through the circle his name will be registered in it, the name of the node can be changed by the owner

landing helicopter training

Now the mod has some blocks that can help in landing training by drawing targets on the ground when the player lands on the location a sound is emitted

RECIPES

challenge:tool_challenge_circle_open_#color

minetest.register_craft({
output = "challenge:tool_challenge_circle_open_white",
recipe = {
{"group:leaves",	"group:leaves",		"group:leaves"},
{"group:leaves",	"default:diamond",	"group:leaves"},
{"group:leaves",	"group:leaves",		"group:leaves"},
}})

--black minetest.register_craft({ output = "challenge:tool_challenge_circle_open_black", recipe = { {"challenge:tool_challenge_circle_open_white", "default:coal_lump"},} }) --red minetest.register_craft({ output = "challenge:tool_challenge_circle_open_red", recipe = { {"challenge:tool_challenge_circle_open_white", "flowers:rose"},} }) --blue minetest.register_craft({ output = "challenge:tool_challenge_circle_open_blue", recipe = { {"challenge:tool_challenge_circle_open_white", "flowers:geranium"},} }) --green minetest.register_craft({ output = "challenge:tool_challenge_circle_open_green", recipe = { {"challenge:tool_challenge_circle_open_white", "default:cactus"},} }) --yellow minetest.register_craft({ output = "challenge:tool_challenge_circle_open_yellow", recipe = { {"challenge:tool_challenge_circle_open_white", "flowers:dandelion_yellow"},} })

challenge:tool_flag_point_3d_#color

minetest.register_craft({ output = "challenge:tool_flag_point_3d_white", recipe = { {"group:leaves", "group:leaves", "group:leaves"}, {"group:leaves", "default:mese_crystal", "group:leaves"}, {"group:leaves", "group:leaves", "group:leaves"}, }})

--black minetest.register_craft({ output = "challenge:tool_flag_point_3d_black", recipe = { {"challenge:tool_flag_point_3d_white", "default:coal_lump"},} }) --red minetest.register_craft({ output = "challenge:tool_flag_point_3d_red", recipe = { {"challenge:tool_flag_point_3d_white", "flowers:rose"},} }) --blue minetest.register_craft({ output = "challenge:tool_flag_point_3d_blue", recipe = { {"challenge:tool_flag_point_3d_white", "flowers:geranium"},} }) --green minetest.register_craft({ output = "challenge:tool_flag_point_3d_green", recipe = { {"challenge:tool_flag_point_3d_white", "default:cactus"},} }) --yellow minetest.register_craft({ output = "challenge:tool_flag_point_3d_yellow", recipe = { {"challenge:tool_flag_point_3d_white", "flowers:dandelion_yellow"},} })

About

challenge mod minetest para criar desafios de percursos e voos

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages