Mehr Mods hinzugefügt
This commit is contained in:
parent
92a55732cf
commit
9e345a25fb
2805 changed files with 2096013 additions and 0 deletions
30
mods/mobs_water/mobs_turtles/spawn_example.lua
Normal file
30
mods/mobs_water/mobs_turtles/spawn_example.lua
Normal file
|
@ -0,0 +1,30 @@
|
|||
|
||||
-- Turtle spawn examples
|
||||
|
||||
-- land turtle
|
||||
mobs:spawn({
|
||||
name = "mobs_turtles:turtle",
|
||||
nodes = {"group:crumbly"},
|
||||
neighbors = {
|
||||
"group:crumbly", "default:papyrus", "default:cactus",
|
||||
"dryplants:juncus", "dryplants:reedmace"
|
||||
},
|
||||
min_light = 5,
|
||||
interval = 30,
|
||||
chance = 30000,
|
||||
min_height = 1,
|
||||
max_height = 10
|
||||
})
|
||||
|
||||
-- sea turtle
|
||||
mobs:spawn({
|
||||
name = "mobs_turtles:seaturtle",
|
||||
nodes = {"group:water"},
|
||||
neighbors = {
|
||||
"group:water", "group:seaplants", "seawrecks:woodship", "seawrecks:uboot"
|
||||
},
|
||||
min_light = 5,
|
||||
interval = 30,
|
||||
chance = 30000,
|
||||
max_height = 0
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue