1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 23:22:11 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

76 lines
1.7 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",
stage: "Stage1",
description: {
en: "This Pokémon has a jaw thats as sharp as a spear and as strong as steel. Apparently Barraskewdas flesh is surprisingly tasty, too."
}
}
export default card