Skip to content

Commit

Permalink
added descriptions to frong commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Soulsender committed Apr 26, 2024
1 parent 703bdbf commit fbd3a3c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docker build -t frong-bot .
docker tag frong-bot soulsender/frong-bot:latest
docker push soulsender/frong-bot:latest
sudo docker push soulsender/frong-bot:latest
12 changes: 6 additions & 6 deletions cogs/frong.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,37 @@ def __init__(self,bot):
async def on_ready(self):
print(f"frong - Loaded")

@nextcord.slash_command(name="frongs")
@nextcord.slash_command(name="frongs", description="List all Frong definitions")
async def frongs(self, interaction: nextcord.Interaction):
embed = nextcord.Embed(title="**Frongs**", color=0x4287f5)
embed.add_field(name="**Definitions**", value="/frong \n /frang \n /frongincidence \n /frongonianunits \n /unfuckwithable",inline=False)
await interaction.response.send_message(embed=embed, ephemeral=False)

@nextcord.slash_command(name="frong")
@nextcord.slash_command(name="frong", description="Original Frong definition")
async def frong(self, interaction: nextcord.Interaction):
embed = nextcord.Embed(title="**Frong**", color=0x4287f5)
embed.add_field(name="**Definition:**", value="Frong (for real, on God) is an expression used in the Cosmodium Cyber Security server for humorous means. It is most commonly utilised in a fashion of agreement about a given subject. Frong (for real, on God) is a derivative of “Fr” (for real) and “ong” (on God). It is not recognized as a legitimate word in the 2022 Oxford English Dictionary but is utilized nonetheless as a cultural reference of mutual agreement. This expression was first coined by Soulsender and CØ$MØ where the two individuals were saying “Fr Fr ong” (for real, for real, on God) as a method of agreement, where after the two expressions were merged to form the new commonly used phrase. Since the debut, the phrase has found use in a server emoji of a small mammal dubbed a “gerbil” with the text “frong” (for real, on God) displayed on the bottom of the image in 2013 type-2 impact font.",inline=False)
await interaction.response.send_message(embed=embed, ephemeral=False)

@nextcord.slash_command(name="frongincidence")
@nextcord.slash_command(name="frongincidence", description="A suspicious conincidence")
async def frongincidence(self, interaction: nextcord.Interaction):
embed = nextcord.Embed(title="**Frongincidence**", color=0x4287f5)
embed.add_field(name="**Definition:**", value="Frongincidence (for real, on God, coincidence) is most commonly utilized in a fashion of suspicious coincidence (dubbed \"sus\") about a given subject. Frongincidence (for real, on God, coincidence) is a derivative of “Fr” (for real) and “ong” (on God), as well as the word \"coincidence.\" It is not recognized as a legitimate word in the 2022 Oxford English Dictionary but is utilized nonetheless as a cultural reference of suscoincidence. This expression was first coined by CØ$MØ where he was referencing an aspect of the media platform discord, and how it pertained to the word \"frong\" (for real, on God) as is the emoji letters were in a sequential fashion, where after the two expressions were merged to form the new commonly used phrase; Frongincidence (for real, on God, coincidence). Since its debut, the phrase has found use in a server emoji of a small mammal dubbed a “gerbil” with the text “frong” (for real, on God), with the additional context of something being of suspicious coincidence (\"sus\").",inline=False)
await interaction.response.send_message(embed=embed, ephemeral=False)

@nextcord.slash_command(name="frang")
@nextcord.slash_command(name="frang", description="FrongLang")
async def frang(self, interaction: nextcord.Interaction):
embed = nextcord.Embed(title="**Frang**", color=0x4287f5)
embed.add_field(name="**Definition:**", value="Frang (for real, on God, language) otherwise known as \"Fronlang\" is a programming language used to develop programs like FrongOS (for real, on God, operating system) as well as Google and PowerFrong. It is Comterpreted language, meaning that the user must compile it and then run the compiled binary through an interpreter. The langauge is not object oriented, because fuck that. Frang is well recognized as a programming language in the computer science community and has even received an oscar for how well developed it is. The original developers, CØ$MØ and Haze, chose the name \"Frang\" or \"Fronglang\" due to its associaton of the word \"frong\" (for real, on God).",inline=False)
await interaction.response.send_message(embed=embed, ephemeral=False)

@nextcord.slash_command(name="frongonianunits")
@nextcord.slash_command(name="frongonianunits", description="The best unit of measurement")
async def frongonianunits(self, interaction: nextcord.Interaction):
embed = nextcord.Embed(title="**FrongonianUnits**", color=0x4287f5)
embed.add_field(name="**Definition:**", value="Think about it like this, you have 182 watermelons and each cost 6 quid (Or 7 euros for my European folks. And 7 dollars for freedom lovers). in order to convert into frongonian units, you must take the squared derivative of each seed and calculate the megahertz it generates after a 15 ton, 31-year-old mother, has sat on it. from there you can calculate the amount of politeness each person interacts with the mother. the nicer, the more Canadian. convert it back to micro coulombs squared and you will get it in light year",inline=False)
await interaction.response.send_message(embed=embed, ephemeral=False)

@nextcord.slash_command(name="unfuckwithable")
@nextcord.slash_command(name="unfuckwithable", description="An old term from the early-late 1900s")
async def unfuckwithable(self, interaction: nextcord.Interaction):
embed = nextcord.Embed(title="**UnFuckWithable**", color=0x4287f5)
embed.add_field(name="**Definition:**", value="Unfuckwithable, an old term dating back to the early-late 1900s (roughly 2 years after the CosmodiumCS debut). the term is used to describe any noun (person, place, creature, thing, or idea) that is incapable of being \"fucked with\". this term represents an older technological way of representing words via concatenative abbreviation, where the words are laid back-to-back to make a new word (of course inspired by gay seckz). this is dissimilar to words like \"frong\" (\"for real\", \"on God\") which are composed of two separate acronyms.",inline=False)
Expand Down
5 changes: 3 additions & 2 deletions cogs/google-that.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ def __init__(self,bot):
async def on_ready(self):
print(f"google-that - Loaded")

@nextcord.slash_command(name="googlethat")
# for testing add guild_ids=[guild_id]
@nextcord.slash_command(name="googlethat", description="For people that are too lazy to google themselves.")
async def googlethat(self, interaction: nextcord.Interaction, question):
text_new = question.replace(" ", "+")
url = f"https://letmegooglethat.com/?q={text_new}"
await interaction.response.send_message(url)
await interaction.response.send_message(f"[{question}]({url})")

def setup(bot):
bot.add_cog(GoogleThat(bot))
Binary file modified frong.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fbd3a3c

Please sign in to comment.