mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: TCG Pocket A2b (#695)
* 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>
This commit is contained in:
56
data/Pokémon TCG Pocket/Shining Revelry/078.ts
Normal file
56
data/Pokémon TCG Pocket/Shining Revelry/078.ts
Normal file
@ -0,0 +1,56 @@
|
||||
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
|
Reference in New Issue
Block a user