From 45d5a0fa5ac21b0c1cba8cef4cae2ddd3b733bd6 Mon Sep 17 00:00:00 2001 From: TheEdgeNK Date: Tue, 10 Jul 2018 16:16:13 -0400 Subject: moar --- archive/pokeworld/about/index.html | 58 ++++++++++++ archive/pokeworld/css/style.css | 68 ++++++++++++++ archive/pokeworld/pokebot/commands/index.html | 116 ++++++++++++++++++++++++ archive/pokeworld/pokebot/css/style.css | 68 ++++++++++++++ archive/pokeworld/pokebot/index.html | 67 ++++++++++++++ archive/pokeworld/pokebot/pokebotbannerlogo.png | Bin 0 -> 197764 bytes archive/pokeworld/rules/index.html | 65 +++++++++++++ archive/pokeworld/site.webmanifest | 19 ++++ 8 files changed, 461 insertions(+) create mode 100644 archive/pokeworld/about/index.html create mode 100644 archive/pokeworld/css/style.css create mode 100644 archive/pokeworld/pokebot/commands/index.html create mode 100644 archive/pokeworld/pokebot/css/style.css create mode 100644 archive/pokeworld/pokebot/index.html create mode 100644 archive/pokeworld/pokebot/pokebotbannerlogo.png create mode 100644 archive/pokeworld/rules/index.html create mode 100644 archive/pokeworld/site.webmanifest (limited to 'archive/pokeworld') diff --git a/archive/pokeworld/about/index.html b/archive/pokeworld/about/index.html new file mode 100644 index 0000000..eb776da --- /dev/null +++ b/archive/pokeworld/about/index.html @@ -0,0 +1,58 @@ + + + + + + + PokeWorld | About + + + + + + + + + + + + + + + +
+
+
+

PokeWorld

+
+ +
+
+
+

About

+

Learn about us.

+

Origination

+

One day, a server was created. It was called PokeWorld, and 3 people decided to join in on the project; making a Discord bot for the server. These 3 people were jtsshieh, Alee, and TheEdge. This went on, until jtsshieh, and TheEdge decided to leave that server. Then, a few hours later, this PokeWorld you are reading about now was created.

+

Projects

+

We are currently working on a few projects. These include: PokeBot and this website.

+

PokeBot

+

The project that inspired us to keep on going. This is the Discord bot that powers our server; from moderation, to fun commands.

+

Website

+

Well, you are here now. The website is our portal to everything related to PokeWorld!

+

And the website design was made by Alee (Owner of AleeCorp Network)

