1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

71 lines
1.5 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Hastacuda",
en: "Barraskewda",
es: "Barraskewda",
it: "Barraskewda",
pt: "Barraskewda",
de: "Barrakiefa"
},
illustrator: "Misa Tsutsui",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 120,
types: ["Water"],
evolveFrom: {
fr: "Embrochet",
en: "Arrokuda"
},
attacks: [{
name: {
fr: "Picpic",
en: "Peck",
es: "Picotazo",
it: "Beccata",
pt: "Bicada",
de: "Pikser"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
fr: "Jet en Spirale",
en: "Spiral Jet",
es: "Chorro en Espiral",
it: "Spirale Jet",
pt: "Jato Espiral",
de: "Spiralstrahl"
},
effect: {
fr: "Défaussez 2 cartes Énergie Water de votre main. Sinon, cette attaque ne fait rien.",
en: "Discard 2 Water Energy cards from your hand. If you dont, this attack does nothing.",
es: "Descarta 2 cartas de Energía Water de tu mano. Si no lo haces, este ataque no hace nada.",
it: "Scarta due carte Energia Water che hai in mano. Se non lo fai, questo attacco non ha effetto.",
pt: "Descarte 2 cartas de Energia Water da sua mão. Se não fizer isto, este ataque não fará nada.",
de: "Lege 2 Water-Energiekarten aus deiner Hand auf deinen Ablagestapel. Wenn du das nicht machst, hat diese Attacke keine Auswirkungen."
},
damage: 130,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card