mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
27 lines
388 B
TypeScript
27 lines
388 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Chansey"
|
|
},
|
|
|
|
illustrator: "sowsow",
|
|
rarity: "Three Diamond",
|
|
category: "Pokemon",
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Gentle Slap"
|
|
},
|
|
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
damage: 60
|
|
}]
|
|
}
|
|
|
|
export default card |