Go to file
枫谷剑仙 beefcfe1f7 加几个新技能 2024-11-04 20:08:19 +08:00
css 加入一些常量 2022-08-05 03:37:22 +08:00
data 去哪里找Node的内容呢 2021-10-21 19:40:25 +08:00
doc 更新主怪物头像的功能说明 2024-10-02 06:00:17 +08:00
fonts 调整大量CSS 2024-07-29 06:48:49 +08:00
images 加几个新技能 2024-11-04 20:08:19 +08:00
languages 加几个新技能 2024-11-04 20:08:19 +08:00
library 优化增加伤害上限技能新模式文字显示 2024-11-02 05:15:19 +08:00
monsters-info 2024年11月1日 diss你 2024-11-01 22:20:37 +08:00
sound/voice 2024年10月30日 美韩怪猎 2024-10-30 22:46:34 +08:00
.gitignore 2023年9月29日 2023-09-29 01:04:06 +08:00
LICENSE Create LICENSE 2019-06-13 20:27:53 +08:00
README.md 更新core-js版本 2024-07-23 21:16:13 +08:00
browser-compatibility.js 火狐v129才支持重复正则表达式匹配组,所以只能这样兼容旧版本 2024-07-29 16:55:57 +08:00
index.html 解决首页不显示的问题 2024-07-29 12:52:27 +08:00
manifest.webmanifest 加入 manifest 2022-06-22 20:29:29 +08:00
multi.html 2024年11月1日 diss你 2024-11-01 22:20:37 +08:00
package.json 优化增加伤害上限技能新模式文字显示 2024-11-02 05:15:19 +08:00
script-custom_elements.js 做好了潜觉背景的基础 2022-08-08 21:31:19 +08:00
script-json_data.js 加几个新技能 2024-11-04 20:08:19 +08:00
script-skill-parser.js 加几个新技能 2024-11-04 20:08:19 +08:00
script-universal_function.js 美服徽章提前变成了20x SB 2024-10-07 00:15:15 +08:00
script.js 大概迁移完成了,所以去掉提示 2024-11-03 07:45:49 +08:00
service-worker.js 加几个新技能 2024-11-04 20:08:19 +08:00
solo.html 2024年11月1日 diss你 2024-11-01 22:20:37 +08:00
style-fix-html2canvas.css 特殊搜索改造为两列,解决太长的问题 2024-07-29 20:44:46 +08:00
style-monsterimages.css 加几个新技能 2024-11-04 20:08:19 +08:00
style.css 加几个新技能 2024-11-04 20:08:19 +08:00
temp.js 2022年3月17日 2022-03-17 20:05:29 +08:00
triple.html 2024年11月1日 diss你 2024-11-01 22:20:37 +08:00
update-service-worker.bat 又忘记更新sw了 2022-12-06 01:54:10 +08:00
update-service-worker.js 2023年10月17日 2023-10-17 18:02:07 +08:00

README.md

智龙急速阵型 | P&D Dash Formation

这是一个智龙迷城队伍图制作工具。
This is a Puzzle & Dragons Formation Maker.

这个工具可以帮助你方便的制作和分享车队阵型或单人队形。电脑、智能手机上都可以轻松使用。
This tool can help you easily create and share Swipe Formation or Solo Formation. Easy to use on your PC and Smart Phone.

预览 | Preview

单人 | Solo 2人协力 | 2P
单人界面预览 2人协力界面预览
3人协力 | 3P 手机 | Mobile
3人协力界面预览 手机端预览

如何使用 | HOW TO USE

推荐火狐浏览器 | Firefox is recommended

创建你自己的镜像网站 | Create your own mirror web site

git clone到你的 http 服务目录即可访问,将来更新时只需要git pull即可。
git clone to your http service directory for visited, and git pull for future updates.

翻译我 | Translate me

目前支持的语言 | Languages currently supported

  1. 中文(简体)
  2. 中文(繁體)
  3. English
  4. 日本語 (スキル解析翻訳のヘルプが必要です, by Bing Translator)
  5. 북한/한국어 (스킬 구문 분석 번역에 도움이 필요, by Bing Translator)

How to Pull requests

  1. Click Fork In the page top right corner. Fork your own copy of this repository to your account.
  2. Use Git to clone/pull repository locally for modification (How to modify please see below).
  3. Use Git to commit and push changes to your repository on GitHub.
  4. Go to the Pull requests page in the top middle of this repository, and click the New pull request button.
  5. Click the Compare Across Forks button and select your fork, the page then displays the changes.
  6. Click the Create pull request button and enter the details of the modification, create your pull request.

Translate

  1. Go to the languages folder
  2. Push your language info into language-list.js.
    This is an Object for a language list item.
    {
      name: "English",
      i18n: "en",
      i18n_RegExp: /^en/i,
      searchlist: ["en","ja"],
      guideURL: id=>`http://www.puzzledragonx.com/en/monster.asp?n=${id}`
    }
    
    • name is the showed name in the list.
    • i18n is the language-tag for your language. You need to make sure that the file names are the same.
    • i18n_RegExp is a Regular Expressions to match multiple navigator.language (like /^en/i can match en-US, en-CA and en-AU).
    • searchlist is the search candidate list string order when you search monster in edit window.
      Currently only ja,en,ko,cht,chs languages.(See monsters-info)
    • guideURL is a Function(cardId,cardName) to return game guide URL for your language.
      //Full writing
      guideURL:function(cardId,cardName)
      {
        return "http://sample.com/pad/search.php?id=" + cardId + "&name=" + cardName;
      }
      
      //In ES6 be equivalent to
      guideURL:(cardId,cardName)=>`http://sample.com/pad/search.php?id=${cardId}&name=${cardName}`
      
      //If you only need cardId, can write to
      guideURL:cardId=>`http://sample.com/pad/search.php?id=${cardId}`
      
  3. Create your language's Localisation file [i18n].css and [i18n].js.
    Please refer to existing files.

权利归属 | Copyright

本软件灵感来源于PDC 智龙迷城伤害计算器
This software is inspired by PDC パズドラダメージ計算

© GungHo Online Entertainment Inc. All Cards Images && Info Right Reserved.
所有图片素材版权与怪物信息归属于GungHo在线娱乐有限公司。
パズル&ドラゴンズに関する画像及び情報等の権利はGungHo Online Entertainment Inc.に帰属します。

智龙迷城官网 | Puzzle & Dragons Official Website

© Fontworks Inc. Font Kurokane Right Reserved.
くろかね字体版权归属于Fontworks有限公司。
くろかね書体の権利は フォントワークス株式会社 に帰属します。

卡片中文名、中文分类来自于Puzzle & Dragons 戰友系統及資訊網

使用开源软件 | Open source software used