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:
47
data/Pokémon TCG Pocket/Extradimensional Crisis/058.ts
Normal file
47
data/Pokémon TCG Pocket/Extradimensional Crisis/058.ts
Normal 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
|
Reference in New Issue
Block a user