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

40 lines
587 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Sentret"
},
illustrator: "saino misaki",
rarity: "One Star",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
en: "When acting as a lookout, it warns others of danger\nby screeching and hitting the ground with its tail."
},
stage: "Basic",
attacks: [{
name: {
en: "Scratch"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card