Last active
March 8, 2018 14:20
-
-
Save Akkiesoft/99c0f45b7197846bd1e09e33f53f66f1 to your computer and use it in GitHub Desktop.
デェ…ジュヤ…ヒャッ!?ハッ!?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
Plugin.create(:mikutter_ultraman) do | |
command( | |
:ultraman, | |
name: 'ウルトラマン', | |
condition: -> _ { true }, | |
visible: true, | |
role: :timeline | |
) do | |
world, = Plugin.filtering(:world_current, nil) | |
strs = ["デェ…","ジュヤ…","ヒャッ!?","ハッ!?"] | |
compose(world, body: (1..28).to_a.map {|_| strs.sample }.join) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment