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

40 lines
584 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Pineco"
},
illustrator: "Suwama Chiaki",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
en: "It looks just like a pinecone. Its shell protects it\nfrom bird Pokémon that peck it by mistake."
},
stage: "Basic",
attacks: [{
name: {
en: "Ram"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card