diff --git a/commissions/index.html b/commissions/index.html index a6dc5b5..82b6c51 100644 --- a/commissions/index.html +++ b/commissions/index.html @@ -55,54 +55,8 @@

Past Commissions

- -
- -
-

Nyx

-

Nyx is a mod that transforms and improves Minecraft's time of darkness by adding elements and events themed around the moon, stars, and night sky

-
-
-
- Ellpeck has proven time and again to be very talented and open-minded when it comes to mod commissions. Easy and enjoyable to work with, and very patient when it comes to working out any inconsistencies. I’m happy to have collaborated with him! -

Drakallen

-
- -
- -
-

Slingshot

-

Slingshot allows you to shoot different items with your slingshot for different effects

-
-
-
-

A pleasant, kind, and easy to work with modder. He produces high quality work and is, in my opinion, well worth the money.

-

Violet

-
- -
- -
-

Enchantment Storage

-

Stores and automatically converts your enchanted books into a limitless repository of knowledge

-
-
-
- Working with Ellpeck was an immense pleasure, he was attentive and convivial during the entire process. Upon release, I was assured any and all problems would be handled immediately, although I have yet to encounter a single issue. Brilliant work and highly recommended. -

Zilch

-
- -
- -
-

More Flower Bushes

-

A simple mod that adds 8 new two block tall flower bushes to decorate with

-
-
-
- Thanks to Ellpeck for making the code for my little mod idea because I can't code for the life of me. Not only did he deliver incredibly fast, he also made sure that everything was done to my satisfaction. It was well worth my money and I look forward to our continued cooperation. -

Rallen

-
+
+
diff --git a/commissions/media/craftable-deeds.png b/commissions/media/craftable-deeds.png new file mode 100644 index 0000000..693d479 Binary files /dev/null and b/commissions/media/craftable-deeds.png differ diff --git a/commissions/media/enchantmentstorage.png b/commissions/media/enchantment-storage.png similarity index 100% rename from commissions/media/enchantmentstorage.png rename to commissions/media/enchantment-storage.png diff --git a/commissions/media/moreflowerbushes.png b/commissions/media/more-flower-bushes.png similarity index 100% rename from commissions/media/moreflowerbushes.png rename to commissions/media/more-flower-bushes.png diff --git a/commissions/mods.js b/commissions/mods.js new file mode 100644 index 0000000..9318b0b --- /dev/null +++ b/commissions/mods.js @@ -0,0 +1,56 @@ +const data = [{ + id: "nyx", + name: "Nyx", + description: "Nyx is a mod that transforms and improves Minecraft's time of darkness by adding elements and events themed around the moon, stars, and night sky", + testimonial: "Ellpeck has proven time and again to be very talented and open-minded when it comes to mod commissions. Easy and enjoyable to work with, and very patient when it comes to working out any inconsistencies. I’m happy to have collaborated with him!", + commissioner: "Drakallen" + }, + { + id: "slingshot", + name: "Slingshot", + description: "Slingshot allows you to shoot different items with your slingshot for different effects", + testimonial: "A pleasant, kind, and easy to work with modder. He produces high quality work and is, in my opinion, well worth the money.", + commissioner: "Violet" + }, + { + id: "enchantment-storage", + name: "Enchantment Storage", + description: "Stores and automatically converts your enchanted books into a limitless repository of knowledge", + testimonial: "Working with Ellpeck was an immense pleasure, he was attentive and convivial during the entire process. Upon release, I was assured any and all problems would be handled immediately, although I have yet to encounter a single issue. Brilliant work and highly recommended.", + commissioner: "Zilch" + }, + { + id: "more-flower-bushes", + name: "More Flower Bushes", + description: "A simple mod that adds 8 new two block tall flower bushes to decorate with", + testimonial: "Thanks to Ellpeck for making the code for my little mod idea because I can't code for the life of me. Not only did he deliver incredibly fast, he also made sure that everything was done to my satisfaction. It was well worth my money and I look forward to our continued cooperation.", + commissioner: "Rallen" + }, + { + id: "craftable-deeds", + name: "Craftable Deeds", + description: "A mod that allows claiming (and stealing) land using special map items", + testimonial: "This has been an incredibly lovely job done, quick and to my liking and completely worth my money. I would work with Ellpeck again without hesitation.", + commissioner: "DB20xx" + } +]; + +let content = ""; +let left = true; +for (let mod of data) { + content += /*html*/ ` +
+ +
+

${mod.name}

+

${mod.description}

+
+
+
+ ${mod.testimonial} +

${mod.commissioner}

+
+ `; + left = !left; +} +$("#mods").html(content); \ No newline at end of file diff --git a/commissions/style.css b/commissions/style.css index ef76122..aeef65e 100644 --- a/commissions/style.css +++ b/commissions/style.css @@ -24,7 +24,7 @@ body { .mod-caption { position: absolute; - bottom: 8px; + bottom: 10px; color: white; text-align: center; left: 50%;