{"id":30637662,"url":"https://github.com/splaplapla/procon_bypass_man-splatoon2","last_synced_at":"2025-08-30T23:07:25.647Z","repository":{"id":47744801,"uuid":"376207342","full_name":"splaplapla/procon_bypass_man-splatoon2","owner":"splaplapla","description":null,"archived":false,"fork":false,"pushed_at":"2022-03-29T15:44:00.000Z","size":47,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-03-04T00:54:13.761Z","etag":null,"topics":["ruby","splatoon2"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/splaplapla.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-06-12T05:10:40.000Z","updated_at":"2022-07-20T09:55:53.000Z","dependencies_parsed_at":"2022-09-08T13:11:55.198Z","dependency_job_id":null,"html_url":"https://github.com/splaplapla/procon_bypass_man-splatoon2","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/splaplapla/procon_bypass_man-splatoon2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splaplapla%2Fprocon_bypass_man-splatoon2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splaplapla%2Fprocon_bypass_man-splatoon2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splaplapla%2Fprocon_bypass_man-splatoon2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splaplapla%2Fprocon_bypass_man-splatoon2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/splaplapla","download_url":"https://codeload.github.com/splaplapla/procon_bypass_man-splatoon2/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splaplapla%2Fprocon_bypass_man-splatoon2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272917735,"owners_count":25014935,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ruby","splatoon2"],"created_at":"2025-08-30T23:07:24.652Z","updated_at":"2025-08-30T23:07:25.617Z","avatar_url":"https://github.com/splaplapla.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ProconBypassMan::Plugin::Splatoon2\n\n* https://github.com/splaplapla/procon_bypass_man のスプラトゥーン2用プラグインです。\n* 本プラグインは新しめの procon_bypass_man に同梱しているので明示的に読み込む必要はありません\n\n## 使用例\n\n```ruby\n#!/usr/bin/env ruby\n\nrequire 'bundler/inline'\n\ngemfile do\n  source 'https://rubygems.org'\n  gem 'procon_bypass_man'\nend\n\nProconBypassMan.run(setting: \"./setting.yml\")\n```\n\nsetting.yml\n\n```yaml\nversion: 1.0\nsetting: |-\n  fast_return = ProconBypassMan::Plugin::Splatoon2::Macro::FastReturn\n  guruguru = ProconBypassMan::Plugin::Splatoon2::Mode::Guruguru\n\n  install_macro_plugin fast_return\n  install_mode_plugin guruguru\n\n  prefix_keys_for_changing_layer [:zr, :r, :zl, :l]\n\n  layer :up, mode: :manual do\n    flip :zr, if_pressed: :zr, force_neutral: :zl\n    flip :zl, if_pressed: [:y, :b, :zl]\n    flip :down, if_pressed: :down\n    macro fast_return, if_pressed: [:y, :b, :down]\n    remap :l, to: :zr\n  end\n  layer :right, mode: guruguru\n  layer :left do\n    # no-op\n  end\n  layer :down do\n    flip :zl\n  end\n```\n\n## モード\n### ProconBypassMan::Plugin::Splatoon2::Mode::Guruguru\n* 適当にうろうろします\n  * 試合中、無操作による切断を防ぐためやデバッグ用途です\n\n(TODO 動画を貼る)\n\n## マクロ\n### ProconBypassMan::Plugin::Splatoon2::Macro::FastReturn\n* 試合中にリスポーンに戻る操作を実行します\n\n### ProconBypassMan::Plugin::Splatoon2::Macro::JumpToUpKey\n* 試合中に上キーに割り当てられている味方へのスーパージャンプを実行します\n\n### ProconBypassMan::Plugin::Splatoon2::Macro::JumpToRightKey\n* 試合中に右キーに割り当てられている味方へのスーパージャンプを実行します\n\n### ProconBypassMan::Plugin::Splatoon2::Macro::JumpToLeftKey\n* 試合中に左キーに割り当てられている味方へのスーパージャンプを実行します\n\n(TODO 動画を貼る)\n\n### ProconBypassMan::Plugin::Splatoon2::Macro::SokuwariForSplashBomb\n* スプラッシュボムなサブを使って1個のバブルを即割します\n* スペシャルとインクタンクが溜まっている状態で実行してください\n* このマクロは、ボムと投げた後にスペシャル発動し、バブルを1つ投げてから、ボムをもう一度投げバブルを割ります\n\nhttps://user-images.githubusercontent.com/1664497/152633242-da01697f-12ae-496a-9d7f-22eda62cf8dd.mp4\n\n### ProconBypassMan::Plugin::Splatoon2::Macro::ChargeTansanBomb\n* 左スティックを高速に左右にシェイクするマクロです\n* タンサンボムを貯めるのに使います\n\nhttps://user-images.githubusercontent.com/1664497/160649435-52b084ed-05b0-4c58-88ba-667b5f256405.mp4\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/splaplapla/procon_bypass_man-splatoon2. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/splaplapla/procon_bypass_man-splatoon2/blob/master/CODE_OF_CONDUCT.md).\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsplaplapla%2Fprocon_bypass_man-splatoon2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsplaplapla%2Fprocon_bypass_man-splatoon2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsplaplapla%2Fprocon_bypass_man-splatoon2/lists"}