Skip to content
Snippets Groups Projects
Commit 1f21dcd6 authored by Milan's avatar Milan
Browse files

add vipworld modpack

parent 6e35aebc
No related branches found
No related tags found
No related merge requests found
Pipeline #1032 canceled
Showing
with 75 additions and 0 deletions
-- Settings for generation of stuff (at map-generation time)
Molehills_Max_Count = 320 -- absolute maximum number in an area of 80x80x80 nodes
Molehills_Rarity = 95 -- larger values make molehills more rare (100 means chance of 0 %)
mods/vipworld/molehills/textures/molehills_dirt.png

806 B

mods/vipworld/molehills/textures/molehills_side.png

308 B

mods/vipworld/molehills/textures/old & unused/molehill_side.png

110 B

mods/vipworld/molehills/textures/old & unused/molehill_top.png

162 B

moretrees @ d521e347
Subproject commit d521e34758d4297ac2de9027848fed5e3594f950
-- This file supplies poison ivy for the plantlife modpack
-- Last revision: 2013-01-24
local walls_list = {
"default:dirt",
"default:dirt_with_grass",
"default:stone",
"default:cobble",
"default:mossycobble",
"default:brick",
"default:tree",
"default:jungletree",
"default:stone_with_coal",
"default:stone_with_iron"
},
minetest.register_node('poisonivy:seedling', {
description = "Poison ivy (seedling)",
drawtype = 'plantlike',
waving = 1,
tiles = { 'poisonivy_seedling.png' },
inventory_image = 'poisonivy_seedling.png',
wield_image = 'poisonivy_seedling.png',
sunlight_propagates = true,
paramtype = 'light',
walkable = false,
groups = { snappy = 3, poisonivy=1, flora_block=1 },
sounds = default.node_sound_leaves_defaults(),
buildable_to = true,
})
minetest.register_node('poisonivy:sproutling', {
description = "Poison ivy (sproutling)",
drawtype = 'plantlike',
waving = 1,
tiles = { 'poisonivy_sproutling.png' },
inventory_image = 'poisonivy_sproutling.png',
wield_image = 'poisonivy_sproutling.png',
sunlight_propagates = true,
paramtype = 'light',
walkable = false,
groups = { snappy = 3, poisonivy=1, flora_block=1 },
sounds = default.node_sound_leaves_defaults(),
buildable_to = true,
})
minetest.register_node('poisonivy:climbing', {
description = "Poison ivy (climbing plant)",
drawtype = 'signlike',
tiles = { 'poisonivy_climbing.png' },
inventory_image = 'poisonivy_climbing.png',
wield_image = 'poisonivy_climbing.png',
sunlight_propagates = true,
paramtype = 'light',
paramtype2 = 'wallmounted',
walkable = false,
groups = { snappy = 3, poisonivy=1, flora_block=1 },
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
buildable_to = true,
})
Poison ivy (seedling) = Hera venenosa (plantilha)
Poison ivy (sproutling) = Hera venenosa (brotando)
Poison ivy (climbing plant) = Hera venenosa (planta trepadeira)
[Poison Ivy] Loaded. =[Poison Ivy] Carregado
mods/vipworld/poisonivy/textures/poisonivy_climbing.png

228 B

mods/vipworld/poisonivy/textures/poisonivy_seedling.png

179 B

mods/vipworld/poisonivy/textures/poisonivy_sproutling.png

239 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment