Initial
This commit is contained in:
parent
2eab8e9666
commit
d884ef6d2b
0
depends.txt
Normal file
0
depends.txt
Normal file
18
functions.lua
Normal file
18
functions.lua
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
function guns.register_ammo(modname, ammo)
|
||||||
|
--Information on amo object
|
||||||
|
--max_ammo -> The maximum ammo allowed in a stack
|
||||||
|
--damage -> Damage done on player impace
|
||||||
|
--effect -> Effect that the ammo has on impact Eg: A rocket exploded
|
||||||
|
end
|
||||||
|
|
||||||
|
function guns.register_part(modname, part)
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
function guns.reguster_scope(modname, scope)
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
function guns.register_gun(modname, gun)
|
||||||
|
|
||||||
|
end
|
6
init.lua
Normal file
6
init.lua
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
guns = {}
|
||||||
|
|
||||||
|
guns.path = minetest.get_modpath("guns")
|
||||||
|
|
||||||
|
dofile(guns.path ..'/functions.lua')
|
||||||
|
dofile(guns.path ..'/hud.lua')
|
6
readme.md
Normal file
6
readme.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# Guns
|
||||||
|
Author: Austin Pachano (SonosFuer)
|
||||||
|
Version: 0.0.0
|
||||||
|
|
||||||
|
# Jist
|
||||||
|
The guns mod is a framework that allows mods to add guns to the game. This mod by itself does not add any content to the game but instead is a framework that allows content creators to easily add content to the game.
|
Loading…
x
Reference in New Issue
Block a user