You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
coms="**Game Ingame Keysettings:**\nHier sind die Ingame-Keyboardsettings, Formatierung:\n\n **Key** - **Action**\n\n"
31
+
forcommandinGAMECOMMANDS:
32
+
coms+=f"{command}"+'\n'
33
+
e=hikari.Embed(
34
+
title="Game - Basiccommands",
35
+
description=coms
36
+
)
37
+
e.set_thumbnail('./image/logo1.png')
38
+
returnawaitctx.respond(embed=e)
39
+
40
+
@gamedev_commands.child
41
+
@lightbulb.command('info', 'Information about my Gameproject', auto_defer=True, pass_options=True)
42
+
@lightbulb.implements(lightbulb.SlashSubCommand)
43
+
asyncdeflinux_basic(ctx: lightbulb.Context):
44
+
coms= (f"**Gameproject Informationen:**\nHier die allgemeinen Informationen:\n\n"+
45
+
f"Das Spiel wird in der Godot Engine 4 entwickelt. Ein Action-RPG im Style des Klassikers *Secret of Mana* für das *Super Nintendo Entertainment System.\n"+
46
+
f"Die Grafik ist daher in *2D Pixelart*. Viele typische Elemente wie Quests, unterschiedliche Welten mit Dungeons und Monstern.\n"+
47
+
f"Ein Kampfsystem mit verschiedenen Angriffen und Zaubern. Das Projekt ist noch in einer frühen Phase und daher noch nicht vollständig.\n\n"+
48
+
f"Das Spiel ist auf Github zu finden:\n*https://www.github.com/sera619/Godot4-RPG*\n")
0 commit comments