mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
40 lines
593 B
TypeScript
40 lines
593 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Chansey"
|
|
},
|
|
|
|
illustrator: "sowsow",
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Gentle Slap"
|
|
},
|
|
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
damage: 60
|
|
}],
|
|
|
|
hp: 120,
|
|
|
|
description: {
|
|
en: "This kindly Pokémon lays highly nutritious eggs<br />and shares them with injured Pokémon or people."
|
|
},
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 3
|
|
}
|
|
|
|
export default card |