/// @ 0.19.0 // ユーザーごとに1日替わりのおみくじのプリセット
// 選択肢 let choices = [ "(☝ ՞ਊ ՞)☝ウェーイ" "もちもち" "だろうな" "ぃょぅ" "それな" "なんね" "☆" "〆" "カワ(・∀・)イイ!!" "マァ、チャデモノメ!(・∀・)つ旦" "ミスドノ(・∀・)つΩ ニクマーンデモクエ" "俺、佐藤裕也(`ェ´)ピャー" "( ˙꒳˙ =͟͟͞͞ ( ˙꒳˙ )=͟͟͞͞ ˙꒳˙ )" "へー" "(藁)" "(棒)" "!" "オマエモナー" "▂▅▇█▓▒░('ω')░▒▓█▇▅▂" "🐍" "🍀" "🍁" ]
// シードが「PlayID+ユーザーID+今日の日付」である乱数生成器を用意 let random = Math:gen_rng(`{THIS_ID}{USER_ID}{Date:year()}{Date:month()}{Date:day()}`)
// ランダムに選択肢を選ぶ let chosen = choices[random(0, (choices.len - 1))]
// 結果のテキスト let result = `お前の語尾は **{chosen}** です。`
// UIを表示 Ui:render([ Ui:C:container({ align: 'center' children: [ Ui:C:mfm({ text: result }) Ui:C:postFormButton({ text: "投稿する" rounded: true primary: true form: { text: `{result}{Str:lf}{THIS_URL}`
- お前の名前`
} }) ] }) ])