1
0
mirror of https://github.com/MinetestForFun/fishing.git synced 2025-07-21 17:40:27 +02:00

continue rewriting

refactor code
rename files
This commit is contained in:
2015-06-16 01:42:05 +02:00
parent ab67ad83b3
commit 03e2321a22
14 changed files with 300 additions and 107 deletions

19
baitball.lua Normal file
View File

@ -0,0 +1,19 @@
-- baitball
minetest.register_craftitem("fishing:baitball", {
description = "Bait Ball",
inventory_image = "fishing_baitball.png",
})
minetest.register_craft({
type = "shapeless",
output = "fishing:baitball",
recipe = {"farming:flour", "farming:corn", "food:egg", "bucket:bucket_water"}
})