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/054.ts

43 lines
694 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Corsola"
},
illustrator: "Mékayu",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Water"],
description: {
en: "It will regrow any branches that break off its\nhead. People keep particularly beautiful Corsola\nbranches as charms to promote safe childbirth."
},
stage: "Basic",
attacks: [{
name: {
en: "Find a Friend"
},
cost: ["Colorless"],
effect: {
en: "Put a random Pokémon from your deck into your hand."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card