-- Copyright (C) 2020 2021 PsycoJaker -- This file is part of UwU Mod Minetest Mod. -- UwU Mod is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation, either version 3 of the License, or -- any later version. -- UwU Mod is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- You should have received a copy of the GNU General Public License -- along with UwU Mod. If not, see . -- UwU Gen local stonelike = {"mcl_core:stone", "mcl_core:diorite", "mcl_core:andesite", "mcl_core:granite"} minetest.register_ore({ ore_type = "scatter", ore = "uwu:stone_with_uwu", wherein = stonelike, clust_scarcity = 20000, clust_num_ores = 1, clust_size = 1, y_min = mcl_vars.mg_overworld_min, y_max = -55, }) minetest.register_ore({ ore_type = "scatter", ore = "uwu:stone_with_uwu", wherein = stonelike, clust_scarcity = 20000, clust_num_ores = 2, clust_size = 2, y_min = mcl_vars.mg_overworld_min, y_max = -55, })