1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-04-04 19:50:31 +02:00
This commit is contained in:
Obani 2015-06-01 21:58:03 +02:00
commit e6910dba39
3997 changed files with 2477 additions and 4697 deletions
.gitignoreLICENSEREADME.md
minetestforfun_game
README.txtgame.confgame_api.txt
menu
minetest.confminetest.conf.example
mods
beds
boats
bucket
creative
default

0
.gitignore vendored Normal file → Executable file

0
LICENSE Normal file → Executable file

0
README.md Normal file → Executable file

0
minetestforfun_game/README.txt Normal file → Executable file

0
minetestforfun_game/game.conf Normal file → Executable file

0
minetestforfun_game/game_api.txt Normal file → Executable file

0
minetestforfun_game/menu/header.png Normal file → Executable file

Before

(image error) Size: 79 KiB

After

(image error) Size: 79 KiB

0
minetestforfun_game/menu/icon.png Normal file → Executable file

Before

(image error) Size: 2.9 KiB

After

(image error) Size: 2.9 KiB

0
minetestforfun_game/minetest.conf Normal file → Executable file

0
minetestforfun_game/minetest.conf.example Normal file → Executable file

0
minetestforfun_game/mods/beds/models/fancy_bed.obj Normal file → Executable file

0
minetestforfun_game/mods/beds/models/simple_bed.obj Normal file → Executable file

0
minetestforfun_game/mods/beds/textures/beds_bed.png Normal file → Executable file

Before

(image error) Size: 364 B

After

(image error) Size: 364 B

Before

(image error) Size: 366 B

After

(image error) Size: 366 B

0
minetestforfun_game/mods/beds/textures/fancy_bed.png Normal file → Executable file

Before

(image error) Size: 555 B

After

(image error) Size: 555 B

0
minetestforfun_game/mods/beds/textures/simple_bed.png Normal file → Executable file

Before

(image error) Size: 1.1 KiB

After

(image error) Size: 1.1 KiB

0
minetestforfun_game/mods/boats/README.txt Normal file → Executable file

0
minetestforfun_game/mods/boats/depends.txt Normal file → Executable file

2
minetestforfun_game/mods/boats/init.lua Normal file → Executable file

@ -228,7 +228,7 @@ boats.register_boat({
controls = { controls = {
up = 0.25, up = 0.25,
down = 0.25, down = 0.25,
rotate = 2 rotate = 4
}, },
description = "Expert race boat" description = "Expert race boat"
}) })

0
minetestforfun_game/mods/boats/models/boat.x Normal file → Executable file

Before

(image error) Size: 1.5 KiB

After

(image error) Size: 1.5 KiB

Before

(image error) Size: 847 B

After

(image error) Size: 847 B

Before

(image error) Size: 1.5 KiB

After

(image error) Size: 1.5 KiB

Before

(image error) Size: 879 B

After

(image error) Size: 879 B

Before

(image error) Size: 1.4 KiB

After

(image error) Size: 1.4 KiB

0
minetestforfun_game/mods/boats/textures/boats_moon.png Normal file → Executable file

Before

(image error) Size: 4.1 KiB

After

(image error) Size: 4.1 KiB

Before

(image error) Size: 1.6 KiB

After

(image error) Size: 1.6 KiB

Before

(image error) Size: 1.1 KiB

After

(image error) Size: 1.1 KiB

Before

(image error) Size: 1.6 KiB

After

(image error) Size: 1.6 KiB

Before

(image error) Size: 854 B

After

(image error) Size: 854 B

Before

(image error) Size: 1.6 KiB

After

(image error) Size: 1.6 KiB

Before

(image error) Size: 1.1 KiB

After

(image error) Size: 1.1 KiB

Before

(image error) Size: 1.5 KiB

After

(image error) Size: 1.5 KiB

Before

(image error) Size: 985 B

After

(image error) Size: 985 B

0
minetestforfun_game/mods/bucket/README.txt Normal file → Executable file

0
minetestforfun_game/mods/bucket/depends.txt Normal file → Executable file

0
minetestforfun_game/mods/bucket/init.lua Normal file → Executable file

0
minetestforfun_game/mods/bucket/textures/bucket.png Normal file → Executable file

Before

(image error) Size: 163 B

After

(image error) Size: 163 B

Before

(image error) Size: 190 B

After

(image error) Size: 190 B

Before

(image error) Size: 167 B

After

(image error) Size: 167 B

Before

(image error) Size: 365 B

After

(image error) Size: 365 B

Before

(image error) Size: 169 B

After

