1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-07-06 01:50:21 +02:00

Update mobs mod

- add chicken/chicken_black models
- add DM_strangewhite/DM_cobblestone models
- add rat/rat_brown models
- add the support for multiple textures/models in
rat.lua/sandmonster.lua/spider.lua/stonemonster.lua/treemonster.lua
- add the honey_block texture
This commit is contained in:
Ombridride
2014-12-09 14:22:26 +01:00
parent 48dd18d49a
commit 8c2391d5ac
12 changed files with 26 additions and 5 deletions

View File

@ -8,7 +8,12 @@ mobs:register_mob("mobs:rat", {
collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.2, 0.2},
visual = "mesh",
mesh = "mobs_rat.x",
textures = {"mobs_rat.png"},
--textures = {"mobs_rat.png"},
available_textures = {
total = 2,
texture_1 = {"mobs_rat.png"},
texture_2 = {"mobs_rat_brown.png"},
},
makes_footstep_sound = false,
walk_velocity = 1,
armor = 200,