From c9bbb69485c5cdb9f88dece7c953989837660200 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Thu, 16 Feb 2017 17:39:59 -0500 Subject: Did a refresh of the mods' content, shouldn't be any actual changes --- castle/arrow.lua | 92 ---------------------------- castle/sounds/castle_reload.ogg | Bin 12213 -> 0 bytes castle/sounds/throwing_sound.ogg | Bin 11011 -> 0 bytes castle/textures/castle_arrow.png | Bin 213 -> 0 bytes castle/textures/castle_arrow_2.png | Bin 208 -> 0 bytes castle/textures/castle_arrow_back.png | Bin 228 -> 0 bytes castle/textures/castle_arrow_front.png | Bin 190 -> 0 bytes castle/textures/castle_broadsword.png | Bin 75 -> 0 bytes castle/textures/castle_crossbow.png | Bin 576 -> 0 bytes castle/textures/castle_day.png | Bin 297 -> 0 bytes castle/textures/castle_jail_door_bottom.png | Bin 524 -> 0 bytes castle/textures/castle_jail_door_top.png | Bin 532 -> 0 bytes castle/textures/castle_jailbars_half.png | Bin 526 -> 0 bytes castle/textures/castle_night.png | Bin 308 -> 0 bytes castle/textures/castle_oak_door_bottom.png | Bin 650 -> 0 bytes castle/textures/castle_oak_door_top.png | Bin 638 -> 0 bytes castle/textures/castle_tapestry_overlay.png | Bin 477 -> 0 bytes castle/textures/castle_workbench_1.png | Bin 593 -> 0 bytes castle/textures/castle_workbench_2.png | Bin 593 -> 0 bytes castle/textures/door_jail.png | Bin 70 -> 0 bytes castle/textures/door_oak.png | Bin 70 -> 0 bytes castle/textures/door_papyrus.png | Bin 70 -> 0 bytes 22 files changed, 92 deletions(-) delete mode 100644 castle/arrow.lua delete mode 100644 castle/sounds/castle_reload.ogg delete mode 100644 castle/sounds/throwing_sound.ogg delete mode 100644 castle/textures/castle_arrow.png delete mode 100644 castle/textures/castle_arrow_2.png delete mode 100644 castle/textures/castle_arrow_back.png delete mode 100644 castle/textures/castle_arrow_front.png delete mode 100644 castle/textures/castle_broadsword.png delete mode 100644 castle/textures/castle_crossbow.png delete mode 100644 castle/textures/castle_day.png delete mode 100644 castle/textures/castle_jail_door_bottom.png delete mode 100644 castle/textures/castle_jail_door_top.png delete mode 100644 castle/textures/castle_jailbars_half.png delete mode 100644 castle/textures/castle_night.png delete mode 100644 castle/textures/castle_oak_door_bottom.png delete mode 100644 castle/textures/castle_oak_door_top.png delete mode 100644 castle/textures/castle_tapestry_overlay.png delete mode 100644 castle/textures/castle_workbench_1.png delete mode 100644 castle/textures/castle_workbench_2.png delete mode 100644 castle/textures/door_jail.png delete mode 100644 castle/textures/door_oak.png delete mode 100644 castle/textures/door_papyrus.png (limited to 'castle') diff --git a/castle/arrow.lua b/castle/arrow.lua deleted file mode 100644 index c135f5f..0000000 --- a/castle/arrow.lua +++ /dev/null @@ -1,92 +0,0 @@ -minetest.register_craftitem("castle:arrow", { - description = "Arrow", - inventory_image = "castle_arrow.png", -}) - -minetest.register_node("castle:arrow_box", { - drawtype = "nodebox", - node_box = { - type = "fixed", - fixed = { - -- Shaft - {-6.5/17, -1.5/17, -1.5/17, 6.5/17, 1.5/17, 1.5/17}, - --Spitze - {-4.5/17, 2.5/17, 2.5/17, -3.5/17, -2.5/17, -2.5/17}, - {-8.5/17, 0.5/17, 0.5/17, -6.5/17, -0.5/17, -0.5/17}, - --Federn - {6.5/17, 1.5/17, 1.5/17, 7.5/17, 2.5/17, 2.5/17}, - {7.5/17, -2.5/17, 2.5/17, 6.5/17, -1.5/17, 1.5/17}, - {7.5/17, 2.5/17, -2.5/17, 6.5/17, 1.5/17, -1.5/17}, - {6.5/17, -1.5/17, -1.5/17, 7.5/17, -2.5/17, -2.5/17}, - - {7.5/17, 2.5/17, 2.5/17, 8.5/17, 3.5/17, 3.5/17}, - {8.5/17, -3.5/17, 3.5/17, 7.5/17, -2.5/17, 2.5/17}, - {8.5/17, 3.5/17, -3.5/17, 7.5/17, 2.5/17, -2.5/17}, - {7.5/17, -2.5/17, -2.5/17, 8.5/17, -3.5/17, -3.5/17}, - } - }, - tiles = {"castle_arrow.png", "castle_arrow.png", "castle_arrow_back.png", "castle_arrow_front.png", "castle_arrow_2.png", "castle_arrow.png"}, - groups = {not_in_creative_inventory=1}, -}) - -local castle_ARROW_ENTITY={ - physical = false, - timer=0, - visual = "wielditem", - visual_size = {x=0.1, y=0.1}, - textures = {"castle:arrow_box"}, - lastpos={}, - collisionbox = {0,0,0,0,0,0}, -} - -castle_ARROW_ENTITY.on_step = function(self, dtime) - self.timer=self.timer+dtime - local pos = self.object:getpos() - local node = minetest.get_node(pos) - - if self.timer>0.2 then - local objs = minetest.get_objects_inside_radius({x=pos.x,y=pos.y,z=pos.z}, 2) - for k, obj in pairs(objs) do - if obj:get_luaentity() ~= nil then - if obj:get_luaentity().name ~= "castle:arrow_entity" and obj:get_luaentity().name ~= "__builtin:item" then - local damage = 3 - obj:punch(self.object, 1.0, { - full_punch_interval=1.0, - groupcaps={ - fleshy={times={[1]=1/(damage-2), [2]=1/(damage-1), [3]=1/damage}}, - snappy={times={[1]=1/(damage-2), [2]=1/(damage-1), [3]=1/damage}}, - } - }, nil) - self.object:remove() - end - else - local damage = 3 - obj:punch(self.object, 1.0, { - full_punch_interval=1.0, - groupcaps={ - fleshy={times={[1]=1/(damage-2), [2]=1/(damage-1), [3]=1/damage}}, - snappy={times={[1]=1/(damage-2), [2]=1/(damage-1), [3]=1/damage}}, - } - }, nil) - self.object:remove() - end - end - end - - if self.lastpos.x~=nil then - if node.name ~= "air" then - minetest.add_item(self.lastpos, 'castle:arrow') - self.object:remove() - end - end - self.lastpos={x=pos.x, y=pos.y, z=pos.z} -end - -minetest.register_entity("castle:arrow_entity", castle_ARROW_ENTITY) - -minetest.register_craft({ - output = 'castle:arrow 16', - recipe = { - {'default:stick', 'default:stick', 'default:steel_ingot'}, - } -}) diff --git a/castle/sounds/castle_reload.ogg b/castle/sounds/castle_reload.ogg deleted file mode 100644 index 47f7245..0000000 Binary files a/castle/sounds/castle_reload.ogg and /dev/null differ diff --git a/castle/sounds/throwing_sound.ogg b/castle/sounds/throwing_sound.ogg deleted file mode 100644 index c8911e5..0000000 Binary files a/castle/sounds/throwing_sound.ogg and /dev/null differ diff --git a/castle/textures/castle_arrow.png b/castle/textures/castle_arrow.png deleted file mode 100644 index 9b72ee9..0000000 Binary files a/castle/textures/castle_arrow.png and /dev/null differ diff --git a/castle/textures/castle_arrow_2.png b/castle/textures/castle_arrow_2.png deleted file mode 100644 index b5980d0..0000000 Binary files a/castle/textures/castle_arrow_2.png and /dev/null differ diff --git a/castle/textures/castle_arrow_back.png b/castle/textures/castle_arrow_back.png deleted file mode 100644 index d680d88..0000000 Binary files a/castle/textures/castle_arrow_back.png and /dev/null differ diff --git a/castle/textures/castle_arrow_front.png b/castle/textures/castle_arrow_front.png deleted file mode 100644 index 828a486..0000000 Binary files a/castle/textures/castle_arrow_front.png and /dev/null differ diff --git a/castle/textures/castle_broadsword.png b/castle/textures/castle_broadsword.png deleted file mode 100644 index 4d7beb8..0000000 Binary files a/castle/textures/castle_broadsword.png and /dev/null differ diff --git a/castle/textures/castle_crossbow.png b/castle/textures/castle_crossbow.png deleted file mode 100644 index e14c45c..0000000 Binary files a/castle/textures/castle_crossbow.png and /dev/null differ diff --git a/castle/textures/castle_day.png b/castle/textures/castle_day.png deleted file mode 100644 index 6487fb6..0000000 Binary files a/castle/textures/castle_day.png and /dev/null differ diff --git a/castle/textures/castle_jail_door_bottom.png b/castle/textures/castle_jail_door_bottom.png deleted file mode 100644 index 5e42083..0000000 Binary files a/castle/textures/castle_jail_door_bottom.png and /dev/null differ diff --git a/castle/textures/castle_jail_door_top.png b/castle/textures/castle_jail_door_top.png deleted file mode 100644 index 7f27979..0000000 Binary files a/castle/textures/castle_jail_door_top.png and /dev/null differ diff --git a/castle/textures/castle_jailbars_half.png b/castle/textures/castle_jailbars_half.png deleted file mode 100644 index 376428c..0000000 Binary files a/castle/textures/castle_jailbars_half.png and /dev/null differ diff --git a/castle/textures/castle_night.png b/castle/textures/castle_night.png deleted file mode 100644 index f1516a7..0000000 Binary files a/castle/textures/castle_night.png and /dev/null differ diff --git a/castle/textures/castle_oak_door_bottom.png b/castle/textures/castle_oak_door_bottom.png deleted file mode 100644 index b2c1df3..0000000 Binary files a/castle/textures/castle_oak_door_bottom.png and /dev/null differ diff --git a/castle/textures/castle_oak_door_top.png b/castle/textures/castle_oak_door_top.png deleted file mode 100644 index 37b9d42..0000000 Binary files a/castle/textures/castle_oak_door_top.png and /dev/null differ diff --git a/castle/textures/castle_tapestry_overlay.png b/castle/textures/castle_tapestry_overlay.png deleted file mode 100644 index 2ec8333..0000000 Binary files a/castle/textures/castle_tapestry_overlay.png and /dev/null differ diff --git a/castle/textures/castle_workbench_1.png b/castle/textures/castle_workbench_1.png deleted file mode 100644 index da9d997..0000000 Binary files a/castle/textures/castle_workbench_1.png and /dev/null differ diff --git a/castle/textures/castle_workbench_2.png b/castle/textures/castle_workbench_2.png deleted file mode 100644 index da9d997..0000000 Binary files a/castle/textures/castle_workbench_2.png and /dev/null differ diff --git a/castle/textures/door_jail.png b/castle/textures/door_jail.png deleted file mode 100644 index dd09de7..0000000 Binary files a/castle/textures/door_jail.png and /dev/null differ diff --git a/castle/textures/door_oak.png b/castle/textures/door_oak.png deleted file mode 100644 index cbd49e4..0000000 Binary files a/castle/textures/door_oak.png and /dev/null differ diff --git a/castle/textures/door_papyrus.png b/castle/textures/door_papyrus.png deleted file mode 100644 index 4a633ae..0000000 Binary files a/castle/textures/door_papyrus.png and /dev/null differ -- cgit v1.2.3