1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

74 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Boundaries Crossed'
const card: Card = {
name: {
en: "Dunsparce",
fr: "Insolourdo",
es: "Dunsparce",
it: "Dunsparce",
pt: "Dunsparce",
de: "Dummisel"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
206,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Double Draw",
fr: "Double Pioche",
},
effect: {
en: "Draw 2 cards.",
fr: "Piochez 2 cartes.",
},
},
{
cost: [
"Colorless",
],
name: {
en: "Dig",
fr: "Tunnel",
},
effect: {
en: "Flip a coin. If heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponent's next turn.",
fr: "Lancez une pièce. Si c'est face, évitez tous les effets d'attaques (y compris les dégâts) infligés à ce Pokémon pendant le prochain tour de votre adversaire.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 0
}
export default card