You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 6.1 kB

7 years ago
7 years ago
3 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
5 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
3 years ago
5 years ago
3 years ago
5 years ago
3 years ago
3 years ago
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. 智龙急速阵型 | P&D Dash Formation
  2. ======
  3. 这是一个智龙迷城队伍图制作工具。
  4. This is a Puzzle & Dragons Formation Maker.
  5. 这个工具可以帮助你方便的制作和分享车队阵型或单人队形。电脑、智能手机上都可以轻松使用。
  6. This tool can help you easily create and share Swipe Formation or Solo Formation. Easy to use on your PC and Smart Phone.
  7. ### 预览 | Preview
  8. | **单人 \| Solo** | **2人协力 \| 2P** |
  9. | :---: | :---: |
  10. | ![单人界面预览](doc/images/preview-capture-1p.png) | ![2人协力界面预览](doc/images/preview-capture-2p.png) |
  11. | **3人协力 \| 3P** | **手机 \| Mobile** |
  12. | ![3人协力界面预览](doc/images/preview-capture-3p.png) | ![手机端预览](doc/images/preview-mobile.jpg) |
  13. # 如何使用 | HOW TO USE
  14. 推荐[![][firefox]火狐浏览器](https://www.mozilla.org/firefox/new/) | [![][firefox]Firefox](https://www.mozilla.org/firefox/new/) is recommended
  15. ## 快速使用在线版(推荐) | Online Quick Start (Recommended)
  16. * <https://mapaler.github.io/PADDashFormation/> (Github Pages)
  17. * <https://mapaler.com/PADDashFormation/> (我自己的镜像 | my own mirror)
  18. ## 创建你自己的镜像网站 | Create your own mirror web site
  19. `git clone`到你的 *http* 服务目录即可访问,将来更新时只需要`git pull`即可。
  20. `git clone` to your *http* service directory for visited, and `git pull` for future updates.
  21. # 翻译我 | Translate me
  22. ## 目前支持的语言 | Languages currently supported
  23. 1. 中文(简体)
  24. 1. 中文(繁體)
  25. 1. English
  26. 1. 日本語 (スキル解析翻訳のヘルプが必要です, by Bing Translator)
  27. 1. 북한/한국어 (스킬 구문 분석 번역에 도움이 필요, by Bing Translator)
  28. ## How to **Pull requests**
  29. 1. Click **Fork** In the page top right corner. Fork your own copy of this repository to your account.
  30. 1. Use Git to clone/pull repository locally for modification (How to modify please see below).
  31. 1. Use Git to commit and push changes to your repository on GitHub.
  32. 1. Go to the **[Pull requests](../../pulls)** page in the top middle of this repository, and click the **New pull request** button.
  33. 1. Click the **Compare Across Forks** button and select your fork, the page then displays the changes.
  34. 1. Click the **Create pull request** button and enter the details of the modification, create your pull request.
  35. ## Translate
  36. 1. Go to the `languages` folder
  37. 1. Push your language info into `language-list.js`.
  38. This is an Object for a language list item.
  39. ```js
  40. {
  41. name: "English",
  42. i18n: "en",
  43. i18n_RegExp: /^en/i,
  44. searchlist: ["en","ja"],
  45. guideURL: id=>`http://www.puzzledragonx.com/en/monster.asp?n=${id}`
  46. }
  47. ```
  48. * `name` is the showed name in the list.
  49. * `i18n` is the language-tag for your language. You need to make sure that the file names are the same.
  50. * `i18n_RegExp` is a *Regular Expressions* to match multiple `navigator.language` (like `/^en/i` can match `en-US`, `en-CA` and `en-AU`).
  51. * `searchlist` is the search candidate list string order when you search monster in edit window.
  52. Currently only `ja`,`en`,`ko`,`cht`,`chs` languages.(See [monsters-info](monsters-info))
  53. * `guideURL` is a **Function(cardId,cardName)** to return game guide URL for your language.
  54. ```js
  55. //Full writing
  56. guideURL:function(cardId,cardName)
  57. {
  58. return "http://sample.com/pad/search.php?id=" + cardId + "&name=" + cardName;
  59. }
  60. //In ES6 be equivalent to
  61. guideURL:(cardId,cardName)=>`http://sample.com/pad/search.php?id=${cardId}&name=${cardName}`
  62. //If you only need cardId, can write to
  63. guideURL:cardId=>`http://sample.com/pad/search.php?id=${cardId}`
  64. ```
  65. 1. Create your language's Localisation file `[i18n].css` and `[i18n].js`.
  66. Please refer to existing files.
  67. # 权利归属 | Copyright
  68. > 本软件灵感来源于[PDC 智龙迷城伤害计算器](https://play.google.com/store/apps/details?id=com.corombo13.paddamagecal)
  69. > This software is inspired by [PDC パズドラダメージ計算](https://play.google.com/store/apps/details?id=com.corombo13.paddamagecal)
  70. > © GungHo Online Entertainment Inc. All Cards Images && Info Right Reserved.
  71. > 所有图片素材版权与怪物信息归属于GungHo在线娱乐有限公司。
  72. > パズル&ドラゴンズに関する画像及び情報等の権利はGungHo Online Entertainment Inc.に帰属します。
  73. > ### 智龙迷城官网 | Puzzle & Dragons Official Website
  74. > * [パズル&ドラゴンズ](https://pad.gungho.jp)
  75. > * [龍族拼圖](https://pad.gungho.jp/hktw/pad/)
  76. > * [Puzzle & Dragons](https://www.puzzleanddragons.us/)
  77. > * [퍼즐앤드래곤](https://pad.neocyon.com/W/)
  78. > © Fontworks Inc. Font Kurokane Right Reserved.
  79. > くろかね字体版权归属于Fontworks有限公司。
  80. > [くろかね書体](//fontworks.co.jp/fontsearch/kurokanestd-eb/)の権利は フォントワークス株式会社 に帰属します。
  81. > 卡片中文名、中文分类来自于[Puzzle & Dragons 戰友系統及資訊網](//pad.skyozora.com/)
  82. # 使用开源软件 | Open source software used
  83. * [pad-rikuu](https://github.com/kiootic/pad-rikuu) //Data structure and parser
  84. * [Puzzle-and-Dragons-Texture-Tool](https://github.com/codywatts/Puzzle-and-Dragons-Texture-Tool) //Extract Images
  85. * [zxing-js](https://github.com/zxing-js/library) //Read, Write QR Code
  86. * [html2canvas](https://github.com/html2canvas/html2canvas) //Capture Image
  87. * [aaa](https://github.com/jy4340132/aaa) //Play voice(ADPCM wav)
  88. * [core-js](https://github.com/zloirock/core-js) //polyfills for ECMAScript up to 2024
  89. * [Font Awesome Free](https://github.com/FortAwesome/Font-Awesome) //Font Icon
  90. * [Zpix (最像素)](https://github.com/SolidZORO/zpix-pixel-font) //Pixel Font
  91. * [font-spider](https://github.com/aui/font-spider) //Compression Font file
  92. * [opencc-js](https://github.com/nk2028/opencc-js) //繁转简
  93. [firefox]: https://www.mozilla.org/media/img/firefox/favicon.ico