mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 13:21:58 +00:00
feat: add missing tcg pocket promos (#843)
This commit is contained in:
43
data/Pokémon TCG Pocket/Promos-A/095.ts
Normal file
43
data/Pokémon TCG Pocket/Promos-A/095.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Chinchou"
|
||||
},
|
||||
|
||||
illustrator: "Aya Kusube",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "Its antennae, which evolved from a fin, have both\npositive and negative charges flowing through them."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Luring Glow"
|
||||
},
|
||||
|
||||
cost: ["Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, switch in 1 of your opponent's Benched Pokémon to the Active Spot."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user