1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/105.ts

44 lines
723 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Binacle"
},
illustrator: "Saya Tsuruta",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
description: {
en: "After two Binacle find a suitably sized rock, they\nadhere themselves to it and live together.\nThey cooperate to gather food during high tide."
},
stage: "Basic",
attacks: [{
name: {
en: "Dual Chop"
},
damage: 30,
cost: ["Fighting", "Colorless"],
effect: {
en: "Flip 2 coins. This attack does 30 damage for each heads."
}
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 2
}
export default card