36 Commity bb340e26a0 ... 72ad7e598a

Autor SHA1 Správa Dátum
  alauer 72ad7e598a Merge https://notabug.org/BlueBird51/musttest_game 4 rokov pred
  BlueBird51 9f8c134113 Merge branch 'master' of Nakilashiva/musttest_game into master 4 rokov pred
  Nakilashiva 624dfc2f00 changed the textures for the gloop_ores to be more consistent in the game. They look better this way! 4 rokov pred
  Nakilashiva d7d4e3dabd deleted an unfinished texture 4 rokov pred
  Nakilashiva 3507bc3c92 Added Aloe plant to Jarkati, fixed some nodeboxes, fixed a salad recipe. 4 rokov pred
  Nakilashiva d75c11c3d9 fixing cucumber error with salads 4 rokov pred
  Nakilashiva 0413b4fb77 Merge https://notabug.org/alauer/musttest_game 4 rokov pred
  Nakilashiva 384c09a352 Merge https://notabug.org/BlueBird51/musttest_game 4 rokov pred
  BluebirdGreycoat 256a8241d4 Update description 4 rokov pred
  BluebirdGreycoat 38fb2a8130 Fix a mistake 4 rokov pred
  BlueBird51 1acd2df501 Merge branch 'thorium' of nhryciw1/musttest_game into master 4 rokov pred
  nhryciw1 2fa0afac0c Update 'mods/thorium/License.txt' 4 rokov pred
  nhryciw1 d3f2aef1ec Update 'mods/binoculars/license.txt' 4 rokov pred
  nhryciw1 9db50d1d98 Update 'mods/binoculars/license.txt' 4 rokov pred
  nhryciw1 36353948e9 Update 'mods/thorium/readme.txt' 4 rokov pred
  nhryciw1 1ee407c8f1 Add 'mods/thorium/License.txt' 4 rokov pred
  nhryciw1 6dfe167dde Update 'mods/thorium/init.lua' 4 rokov pred
  nhryciw1 7404973922 Update 'mods/thorium/init.lua' 4 rokov pred
  nhryciw1 f1730dfc1d Add 'mods/thorium/readme.txt' 4 rokov pred
  nhryciw1 1f1d4156d8 Update 'mods/thorium/init.lua' 4 rokov pred
  nhryciw1 37e8159c2d Upload files to 'mods/thorium/textures' 4 rokov pred
  nhryciw1 ebdc7a81f6 Delete 'mods/textures/technic_thorium_mineral.png' 4 rokov pred
  nhryciw1 194a10cde8 Delete 'mods/textures/technic_thorium_lump.png' 4 rokov pred
  nhryciw1 d938c5166e Delete 'mods/textures/technic_thorium_ingot.png' 4 rokov pred
  nhryciw1 9c3e7a287e Delete 'mods/textures/technic_thorium_fuel.png' 4 rokov pred
  nhryciw1 af36b82b5d Delete 'mods/textures/technic_thorium_dust.png' 4 rokov pred
  nhryciw1 9dc752f073 Delete 'mods/textures/technic_thorium_block.png' 4 rokov pred
  nhryciw1 2503e70f35 Upload files to 'mods/textures' 4 rokov pred
  nhryciw1 7deeb79f3c Update 'mods/thorium/init.lua' 4 rokov pred
  nhryciw1 12725a7dd7 Update 'mods/itempickup/init.lua' 4 rokov pred
  nhryciw1 72101edb72 Add 'mods/thorium/depends.txt' 4 rokov pred
  nhryciw1 abcc3a85f5 Update 'mods/oregen/ore-list.txt' 4 rokov pred
  nhryciw1 c55e6f3195 Update 'mods/machines/leecher.lua' 4 rokov pred
  nhryciw1 f065b889d3 Update 'mods/thorium/init.lua' 4 rokov pred
  BlueBird51 6add90891a Merge branch 'master' of Nakilashiva/musttest_game into master 4 rokov pred
  nhryciw1 c4b98c72aa Add 'mods/thorium/init.lua' 4 rokov pred

BIN
mods/akalin/textures/gloopores_akalin_ingot.png


BIN
mods/akalin/textures/gloopores_akalin_lump.png


BIN
mods/alatro/textures/gloopores_alatro_ingot.png


+ 8 - 0
mods/aloevera/README.txt

@@ -0,0 +1,8 @@
+Minetest Game mod: aloevera
+==========================
+See license.txt for license information.
+
+Authors of media (textures)
+---------------------------
+Nakilashiva (CC BY-SA 3.0):
+ desert_rose.png

+ 6 - 0
mods/aloevera/depends.txt

@@ -0,0 +1,6 @@
+default
+farming
+craft_register
+coresounds
+utility
+extractor

+ 119 - 0
mods/aloevera/init.lua

