write something there
13
mods/minetest_game/dye/README.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
Minetest Game mod: dye
|
||||
======================
|
||||
See license.txt for license information.
|
||||
See init.lua for documentation.
|
||||
|
||||
Authors of source code
|
||||
----------------------
|
||||
Originally by Perttu Ahola (celeron55) <celeron55@gmail.com> (MIT)
|
||||
Various Minetest Game developers and contributors (MIT)
|
||||
|
||||
Authors of media (textures)
|
||||
---------------------------
|
||||
Perttu Ahola (celeron55) <celeron55@gmail.com> (CC BY-SA 3.0)
|
127
mods/minetest_game/dye/init.lua
Normal file
|
@ -0,0 +1,127 @@
|
|||
-- dye/init.lua
|
||||
|
||||
dye = {}
|
||||
|
||||
-- Load support for MT game translation.
|
||||
local S = minetest.get_translator("dye")
|
||||
|
||||
-- Make dye names and descriptions available globally
|
||||
|
||||
dye.dyes = {
|
||||
{"white", "White"},
|
||||
{"grey", "Grey"},
|
||||
{"dark_grey", "Dark Grey"},
|
||||
{"black", "Black"},
|
||||
{"violet", "Violet"},
|
||||
{"blue", "Blue"},
|
||||
{"cyan", "Cyan"},
|
||||
{"dark_green", "Dark Green"},
|
||||
{"green", "Green"},
|
||||
{"yellow", "Yellow"},
|
||||
{"brown", "Brown"},
|
||||
{"orange", "Orange"},
|
||||
{"red", "Red"},
|
||||
{"magenta", "Magenta"},
|
||||
{"pink", "Pink"},
|
||||
}
|
||||
|
||||
-- Define items
|
||||
|
||||
for _, row in ipairs(dye.dyes) do
|
||||
local name = row[1]
|
||||
local description = row[2]
|
||||
local groups = {dye = 1}
|
||||
groups["color_" .. name] = 1
|
||||
|
||||
minetest.register_craftitem("dye:" .. name, {
|
||||
inventory_image = "dye_" .. name .. ".png",
|
||||
description = S(description .. " Dye"),
|
||||
groups = groups
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:" .. name .. " 4",
|
||||
recipe = {
|
||||
{"group:flower,color_" .. name}
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
-- Manually add coal -> black dye
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:black 4",
|
||||
recipe = {
|
||||
{"group:coal"}
|
||||
},
|
||||
})
|
||||
|
||||
-- Manually add blueberries->violet dye
|
||||
|
||||
minetest.register_craft({
|
||||
output = "dye:violet 2",
|
||||
recipe = {
|
||||
{"default:blueberries"}
|
||||
},
|
||||
})
|
||||
|
||||
-- Mix recipes
|
||||
|
||||
local dye_recipes = {
|
||||
-- src1, src2, dst
|
||||
-- RYB mixes
|
||||
{"red", "blue", "violet"}, -- "purple"
|
||||
{"yellow", "red", "orange"},
|
||||
{"yellow", "blue", "green"},
|
||||
-- RYB complementary mixes
|
||||
{"yellow", "violet", "dark_grey"},
|
||||
{"blue", "orange", "dark_grey"},
|
||||
-- CMY mixes - approximation
|
||||
{"cyan", "yellow", "green"},
|
||||
{"cyan", "magenta", "blue"},
|
||||
{"yellow", "magenta", "red"},
|
||||
-- other mixes that result in a color we have
|
||||
{"red", "green", "brown"},
|
||||
{"magenta", "blue", "violet"},
|
||||
{"green", "blue", "cyan"},
|
||||
{"pink", "violet", "magenta"},
|
||||
-- mixes with black
|
||||
{"white", "black", "grey"},
|
||||
{"grey", "black", "dark_grey"},
|
||||
{"green", "black", "dark_green"},
|
||||
{"orange", "black", "brown"},
|
||||
-- mixes with white
|
||||
{"white", "red", "pink"},
|
||||
{"white", "dark_grey", "grey"},
|
||||
{"white", "dark_green", "green"},
|
||||
}
|
||||
|
||||
for _, mix in pairs(dye_recipes) do
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "dye:" .. mix[3] .. " 2",
|
||||
recipe = {"dye:" .. mix[1], "dye:" .. mix[2]},
|
||||
})
|
||||
end
|
||||
|
||||
-- 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].." Dye")) end
|
||||
|
||||
--[[
|
||||
S("White Dye")
|
||||
S("Grey Dye")
|
||||
S("Dark Grey Dye")
|
||||
S("Black Dye")
|
||||
S("Violet Dye")
|
||||
S("Blue Dye")
|
||||
S("Cyan Dye")
|
||||
S("Dark Green Dye")
|
||||
S("Green Dye")
|
||||
S("Yellow Dye")
|
||||
S("Brown Dye")
|
||||
S("Orange Dye")
|
||||
S("Red Dye")
|
||||
S("Magenta Dye")
|
||||
S("Pink Dye")
|
||||
--]]
|
60
mods/minetest_game/dye/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 Perttu Ahola (celeron55) <celeron55@gmail.com>
|
||||
|
||||
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/dye/locale/dye.de.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Weißer Farbstoff
|
||||
Grey Dye=Grauer Farbstoff
|
||||
Dark Grey Dye=Dunkelgrauer Farbstoff
|
||||
Black Dye=Schwarzer Farbstoff
|
||||
Violet Dye=Violetter Farbstoff
|
||||
Blue Dye=Blauer Farbstoff
|
||||
Cyan Dye=Türkiser Farbstoff
|
||||
Dark Green Dye=Dunkelgrüner Farbstoff
|
||||
Green Dye=Grüner Farbstoff
|
||||
Yellow Dye=Gelber Farbstoff
|
||||
Brown Dye=Brauner Farbstoff
|
||||
Orange Dye=Orange Farbstoff
|
||||
Red Dye=Roter Farbstoff
|
||||
Magenta Dye=Magenta Farbstoff
|
||||
Pink Dye=Rosa Farbstoff
|
16
mods/minetest_game/dye/locale/dye.eo.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Blanka tinkturo
|
||||
Grey Dye=Griza tinkturo
|
||||
Dark Grey Dye=Malhela griza tinkturo
|
||||
Black Dye=Nigra tinkturo
|
||||
Violet Dye=Violkolora tinkturo
|
||||
Blue Dye=Blua tinkturo
|
||||
Cyan Dye=Bluverda tinkturo
|
||||
Dark Green Dye=Malhela verda tinkturo
|
||||
Green Dye=Verda tinkturo
|
||||
Yellow Dye=Flava tinkturo
|
||||
Brown Dye=Bruna tinkturo
|
||||
Orange Dye=Oranĝkolora tinkturo
|
||||
Red Dye=Ruĝa tinkturo
|
||||
Magenta Dye=Fiksina tinkturo
|
||||
Pink Dye=Rozkolora tinkturo
|
16
mods/minetest_game/dye/locale/dye.es.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Tinte blanco
|
||||
Grey Dye=Tinte gris
|
||||
Dark Grey Dye=Tinte gris oscuro
|
||||
Black Dye=Tinte negro
|
||||
Violet Dye=Tinte violeta
|
||||
Blue Dye=Tinte azul
|
||||
Cyan Dye=Tinte cián
|
||||
Dark Green Dye=Tinte verde oscuro
|
||||
Green Dye=Tinte verde
|
||||
Yellow Dye=Tinte amarillo
|
||||
Brown Dye=Tinte marrón
|
||||
Orange Dye=Tinte naranja
|
||||
Red Dye=Tinte rojo
|
||||
Magenta Dye=Tinte magenta
|
||||
Pink Dye=Tinte rosa
|
16
mods/minetest_game/dye/locale/dye.fr.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Colorant blanc
|
||||
Grey Dye=Colorant gris
|
||||
Dark Grey Dye=Colorant gris foncé
|
||||
Black Dye=Colorant noir
|
||||
Violet Dye=Colorant violet
|
||||
Blue Dye=Colorant bleu
|
||||
Cyan Dye=Colorant cyan
|
||||
Dark Green Dye=Colorant vert foncé
|
||||
Green Dye=Colorant vert
|
||||
Yellow Dye=Colorant jaune
|
||||
Brown Dye=Colorant marron
|
||||
Orange Dye=Colorant orange
|
||||
Red Dye=Colorant rouge
|
||||
Magenta Dye=Colorant magenta
|
||||
Pink Dye=Colorant rose
|
16
mods/minetest_game/dye/locale/dye.id.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Pewarna Putih
|
||||
Grey Dye=Pewarna Abu
|
||||
Dark Grey Dye=Pewarna Abu Tua
|
||||
Black Dye=Pewarna Hitam
|
||||
Violet Dye=Pewarna Ungu
|
||||
Blue Dye=Pewarna Biru
|
||||
Cyan Dye=Pewarna Sian
|
||||
Dark Green Dye=Pewarna Hijau Tua
|
||||
Green Dye=Pewarna Hijau
|
||||
Yellow Dye=Pewarna Kuning
|
||||
Brown Dye=Pewarna Cokelat
|
||||
Orange Dye=Pewarna Oranye
|
||||
Red Dye=Pewarna Merah
|
||||
Magenta Dye=Pewarna Magenta
|
||||
Pink Dye=Pewarna Merah Muda
|
16
mods/minetest_game/dye/locale/dye.it.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Tintura bianca
|
||||
Grey Dye=Tintura grigia
|
||||
Dark Grey Dye=Tintura grigia scura
|
||||
Black Dye=Tintura nera
|
||||
Violet Dye=Tintura viola
|
||||
Blue Dye=Tintura blu
|
||||
Cyan Dye=Tintura ciano
|
||||
Dark Green Dye=Tintura verde scura
|
||||
Green Dye=Tintura verde
|
||||
Yellow Dye=Tintura gialla
|
||||
Brown Dye=Tintura marrone
|
||||
Orange Dye=Tintura arancione
|
||||
Red Dye=Tintura rossa
|
||||
Magenta Dye=Tintura magenta
|
||||
Pink Dye=Tintura rosa
|
16
mods/minetest_game/dye/locale/dye.ja.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=白色の染料
|
||||
Grey Dye=灰色の染料
|
||||
Dark Grey Dye=濃灰色の染料
|
||||
Black Dye=黒色の染料
|
||||
Violet Dye=紫色の染料
|
||||
Blue Dye=青色の染料
|
||||
Cyan Dye=青緑色の染料
|
||||
Dark Green Dye=濃緑色の染料
|
||||
Green Dye=緑色の染料
|
||||
Yellow Dye=黄色の染料
|
||||
Brown Dye=茶色の染料
|
||||
Orange Dye=橙色の染料
|
||||
Red Dye=赤色の染料
|
||||
Magenta Dye=赤紫色の染料
|
||||
Pink Dye=桃色の染料
|
16
mods/minetest_game/dye/locale/dye.jbo.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=lo blabi xinmo
|
||||
Grey Dye=lo grusi xinmo
|
||||
Dark Grey Dye=lo xekri grusi xinmo
|
||||
Black Dye=lo xekri xinmo
|
||||
Violet Dye=lo zirpu xinmo
|
||||
Blue Dye=lo blanu xinmo
|
||||
Cyan Dye=lo cicna xinmo
|
||||
Dark Green Dye=lo xekri crino xinmo
|
||||
Green Dye=lo crino xinmo
|
||||
Yellow Dye=lo pelxu xinmo
|
||||
Brown Dye=lo bunre xinmo
|
||||
Orange Dye=lo narju xinmo
|
||||
Red Dye=lo xunre xinmo
|
||||
Magenta Dye=lo nukni xinmo
|
||||
Pink Dye=lo xunblabi xinmo
|
16
mods/minetest_game/dye/locale/dye.lv.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Baltā krāsa
|
||||
Grey Dye=Pelēkā krāsa
|
||||
Dark Grey Dye=Tumšpelēkā krāsa
|
||||
Black Dye=Melnā krāsa
|
||||
Violet Dye=Violetā krāsa
|
||||
Blue Dye=Zilā krāsa
|
||||
Cyan Dye=Ciāna krāsa
|
||||
Dark Green Dye=Tumšzaļā krāsa
|
||||
Green Dye=Zaļā krāsa
|
||||
Yellow Dye=Dzeltenā krāsa
|
||||
Brown Dye=Brūnā krāsa
|
||||
Orange Dye=Oranžā krāsa
|
||||
Red Dye=Sarkanā krāsa
|
||||
Magenta Dye=Fuksīna krāsa
|
||||
Pink Dye=Rozā krāsa
|
16
mods/minetest_game/dye/locale/dye.ms.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Pewarna Putih
|
||||
Grey Dye=Pewarna Kelabu
|
||||
Dark Grey Dye=Pewarna Kelabu Tua
|
||||
Black Dye=Pewarna Hitam
|
||||
Violet Dye=Pewarna Ungu
|
||||
Blue Dye=Pewarna Biru
|
||||
Cyan Dye=Pewarna Biru Kehijauan
|
||||
Dark Green Dye=Pewarna Hijau Tua
|
||||
Green Dye=Pewarna Hijau
|
||||
Yellow Dye=Pewarna Kuning
|
||||
Brown Dye=Pewarna Perang
|
||||
Orange Dye=Pewarna Jingga
|
||||
Red Dye=Pewarna Merah
|
||||
Magenta Dye=Pewarna Magenta
|
||||
Pink Dye=Pewarna Merah Jambu
|
16
mods/minetest_game/dye/locale/dye.pl.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Biały barwnik
|
||||
Grey Dye=Szary barwnik
|
||||
Dark Grey Dye=Ciemnoszary barwnik
|
||||
Black Dye=Czarny barwnik
|
||||
Violet Dye=Fioletowy barwnik
|
||||
Blue Dye=Niebieski barwnik
|
||||
Cyan Dye=Cyjanowy barwnik
|
||||
Dark Green Dye=Ciemnozielony barwnik
|
||||
Green Dye=Zielony barwnik
|
||||
Yellow Dye=Żółty barwnik
|
||||
Brown Dye=Brązowy barwnik
|
||||
Orange Dye=Pomarańczowy barwnik
|
||||
Red Dye=Czerwony barwnik
|
||||
Magenta Dye=Karmazynowy barwnik
|
||||
Pink Dye=Różowy barwnik
|
16
mods/minetest_game/dye/locale/dye.pt_BR.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Tinta Branca
|
||||
Grey Dye=Tinta Cinza
|
||||
Dark Grey Dye=Tinta Cinza-escuro
|
||||
Black Dye=Tinta Preta
|
||||
Violet Dye=Tinta Violeta
|
||||
Blue Dye=Tinta Azul
|
||||
Cyan Dye=Tinta Ciano
|
||||
Dark Green Dye=Tinta Verde-escuro
|
||||
Green Dye=Tinta Verde
|
||||
Yellow Dye=Tinta Amarela
|
||||
Brown Dye=Tinta Marrom
|
||||
Orange Dye=Tinta Laranja
|
||||
Red Dye=Tinta Vermelha
|
||||
Magenta Dye=Tinta Magenta
|
||||
Pink Dye=Tinta Rosa
|
16
mods/minetest_game/dye/locale/dye.ru.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Белый краситель
|
||||
Grey Dye=Серый краситель
|
||||
Dark Grey Dye=Тёмно-серый краситель
|
||||
Black Dye=Черный краситель
|
||||
Violet Dye=Фиолетовый краситель
|
||||
Blue Dye=Синий краситель
|
||||
Cyan Dye=Бирюзовый краситель
|
||||
Dark Green Dye=Тёмно-зелёный краситель
|
||||
Green Dye=Зелёный краситель
|
||||
Yellow Dye=Жёлтый краситель
|
||||
Brown Dye=Коричневый краситель
|
||||
Orange Dye=Оранжевый краситель
|
||||
Red Dye=Красный краситель
|
||||
Magenta Dye=Сиреневый краситель
|
||||
Pink Dye=Розовый краситель
|
16
mods/minetest_game/dye/locale/dye.sk.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Biele farbivo
|
||||
Grey Dye=Šedé farbivo
|
||||
Dark Grey Dye=Tmavo šedé farbivo
|
||||
Black Dye=Čierne farbivo
|
||||
Violet Dye=Fialové farbivo
|
||||
Blue Dye=Modré farbivo
|
||||
Cyan Dye=Tyrkysové farbivo
|
||||
Dark Green Dye=Tmavozelené farbivo
|
||||
Green Dye=Zelené farbivo
|
||||
Yellow Dye=Žlté farbivo
|
||||
Brown Dye=Hnedé farbivo
|
||||
Orange Dye=Oranžové farbivo
|
||||
Red Dye=Červené farbivo
|
||||
Magenta Dye=Purpurové farbivo
|
||||
Pink Dye=Ružové farbivo
|
16
mods/minetest_game/dye/locale/dye.sv.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Vit färg
|
||||
Grey Dye=Grå färg
|
||||
Dark Grey Dye=Mörkgrå färg
|
||||
Black Dye=Svart färg
|
||||
Violet Dye=Violett färg
|
||||
Blue Dye=Blå färg
|
||||
Cyan Dye=Cyan färg
|
||||
Dark Green Dye=Mörkgrön färg
|
||||
Green Dye=Grön färg
|
||||
Yellow Dye=Gul färg
|
||||
Brown Dye=Brun färg
|
||||
Orange Dye=Orange färg
|
||||
Red Dye=Röd färg
|
||||
Magenta Dye=Magenta färg
|
||||
Pink Dye=Rosa färg
|
16
mods/minetest_game/dye/locale/dye.uk.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=Білий барвник
|
||||
Grey Dye=Сірий барвник
|
||||
Dark Grey Dye=Темно-сірий барвник
|
||||
Black Dye=Чорний барвник
|
||||
Violet Dye=Фіолетовий барвник
|
||||
Blue Dye=Синій барвник
|
||||
Cyan Dye=Синьо-зелений барвник
|
||||
Dark Green Dye=Темно-зелений барвник
|
||||
Green Dye=Зелений барвник
|
||||
Yellow Dye=Жовтий барвник
|
||||
Brown Dye=Коричневий барвник
|
||||
Orange Dye=Помаранчевий барвник
|
||||
Red Dye=Червоний барвник
|
||||
Magenta Dye=Пурпурний барвник
|
||||
Pink Dye=Рожевий барвник
|
16
mods/minetest_game/dye/locale/dye.zh_CN.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=白色染料
|
||||
Grey Dye=灰色染料
|
||||
Dark Grey Dye=暗灰染料
|
||||
Black Dye=黑色染料
|
||||
Violet Dye=紫色染料
|
||||
Blue Dye=蓝色染料
|
||||
Cyan Dye=青色染料
|
||||
Dark Green Dye=暗绿染料
|
||||
Green Dye=绿色染料
|
||||
Yellow Dye=黄色染料
|
||||
Brown Dye=棕色染料
|
||||
Orange Dye=橙色染料
|
||||
Red Dye=红色染料
|
||||
Magenta Dye=品红染料
|
||||
Pink Dye=粉红染料
|
16
mods/minetest_game/dye/locale/dye.zh_TW.tr
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=白色染料
|
||||
Grey Dye=灰色染料
|
||||
Dark Grey Dye=暗灰染料
|
||||
Black Dye=黑色染料
|
||||
Violet Dye=紫色染料
|
||||
Blue Dye=藍色染料
|
||||
Cyan Dye=青色染料
|
||||
Dark Green Dye=暗綠染料
|
||||
Green Dye=綠色染料
|
||||
Yellow Dye=黃色染料
|
||||
Brown Dye=棕色染料
|
||||
Orange Dye=橙色染料
|
||||
Red Dye=紅色染料
|
||||
Magenta Dye=品紅染料
|
||||
Pink Dye=粉紅染料
|
16
mods/minetest_game/dye/locale/template.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
# textdomain: dye
|
||||
White Dye=
|
||||
Grey Dye=
|
||||
Dark Grey Dye=
|
||||
Black Dye=
|
||||
Violet Dye=
|
||||
Blue Dye=
|
||||
Cyan Dye=
|
||||
Dark Green Dye=
|
||||
Green Dye=
|
||||
Yellow Dye=
|
||||
Brown Dye=
|
||||
Orange Dye=
|
||||
Red Dye=
|
||||
Magenta Dye=
|
||||
Pink Dye=
|
2
mods/minetest_game/dye/mod.conf
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = dye
|
||||
description = Minetest Game mod: dye
|
BIN
mods/minetest_game/dye/textures/dye_black.png
Normal file
After Width: | Height: | Size: 169 B |
BIN
mods/minetest_game/dye/textures/dye_blue.png
Normal file
After Width: | Height: | Size: 161 B |
BIN
mods/minetest_game/dye/textures/dye_brown.png
Normal file
After Width: | Height: | Size: 164 B |
BIN
mods/minetest_game/dye/textures/dye_cyan.png
Normal file
After Width: | Height: | Size: 166 B |
BIN
mods/minetest_game/dye/textures/dye_dark_green.png
Normal file
After Width: | Height: | Size: 168 B |
BIN
mods/minetest_game/dye/textures/dye_dark_grey.png
Normal file
After Width: | Height: | Size: 169 B |
BIN
mods/minetest_game/dye/textures/dye_green.png
Normal file
After Width: | Height: | Size: 168 B |
BIN
mods/minetest_game/dye/textures/dye_grey.png
Normal file
After Width: | Height: | Size: 169 B |
BIN
mods/minetest_game/dye/textures/dye_magenta.png
Normal file
After Width: | Height: | Size: 169 B |
BIN
mods/minetest_game/dye/textures/dye_orange.png
Normal file
After Width: | Height: | Size: 169 B |
BIN
mods/minetest_game/dye/textures/dye_pink.png
Normal file
After Width: | Height: | Size: 169 B |
BIN
mods/minetest_game/dye/textures/dye_red.png
Normal file
After Width: | Height: | Size: 169 B |
BIN
mods/minetest_game/dye/textures/dye_violet.png
Normal file
After Width: | Height: | Size: 169 B |
BIN
mods/minetest_game/dye/textures/dye_white.png
Normal file
After Width: | Height: | Size: 170 B |
BIN
mods/minetest_game/dye/textures/dye_yellow.png
Normal file
After Width: | Height: | Size: 169 B |