28 lines
792 B
TOML
28 lines
792 B
TOML
|
|
# Random MCU / Iron Man trivia — one of dozens of fixed lines per language.
|
||
|
|
# Different from the existing `interesting_fact/` (which is general curiosity)
|
||
|
|
# and `personality/tony_quote` (which is verbatim film quotes).
|
||
|
|
# These are short factoids about the suit, the Stark universe, etc.
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "trivia.iron_man"
|
||
|
|
type = "lua"
|
||
|
|
script = "trivia.lua"
|
||
|
|
sandbox = "minimal"
|
||
|
|
timeout = 2000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"расскажи про железного человека",
|
||
|
|
"факт про железного человека",
|
||
|
|
"trivia про старка",
|
||
|
|
"интересное про старка",
|
||
|
|
"марвел факт",
|
||
|
|
]
|
||
|
|
en = [
|
||
|
|
"tell me about iron man",
|
||
|
|
"iron man trivia",
|
||
|
|
"stark trivia",
|
||
|
|
"marvel fact",
|
||
|
|
"tell me a marvel fact",
|
||
|
|
]
|