write something there
16
mods/minetest_game/wool/README.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
Minetest Game mod: wool
|
||||
=======================
|
||||
See license.txt for license information.
|
||||
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by Perttu Ahola (celeron55) <celeron55@gmail.com> (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
||||
Authors of media (textures)
|
||||
---------------------------
|
||||
Cisoun (CC BY-SA 3.0):
|
||||
wool_black.png wool_brown.png wool_dark_green.png wool_green.png
|
||||
wool_magenta.png wool_pink.png wool_violet.png wool_yellow.png
|
||||
wool_blue.png wool_cyan.png wool_dark_grey.png wool_grey.png
|
||||
wool_orange.png wool_red.png wool_white.png
|
54
mods/minetest_game/wool/init.lua
Normal file
|
@ -0,0 +1,54 @@
|
|||
-- wool/init.lua
|
||||
|
||||
-- Load support for MT game translation.
|
||||
local S = minetest.get_translator("wool")
|
||||
|
||||
local dyes = dye.dyes
|
||||
|
||||
for i = 1, #dyes do
|
||||
local name, desc = unpack(dyes[i])
|
||||
|
||||
local color_group = "color_" .. name
|
||||
|
||||
minetest.register_node("wool:" .. name, {
|
||||
description = S(desc .. " Wool"),
|
||||
tiles = {"wool_" .. name .. ".png"},
|
||||
is_ground_content = false,
|
||||
groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3,
|
||||
flammable = 3, wool = 1, [color_group] = 1},
|
||||
sounds = default.node_sound_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craft{
|
||||
type = "shapeless",
|
||||
output = "wool:" .. name,
|
||||
recipe = {"group:dye," .. color_group, "group:wool"},
|
||||
}
|
||||
end
|
||||
|
||||
-- Legacy
|
||||
-- Backwards compatibility with jordach's 16-color wool mod
|
||||
minetest.register_alias("wool:dark_blue", "wool:blue")
|
||||
minetest.register_alias("wool:gold", "wool:yellow")
|
||||
|
||||
-- Dummy calls to S() to allow translation scripts to detect the strings.
|
||||
-- To update this run:
|
||||
-- for _,e in ipairs(dye.dyes) do print(("S(%q)"):format(e[2].." Wool")) end
|
||||
|
||||
--[[
|
||||
S("White Wool")
|
||||
S("Grey Wool")
|
||||
S("Dark Grey Wool")
|
||||
S("Black Wool")
|
||||
S("Violet Wool")
|
||||
S("Blue Wool")
|
||||
S("Cyan Wool")
|
||||
S("Dark Green Wool")
|
||||
S("Green Wool")
|
||||
S("Yellow Wool")
|
||||
S("Brown Wool")
|
||||
S("Orange Wool")
|
||||
S("Red Wool")
|
||||
S("Magenta Wool")
|
||||
S("Pink Wool")
|
||||
--]]
|
60
mods/minetest_game/wool/license.txt
Normal file
|
@ -0,0 +1,60 @@
|
|||
License of source code
|
||||
----------------------
|
||||
|
||||
The MIT License (MIT)
|
||||
Copyright (C) 2012-2016 Perttu Ahola (celeron55) <celeron55@gmail.com>
|
||||
Copyright (C) 2012-2016 Various Minetest Game developers and contributors
|
||||
|
||||
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.
|
||||
|
||||
For more details:
|
||||
https://opensource.org/licenses/MIT
|
||||
|
||||
|
||||
Licenses of media (textures)
|
||||
----------------------------
|
||||
|
||||
Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
|
||||
Copyright (C) 2012-2016 Cisoun
|
||||
|
||||
You are free to:
|
||||
Share — copy and redistribute the material in any medium or format.
|
||||
Adapt — remix, transform, and build upon the material for any purpose, even commercially.
|
||||
The licensor cannot revoke these freedoms as long as you follow the license terms.
|
||||
|
||||
Under the following terms:
|
||||
|
||||
Attribution — You must give appropriate credit, provide a link to the license, and
|
||||
indicate if changes were made. You may do so in any reasonable manner, but not in any way
|
||||
that suggests the licensor endorses you or your use.
|
||||
|
||||
ShareAlike — If you remix, transform, or build upon the material, you must distribute
|
||||
your contributions under the same license as the original.
|
||||
|
||||
No additional restrictions — You may not apply legal terms or technological measures that
|
||||
legally restrict others from doing anything the license permits.
|
||||
|
||||
Notices:
|
||||
|
||||
You do not have to comply with the license for elements of the material in the public
|
||||
domain or where your use is permitted by an applicable exception or limitation.
|
||||
No warranties are given. The license may not give you all of the permissions necessary
|
||||
for your intended use. For example, other rights such as publicity, privacy, or moral
|
||||
rights may limit how you use the material.
|
||||
|
||||
For more details:
|
||||
http://creativecommons.org/licenses/by-sa/3.0/
|
16
mods/minetest_game/wool/locale/template.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=
|
||||
Grey Wool=
|
||||
Dark Grey Wool=
|
||||
Black Wool=
|
||||
Violet Wool=
|
||||
Blue Wool=
|
||||
Cyan Wool=
|
||||
Dark Green Wool=
|
||||
Green Wool=
|
||||
Yellow Wool=
|
||||
Brown Wool=
|
||||
Orange Wool=
|
||||
Red Wool=
|
||||
Magenta Wool=
|
||||
Pink Wool=
|
16
mods/minetest_game/wool/locale/wool.de.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Weiße Wolle
|
||||
Grey Wool=Graue Wolle
|
||||
Dark Grey Wool=Dunkelgraue Wolle
|
||||
Black Wool=Schwarze Wolle
|
||||
Violet Wool=Violette Wolle
|
||||
Blue Wool=Blaue Wolle
|
||||
Cyan Wool=Türkise Wolle
|
||||
Dark Green Wool=Dunkelgrüne Wolle
|
||||
Green Wool=Grüne Wolle
|
||||
Yellow Wool=Gelbe Wolle
|
||||
Brown Wool=Braune Wolle
|
||||
Orange Wool=Orange Wolle
|
||||
Red Wool=Rote Wolle
|
||||
Magenta Wool=Magenta Wolle
|
||||
Pink Wool=Rosa Wolle
|
16
mods/minetest_game/wool/locale/wool.eo.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Blanka lano
|
||||
Grey Wool=Griza lano
|
||||
Dark Grey Wool=Malhela griza lano
|
||||
Black Wool=Nigra lano
|
||||
Violet Wool=Violkolora lano
|
||||
Blue Wool=Blua lano
|
||||
Cyan Wool=Bluverda lano
|
||||
Dark Green Wool=Malhela verda lano
|
||||
Green Wool=Verda lano
|
||||
Yellow Wool=Flava lano
|
||||
Brown Wool=Bruna lano
|
||||
Orange Wool=Oranĝkolora lano
|
||||
Red Wool=Ruĝa lano
|
||||
Magenta Wool=Fuksina lano
|
||||
Pink Wool=Rozkolora lano
|
16
mods/minetest_game/wool/locale/wool.es.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Lana blanca
|
||||
Grey Wool=Lana gris
|
||||
Dark Grey Wool=Lana gris oscuro
|
||||
Black Wool=Lana negra
|
||||
Violet Wool=Lana violeta
|
||||
Blue Wool=Lana azul
|
||||
Cyan Wool=Lana cián
|
||||
Dark Green Wool=Lana verde oscuro
|
||||
Green Wool=Lana verde
|
||||
Yellow Wool=Lana amarilla
|
||||
Brown Wool=Lana marrón
|
||||
Orange Wool=Lana naranja
|
||||
Red Wool=Lana roja
|
||||
Magenta Wool=Lana magenta
|
||||
Pink Wool=Lana rosa
|
16
mods/minetest_game/wool/locale/wool.fr.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Laine blanche
|
||||
Grey Wool=Laine grise
|
||||
Dark Grey Wool=Laine grise foncée
|
||||
Black Wool=Laine noire
|
||||
Violet Wool=Laine violette
|
||||
Blue Wool=Laine bleue
|
||||
Cyan Wool=Laine cyan
|
||||
Dark Green Wool=Laine verte foncée
|
||||
Green Wool=Laine verte
|
||||
Yellow Wool=Laine jaune
|
||||
Brown Wool=Laine marron
|
||||
Orange Wool=Laine orange
|
||||
Red Wool=Laine rouge
|
||||
Magenta Wool=Laine magenta
|
||||
Pink Wool=Laine rose
|
16
mods/minetest_game/wool/locale/wool.id.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Wol Putih
|
||||
Grey Wool=Wol Abu
|
||||
Dark Grey Wool=Wol Abu Tua
|
||||
Black Wool=Wol Hitam
|
||||
Violet Wool=Wol Ungu
|
||||
Blue Wool=Wol Biru
|
||||
Cyan Wool=Wol Sian
|
||||
Dark Green Wool=Wol Hijau Tua
|
||||
Green Wool=Wol Hijau
|
||||
Yellow Wool=Wol Kuning
|
||||
Brown Wool=Wol Cokelat
|
||||
Orange Wool=Wol Oranye
|
||||
Red Wool=Wol Merah
|
||||
Magenta Wool=Wol Magenta
|
||||
Pink Wool=Wol Merah Muda
|
16
mods/minetest_game/wool/locale/wool.it.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Lana bianca
|
||||
Grey Wool=Lana grigia
|
||||
Dark Grey Wool=Lana grigia scura
|
||||
Black Wool=Lana nera
|
||||
Violet Wool=Lana viola
|
||||
Blue Wool=Lana blu
|
||||
Cyan Wool=Lana ciano
|
||||
Dark Green Wool=Lana verde scura
|
||||
Green Wool=Lana verde
|
||||
Yellow Wool=Lana gialla
|
||||
Brown Wool=Lana marrone
|
||||
Orange Wool=Lana arancione
|
||||
Red Wool=Lana rossa
|
||||
Magenta Wool=Lana magenta
|
||||
Pink Wool=Lana rosa
|
16
mods/minetest_game/wool/locale/wool.ja.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=白色の羊毛
|
||||
Grey Wool=灰色の羊毛
|
||||
Dark Grey Wool=濃灰色の羊毛
|
||||
Black Wool=黒色の羊毛
|
||||
Violet Wool=紫色の羊毛
|
||||
Blue Wool=青色の羊毛
|
||||
Cyan Wool=青緑色の羊毛
|
||||
Dark Green Wool=濃緑色の羊毛
|
||||
Green Wool=緑色の羊毛
|
||||
Yellow Wool=黄色の羊毛
|
||||
Brown Wool=茶色の羊毛
|
||||
Orange Wool=橙色の羊毛
|
||||
Red Wool=赤色の羊毛
|
||||
Magenta Wool=赤紫色の羊毛
|
||||
Pink Wool=桃色の羊毛
|
16
mods/minetest_game/wool/locale/wool.jbo.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=lo blabi sunla
|
||||
Grey Wool=lo grusi sunla
|
||||
Dark Grey Wool=lo xekri grusi sunla
|
||||
Black Wool=lo xekri sunla
|
||||
Violet Wool=lo zirpu sunla
|
||||
Blue Wool=lo blanu sunla
|
||||
Cyan Wool=lo cicna sunla
|
||||
Dark Green Wool=lo xekri crino sunla
|
||||
Green Wool=lo crino sunla
|
||||
Yellow Wool=lo pelxu sunla
|
||||
Brown Wool=lo bunre sunla
|
||||
Orange Wool=lo narju sunla
|
||||
Red Wool=lo xunre sunla
|
||||
Magenta Wool=lo nukni sunla
|
||||
Pink Wool=lo xunblabi sunla
|
16
mods/minetest_game/wool/locale/wool.lv.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Balta vilna
|
||||
Grey Wool=Pelēka vilna
|
||||
Dark Grey Wool=Tumšpelēka vilna
|
||||
Black Wool=Melna vilna
|
||||
Violet Wool=Violeta vilna
|
||||
Blue Wool=Zila vilna
|
||||
Cyan Wool=Ciānkrāsas vilna
|
||||
Dark Green Wool=Tumšzaļa vilna
|
||||
Green Wool=Zaļa vilna
|
||||
Yellow Wool=Dzeltena vilna
|
||||
Brown Wool=Brūna vilna
|
||||
Orange Wool=Oranža vilna
|
||||
Red Wool=Sarkana vilna
|
||||
Magenta Wool=Fuksīna krāsas vilna
|
||||
Pink Wool=Rozā vilna
|
16
mods/minetest_game/wool/locale/wool.ms.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Bulu Biri-Biri Putih
|
||||
Grey Wool=Bulu Biri-Biri Kelabu
|
||||
Dark Grey Wool=Bulu Biri-Biri Kelabu Tua
|
||||
Black Wool=Bulu Biri-Biri Hitam
|
||||
Violet Wool=Bulu Biri-Biri Ungu
|
||||
Blue Wool=Bulu Biri-Biri Biru
|
||||
Cyan Wool=Bulu Biri-Biri Biru Kehijauan
|
||||
Dark Green Wool=Bulu Biri-Biri Hijau Tua
|
||||
Green Wool=Bulu Biri-Biri Hijau
|
||||
Yellow Wool=Bulu Biri-Biri Kuning
|
||||
Brown Wool=Bulu Biri-Biri Perang
|
||||
Orange Wool=Bulu Biri-Biri Jingga
|
||||
Red Wool=Bulu Biri-Biri Merah
|
||||
Magenta Wool=Bulu Biri-Biri Magenta
|
||||
Pink Wool=Bulu Biri-Biri Merah Jambu
|
16
mods/minetest_game/wool/locale/wool.pl.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Biała wełna
|
||||
Grey Wool=Szara wełna
|
||||
Dark Grey Wool=Ciemnoszara wełna
|
||||
Black Wool=Czarna wełna
|
||||
Violet Wool=Fioletowa wełna
|
||||
Blue Wool=Niebieska wełna
|
||||
Cyan Wool=Cyjanowa wełna
|
||||
Dark Green Wool=Ciemnozielona wełna
|
||||
Green Wool=Zielona wełna
|
||||
Yellow Wool=Żółta wełna
|
||||
Brown Wool=Brązowa wełna
|
||||
Orange Wool=Pomarańczowa wełna
|
||||
Red Wool=Czerwona wełna
|
||||
Magenta Wool=Karmazynowa wełna
|
||||
Pink Wool=Różowa wełna
|
16
mods/minetest_game/wool/locale/wool.pt.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Tecido Branco
|
||||
Grey Wool=Tecido Cinza
|
||||
Dark Grey Wool=Tecido Cinza-escuro
|
||||
Black Wool=Tecido Preto
|
||||
Violet Wool=Tecido Violeta
|
||||
Blue Wool=Tecido Azul
|
||||
Cyan Wool=Tecido Ciano
|
||||
Dark Green Wool=Tecido Verde-escuro
|
||||
Green Wool=Tecido Verde
|
||||
Yellow Wool=Tecido Amarelo
|
||||
Brown Wool=Tecido Marrom
|
||||
Orange Wool=Tecido Laranja
|
||||
Red Wool=Tecido Vermelho
|
||||
Magenta Wool=Tecido Magenta
|
||||
Pink Wool=Tecido Rosa
|
16
mods/minetest_game/wool/locale/wool.pt_BR.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Tecido Branco
|
||||
Grey Wool=Tecido Cinza
|
||||
Dark Grey Wool=Tecido Cinza-escuro
|
||||
Black Wool=Tecido Preto
|
||||
Violet Wool=Tecido Violeta
|
||||
Blue Wool=Tecido Azul
|
||||
Cyan Wool=Tecido Ciano
|
||||
Dark Green Wool=Tecido Verde-escuro
|
||||
Green Wool=Tecido Verde
|
||||
Yellow Wool=Tecido Amarelo
|
||||
Brown Wool=Tecido Marrom
|
||||
Orange Wool=Tecido Laranja
|
||||
Red Wool=Tecido Vermelho
|
||||
Magenta Wool=Tecido Magenta
|
||||
Pink Wool=Tecido Rosa
|
16
mods/minetest_game/wool/locale/wool.ru.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Белая шерсть
|
||||
Grey Wool=Серая шерсть
|
||||
Dark Grey Wool=Тёмно-Серая шерсть
|
||||
Black Wool=Чёрная шерсть
|
||||
Violet Wool=Фиолетовая шерсть
|
||||
Blue Wool=Синяя шерсть
|
||||
Cyan Wool=Бирюзовая шерсть
|
||||
Dark Green Wool=Тёмно-Зелёная шерсть
|
||||
Green Wool=Зелёная шерсть
|
||||
Yellow Wool=Жёлтая шерсть
|
||||
Brown Wool=Коричневая шерсть
|
||||
Orange Wool=Оранжевая шерсть
|
||||
Red Wool=Красная шерсть
|
||||
Magenta Wool=Сиреневая шерсть
|
||||
Pink Wool=Розовая шерсть
|
16
mods/minetest_game/wool/locale/wool.sk.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Biela vlna
|
||||
Grey Wool=Šedá vlna
|
||||
Dark Grey Wool=Tmavošedá vlna
|
||||
Black Wool=Čierna vlna
|
||||
Violet Wool=Fialová vlna
|
||||
Blue Wool=Modrá vlna
|
||||
Cyan Wool=Tyrkysová vlna
|
||||
Dark Green Wool=Tmavozelená vlna
|
||||
Green Wool=Zelená vlna
|
||||
Yellow Wool=Žltá vlna
|
||||
Brown Wool=Hnedá vlna
|
||||
Orange Wool=Oranžová vlna
|
||||
Red Wool=Červená vlna
|
||||
Magenta Wool=Purpurová vlna
|
||||
Pink Wool=Ružová vlna
|
16
mods/minetest_game/wool/locale/wool.sv.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Vit ull
|
||||
Grey Wool=Grå ull
|
||||
Dark Grey Wool=Mörkgrå ull
|
||||
Black Wool=Svart ull
|
||||
Violet Wool=Violett ull
|
||||
Blue Wool=Blå ull
|
||||
Cyan Wool=Cyan ull
|
||||
Dark Green Wool=Mörkgrön ull
|
||||
Green Wool=Grön ull
|
||||
Yellow Wool=Gul ull
|
||||
Brown Wool=Brun ull
|
||||
Orange Wool=Orange ull
|
||||
Red Wool=Röd ull
|
||||
Magenta Wool=Magenta ull
|
||||
Pink Wool=Rosa ull
|
16
mods/minetest_game/wool/locale/wool.uk.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=Біла вовна
|
||||
Grey Wool=Сіра вовна
|
||||
Dark Grey Wool=Темно-сіра вовна
|
||||
Black Wool=Чорна вовна
|
||||
Violet Wool=Фіолетова вовна
|
||||
Blue Wool=Синя вовна
|
||||
Cyan Wool=Синьо-зелена вовна
|
||||
Dark Green Wool=Темно-зелена вовна
|
||||
Green Wool=Зелена вовна
|
||||
Yellow Wool=Жовта вовна
|
||||
Brown Wool=Коричнева вовна
|
||||
Orange Wool=Помаранчева вовна
|
||||
Red Wool=Червона вовна
|
||||
Magenta Wool=Пурпурна вовна
|
||||
Pink Wool=Рожева вовна
|
16
mods/minetest_game/wool/locale/wool.zh_CN.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=白羊毛
|
||||
Grey Wool=灰羊毛
|
||||
Dark Grey Wool=暗灰羊毛
|
||||
Black Wool=黑羊毛
|
||||
Violet Wool=紫羊毛
|
||||
Blue Wool=蓝羊毛
|
||||
Cyan Wool=青羊毛
|
||||
Dark Green Wool=暗绿羊毛
|
||||
Green Wool=绿羊毛
|
||||
Yellow Wool=黄羊毛
|
||||
Brown Wool=棕羊毛
|
||||
Orange Wool=橙羊毛
|
||||
Red Wool=红羊毛
|
||||
Magenta Wool=品红羊毛
|
||||
Pink Wool=粉红羊毛
|
16
mods/minetest_game/wool/locale/wool.zh_TW.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: wool
|
||||
White Wool=白羊毛
|
||||
Grey Wool=灰羊毛
|
||||
Dark Grey Wool=暗灰羊毛
|
||||
Black Wool=黑羊毛
|
||||
Violet Wool=紫羊毛
|
||||
Blue Wool=藍羊毛
|
||||
Cyan Wool=青羊毛
|
||||
Dark Green Wool=暗綠羊毛
|
||||
Green Wool=綠羊毛
|
||||
Yellow Wool=黃羊毛
|
||||
Brown Wool=棕羊毛
|
||||
Orange Wool=橙羊毛
|
||||
Red Wool=紅羊毛
|
||||
Magenta Wool=品紅羊毛
|
||||
Pink Wool=粉紅羊毛
|
3
mods/minetest_game/wool/mod.conf
Normal file
|
@ -0,0 +1,3 @@
|
|||
name = wool
|
||||
description = Minetest Game mod: wool
|
||||
depends = default, dye
|
BIN
mods/minetest_game/wool/textures/wool_black.png
Normal file
After Width: | Height: | Size: 209 B |
BIN
mods/minetest_game/wool/textures/wool_blue.png
Normal file
After Width: | Height: | Size: 264 B |
BIN
mods/minetest_game/wool/textures/wool_brown.png
Normal file
After Width: | Height: | Size: 267 B |
BIN
mods/minetest_game/wool/textures/wool_cyan.png
Normal file
After Width: | Height: | Size: 302 B |
BIN
mods/minetest_game/wool/textures/wool_dark_green.png
Normal file
After Width: | Height: | Size: 254 B |
BIN
mods/minetest_game/wool/textures/wool_dark_grey.png
Normal file
After Width: | Height: | Size: 260 B |
BIN
mods/minetest_game/wool/textures/wool_green.png
Normal file
After Width: | Height: | Size: 304 B |
BIN
mods/minetest_game/wool/textures/wool_grey.png
Normal file
After Width: | Height: | Size: 248 B |
BIN
mods/minetest_game/wool/textures/wool_magenta.png
Normal file
After Width: | Height: | Size: 296 B |
BIN
mods/minetest_game/wool/textures/wool_orange.png
Normal file
After Width: | Height: | Size: 284 B |
BIN
mods/minetest_game/wool/textures/wool_pink.png
Normal file
After Width: | Height: | Size: 218 B |
BIN
mods/minetest_game/wool/textures/wool_red.png
Normal file
After Width: | Height: | Size: 288 B |
BIN
mods/minetest_game/wool/textures/wool_violet.png
Normal file
After Width: | Height: | Size: 244 B |
BIN
mods/minetest_game/wool/textures/wool_white.png
Normal file
After Width: | Height: | Size: 243 B |
BIN
mods/minetest_game/wool/textures/wool_yellow.png
Normal file
After Width: | Height: | Size: 255 B |