+
+ + + diff --git a/archive/pokeworld/css/style.css b/archive/pokeworld/css/style.css new file mode 100644 index 0000000..6b24190 --- /dev/null +++ b/archive/pokeworld/css/style.css @@ -0,0 +1,68 @@ +body { + font-family: Segoe UI, Helvetica, Arial; + padding:0; + margin:0; + background-color:#3e443e; + color:white; +} + +.container { + width:80%; + margin:auto; + overflow:hidden; +} + +header { + background-color:#262627; + color:white; + padding-top:30px; + min-height:70px; + border-bottom:#0a4db1 3px solid; +} + +header a { + color:white; + text-decoration:none; + font-size:16px; +} + +header ul { + margin:0; + padding:0; +} + +header li { + display:inline; + padding: 0 20px 0 20px; +} + +header #branding { + float:left; +} + +header #branding h1 { + margin:0; +} + +header nav { + float:right; + margin-top:10px; +} + +header .current a { + color:#0a4db1; + font-weight:bold; +} + +header a:hover { + color:#302f77; + font-weight:Bold; +} + +footer { + padding:20px; + margin-top:20px; + color:white; + background-color: #0a4db1; + text-align: center; +} \ No newline at end of file diff --git a/archive/pokeworld/pokebot/commands/index.html b/archive/pokeworld/pokebot/commands/index.html new file mode 100644 index 0000000..786fb18 --- /dev/null +++ b/archive/pokeworld/pokebot/commands/index.html @@ -0,0 +1,116 @@ + + + + + + + PokeWorld | Pokebot + + + + + + + + + + + + + + + +
+
+
+

PokeWorld

+
+ +
+
+
+

PokeBot Commands and Help Contents

+

This is the right place to get more information on the bot.

+

Thanks for using PokeBot! If you find any bugs or errors, please report an issue on our GitHub!

+

Now that PokeBot is a public bot, we are making this page so that you can see extra details on bot commands, and what they do.

+

Command List and Description [Prefix: p:]

+

Fun

+ +

Getting Started

+ +

Moderation

+ +

Music

+ +

Owners Only

+ +

Pokemon (All Commands PokeWorld exclusive.)

+ +

Utility

+ +
+ + + diff --git a/archive/pokeworld/pokebot/css/style.css b/archive/pokeworld/pokebot/css/style.css new file mode 100644 index 0000000..6b24190 --- /dev/null +++ b/archive/pokeworld/pokebot/css/style.css @@ -0,0 +1,68 @@ +body { + font-family: Segoe UI, Helvetica, Arial; + padding:0; + margin:0; + background-color:#3e443e; + color:white; +} + +.container { + width:80%; + margin:auto; + overflow:hidden; +} + +header { + background-color:#262627; + color:white; + padding-top:30px; + min-height:70px; + border-bottom:#0a4db1 3px solid; +} + +header a { + color:white; + text-decoration:none; + font-size:16px; +} + +header ul { + margin:0; + padding:0; +} + +header li { + display:inline; + padding: 0 20px 0 20px; +} + +header #branding { + float:left; +} + +header #branding h1 { + margin:0; +} + +header nav { + float:right; + margin-top:10px; +} + +header .current a { + color:#0a4db1; + font-weight:bold; +} + +header a:hover { + color:#302f77; + font-weight:Bold; +} + +footer { + padding:20px; + margin-top:20px; + color:white; + background-color: #0a4db1; + text-align: center; +} \ No newline at end of file diff --git a/archive/pokeworld/pokebot/index.html b/archive/pokeworld/pokebot/index.html new file mode 100644 index 0000000..3609f89 --- /dev/null +++ b/archive/pokeworld/pokebot/index.html @@ -0,0 +1,67 @@ + + + + + + + PokeWorld | Pokebot + + + + + + + + + + + + + + + +
+
+
+

PokeWorld

+
+ +
+
+
+

PokeBot

+

The bot that powers our entire server.

+

PokeBot is the bot that powers our server. You can see the list of commands here. It adds on to PokeCord's commands by allowing for team and gym support for the PokeWorld server. It is best used with Pokecord as it was built as an addon for Pokecord

+

Download

+

If you are looking for all the newest features but don't care about how stable it is, pick up a copy on our GitHub. Otherwise, you can get a release which are proven to be a lot more stable then the random things we put on the main branch.

+

+

Changelog

+ +
+ + + diff --git a/archive/pokeworld/pokebot/pokebotbannerlogo.png b/archive/pokeworld/pokebot/pokebotbannerlogo.png new file mode 100644 index 0000000..0ce7a8f Binary files /dev/null and b/archive/pokeworld/pokebot/pokebotbannerlogo.png differ diff --git a/archive/pokeworld/rules/index.html b/archive/pokeworld/rules/index.html new file mode 100644 index 0000000..38abb1c --- /dev/null +++ b/archive/pokeworld/rules/index.html @@ -0,0 +1,65 @@ + + + + + + + PokeWorld | Rules + + + + + + + + + + + + + + + +
+
+
+

PokeWorld

+
+ +
+
+
+

Discord Rules

+

Extended rules for the PokeWorld discord.

+

Tier 1 offenses.

+

If these are broken, then a warning will occur. If you do this again, you may be kicked, or get another warning. This depends on the severity.

+

No spamming
Do not abuse bugs in the bots.
Respect others

+

Tier 2 offenses

+

These can result in a warning, or kick. This depends on severity.

+

No racial slurs
No excessive swearing, even in #train
Respect the community moderators and administrators

+

Tier 3 offenses

+

These will result on a kick or ban, depending on the severity

+

No NSFW content.
No excessive spam in #general or #bot
Raids are prohibited.

+

Staff of PokeWorld

+

Administrators

+

jtsshieh
TheEdge
Chara

+

Moderators

+

Alee
Sylveon
usChara

+ +

Thanks for reading the rules! We hope you have a fun time in PokeWorld!

+
+ + + diff --git a/archive/pokeworld/site.webmanifest b/archive/pokeworld/site.webmanifest new file mode 100644 index 0000000..a9e5059 --- /dev/null +++ b/archive/pokeworld/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "./android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "./android-chrome-384x384.png", + "sizes": "384x384", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} -- cgit v1.2.3