ahora el cristalcito es un nodo, pequeños ajustes

master
NathanielFreeman 2020-12-12 15:28:24 +01:00
parent 131de253f8
commit 66a05b3daa
10 changed files with 54 additions and 42 deletions

View File

@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
"UwU" Copyright (C) 2020 LordPsyco
"UwU" Copyright (C) 2020 PsycoJaker
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.

View File

@ -1,16 +1,16 @@
# Minetest Mod "UwU"
Version alpha
![uwu](uwu1.png)
By: PsycoJaker
![uwu](uwu.png)
## Descripción
Este mod añade menas de Cristalcitos uwus y bloques MAS uwu.
Este mod añade un bloque adorable que puedes cuidar como una preciosa mascota: el "bloque UwU", crafteable con extrañas menas de Cristalcitos uwus que se encuentran en las profundidades, tambien puedes crear herramientas UwU con preciosos colores.
## Notas
Este mod es compatible para 0.4.8 o posteriores.
## Reporte de bugs y sugerencias:
Puedes reportar bug y sugerencias en [GitLab](https://gitlab.com/PsycoJaker/uwu-mod/-/issues)
Puedes reportar bug y sugerencias en [Issues](https://gitlab.com/PsycoJaker/uwu-mod/-/issues)
## Links
* [GitLab](https://gitlab.com/PsycoJaker/uwu-mod)

View File

@ -1,3 +0,0 @@
-- Traduccion
local S = minetest.get_translator(minetest.get_current_modname())

View File

@ -1,18 +1,12 @@
-- Traduccion
local S = minetest.get_translator(minetest.get_current_modname())
-- Cristalcitos uwus hacen algo más uwu... el bloque uwu :D!
minetest.register_craft({
output = 'uwu:cristalcito_uwu 9',
recipe = {
{'uwu:bloque_uwu'},
}
})
-- UwU Crafteo de Bloque
minetest.register_craft({
output = 'uwu:bloque_uwu',
recipe = {
@ -22,8 +16,19 @@ minetest.register_craft({
}
})
-- UwU Espadita
-- UwU Decrafteo de Bloque
minetest.register_craft({
output = 'uwu:cristalcito_uwu 9',
recipe = {
{'uwu:bloque_uwu'},
}
})
-- UwU Espadita
minetest.register_craft({
output = 'uwu:espadita_uwu',
recipe = {
@ -33,8 +38,9 @@ minetest.register_craft({
}
})
-- UwU Piquito
-- UwU Piquito
minetest.register_craft({
output = 'uwu:piquito_uwu',
recipe = {
@ -44,6 +50,9 @@ minetest.register_craft({
}
})
-- UwU Hachita
minetest.register_craft({
output = 'uwu:hachita_uwu',
recipe = {
@ -53,6 +62,9 @@ minetest.register_craft({
}
})
-- UwU Palita
minetest.register_craft({
output = 'uwu:palita_uwu',
recipe = {

View File

@ -1,8 +1,6 @@
-- UwU Generacioncita
-- -5000 <-> -200
minetest.register_ore({
ore_type = "scatter",
ore = "uwu:stone_with_uwu",

View File

@ -1,4 +1,3 @@
-- Traduccion
local S = minetest.get_translator(minetest.get_current_modname())

View File

@ -1,14 +1,11 @@
-----------------UWU-----------------
local S = minetest.get_translator(minetest.get_current_modname())
local modpath = minetest.get_modpath(minetest.get_current_modname())
--dofile(modpath .. "/bichitos.lua")
dofile(modpath .. "/herramientitas.lua")
dofile(modpath .. "/generacioncita.lua")
dofile(modpath .. "/crafteitos.lua")
dofile(modpath .. "/noditos.lua")
dofile(modpath .. "/itemcitos.lua")
minetest.log("[MOD] UwU")

View File

@ -1,10 +0,0 @@
-- Traduccion
local S = minetest.get_translator(minetest.get_current_modname())
-- UWU Item
minetest.register_craftitem("uwu:cristalcito_uwu", {
description = S("Cristalcito UwU"),
inventory_image = "uwu_cristalcitos.png",
})

View File

@ -1,23 +1,22 @@
-- Traduccion
local S = minetest.get_translator(minetest.get_current_modname())
-- UwU Bloque
-- UwU Bloque
minetest.register_node("uwu:bloque_uwu", {
description = S("Bloque UwU"),
tiles = {"uwu_bloque.png"},
is_ground_content = false,
groups = {cracky = 2, oddly_breakable_by_hand = 2},
groups = {cracky = 3, oddly_breakable_by_hand = 2},
sounds = default.node_sound_glass_defaults(),
})
-- UwU Ore
-- UwU Mena
minetest.register_node("uwu:stone_with_uwu", {
description = S("Mena UwU"),
tiles = {"default_stone.png^uwu_mena.png"},
is_ground_content = true,
groups = {cracky=1, Level=1},
groups = {cracky = 1, level = 1},
light_source = 3,
drop = {
max_items = 3,
@ -37,3 +36,23 @@ minetest.register_node("uwu:stone_with_uwu", {
},
sounds = default.node_sound_stone_defaults(),
})
-- UwU Cristalcito
minetest.register_node("uwu:cristalcito_uwu", {
description = S("Cristalcito UwU"),
drawtype = "plantlike",
light_source = 3,
tiles = {"uwu_cristalcitos.png"},
inventory_image = "uwu_cristalcitos.png",
wield_image = "uwu_cristalcitos.png",
sunlight_propagates = true,
paramtype = "light",
walkable = false,
groups = {cracky = 3, attached_node = 1},
sounds = default.node_sound_stone_defaults(),
selection_box = {
type = "fixed",
fixed = {-4/16, -8/16, -4/16, 4/16, 5/16, 4/16},
}
})

View File

Before

Width:  |  Height:  |  Size: 545 KiB

After

Width:  |  Height:  |  Size: 545 KiB