More stuff.. working on things...

master
GreenXenith 2018-03-08 21:33:48 -08:00
parent 7826d580e2
commit 98fb673ac9
10 changed files with 6 additions and 26 deletions

View File

@ -1834,24 +1834,6 @@ minetest.register_node("xtraores:marble", {
sounds = default.node_sound_stone_defaults(),
})
minetest.register_craft({
type = "fuel",
recipe = "xtraores:antracite_lump",
burntime = 200,
})
minetest.register_craftitem("xtraores:antracite_lump", {
description = "antracite lump",
inventory_image = "xtraores_antracite_lump.png",
})
minetest.register_node("xtraores:stone_with_antracite", {
description = "antracite ore",
tiles = {"default_stone.png^xtraores_mineral_antracite.png"},
is_ground_content = true,
groups = {cracky=3},
drop = 'xtraores:antracite_lump',
sounds = default.node_sound_stone_defaults(),
})
minetest.register_tool("xtraores:spear_gungir", {
description = "THE GUNGIR(screw excalibur! this thingie does 160 dmg!)",
inventory_image = "xtraores_spear_gungir.png",

Binary file not shown.

BIN
xtraores/sounds/shot2.ogg Normal file

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 170 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -24,7 +24,7 @@ minetest.register_tool("xtraores_mdwp:laser_riffle", {
pos.y = pos.y + 1.6
local obj = minetest.add_entity(pos, "xtraores_mdwp:lb")
if obj then
minetest.sound_play("shot", {object=obj})
minetest.sound_play("shot2", {object=obj})
obj:setvelocity({x=dir.x * 50, y=dir.y * 50, z=dir.z * 50})
obj:setacceleration({x=dir.x * 0, y=0, z=dir.z * 0})
obj:setyaw(yaw + math.pi)
@ -41,8 +41,7 @@ minetest.register_tool("xtraores_mdwp:laser_riffle", {
local XTRAORES_MDWP_LB = {
physical = false,
timer = 0,
visual = "mesh",
mesh = "xolazer.x",
visual = "sprite",
visual_size = {x=0.9, y=0.9,},
textures = {'xolaser.png'},
lastpos= {},
@ -130,10 +129,10 @@ minetest.register_tool("xtraores_mdwp:rainbowgun", {
local yaw = user:get_look_yaw()
if pos and dir and yaw then
pos.y = pos.y + 1.6
local obj = minetest.add_entity(pos, "xtraores_mdwp:rb")
local obj = minetest.add_entity(pos, "xtraores_mdwp:lb")
if obj then
minetest.sound_play("shot", {object=obj})
obj:setvelocity({x=dir.x * 25, y=dir.y * 25, z=dir.z * 25})
minetest.sound_play("shot2", {object=obj})
obj:setvelocity({x=dir.x * 50, y=dir.y * 50, z=dir.z * 50})
obj:setacceleration({x=dir.x * 0, y=0, z=dir.z * 0})
obj:setyaw(yaw + math.pi)
local ent = obj:get_luaentity()
@ -149,8 +148,7 @@ minetest.register_tool("xtraores_mdwp:rainbowgun", {
local XTRAORES_MDWP_RB = {
physical = false,
timer = 0,
visual = "mesh",
mesh = "rainbow.x",
visual = "sprite",
visual_size = {x=0.9, y=0.9,},
textures = {'xtraores_rainbow.png'},
lastpos= {},