PADDashFormation

Puzzle & Dragons Formation Maker and Card Guide

GPL-3.0 License

Stars
53
Committers
3

| 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

| is recommended

| Online Quick Start (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. English
  2. (, by Bing Translator)
  3. / ( , 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