mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
Pop serie do not report any sets (#27)
* rename to another name * renamed * Renamed references
This commit is contained in:
53
data/POP/POP Series 4/13.ts
Normal file
53
data/POP/POP Series 4/13.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 4'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pikachu",
|
||||
},
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
25,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Lightning",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Spark",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user