1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 18:03:12 +00:00

Add item list to DB init

This commit is contained in:
wlinator 2024-01-02 11:53:08 +01:00
parent 91beda171b
commit 2174d234b8

59
db/init/2-items.sql Normal file
View file

@ -0,0 +1,59 @@
REPLACE INTO item
(id, name, display_name, description, image_url, emote_id, quote, type)
VALUES (
"apple",
"apple",
"This is just an apple.. An item used for testing.",
"https://i.imgur.com/ykQO3sH.png",
1121491265658306692,
"The rarest item in Racu, you literally can't get this.",
"collectible"
)
REPLACE INTO item
(id, name, display_name, description, image_url, emote_id, quote, type)
VALUES (
"tester_badge",
"tester badge",
"A badge awarded to the people who helped make Racu.",
"https://i.imgur.com/Z8zQXuQ.png",
1121491902370418869,
"Thank you for the support <3",
"badge"
)
REPLACE INTO item
(id, name, display_name, description, image_url, emote_id, quote, type)
VALUES (
"bitch_coin",
"bitchcoin",
"Awarded on getting a natural hand (21 on the first two cards) in **/blackjack**. One of these coins is worth just as much as the number of bitches you have.",
"https://i.imgur.com/Ztj9ZMB.png",
1124044941702733925,
"You may still be bitchless but at least you have this coin.",
"collectible"
)
REPLACE INTO item
(id, name, display_name, description, image_url, emote_id, quote, type)
VALUES (
"rave_coin",
"ravecoin",
"Awarded on winning a bet of $9,000 or more.",
"https://i.imgur.com/iROwZ6T.png",
1125357545180110878,
"IT'S OVER 9000!!!",
"collectible"
)
REPLACE INTO item
(id, name, display_name, description, image_url, emote_id, quote, type)
VALUES (
"admin_badge",
"admin badge",
"A badge given to bot administrators, used by the bot to identify developer privileges.",
"https://i.imgur.com/2krfanS.png",
1125371605485371442,
"admin_bagde",
"badge"
)