From e249d4b86d34250108c0090cb11d1dd37e35e54f Mon Sep 17 00:00:00 2001 From: Keanu Date: Mon, 26 Apr 2021 15:25:48 +0200 Subject: [PATCH] Added pat shop item and increased prices. --- src/commands/fun/modules/eco-shop-items.ts | 23 +++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/src/commands/fun/modules/eco-shop-items.ts b/src/commands/fun/modules/eco-shop-items.ts index d50a779..f3cf143 100644 --- a/src/commands/fun/modules/eco-shop-items.ts +++ b/src/commands/fun/modules/eco-shop-items.ts @@ -11,18 +11,18 @@ export interface ShopItem { export const ShopItems: ShopItem[] = [ { - cost: 1, + cost: 3, title: "Hug", - description: "Hug Monika.", + description: "Hug Monica.", usage: "hug", run(message, cost) { - message.channel.send(`Transaction of ${cost} Mon completed successfully. <@394808963356688394>`); + message.channel.send(`Transaction of ${cost} Mons completed successfully. <@394808963356688394>`); } }, { - cost: 2, + cost: 5, title: "Handholding", - description: "Hold Monika's hand.", + description: "Hold Monica's hand.", usage: "handhold", run(message, cost) { message.channel.send(`Transaction of ${cost} Mons completed successfully. <@394808963356688394>`); @@ -31,14 +31,23 @@ export const ShopItems: ShopItem[] = [ { cost: 1, title: "Cute", - description: "Calls Monika cute.", + description: "Calls Monica cute.", usage: "cute", run(message) { message.channel.send("<:MoniCheeseBlushRed:637513137083383826>"); } }, { - cost: 3, + cost: 2, + title: "Pat", + description: "Pat Monica's head.", + usage: "pat", + run(message, cost) { + message.channel.send(`Transaction of ${cost} Mons completed successfully. <@394808963356688394>`); + } + }, + { + cost: 15, title: "Laser Bridge", description: "Buys what is technically a laser bridge.", usage: "laser bridge",