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>
45 lines
619 B
TypeScript
45 lines
619 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Shining Revelry"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Bibarel ex"
|
|
},
|
|
|
|
illustrator: "PLANETA CG Works",
|
|
rarity: "Four Diamond",
|
|
category: "Pokemon",
|
|
hp: 160,
|
|
types: ["Colorless"],
|
|
|
|
evolveFrom: {
|
|
en: "Bidoof"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
suffix: "EX",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Carefree Press"
|
|
},
|
|
|
|
damage: 100,
|
|
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
|
|
|
|
effect: {
|
|
en: "Heal 30 damage from this Pokémon."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 3
|
|
}
|
|
|
|
export default card |