1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/106.ts

44 lines
682 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Barbaracle"
},
illustrator: "Nurikabe",
rarity: "Two Diamond",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
evolveFrom: {
en: "Binacle"
},
description: {
en: "Seven Binacle come together to form one\nBarbaracle. The Binacle that serves as the head\ngives orders to those serving as the limbs."
},
stage: "Stage1",
attacks: [{
name: {
en: "Dynamic Chop"
},
damage: 70,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 2
}
export default card