Compare commits
24 Commits
Author | SHA1 | Date | |
---|---|---|---|
85ada20503 | |||
f3d7a7017d | |||
b61d3a9398 | |||
72ec06fff6 | |||
7b5d74cfdf | |||
cdda5c8a03 | |||
0fc7dd0d0d | |||
fcb319631f | |||
8b83145c6c | |||
8c60a1f77d | |||
1c5dca224d | |||
5fb0e07fb0 | |||
00ca4eb7fe | |||
6d5be4c515 | |||
ef865187a9 | |||
71cf351384 | |||
5e9e219911 | |||
4dc529e7c9 | |||
193b5dcd5b | |||
198d6e53c3 | |||
1729abfec3 | |||
da78166cb3 | |||
78a2a7bdc9 | |||
791ae9da06 |
21
LICENSE.txt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2016 EvergreenTree
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
25
README.txt
Executable file → Normal file
@ -1,12 +1,21 @@
|
|||||||
___ _ __ __ _
|
___ _ __ __ _
|
||||||
/ _ \ _ _ __ _ _ __| |_ ____ | \/ | ___ __| |
|
/ _ \ _ _ __ _ _ __| |_ ____ | \/ | ___ __| |
|
||||||
| | | | | | |/ _` | '__| __|_ / | |\/| |/ _ \ / _` |
|
| | | | | | |/ _` | '__| __|_ / | |\/| |/ _ \ / _` |
|
||||||
| |_| | |_| | (_| | | | |_ / / | | | | (_) | (_| |
|
| |_| | |_| | (_| | | | |_ / / | | | | (_) | (_| |
|
||||||
\__\_\\__,_|\__,_|_| \__/___| |_| |_|\___/ \__,_|
|
\__\_\\__,_|\__,_|_| \__/___| |_| |_|\___/ \__,_|
|
||||||
|
|
||||||
|
|
||||||
This mod adds quartz ore and some decorative blocks to minetest.
|
This mod adds quartz ore and some decorative blocks to minetest.
|
||||||
|
|
||||||
|
Version: 1.0.0
|
||||||
|
License: MIT (see LICENSE.txt)
|
||||||
|
|
||||||
|
Dependencies:
|
||||||
|
default (found in minetest_game)
|
||||||
|
stairs (found in minetest_game)
|
||||||
|
moreblocks or stairsplus (optional, for stairsplus support)
|
||||||
|
|
||||||
|
Please report bugs at the GitHub issue tracker:
|
||||||
|
https://github.com/minetest-mods/quartz/issues/
|
||||||
|
|
||||||
Crafting:
|
Crafting:
|
||||||
|
|
||||||
@ -72,11 +81,5 @@ x|c|x
|
|||||||
-----
|
-----
|
||||||
x|x|x
|
x|x|x
|
||||||
|
|
||||||
|
If you have stairsplus (or moreblocks) installed, you will be able to use
|
||||||
License:
|
circular saws to cut quartz blocks.
|
||||||
|
|
||||||
CC BY-SA 3.0
|
|
||||||
|
|
||||||
More info at http://creativecommons.org/licenses/by-sa/3.0/
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
default,
|
|
||||||
stairs,
|
|
||||||
moreblocks?
|
|
229
init.lua
Executable file → Normal file
@ -1,109 +1,111 @@
|
|||||||
dofile(minetest.get_modpath("quartz").."/settings.txt")
|
local settings = Settings(minetest.get_modpath("quartz").."/settings.txt")
|
||||||
|
|
||||||
--Node Registration
|
local S = minetest.get_translator("quartz")
|
||||||
|
|
||||||
--Quartz Crystal
|
--
|
||||||
|
-- Item Registration
|
||||||
|
--
|
||||||
|
|
||||||
|
-- Quartz Crystal
|
||||||
minetest.register_craftitem("quartz:quartz_crystal", {
|
minetest.register_craftitem("quartz:quartz_crystal", {
|
||||||
description = "Quartz Crystal",
|
description = S("Quartz Crystal"),
|
||||||
inventory_image = "quartz_crystal_full.png",
|
inventory_image = "quartz_crystal_full.png",
|
||||||
})
|
})
|
||||||
minetest.register_craftitem("quartz:quartz_crystal_piece", {
|
minetest.register_craftitem("quartz:quartz_crystal_piece", {
|
||||||
description = "Quartz Crystal Piece",
|
description = S("Quartz Crystal Piece"),
|
||||||
inventory_image = "quartz_crystal_piece.png",
|
inventory_image = "quartz_crystal_piece.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
--Ore
|
--
|
||||||
|
-- Node Registration
|
||||||
|
--
|
||||||
|
|
||||||
|
-- Ore
|
||||||
minetest.register_node("quartz:quartz_ore", {
|
minetest.register_node("quartz:quartz_ore", {
|
||||||
description = "Quartz Ore",
|
description = S("Quartz Ore"),
|
||||||
tiles = {"default_stone.png^quartz_ore.png"},
|
tiles = {"default_stone.png^quartz_ore.png"},
|
||||||
groups = {cracky=3, stone=1},
|
groups = {cracky=3, stone=1},
|
||||||
drop = 'quartz:quartz_crystal',
|
drop = 'quartz:quartz_crystal',
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_ore({
|
minetest.register_ore({
|
||||||
ore_type = "scatter",
|
ore_type = "scatter",
|
||||||
ore = "quartz:quartz_ore",
|
ore = "quartz:quartz_ore",
|
||||||
wherein = "default:stone",
|
wherein = "default:stone",
|
||||||
clust_scarcity = 10*10*10,
|
clust_scarcity = 10*10*10,
|
||||||
clust_num_ores = 6,
|
clust_num_ores = 6,
|
||||||
clust_size = 5,
|
clust_size = 5,
|
||||||
y_min = -31000,
|
y_min = -31000,
|
||||||
y_max = -5,
|
y_max = -5,
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_ore({
|
-- Quartz Block
|
||||||
ore_type = "scatter",
|
|
||||||
ore = "quartz:quartz_ore",
|
|
||||||
wherein = "default:stone",
|
|
||||||
clust_scarcity = 30*30*30,
|
|
||||||
clust_num_ores = 64,
|
|
||||||
clust_size = 5,
|
|
||||||
y_min = -10240,
|
|
||||||
y_max = -8192,
|
|
||||||
})
|
|
||||||
|
|
||||||
--Quartz Block
|
|
||||||
minetest.register_node("quartz:block", {
|
minetest.register_node("quartz:block", {
|
||||||
description = "Quartz Block",
|
description = S("Quartz Block"),
|
||||||
tiles = {"quartz_block.png"},
|
tiles = {"quartz_block.png"},
|
||||||
groups = {cracky=3, oddly_breakable_by_hand=1},
|
groups = {cracky=3, oddly_breakable_by_hand=1},
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
--Chiseled Quartz
|
-- Chiseled Quartz
|
||||||
minetest.register_node("quartz:chiseled", {
|
minetest.register_node("quartz:chiseled", {
|
||||||
description = "Chiseled Quartz",
|
description = S("Chiseled Quartz"),
|
||||||
tiles = {"quartz_chiseled.png"},
|
tiles = {"quartz_chiseled.png"},
|
||||||
groups = {cracky=3, oddly_breakable_by_hand=1},
|
groups = {cracky=3, oddly_breakable_by_hand=1},
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
--Quartz Pillar
|
-- Quartz Pillar
|
||||||
minetest.register_node("quartz:pillar", {
|
minetest.register_node("quartz:pillar", {
|
||||||
description = "Quartz Pillar",
|
description = S("Quartz Pillar"),
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
tiles = {"quartz_pillar_top.png", "quartz_pillar_top.png", "quartz_pillar_side.png"},
|
tiles = {"quartz_pillar_top.png", "quartz_pillar_top.png",
|
||||||
|
"quartz_pillar_side.png"},
|
||||||
groups = {cracky=3, oddly_breakable_by_hand=1},
|
groups = {cracky=3, oddly_breakable_by_hand=1},
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
on_place = minetest.rotate_node
|
on_place = minetest.rotate_node
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Stairs & Slabs
|
||||||
--Stairs & Slabs
|
|
||||||
stairs.register_stair_and_slab("quartzblock", "quartz:block",
|
stairs.register_stair_and_slab("quartzblock", "quartz:block",
|
||||||
{cracky=3, oddly_breakable_by_hand=1},
|
{cracky=3, oddly_breakable_by_hand=1},
|
||||||
{"quartz_block.png"},
|
{"quartz_block.png"},
|
||||||
"Quartz stair",
|
S("Quartz Stair"),
|
||||||
"Quartz slab",
|
S("Quartz Slab"),
|
||||||
default.node_sound_glass_defaults())
|
default.node_sound_glass_defaults(),
|
||||||
|
nil,
|
||||||
|
S("Inner Quartz Stair"),
|
||||||
|
S("Outer Quartz Stair")
|
||||||
|
)
|
||||||
|
|
||||||
stairs.register_slab("quartzstair", "quartz:pillar",
|
stairs.register_stair_and_slab("quartzstair", "quartz:pillar",
|
||||||
{cracky=3, oddly_breakable_by_hand=1},
|
{cracky=3, oddly_breakable_by_hand=1},
|
||||||
{"quartz_pillar_top.png", "quartz_pillar_top.png", "quartz_pillar_side.png"},
|
{"quartz_pillar_top.png", "quartz_pillar_top.png",
|
||||||
"Quartz Pillar stair",
|
"quartz_pillar_side.png"},
|
||||||
"Quartz Pillar slab",
|
S("Quartz Pillar Stair"),
|
||||||
default.node_sound_glass_defaults())
|
S("Quartz Pillar Slab"),
|
||||||
|
default.node_sound_glass_defaults(),
|
||||||
|
nil,
|
||||||
|
S("Inner Quartz Pillar Stair"),
|
||||||
|
S("Outer Quartz Pillar Stair")
|
||||||
|
)
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Crafting
|
||||||
|
--
|
||||||
|
|
||||||
|
-- Quartz Crystal Piece
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--Crafting
|
|
||||||
|
|
||||||
--Quartz Crystal Piece
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "quartz:quartz_crystal_piece 3",
|
output = '"quartz:quartz_crystal_piece" 3',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'quartz:quartz_crystal'}
|
{'quartz:quartz_crystal'}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
--Quartz Block
|
-- Quartz Block
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "quartz:block 4",
|
output = '"quartz:block" 4',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'quartz:quartz_crystal', 'quartz:quartz_crystal', ''},
|
{'quartz:quartz_crystal', 'quartz:quartz_crystal', ''},
|
||||||
{'quartz:quartz_crystal', 'quartz:quartz_crystal', ''},
|
{'quartz:quartz_crystal', 'quartz:quartz_crystal', ''},
|
||||||
@ -111,27 +113,17 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
--Chiseled Quartz
|
-- Chiseled Quartz
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "quartz:chiseled 2",
|
output = 'quartz:chiseled 4',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'stairs:slab_quartzblock', '', ''},
|
{'quartz:block', 'quartz:block', ''},
|
||||||
{'stairs:slab_quartzblock', '', ''},
|
{'quartz:block', 'quartz:block', ''},
|
||||||
{'', '', ''},
|
{'', '', ''},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
--Chiseled Quartz(for stairsplus)
|
-- Quartz Pillar
|
||||||
--[[minetest.register_craft({
|
|
||||||
output = 'quartz:chiseled 2',
|
|
||||||
recipe = {
|
|
||||||
{'quartz:slab_block', '', ''},
|
|
||||||
{'quartz:slab_block', '', ''},
|
|
||||||
{'', '', ''},
|
|
||||||
}
|
|
||||||
}) ]]-- Disabled. Item "quartz:slab_block" is unknown //MFF(Mg|08/09/15)
|
|
||||||
|
|
||||||
--Quartz Pillar
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'quartz:pillar 2',
|
output = 'quartz:pillar 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
@ -141,11 +133,15 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
--abms
|
--
|
||||||
local dirs2 = { 12, 9, 18, 7, 12 }
|
-- ABMS
|
||||||
|
--
|
||||||
|
|
||||||
|
local dirs2 = {12, 9, 18, 7, 12}
|
||||||
|
|
||||||
|
-- Replace all instances of the horizontal quartz pillar with the
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
nodenames = { "quartz:pillar_horizontal" },
|
nodenames = {"quartz:pillar_horizontal"},
|
||||||
interval = 1,
|
interval = 1,
|
||||||
chance = 1,
|
chance = 1,
|
||||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||||
@ -155,47 +151,50 @@ minetest.register_abm({
|
|||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
--These are deprecated, don't use them
|
--
|
||||||
|
-- Compatibility with stairsplus
|
||||||
|
--
|
||||||
|
|
||||||
if enable_horizontal_pillar then
|
if minetest.global_exists("stairsplus") then
|
||||||
--Quartz Pillar (horizontal)
|
stairsplus:register_all("quartz", "block", "quartz:block", {
|
||||||
minetest.register_node("quartz:pillar_horizontal", {
|
description = "Quartz Block",
|
||||||
description = "Quartz Pillar Horizontal",
|
tiles = {"quartz_block.png"},
|
||||||
tiles = {"quartz_pillar_side.png", "quartz_pillar_side.png", "quartz_pillar_side.png^[transformR90",
|
groups = {cracky=3, oddly_breakable_by_hand=1},
|
||||||
"quartz_pillar_side.png^[transformR90", "quartz_pillar_top.png", "quartz_pillar_top.png"},
|
sounds = default.node_sound_glass_defaults()
|
||||||
paramtype2 = "facedir",
|
})
|
||||||
drop = 'quartz:pillar',
|
|
||||||
groups = {cracky=3, oddly_breakable_by_hand=1, not_in_creative_inventory=1},
|
stairsplus:register_all("quartz", "chiseled", "quartz:chiseled", {
|
||||||
sounds = default.node_sound_glass_defaults(),
|
description = "Chiseled Quartz",
|
||||||
|
tiles = {"quartz_chiseled.png"},
|
||||||
|
groups = {cracky=3, oddly_breakable_by_hand=1},
|
||||||
|
sounds = default.node_sound_glass_defaults()
|
||||||
|
})
|
||||||
|
|
||||||
|
stairsplus:register_all("quartz", "pillar", "quartz:pillar", {
|
||||||
|
description = "Quartz Pillar",
|
||||||
|
tiles = {"quartz_pillar_top.png", "quartz_pillar_top.png",
|
||||||
|
"quartz_pillar_side.png"},
|
||||||
|
groups = {cracky=3, oddly_breakable_by_hand=1},
|
||||||
|
sounds = default.node_sound_glass_defaults()
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Deprecated
|
||||||
|
--
|
||||||
|
|
||||||
--Compatibility with stairsplus
|
if settings:get_bool("ENABLE_HORIZONTAL_PILLAR") then
|
||||||
|
-- Quartz Pillar (horizontal)
|
||||||
if minetest.get_modpath("moreblocks") and enable_stairsplus then
|
minetest.register_node("quartz:pillar_horizontal", {
|
||||||
register_stair_slab_panel_micro("quartz", "block", "quartz:block",
|
description = "Quartz Pillar Horizontal",
|
||||||
{cracky=3},
|
tiles = {"quartz_pillar_side.png", "quartz_pillar_side.png",
|
||||||
{"quartz_block.png"},
|
"quartz_pillar_side.png^[transformR90",
|
||||||
"Quartz Block",
|
"quartz_pillar_side.png^[transformR90", "quartz_pillar_top.png",
|
||||||
"block",
|
"quartz_pillar_top.png"},
|
||||||
0)
|
paramtype2 = "facedir",
|
||||||
|
drop = 'quartz:pillar',
|
||||||
register_stair_slab_panel_micro("quartz", "chiseled", "quartz:chiseled",
|
groups = {cracky=3, oddly_breakable_by_hand=1,
|
||||||
{cracky=3},
|
not_in_creative_inventory=1},
|
||||||
{"quartz_chiseled.png"},
|
sounds = default.node_sound_glass_defaults(),
|
||||||
"Chiseled Quartz",
|
})
|
||||||
"chiseled",
|
|
||||||
0)
|
|
||||||
|
|
||||||
register_stair_slab_panel_micro("quartz", "pillar", "quartz:pillar",
|
|
||||||
{cracky=3},
|
|
||||||
{"quartz_pillar_top.png", "quartz_pillar_top.png", "quartz_pillar_side.png"},
|
|
||||||
"Quartz Pillar",
|
|
||||||
"pillar",
|
|
||||||
0)
|
|
||||||
|
|
||||||
table.insert(circular_saw.known_stairs, "quartz:block")
|
|
||||||
table.insert(circular_saw.known_stairs, "quartz:chiseled")
|
|
||||||
table.insert(circular_saw.known_stairs, "quartz:pillar")
|
|
||||||
end
|
end
|
||||||
|
19
locale/quartz.es.tr
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# textdomain: quartz
|
||||||
|
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
|
||||||
|
Chiseled Quartz=Cuarzo cincelado
|
||||||
|
Inner Quartz Pillar Stair=
|
||||||
|
Inner Quartz Stair=
|
||||||
|
Outer Quartz Pillar Stair=
|
||||||
|
Outer Quartz Stair=
|
||||||
|
Quartz Block=Bloque de cuarzo
|
||||||
|
Quartz Crystal=Cristal de cuarzo
|
||||||
|
Quartz Crystal Piece=Trozo de cristal de cuarzo
|
||||||
|
Quartz Ore=Mineral de cuarzo
|
||||||
|
Quartz Pillar=Pilar de cuarzo
|
||||||
|
Quartz Pillar Slab=Losa de pilar de cuarzo
|
||||||
|
Quartz Pillar Stair=Escaleras de pilar de cuarzo
|
||||||
|
Quartz Slab=Losa de cuarzo
|
||||||
|
Quartz Stair=Escaleras de cuarzo
|
19
locale/quartz.fr.tr
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# textdomain: quartz
|
||||||
|
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
|
||||||
|
Chiseled Quartz=Quartz ciselé
|
||||||
|
Inner Quartz Pillar Stair=Escalier intérieur en pilier en quartz
|
||||||
|
Inner Quartz Stair=Escalier intérieur en quartz
|
||||||
|
Outer Quartz Pillar Stair=Escalier extérieur en pilier de quartz
|
||||||
|
Outer Quartz Stair=Escalier extérieur en quartz
|
||||||
|
Quartz Block=Bloc de quartz
|
||||||
|
Quartz Crystal=Cristal de quartz
|
||||||
|
Quartz Crystal Piece=Morceau de cristal de quartz
|
||||||
|
Quartz Ore=Minerai de quartz
|
||||||
|
Quartz Pillar=Pilier en quartz
|
||||||
|
Quartz Pillar Slab=Dalle en pilier en quartz
|
||||||
|
Quartz Pillar Stair=Escalier en pilier en quartz
|
||||||
|
Quartz Slab=Dalle en quartz
|
||||||
|
Quartz Stair=Escalier en quartz
|
19
locale/quartz.pt_BR.tr
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# textdomain: quartz
|
||||||
|
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
|
||||||
|
Chiseled Quartz=Quartzo Cinzelado
|
||||||
|
Inner Quartz Pillar Stair=
|
||||||
|
Inner Quartz Stair=
|
||||||
|
Outer Quartz Pillar Stair=
|
||||||
|
Outer Quartz Stair=
|
||||||
|
Quartz Block=Bloco de Quartzo
|
||||||
|
Quartz Crystal=Cristal de Quartzo
|
||||||
|
Quartz Crystal Piece=Pedaço de Cristal de Quartzo
|
||||||
|
Quartz Ore=Minério de Quartzo
|
||||||
|
Quartz Pillar=Pilar de Quartzo
|
||||||
|
Quartz Pillar Slab=Laje de Pilar de Quartzo
|
||||||
|
Quartz Pillar Stair=Escada de Pilar de Quartzo
|
||||||
|
Quartz Slab=Laje de quartzo
|
||||||
|
Quartz Stair=Escada de quartzo
|
19
locale/template.txt
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# textdomain: quartz
|
||||||
|
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
|
||||||
|
Chiseled Quartz=
|
||||||
|
Inner Quartz Pillar Stair=
|
||||||
|
Inner Quartz Stair=
|
||||||
|
Outer Quartz Pillar Stair=
|
||||||
|
Outer Quartz Stair=
|
||||||
|
Quartz Block=
|
||||||
|
Quartz Crystal=
|
||||||
|
Quartz Crystal Piece=
|
||||||
|
Quartz Ore=
|
||||||
|
Quartz Pillar=
|
||||||
|
Quartz Pillar Slab=
|
||||||
|
Quartz Pillar Stair=
|
||||||
|
Quartz Slab=
|
||||||
|
Quartz Stair=
|
4
mod.conf
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
name = quartz
|
||||||
|
description = Adds quartz ore and some decorative quartz blocks.
|
||||||
|
depends = default,stairs
|
||||||
|
optional_depends = moreblocks,stairsplus
|
BIN
screenshot.png
Normal file
After Width: | Height: | Size: 106 KiB |
8
settings.txt
Executable file → Normal file
@ -1,7 +1,7 @@
|
|||||||
-- Set this to true to allow usage of the stairsplus mod in moreblocks
|
# Set this to true to allow usage of the stairsplus mod in moreblocks
|
||||||
|
|
||||||
enable_stairsplus = false
|
ENABLE_STAIRSPLUS = false
|
||||||
|
|
||||||
-- This enables the old horizontal pillar block(deprecated, be sure to convert them back to normal pillars)
|
# This enables the old horizontal pillar block(deprecated, be sure to convert them back to normal pillars)
|
||||||
|
|
||||||
enable_horizontal_pillar = true
|
ENABLE_HORIZONTAL_PILLAR = true
|
||||||
|
BIN
textures/quartz_block.png
Executable file → Normal file
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 300 B |
BIN
textures/quartz_chiseled.png
Executable file → Normal file
Before Width: | Height: | Size: 361 B After Width: | Height: | Size: 372 B |
BIN
textures/quartz_crystal_full.png
Executable file → Normal file
Before Width: | Height: | Size: 193 B After Width: | Height: | Size: 190 B |
BIN
textures/quartz_crystal_piece.png
Executable file → Normal file
Before Width: | Height: | Size: 138 B After Width: | Height: | Size: 124 B |
Before Width: | Height: | Size: 166 B After Width: | Height: | Size: 160 B |
BIN
textures/quartz_pillar_side.png
Executable file → Normal file
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 400 B |
BIN
textures/quartz_pillar_side_horizontal.png
Executable file → Normal file
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 262 B |
BIN
textures/quartz_pillar_top.png
Executable file → Normal file
Before Width: | Height: | Size: 369 B After Width: | Height: | Size: 414 B |