@@ -0,0 +1,119 @@
+--aloevera init.lua
+--all textures by Nakilashiva
+
+local S = function(s)
+	return s
+end
+
+minetest.register_node("aloevera:aloe_seed", {
+  description = "Aloe Vera Seeds",
+  tiles = {"aloe_seeds.png"},
+  wield_image = "aloe_seeds.png",
+  inventory_image = "aloe_seeds.png",
+  drawtype = "signlike",
+  paramtype = "light",
+  paramtype2 = "wallmounted",
+  walkable = false,
+  sunlight_propagates = true,
+  selection_box = {
+    type = "fixed",
+    fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}
+  },
+  groups = utility.dig_groups("seeds", {seed = 1, attached_node = 1, flammable = 2, notify_destruct = 1}),
+  on_place = function(itemstack, placer, pointed_thing)
+    return farming.place_seed(itemstack, placer, pointed_thing, "aloevera:aloe_seed")
+  end,
+  on_timer = farming.grow_plant,
+  minlight = 13,
+  maxlight = 15,
+  next_plant = "aloevera:aloe_plant_01",
+  fertility = {"grassland"},
+  sounds = default.node_sound_dirt_defaults({
+    dug = {name = "default_grass_footstep", gain = 0.2},
+    place = {name = "default_place_node", gain = 0.25},
+  }),
+})
+
+
+
+-- aloe_slice
+minetest.register_craftitem("aloevera:aloe_slice", {
+	description = S("Aloe Vera Slice"),
+	inventory_image = "aloe_vera_slice.png",
+        on_use = minetest.item_eat(3),
+	groups = {foodrot=1},
+	flowerpot_insert = {"aloevera:aloe_plant_01", "aloevera:aloe_plant_02", "aloevera:aloe_plant_03", "aloevera:aloe_plant_04"},
+})
+
+-- aloe gel
+minetest.register_craftitem("aloevera:aloe_gel", {
+	description = S("Aloe Vera Gel\nHopefully will have a use someday."),
+	inventory_image = "aloe_vera_gel.png",
+})
+
+minetest.register_craft({
+  type = "extracting",
+  output = 'aloevera:aloe_gel 5',
+  recipe = 'aloevera:aloe_slice',
+  time = 3,
+})
+
+-- aloe_slice definition
+local crop_def = {
+	drawtype = "plantlike",
+	tiles = {"aloe_plant_01.png"},
+	paramtype = "light",
+	sunlight_propagates = true,
+	waving = 1,
+	walkable = false,
+	buildable_to = true,
+	drop = "",
+	selection_box = {
+		type = "fixed",
+		fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}
+	},
+	groups = utility.dig_groups("crop", {
+		flammable = 2, plant = 1, attached_node = 1,
+		not_in_creative_inventory = 1, growing = 1, notify_destruct = 1,
+	}),
+	sounds = default.node_sound_leaves_defaults(),
+  on_timer = farming.grow_plant,
+  minlight = 13,
+  maxlight = default.LIGHT_MAX,
+	movement_speed_multiplier = default.SLOW_SPEED_PLANTS,
+	flowerpot_drop = "aloevera:aloe_slice",
+}
+
+-- stage 1
+crop_def.next_plant = "aloevera:aloe_plant_02"
+minetest.register_node("aloevera:aloe_plant_01", table.copy(crop_def))
+
+-- stage 2
+crop_def.next_plant = "aloevera:aloe_plant_03"
+crop_def.tiles = {"aloe_plant_02.png"}
+minetest.register_node("aloevera:aloe_plant_02", table.copy(crop_def))
+
+-- stage 3
+crop_def.next_plant = "aloevera:aloe_plant_04"
+crop_def.tiles = {"aloe_plant_03.png"}
+crop_def.drop = {
+	items = {
+		{items = {'aloevera:aloe_slice'}, rarity = 1},
+		{items = {'aloevera:aloe_slice'}, rarity = 3},
+	}
+}
+minetest.register_node("aloevera:aloe_plant_03", table.copy(crop_def))
+
+-- stage 4
+crop_def.next_plant = nil
+crop_def.tiles = {"aloe_plant_04.png"}
+crop_def.groups.growing = 0
+crop_def.drop = {
+	items = {
+		{items = {'aloevera:aloe_slice'}, rarity = 1},
+		{items = {'aloevera:aloe_slice 3'}, rarity = 3},
+		{items = {'aloevera:aloe_seed'}, rarity = 1},
+		{items = {'aloevera:aloe_seed'}, rarity = 2},
+	}
+}
+minetest.register_node("aloevera:aloe_plant_04", table.copy(crop_def))

+ 59 - 0
mods/aloevera/license.txt

@@ -0,0 +1,59 @@
+License of source code
+----------------------
+
+The MIT License (MIT)
+Copyright (C) 2020 Nakilashiva
+
+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) 2020 Nakilashiva
+
+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/

BIN
mods/aloevera/textures/aloe_plant_01.png


BIN
mods/aloevera/textures/aloe_plant_02.png


+ 0 - 0
mods/aloevera/textures/aloe_plant_03.png


Niektoré súbory nie sú zobrazené, pretože je v týchto rozdielových dátach zmenené mnoho súborov