(image error) Size: 169 B

0
minetestforfun_game/mods/creative/README.txt Normal file → Executable file

0
minetestforfun_game/mods/creative/depends.txt Normal file → Executable file

0
minetestforfun_game/mods/creative/init.lua Normal file → Executable file

0
minetestforfun_game/mods/default/aliases.lua Normal file → Executable file

0
minetestforfun_game/mods/default/commands.lua Normal file → Executable file

28
minetestforfun_game/mods/default/crafting.lua Normal file → Executable file

@ -548,6 +548,34 @@ minetest.register_craft({
} }
}) })
minetest.register_craft({
output = "default:gravel",
recipe = {
{"default:cobble"},
}
})
minetest.register_craft({
output = "default:sand",
recipe = {
{"default:desert_sand"},
}
})
minetest.register_craft({
output = "default:desert_sand",
recipe = {
{"default:sand"},
}
})
minetest.register_craft({
output = "default:sand",
recipe = {
{"default:gravel"},
}
})
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:stone", output = "default:stone",

0
minetestforfun_game/mods/default/craftitems.lua Normal file → Executable file

0
minetestforfun_game/mods/default/functions.lua Normal file → Executable file

0
minetestforfun_game/mods/default/furnace.lua Normal file → Executable file

0
minetestforfun_game/mods/default/init.lua Normal file → Executable file

0
minetestforfun_game/mods/default/legacy.lua Normal file → Executable file

0
minetestforfun_game/mods/default/mapgen.lua Normal file → Executable file

0
minetestforfun_game/mods/default/models/character.b3d Normal file → Executable file

0
minetestforfun_game/mods/default/models/character.png Normal file → Executable file

Before

(image error) Size: 1.8 KiB

After

(image error) Size: 1.8 KiB

12
minetestforfun_game/mods/default/nodes.lua Normal file → Executable file

@ -994,7 +994,7 @@ minetest.register_node("default:sand_flowing", {
animation={type = "vertical_frames", aspect_w= 16, aspect_h = 16, length = 0.6} animation={type = "vertical_frames", aspect_w= 16, aspect_h = 16, length = 0.6}
}, },
}, },
alpha = 160, alpha = 255,
paramtype = "light", paramtype = "light",
paramtype2 = "flowingliquid", paramtype2 = "flowingliquid",
walkable = false, walkable = false,
@ -1007,7 +1007,7 @@ minetest.register_node("default:sand_flowing", {
liquid_alternative_flowing = "default:sand_flowing", liquid_alternative_flowing = "default:sand_flowing",
liquid_alternative_source = "default:sand_source", liquid_alternative_source = "default:sand_source",
liquid_viscosity = 20, liquid_viscosity = 20,
post_effect_color = {a = 220, r = 187, g = 187, b = 0}, post_effect_color = {a = 250, r = 0, g = 0, b = 0},
groups = {liquid = 3, not_in_creative_inventory = 1}, groups = {liquid = 3, not_in_creative_inventory = 1},
}) })
@ -1015,9 +1015,7 @@ minetest.register_node("default:sand_source", {
description = "Sand Source", description = "Sand Source",
inventory_image = minetest.inventorycube("default_sand.png"), inventory_image = minetest.inventorycube("default_sand.png"),
drawtype = "liquid", drawtype = "liquid",
tiles = { tiles = {"default_sand.png"},
{name = "default_sand_source_animated.png", animation={type = "vertical_frames", aspect_w= 16, aspect_h = 16, length = 1.5}}
},
special_tiles = { special_tiles = {
-- New-style water source material (mostly unused) -- New-style water source material (mostly unused)
{ {
@ -1026,7 +1024,7 @@ minetest.register_node("default:sand_source", {
backface_culling = false, backface_culling = false,
} }
}, },
alpha = 160, alpha = 255,
paramtype = "light", paramtype = "light",
walkable = false, walkable = false,
pointable = false, pointable = false,
@ -1039,7 +1037,7 @@ minetest.register_node("default:sand_source", {
liquid_alternative_source = "default:sand_source", liquid_alternative_source = "default:sand_source",
liquid_viscosity = 20, liquid_viscosity = 20,
liquid_renewable = false, liquid_renewable = false,
post_effect_color = {a = 220, r = 187, g = 187, b = 0}, post_effect_color = {a = 250, r = 0, g = 0, b = 0},
groups = {liquid = 3}, groups = {liquid = 3},
}) })

0
minetestforfun_game/mods/default/player.lua Normal file → Executable file

Some files were not shown because too many files have changed in this diff Show More