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

Pop serie do not report any sets (#27)

* rename to another name
* renamed
* Renamed references
This commit is contained in:
2021-06-02 12:13:12 +02:00
committed by GitHub
parent ec1b6a06b0
commit 46220745ce
204 changed files with 10 additions and 10 deletions

View File

@ -0,0 +1,67 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 9'
const card: Card = {
name: {
en: "Chimchar",
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
390,
],
hp: 40,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Serial Swipes",
},
effect: {
en: "Flip 4 coins. This attack does 10 damage times the number of heads.",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Sleepy",
},
effect: {
en: "If you have Piplup in play, this attack does 40 damage plus 20 more damage and the Defending Pokémon is now Asleep.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card