discord-shooter
The `Shooter` class is a TypeScript class that extends the built-in `Events` module. It contains methods to simulate a shooting game between two Discord guild members.
The Shooter
class is a TypeScript class that extends the built-in Events
module. It contains methods to simulate a shooting game between two Discord guild members.
The constructor method initializes an instance of the Shooter
class with the following parameters:
-
opponent
: A required parameter of typeGuildMember
representing the opponent in the game. -
fighter
: A required parameter of typeGuildMember
representing the fighter in the game. -
interaction
: An optional parameter of typeCommandInteraction
representing the interaction object if the game is played via a Discord slash command. -
message
: An optional parameter of typeMessage
representing the message object if the game is played via a Discord message. -
boost
: A required parameter of typeboolean
indicating if the player has a boost in the game. -
isSlash
: An optional parameter of typeboolean
indicating if the game is played via a Discord slash command. Default value isfalse
. -
major
: An optional parameter of typestring
representing the major of the fighter. Default value is"Lt Yung"
.
This method sends a message to the channel where the game was initiated. It takes in one required parameter:
-
content
: A string representing the content of the message to be sent.
Returns a Promise
that resolves to void
.
This method simulates the shooting game between the two players and sends a message indicating the winner. It generates random numbers to determine the winner based on the odds of winning determined by the boost
parameter.
Returns a Promise
that resolves to void
.
The Shooter
class has the following properties:
-
opponent
: A readonly property of typeGuildMember
representing the opponent in the game. -
fighter
: A readonly property of typeGuildMember
representing the fighter in the game. -
interaction
: A readonly property of typeCommandInteraction
orundefined
representing the interaction object if the game is played via a Discord slash command. -
message
: A readonly property of typeMessage
orundefined
representing the message object if the game is played via a Discord message. -
boost
: A readonly property of typeboolean
indicating if the player has a boost in the game. -
isSlash
: A readonly property of typeboolean
indicating if the game is played via a Discord slash command. -
major
: An optional readonly property of typestring
representing the major of the fighter. Default value is"Lt Yung"
.