A few emoji updates.

This commit is contained in:
Storm Dragon
2025-07-31 03:16:02 -04:00
parent 84293db6dc
commit 9ef9d762f4
19 changed files with 380 additions and 3 deletions

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "👾"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Alien monster emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added alien monster to clipboard",
interrupt=False, flush=False
)

View File

@ -10,13 +10,13 @@ class command():
pass
def getDescription(self):
return "Magic cauldron emoji"
return "Mage emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added magic cauldron to clipboard",
"Added mage to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "⚰️"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Coffin emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added coffin to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🧟"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Mummy emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added mummy to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🕸️"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Spider web emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added spider web to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🧟"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Zombie emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added zombie to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "😵"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Dizzy face emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added dizzy face to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🤯"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Exploding head emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added exploding head to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🤬"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Face with symbols over mouth emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added face with symbols to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "👿"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Angry face with horns emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added angry face with horns to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,23 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🤯"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Mind blown emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added mind blown to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🤢"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Nauseated face emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added nauseated face to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "😱"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Screaming face emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added screaming face to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "⛓️"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Chains emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added chains to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🦴"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Bone emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added bone to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "🗡️"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Dagger emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added dagger to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,22 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = ""
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "High voltage lightning bolt emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added high voltage lightning bolt to clipboard",
interrupt=False, flush=False
)

View File

@ -0,0 +1,24 @@
class command():
def initialize(self, environment):
self.env = environment
self.emoji = "⚔️"
def shutdown(self):
pass
def setCallback(self, callback):
pass
def getDescription(self):
return "Sword emoji"
def run(self):
self.env["runtime"]["MemoryManager"].add_value_to_first_index(
"clipboardHistory", self.emoji
)
self.env["runtime"]["OutputManager"].present_text(
"Added sword to clipboard",
interrupt=False, flush=False
)

View File

@ -4,6 +4,6 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributors.
version = "2025.07.25"
version = "2025.07.31"
codeName = "testing"
code_name = "testing"