~ Bunniee ~ | #1 | Tue Sep 12, 2017 11:48 AM | Delete | I just made a post about my deck and I had to write out every card which is doable but it would be really handy for forum users if you added an option to the "export deck" menu that just produced a txt file with a card list split up into "monsters"/"spells"/"traps"/"side deck"/"extra deck" and with 1x/2x/3x before each card. |
|
[ Jujuuu. ] | #2 | Tue Sep 12, 2017 12:04 PM | Delete | I just use salvation's text list, but if its implementable on there (salv is in javascript mostly) then DB can definitely do it. |
|
guynamedjoe | #3 | Wed Nov 8, 2017 6:28 PM | Delete | I was about to suggest this.
You could find a decklist online, and parse the String with amount and the card name, and separate it by line. It will use a spellcheck system to find out if the card exists, and suggests a card closest to that name if non existent. If you were to find a decklist online and don't want to waste time manually building it, you would just copy and paste everything and then it will add the cards for you.
Example
[amount] [cardName]
Then it would spit out an error if quantity invalid.
(amount > 3 || amount < 1) //amount greater than 3 or amount less than 1.
If you want more technical details about this, I can explain it. |
|