1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Black & White/Dragons Exalted/108.ts
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

78 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Dragons Exalted'
const card: Card = {
name: {
en: "Audino",
fr: "Nanméouïe",
es: "Audino",
it: "Audino",
pt: "Audino",
de: "Ohrdoch"
},
illustrator: "Tomokazu Komiya",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
531,
],
hp: 90,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Wake-up Beam",
fr: "Rayon Vivifiant",
},
effect: {
en: "Remove all Special Conditions from the Defending Pokémon.",
fr: "Retirez tous les États Spéciaux du Pokémon Défenseur.",
},
damage: 40,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Drain Slap",
fr: "Baffe Sangsue",
},
effect: {
en: "Heal 30 damage from this Pokémon.",
fr: "Soignez 30 dégâts à ce Pokémon.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
}
export default card