1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add A3a - Extradimensional Crisis (#752)

This commit is contained in:
2025-05-29 16:18:14 +02:00
committed by GitHub
parent 082bb77f13
commit eb93ab4124
104 changed files with 4494 additions and 0 deletions

View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Bewear"
},
illustrator: "Ryuta Fuse",
rarity: "Two Diamond",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
evolveFrom: {
en: "Stufful"
},
description: {
en: "Once it accepts you as a friend, it tries to show\nits affection with a hug. Letting it do that is\ndangerous—it could easily shatter your bones."
},
stage: "Stage1",
attacks: [{
name: {
en: "Superpowered Hug"
},
cost: ["Colorless", "Colorless", "Colorless"],
effect: {
en: "Flip 2 coins. If both of them are heads, your opponent's Active Pokémon is Knocked Out."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 3
}
export default card