J.A.R.V.I.S-rust/resources/commands/generators/command.toml

52 lines
1,019 B
TOML
Raw Normal View History

2026-05-15 18:41:44 +03:00
# Random generators — coin flip, password, secret token, color.
[[commands]]
id = "gen.coin"
type = "lua"
script = "coin.lua"
sandbox = "minimal"
timeout = 2000
[commands.phrases]
ru = [
"подбрось монету",
"брось монетку",
"орёл или решка",
"монетка",
]
en = ["flip a coin", "coin flip", "heads or tails"]
[[commands]]
id = "gen.password"
type = "lua"
script = "password.lua"
sandbox = "full"
timeout = 3000
[commands.phrases]
ru = [
"сгенерируй пароль",
"придумай пароль",
"пароль 12 символов",
"сгенерируй надёжный пароль",
]
en = ["generate password", "make a password"]
[[commands]]
id = "gen.uuid"
type = "lua"
script = "uuid.lua"
sandbox = "full"
timeout = 3000
[commands.phrases]
ru = [
"сгенерируй uuid",
"сгенерируй юид",
"юид",
"уникальный идентификатор",
]
en = ["generate uuid", "uuid"]