mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* feat: TCG Pocket A2b Signed-off-by: Avior <git@avior.me> * fix:implement new rarities Signed-off-by: Avior <git@avior.me> * fix:implement new rarities Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
56 lines
827 B
TypeScript
56 lines
827 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Shining Revelry"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Wigglytuff"
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
rarity: "One Star",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Colorless"],
|
|
|
|
evolveFrom: {
|
|
en: "Jigglypuff"
|
|
},
|
|
|
|
description: {
|
|
en: "It has a very fine fur. Take care not to make it angry, or it may inflate steadily and hit with a body slam."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
abilities: [{
|
|
type: "Ability",
|
|
|
|
name: {
|
|
en: "Comforting Song"
|
|
},
|
|
|
|
effect: {
|
|
en: "Once during your turn, you may heal 20 damage from your Active Pokémon."
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Gentle Slap"
|
|
},
|
|
|
|
damage: 50,
|
|
cost: ["Colorless", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card |