mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* 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>
78 lines
1.0 KiB
TypeScript
78 lines
1.0 KiB
TypeScript
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
|