2019-08-28 17:31:41 +02:00
|
|
|
local S = minetest.get_translator("farming")
|
2017-05-17 17:57:14 +02:00
|
|
|
--
|
|
|
|
-- Achievements
|
|
|
|
--
|
|
|
|
|
|
|
|
achievements.register_achievement(
|
|
|
|
"farmer",
|
|
|
|
{
|
2019-08-28 17:31:41 +02:00
|
|
|
title = S("Farmer"),
|
2019-09-22 02:52:11 +02:00
|
|
|
description = S("Plant a seed and watch it grow."),
|
|
|
|
times = 1,
|
|
|
|
placenode = "group:seed",
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
achievements.register_achievement(
|
2019-09-22 02:52:11 +02:00
|
|
|
"wheat_farmer",
|
2017-05-17 17:57:14 +02:00
|
|
|
{
|
2019-09-22 02:52:11 +02:00
|
|
|
title = S("Wheat Farmer"),
|
|
|
|
description = S("Harvest a fully-grown wheat plant."),
|
|
|
|
times = 1,
|
|
|
|
placenode = "farming:wheat_4",
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
achievements.register_achievement(
|
|
|
|
"cotton_farmer",
|
|
|
|
{
|
2019-08-28 17:31:41 +02:00
|
|
|
title = S("Cotton Farmer"),
|
2019-09-22 02:52:11 +02:00
|
|
|
description = S("Harvest a fully-grown cotton plant."),
|
|
|
|
times = 1,
|
|
|
|
placenode = "farming:cotton_4",
|
2017-05-17 17:57:14 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
default.log("achievements", "loaded")
|