aboutsummaryrefslogtreecommitdiffstats
path: root/bot/resources
diff options
context:
space:
mode:
authorGravatar Kieran Siek <[email protected]>2020-09-18 23:03:52 +0800
committerGravatar GitHub <[email protected]>2020-09-18 23:03:52 +0800
commit2e63318bc3dc1f1356b383f1eb5172b178c16866 (patch)
tree3523b6eb11f5d752f9060dfba18dbd68a14ac1b0 /bot/resources
parentMerge pull request #442 from python-discord/reddit-command-fix (diff)
parentMerge branch 'master' into caesar-command (diff)
Merge pull request #421 from PureFunctor/caesar-command
Caesar cipher command
Diffstat (limited to 'bot/resources')
-rw-r--r--bot/resources/evergreen/caesar_info.json4
1 files changed, 4 insertions, 0 deletions
diff --git a/bot/resources/evergreen/caesar_info.json b/bot/resources/evergreen/caesar_info.json
new file mode 100644
index 00000000..8229c4f3
--- /dev/null
+++ b/bot/resources/evergreen/caesar_info.json
@@ -0,0 +1,4 @@
+{
+ "title": "Caesar Cipher",
+ "description": "**Information**\nThe Caesar Cipher, named after the Roman General Julius Caesar, is one of the simplest and most widely known encryption techniques. It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter given a specific position offset in the alphabet, with the letters wrapping around both sides.\n\n**Examples**\n1) `Hello World` <=> `Khoor Zruog` where letters are shifted forwards by `3`.\n2) `Julius Caesar` <=> `Yjaxjh Rpthpg` where letters are shifted backwards by `11`."
+}