Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mobs_animal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
mobs_animal
Commits
6d903f6a
Commit
6d903f6a
authored
8 years ago
by
TenPlus1
Browse files
Options
Downloads
Patches
Plain Diff
Added penguin to glacier biomes (created by D00Med :)
parent
d45dbe16
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
init.lua
+1
-0
1 addition, 0 deletions
init.lua
models/mobs_penguin.b3d
+0
-0
0 additions, 0 deletions
models/mobs_penguin.b3d
penguin.lua
+70
-0
70 additions, 0 deletions
penguin.lua
readme.md
+4
-0
4 additions, 0 deletions
readme.md
textures/mobs_penguin.png
+0
-0
0 additions, 0 deletions
textures/mobs_penguin.png
with
75 additions
and
0 deletions
init.lua
+
1
−
0
View file @
6d903f6a
...
...
@@ -20,6 +20,7 @@ dofile(path .. "/warthog.lua") -- KrupnoPavel
dofile
(
path
..
"/bee.lua"
)
-- KrupnoPavel
dofile
(
path
..
"/bunny.lua"
)
-- ExeterDad
dofile
(
path
..
"/kitten.lua"
)
-- Jordach/BFD
dofile
(
path
..
"/penguin.lua"
)
-- D00Med
dofile
(
path
..
"/lucky_block.lua"
)
...
...
This diff is collapsed.
Click to expand it.
models/mobs_penguin.b3d
0 → 100644
+
0
−
0
View file @
6d903f6a
File added
This diff is collapsed.
Click to expand it.
penguin.lua
0 → 100644
+
70
−
0
View file @
6d903f6a
local
S
=
mobs
.
intllib
-- Penguin by D00Med
mobs
:
register_mob
(
"mobs_animal:penguin"
,
{
type
=
"animal"
,
passive
=
true
,
reach
=
1
,
hp_min
=
5
,
hp_max
=
10
,
armor
=
200
,
collisionbox
=
{
-
0
.
2
,
-
0
.
0
,
-
0
.
2
,
0
.
2
,
0
.
5
,
0
.
2
},
visual
=
"mesh"
,
mesh
=
"mobs_penguin.b3d"
,
visual_size
=
{
x
=
0
.
25
,
y
=
0
.
25
},
textures
=
{
{
"mobs_penguin.png"
},
},
sounds
=
{},
makes_footstep_sound
=
true
,
walk_velocity
=
1
,
run_velocity
=
2
,
runaway
=
true
,
jump
=
false
,
stepheight
=
1
.
1
,
drops
=
{
{
name
=
"mobs:meat_raw"
,
chance
=
1
,
min
=
1
,
max
=
1
},
},
water_damage
=
0
,
lava_damage
=
4
,
light_damage
=
0
,
fear_height
=
2
,
animation
=
{
speed_normal
=
15
,
stand_start
=
1
,
stand_end
=
20
,
walk_start
=
25
,
walk_end
=
45
,
fly_start
=
75
,
-- swim animation
fly_end
=
95
,
-- 50-70 is slide/water idle
},
fly_in
=
"default:water_source"
,
floats
=
0
,
follow
=
{
"ethereal:fish_raw"
},
view_range
=
5
,
on_rightclick
=
function
(
self
,
clicker
)
-- feed or tame
if
mobs
:
feed_tame
(
self
,
clicker
,
4
,
false
,
true
)
then
return
end
mobs
:
protect
(
self
,
clicker
)
mobs
:
capture_mob
(
self
,
clicker
,
5
,
50
,
80
,
false
,
nil
)
end
,
})
mobs
:
spawn
({
name
=
"mobs_animal:penguin"
,
nodes
=
{
"default:snowblock"
},
min_light
=
10
,
chance
=
15000
,
min_height
=
0
,
day_toggle
=
true
,
})
mobs
:
register_egg
(
"mobs_animal:penguin"
,
S
(
"Penguin"
),
"default_snow.png"
,
1
)
This diff is collapsed.
Click to expand it.
readme.md
+
4
−
0
View file @
6d903f6a
...
...
@@ -33,6 +33,10 @@ Warthog
-
Warthogs unlike pigs defend themselves when hit and give 1-3 raw pork when killed, they can also be right-clicked with 8x apples to tame or breed.
Penguin
-
These little guys can be found in glacier biomes on top of snow and have the ability to swim if they fall into water.
Note: After breeding animals need to rest for 4 minutes, baby animals take 4 minutes to grow up and feeding them helps them grow quicker...
Lucky Blocks: 14
This diff is collapsed.
Click to expand it.
textures/mobs_penguin.png
0 → 100644
+
0
−
0
View file @
6d903f6a
892 B
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment