mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
64 lines
900 B
TypeScript
64 lines
900 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Barraskewda",
|
||
fr: "Hastacuda"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
evolveFrom: {
|
||
en: "Arrokuda",
|
||
fr: "Embrochet"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Peck",
|
||
fr: "Picpic"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Spiral Jet",
|
||
fr: "Jet en Spirale"
|
||
},
|
||
effect: {
|
||
en: "Discard 2 Water Energy cards from your hand. If you don't, this attack does nothing.",
|
||
fr: "Défaussez 2 cartes Énergie Water de votre main. Sinon, cette attaque ne fait rien."
|
||
},
|
||
damage: 130,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
hp: 120,
|
||
types: ["Water"],
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|