From 7ff1b99b8bbf584688d91e690ab658a3fd65b30e Mon Sep 17 00:00:00 2001 From: stujones11 Date: Wed, 20 Mar 2019 20:14:19 +0000 Subject: [PATCH] Add modpack.conf and remove deprecated files --- description.txt | 2 -- modpack.conf | 2 ++ modpack.txt | 1 - shooter/depends.txt | 5 ----- shooter/description.txt | 2 -- shooter/mod.conf | 2 ++ shooter_crossbow/depends.txt | 3 --- shooter_crossbow/description.txt | 1 - shooter_crossbow/mod.conf | 2 ++ shooter_flaregun/depends.txt | 3 --- shooter_flaregun/description.txt | 1 - shooter_flaregun/mod.conf | 2 ++ shooter_grenade/depends.txt | 2 -- shooter_grenade/description.txt | 1 - shooter_grenade/mod.conf | 2 ++ shooter_guns/depends.txt | 2 -- shooter_guns/description.txt | 1 - shooter_guns/mod.conf | 2 ++ shooter_hook/depends.txt | 2 -- shooter_hook/description.txt | 1 - shooter_hook/mod.conf | 2 ++ shooter_rocket/depends.txt | 2 -- shooter_rocket/description.txt | 1 - shooter_rocket/mod.conf | 2 ++ shooter_turret/depends.txt | 2 -- shooter_turret/description.txt | 2 -- shooter_turret/mod.conf | 3 +++ 27 files changed, 19 insertions(+), 34 deletions(-) delete mode 100644 description.txt create mode 100644 modpack.conf delete mode 100644 modpack.txt delete mode 100644 shooter/depends.txt delete mode 100644 shooter/description.txt delete mode 100644 shooter_crossbow/depends.txt delete mode 100644 shooter_crossbow/description.txt delete mode 100644 shooter_flaregun/depends.txt delete mode 100644 shooter_flaregun/description.txt delete mode 100644 shooter_grenade/depends.txt delete mode 100644 shooter_grenade/description.txt delete mode 100644 shooter_guns/depends.txt delete mode 100644 shooter_guns/description.txt delete mode 100644 shooter_hook/depends.txt delete mode 100644 shooter_hook/description.txt delete mode 100644 shooter_rocket/depends.txt delete mode 100644 shooter_rocket/description.txt delete mode 100644 shooter_turret/depends.txt delete mode 100644 shooter_turret/description.txt diff --git a/description.txt b/description.txt deleted file mode 100644 index 35f0d03..0000000 --- a/description.txt +++ /dev/null @@ -1,2 +0,0 @@ -First person shooter mod. -Adds firearms plus a few other fun items. diff --git a/modpack.conf b/modpack.conf new file mode 100644 index 0000000..3a917ea --- /dev/null +++ b/modpack.conf @@ -0,0 +1,2 @@ +name = shooter +description = First person shooter mod, adds firearms plus a few other fun items. diff --git a/modpack.txt b/modpack.txt deleted file mode 100644 index 33d91f5..0000000 --- a/modpack.txt +++ /dev/null @@ -1 +0,0 @@ -The presence of this file indicates that the current folder is a modpack. \ No newline at end of file diff --git a/shooter/depends.txt b/shooter/depends.txt deleted file mode 100644 index d2aa8ff..0000000 --- a/shooter/depends.txt +++ /dev/null @@ -1,5 +0,0 @@ -default -dye -tnt -wool -mobs? diff --git a/shooter/description.txt b/shooter/description.txt deleted file mode 100644 index 1ec236f..0000000 --- a/shooter/description.txt +++ /dev/null @@ -1,2 +0,0 @@ -Shooter Mod API. -Handles raycasting, blasting and audio-visual effects of dependent mods. diff --git a/shooter/mod.conf b/shooter/mod.conf index 134f173..5aa9ca5 100644 --- a/shooter/mod.conf +++ b/shooter/mod.conf @@ -1 +1,3 @@ name = shooter +description = Shooter mod API +depends = default, tnt diff --git a/shooter_crossbow/depends.txt b/shooter_crossbow/depends.txt deleted file mode 100644 index 7429ba1..0000000 --- a/shooter_crossbow/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -wool -dye -shooter diff --git a/shooter_crossbow/description.txt b/shooter_crossbow/description.txt deleted file mode 100644 index 5fac182..0000000 --- a/shooter_crossbow/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds a crossbow with colored arrows. diff --git a/shooter_crossbow/mod.conf b/shooter_crossbow/mod.conf index ad37fd3..e666f4d 100644 --- a/shooter_crossbow/mod.conf +++ b/shooter_crossbow/mod.conf @@ -1 +1,3 @@ name = shooter_crossbow +description = Adds a crossbow with colored arrows +depends = wool, dye, shooter diff --git a/shooter_flaregun/depends.txt b/shooter_flaregun/depends.txt deleted file mode 100644 index 3a48c58..0000000 --- a/shooter_flaregun/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -shooter -tnt -wool diff --git a/shooter_flaregun/description.txt b/shooter_flaregun/description.txt deleted file mode 100644 index 63eb4eb..0000000 --- a/shooter_flaregun/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds a flare-gun with temporary light emitting flares. diff --git a/shooter_flaregun/mod.conf b/shooter_flaregun/mod.conf index a9a8ae4..8061c41 100644 --- a/shooter_flaregun/mod.conf +++ b/shooter_flaregun/mod.conf @@ -1 +1,3 @@ name = shooter_flaregun +description = Adds a flare-gun with temporary light emitting flares +depends = shooter, wool diff --git a/shooter_grenade/depends.txt b/shooter_grenade/depends.txt deleted file mode 100644 index 8f4d06f..0000000 --- a/shooter_grenade/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -tnt -shooter diff --git a/shooter_grenade/description.txt b/shooter_grenade/description.txt deleted file mode 100644 index fc0aa1d..0000000 --- a/shooter_grenade/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds simple hand grenades. diff --git a/shooter_grenade/mod.conf b/shooter_grenade/mod.conf index dd379be..d7476a9 100644 --- a/shooter_grenade/mod.conf +++ b/shooter_grenade/mod.conf @@ -1 +1,3 @@ name = shooter_grenade +description = Adds simple hand grenades +depends = shooter diff --git a/shooter_guns/depends.txt b/shooter_guns/depends.txt deleted file mode 100644 index 8f4d06f..0000000 --- a/shooter_guns/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -tnt -shooter diff --git a/shooter_guns/description.txt b/shooter_guns/description.txt deleted file mode 100644 index 50838f1..0000000 --- a/shooter_guns/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds basic guns using the shooter API. diff --git a/shooter_guns/mod.conf b/shooter_guns/mod.conf index 4deaf44..0d3cd3e 100644 --- a/shooter_guns/mod.conf +++ b/shooter_guns/mod.conf @@ -1 +1,3 @@ name = shooter_guns +description = Adds basic guns using the shooter API +depends = shooter diff --git a/shooter_hook/depends.txt b/shooter_hook/depends.txt deleted file mode 100644 index 8f4d06f..0000000 --- a/shooter_hook/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -tnt -shooter diff --git a/shooter_hook/description.txt b/shooter_hook/description.txt deleted file mode 100644 index f5dcd87..0000000 --- a/shooter_hook/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds a teleporting grapple hook and gun. diff --git a/shooter_hook/mod.conf b/shooter_hook/mod.conf index ec64d4a..eb48ba3 100644 --- a/shooter_hook/mod.conf +++ b/shooter_hook/mod.conf @@ -1 +1,3 @@ name = shooter_hook +description = Adds a teleporting grapple hook and gun +depends = shooter diff --git a/shooter_rocket/depends.txt b/shooter_rocket/depends.txt deleted file mode 100644 index 8f4d06f..0000000 --- a/shooter_rocket/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -tnt -shooter diff --git a/shooter_rocket/description.txt b/shooter_rocket/description.txt deleted file mode 100644 index a7de282..0000000 --- a/shooter_rocket/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds rocket missiles and launching gun. diff --git a/shooter_rocket/mod.conf b/shooter_rocket/mod.conf index e014e22..3a2c75b 100644 --- a/shooter_rocket/mod.conf +++ b/shooter_rocket/mod.conf @@ -1 +1,3 @@ name = shooter_rocket +description = Adds rocket missiles and launching gun +depends = shooter diff --git a/shooter_turret/depends.txt b/shooter_turret/depends.txt deleted file mode 100644 index 554434c..0000000 --- a/shooter_turret/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -shooter_rocket -player_api? diff --git a/shooter_turret/description.txt b/shooter_turret/description.txt deleted file mode 100644 index 24fef5f..0000000 --- a/shooter_turret/description.txt +++ /dev/null @@ -1,2 +0,0 @@ -Adds a mountable turret gun which can also be triggered by mesecon signals. -Still WIP and experimental and may be subject to change or removal. diff --git a/shooter_turret/mod.conf b/shooter_turret/mod.conf index 7adbeac..f4e4f32 100644 --- a/shooter_turret/mod.conf +++ b/shooter_turret/mod.conf @@ -1 +1,4 @@ name = shooter_turret +description = Experimental turret gun which can also be triggered by mesecon signals. +depends = shooter_rocket +optional_depends = player_api