Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
loud_walking
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
loud_walking
Compare revisions
a9ed16717cfbacd17a5f89e3dde230a06f36dbc0 to bc28471d263751456dce7a6181ee8c1ec5e54835
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
Illuna-Minetest/loud_walking
Select target project
No results found
bc28471d263751456dce7a6181ee8c1ec5e54835
Select Git revision
Branches
master
old
unlimited
Swap
Target
Illuna-Minetest/loud_walking
Select target project
Illuna-Minetest/loud_walking
1 result
a9ed16717cfbacd17a5f89e3dde230a06f36dbc0
Select Git revision
Branches
master
old
unlimited
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
use regular syntax for water_poison for compatibility
· bc28471d
Milan
authored
6 years ago
bc28471d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nodes.lua
+87
-21
87 additions, 21 deletions
nodes.lua
with
87 additions
and
21 deletions
nodes.lua
View file @
bc28471d
...
...
@@ -222,28 +222,94 @@ newnode.groups = {snappy = 3, flammable = 2}
minetest
.
register_node
(
"loud_walking:leaves_black"
,
newnode
)
newnode
=
loud_walking
.
clone_node
(
"default:water_source"
)
newnode
.
description
=
"Poisonous Water"
newnode
.
groups
.
poison
=
3
--newnode.light_source = 6
newnode
.
liquid_alternative_flowing
=
"loud_walking:water_poison_flowing"
newnode
.
liquid_alternative_source
=
"loud_walking:water_poison_source"
newnode
.
post_effect_color
=
{
a
=
103
,
r
=
108
,
g
=
128
,
b
=
64
}
newnode
.
special_tiles
[
1
].
name
=
"loud_walking_water_poison_source_animated.png"
newnode
.
tiles
[
1
].
name
=
"loud_walking_water_poison_source_animated.png"
minetest
.
register_node
(
"loud_walking:water_poison_source"
,
newnode
)
newnode
=
loud_walking
.
clone_node
(
"default:water_flowing"
)
newnode
.
description
=
"Poisonous Water"
newnode
.
groups
.
poison
=
3
--newnode.light_source = 6
newnode
.
liquid_alternative_flowing
=
"loud_walking:water_poison_flowing"
newnode
.
liquid_alternative_source
=
"loud_walking:water_poison_source"
newnode
.
post_effect_color
=
{
a
=
103
,
r
=
108
,
g
=
128
,
b
=
64
}
newnode
.
special_tiles
[
1
].
name
=
"loud_walking_water_poison_flowing_animated.png"
newnode
.
tiles
[
1
]
=
"loud_walking_water_poison.png"
minetest
.
register_node
(
"loud_walking:water_poison_flowing"
,
newnode
)
minetest
.
register_node
(
"loud_walking:water_poison_source"
,
{
description
=
"Poisonous Water"
,
drawtype
=
"liquid"
,
tiles
=
{
{
name
=
"loud_walking_water_poison_source_animated.png"
,
backface_culling
=
false
,
animation
=
{
type
=
"vertical_frames"
,
aspect_w
=
16
,
aspect_h
=
16
,
length
=
2
.
0
,
},
},
{
name
=
"loud_walking_water_poison_source_animated.png"
,
backface_culling
=
true
,
animation
=
{
type
=
"vertical_frames"
,
aspect_w
=
16
,
aspect_h
=
16
,
length
=
2
.
0
,
},
},
},
alpha
=
160
,
paramtype
=
"light"
,
walkable
=
false
,
pointable
=
false
,
diggable
=
false
,
buildable_to
=
true
,
is_ground_content
=
false
,
drop
=
""
,
drowning
=
1
,
liquidtype
=
"source"
,
liquid_alternative_flowing
=
"loud_walking:water_poison_flowing"
,
liquid_alternative_source
=
"loud_walking:water_poison_source"
,
liquid_viscosity
=
1
,
post_effect_color
=
{
a
=
103
,
r
=
108
,
g
=
128
,
b
=
64
},
groups
=
{
water
=
3
,
liquid
=
3
,
cools_lava
=
1
,
poison
=
4
},
sounds
=
default
.
node_sound_water_defaults
(),
})
minetest
.
register_node
(
"loud_walking:water_poison_flowing"
,
{
description
=
"Poisonous Water"
,
drawtype
=
"flowingliquid"
,
tiles
=
{
"loud_walking_water_poison.png"
},
special_tiles
=
{
{
name
=
"loud_walking_water_poison_flowing_animated.png"
,
backface_culling
=
false
,
animation
=
{
type
=
"vertical_frames"
,
aspect_w
=
16
,
aspect_h
=
16
,
length
=
0
.
8
,
},
},
{
name
=
"loud_walking_water_poison_flowing_animated.png"
,
backface_culling
=
true
,
animation
=
{
type
=
"vertical_frames"
,
aspect_w
=
16
,
aspect_h
=
16
,
length
=
0
.
8
,
},
},
},
alpha
=
160
,
paramtype
=
"light"
,
paramtype2
=
"flowingliquid"
,
walkable
=
false
,
pointable
=
false
,
diggable
=
false
,
buildable_to
=
true
,
is_ground_content
=
false
,
drop
=
""
,
drowning
=
1
,
liquidtype
=
"flowing"
,
liquid_alternative_flowing
=
"loud_walking:water_poison_flowing"
,
liquid_alternative_source
=
"loud_walking:water_poison_source"
,
liquid_viscosity
=
1
,
post_effect_color
=
{
a
=
103
,
r
=
108
,
g
=
128
,
b
=
64
},
groups
=
{
water
=
3
,
liquid
=
3
,
not_in_creative_inventory
=
1
,
cools_lava
=
1
,
poison
=
3
},
sounds
=
default
.
node_sound_water_defaults
(),
})
minetest
.
register_node
(
"loud_walking:basalt"
,
{
description
=
"Basalt"
,
...
...
This diff is collapsed.
Click to expand it.