Update license and include source headers
Pass a deep copy of gunspec instead of a direct reference Fix Lua style multi-line comments :/ Fix flaregun dependencies Add mod.conf and description files plus some readme fixes
This commit is contained in:
parent
8ef3b1d379
commit
fde2b72a68
40 changed files with 570 additions and 213 deletions
29
shooter_rocket/README.txt
Normal file
29
shooter_rocket/README.txt
Normal file
|
@ -0,0 +1,29 @@
|
|||
Minetest Mod - Rocket Launcher [shooter_rocket]
|
||||
===============================================
|
||||
|
||||
Depends: shooter, tnt
|
||||
|
||||
Adds rocket missiles and launching gun.
|
||||
|
||||
Crafting
|
||||
========
|
||||
|
||||
S = Steel Ingot [default:steel_ingot]
|
||||
B = Bronze Ingot [default:bronze_ingot]
|
||||
D = Diamond [default:diamond]
|
||||
G = Gun Powder [tnt:gunpowder]
|
||||
|
||||
Rocket: [shooter_rocket:rocket]
|
||||
|
||||
+---+---+---+
|
||||
| B | G | B |
|
||||
+---+---+---+
|
||||
|
||||
Rocket Gun: [shooter_rocket:rocket_gun]
|
||||
|
||||
+---+---+---+
|
||||
| B | S | S |
|
||||
+---+---+---+
|
||||
| | | D |
|
||||
+---+---+---+
|
||||
|
1
shooter_rocket/description.txt
Normal file
1
shooter_rocket/description.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Adds rocket missiles and launching gun.
|
|
@ -1,3 +1,22 @@
|
|||
--[[
|
||||
Shooter Rocket Gun [shooter_rocket]
|
||||
Copyright (C) 2013-2019 stujones11, Stuart Jones
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation; either version 2.1 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program 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 Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
]]--
|
||||
|
||||
minetest.register_craftitem("shooter_rocket:rocket", {
|
||||
description = "Rocket",
|
||||
stack_max = 1,
|
||||
|
|
1
shooter_rocket/mod.conf
Normal file
1
shooter_rocket/mod.conf
Normal file
|
@ -0,0 +1 @@
|
|||
name = shooter_rocket
|
Loading…
Add table
Add a link
Reference in a new issue