diff --git a/_index.toml b/_index.toml index af58a0d..5b977d5 100644 --- a/_index.toml +++ b/_index.toml @@ -14,6 +14,8 @@ # include."path" = "label" include."planet" = "planet" include."star" = "star" +include."ship" = "ship" +include."effect" = "effect" # Only the root _index.toml may contain config. [config] @@ -27,11 +29,3 @@ path = "error.png" [[texture]] name = "starfield" path = "starfield.png" - -[[texture]] -name = "ship::gypsum" -path = "gypsum.png" - -[[texture]] -name = "ship::dolomite" -path = "dolomite.png" diff --git a/flare/0.png b/flare/0.png new file mode 100644 index 0000000..e97742e Binary files /dev/null and b/flare/0.png differ diff --git a/flare/1.png b/flare/1.png new file mode 100644 index 0000000..5178a90 Binary files /dev/null and b/flare/1.png differ diff --git a/flare/2.png b/flare/2.png new file mode 100644 index 0000000..48cbfb3 Binary files /dev/null and b/flare/2.png differ diff --git a/flare/3.png b/flare/3.png new file mode 100644 index 0000000..cf88397 Binary files /dev/null and b/flare/3.png differ diff --git a/flare/_index.toml b/flare/_index.toml new file mode 100644 index 0000000..528f94c --- /dev/null +++ b/flare/_index.toml @@ -0,0 +1,3 @@ +[[texture]] +name = "flare" +path = "0.png" diff --git a/ship/_index.toml b/ship/_index.toml new file mode 100644 index 0000000..71513be --- /dev/null +++ b/ship/_index.toml @@ -0,0 +1,7 @@ +[[texture]] +name = "gypsum" +path = "gypsum.png" + +[[texture]] +name = "dolomite" +path = "dolomite.png" diff --git a/dolomite.png b/ship/dolomite.png similarity index 100% rename from dolomite.png rename to ship/dolomite.png diff --git a/gypsum.png b/ship/gypsum.png similarity index 100% rename from gypsum.png rename to ship/gypsum.png