From ea5c2da9efbcbed82670cc5c2958d7dc730d8e09 Mon Sep 17 00:00:00 2001 From: Izwzyzx <184772711+Izwzyzx@users.noreply.github.com> Date: Wed, 16 Oct 2024 14:18:38 -0500 Subject: [PATCH] Splitting data files from main repo --- hug-db.json | 4 ++++ motd-db.json | 34 ++++++++++++++++++++++++++++++++++ yesno-db.json | 10 ++++++++++ 3 files changed, 48 insertions(+) create mode 100644 hug-db.json create mode 100644 motd-db.json create mode 100644 yesno-db.json diff --git a/hug-db.json b/hug-db.json new file mode 100644 index 0000000..d1487bf --- /dev/null +++ b/hug-db.json @@ -0,0 +1,4 @@ +[ + "Insert \"hug\" image URLs here.", + "The script will randomly choose between multiple entries." +] \ No newline at end of file diff --git a/motd-db.json b/motd-db.json new file mode 100644 index 0000000..434d625 --- /dev/null +++ b/motd-db.json @@ -0,0 +1,34 @@ +{ + "sun": [ + "Sunday Event", + "For any day, the script will randomly choose between multiple entries, if provided." + ], + "mon": [ + "Monday Event" + ], + "tues": [ + "Tuesday Event" + ], + "wed": [ + "Wednesday Event" + ], + "thurs": [ + "Thursday Event" + ], + "fri": [ + "Friday Event" + ], + "sat": [ + "Saturday Event" + ], + "mon01": [ + "Example event to be triggered on any Monday that is also the 1st." + ], + "jan01": [ + "Example event to be triggered on January 1st." + ], + "jan01-2000": [ + "Example event to be triggered specifically on January 1st, 2000.", + "Entries that are more specific take precedence over less-specific entries." + ] +} \ No newline at end of file diff --git a/yesno-db.json b/yesno-db.json new file mode 100644 index 0000000..fc3a986 --- /dev/null +++ b/yesno-db.json @@ -0,0 +1,10 @@ +{ + "yes": [ + "Insert \"Yes\" image URLs here.", + "The script will randomly choose between multiple entries." + ], + "no": [ + "Insert \"No\" image URLs here.", + "The script will randomly choose between multiple entries." + ] +} \ No newline at end of file