29 lines
1.3 KiB
Lua
29 lines
1.3 KiB
Lua
|
|
-- Random iconic Tony Stark / Iron Man quote.
|
|||
|
|
-- Quotes are kept in their original delivery language — translating them spoils the cadence.
|
|||
|
|
math.randomseed(os.time() + (jarvis.context.time.second or 0) * 41)
|
|||
|
|
|
|||
|
|
local quotes = {
|
|||
|
|
"I am Iron Man.",
|
|||
|
|
"Genius, billionaire, playboy, philanthropist.",
|
|||
|
|
"Sometimes you gotta run before you can walk.",
|
|||
|
|
"I told you, I don't want to join your super-secret boy band.",
|
|||
|
|
"Part of the journey is the end.",
|
|||
|
|
"If we can't protect the Earth, you can be damn sure we'll avenge it.",
|
|||
|
|
"I have successfully privatized world peace.",
|
|||
|
|
"Following's not really my style.",
|
|||
|
|
"Doth mother know you weareth her drapes?",
|
|||
|
|
"We have a Hulk.",
|
|||
|
|
"Heroes are made by the path they choose, not the powers they are graced with.",
|
|||
|
|
"I love you 3000.",
|
|||
|
|
"Я Железный Человек.",
|
|||
|
|
"Гений, миллиардер, плейбой, филантроп.",
|
|||
|
|
"Иногда нужно бежать, не научившись ходить.",
|
|||
|
|
"Если мы не сможем защитить Землю — мы за неё отомстим.",
|
|||
|
|
"Часть пути — это конец пути.",
|
|||
|
|
"Я люблю тебя три тысячи.",
|
|||
|
|
"У нас есть Халк.",
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
local idx = math.random(1, #quotes)
|
|||
|
|
return jarvis.cmd.ok(quotes[idx])
|