1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

feat: Add Poké Card Creator Pack cards (#184)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
Florian Bouillon 2021-11-22 15:08:42 +01:00 committed by GitHub
parent d7d600c0d7
commit b365c15559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 331 additions and 0 deletions

View File

@ -0,0 +1,20 @@
import { Set } from '../../interfaces'
import serie from '../EX'
const pccp: Set = {
id: "ex5.5",
name: {
en: "Poké Card Creator Pack"
},
serie: serie,
cardCount: {
official: 5
},
releaseDate: "2004-07-01"
}
export default pccp

View File

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../Poké Card Creator Pack'
const card: Card = {
name: {
en: "Treecko"
},
illustrator: "Mark Kraus",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
252,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
retreat: 1,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tackle"
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Poison Claws"
},
effect: {
en: 'The Defending Pokémon is now Poisoned. '
},
damage: 30,
}
],
weaknesses: [
{
type: "Fire"
},
],
resistances: [
{
type: "Water",
value: "-30"
},
],
}
export default card

View File

@ -0,0 +1,60 @@
import { Card } from '../../../interfaces'
import Set from '../Poké Card Creator Pack'
const card: Card = {
name: {
en: "Wurmple"
},
illustrator: "Katie Gross",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
265,
],
hp: 50,
types: [
"Grass",
],
stage: "Basic",
retreat: 1,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Gooey Thread"
},
effect: {
en: "The Defending Pokémon can't retreat until the end of your opponent's next turn."
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Poison Claws"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing."
},
damage: 40,
}
],
weaknesses: [
{
type: "Fire"
},
]
}
export default card

View File

@ -0,0 +1,61 @@
import { Card } from '../../../interfaces'
import Set from '../Poké Card Creator Pack'
const card: Card = {
name: {
en: "Torchic"
},
illustrator: "May Do",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
255,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
retreat: 1,
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Super Singe"
},
effect: {
en: "The Defending Pokémon is now Burned."
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Flamethrower"
},
effect: {
en: "Discard a Fire Energy card attached to Torchic."
},
damage: 40,
}
],
weaknesses: [
{
type: "Water"
},
]
}
export default card

View File

@ -0,0 +1,61 @@
import { Card } from '../../../interfaces'
import Set from '../Poké Card Creator Pack'
const card: Card = {
name: {
en: "Mudkip"
},
illustrator: "Rowan Laidlaw",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
258,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
retreat: 1,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tail Rap"
},
effect: {
en: "Flip 2 coins. This attack does 10 damage times the number of heads."
},
damage: "10×",
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Hypno Splash"
},
effect: {
en: "The Defending Pokémon is now Asleep."
},
damage: 30,
}
],
weaknesses: [
{
type: "Lightning"
},
]
}
export default card

View File

@ -0,0 +1,61 @@
import { Card } from '../../../interfaces'
import Set from '../Poké Card Creator Pack'
const card: Card = {
name: {
en: "Pikachu"
},
illustrator: "Sylvia Forrest",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
retreat: 1,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Thundershock"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
},
damage: 10,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Hypno Splash"
},
effect: {
en: "Discard all Lightning Energy cards attached to Pikachu or this attack does nothing."
},
damage: 60,
}
],
weaknesses: [
{
type: "Fighting"
},
]
}
export default card