mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
feat: Genetic Apex (A1) (English Only) (#573)
This commit is contained in:
parent
bf8f610c04
commit
14ed8ee912
10
data/Pokémon TCG Pocket.ts
Normal file
10
data/Pokémon TCG Pocket.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { Serie } from '../interfaces'
|
||||||
|
|
||||||
|
const serie: Serie = {
|
||||||
|
id: "tcgp",
|
||||||
|
name: {
|
||||||
|
en: "Pokémon TCG Pocket"
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export default serie
|
25
data/Pokémon TCG Pocket/Genetic Apex.ts
Normal file
25
data/Pokémon TCG Pocket/Genetic Apex.ts
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import { Set } from '../../interfaces'
|
||||||
|
import serie from '../Pokémon TCG Pocket'
|
||||||
|
|
||||||
|
const set: Set = {
|
||||||
|
id: "A1",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
// de: "Unschlagbare Gene",
|
||||||
|
en: "Genetic Apex",
|
||||||
|
// es: "Genes Formidables",
|
||||||
|
// fr: "Puissance Génétique",
|
||||||
|
// it: "Geni Supremi",
|
||||||
|
// pt: "Dominação Genética"
|
||||||
|
},
|
||||||
|
|
||||||
|
serie: serie,
|
||||||
|
|
||||||
|
cardCount: {
|
||||||
|
official: 226
|
||||||
|
},
|
||||||
|
|
||||||
|
releaseDate: "2024-10-30"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default set
|
30
data/Pokémon TCG Pocket/Genetic Apex/001.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/001.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bulbasaur"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Vine Whip"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "One Diamond"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/002.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/002.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ivysaur"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Razor Leaf"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "Two Diamond"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/003.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/003.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Venusaur"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 160,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Grass", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mega Drain"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal 30 damage from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "80"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "Three Diamond"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
43
data/Pokémon TCG Pocket/Genetic Apex/004.ts
Normal file
43
data/Pokémon TCG Pocket/Genetic Apex/004.ts
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Venusaur ex"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 190,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage2",
|
||||||
|
suffix: "EX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Razor Leaf"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}, {
|
||||||
|
cost: ["Grass", "Grass", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Giant Bloom"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal 30 damage from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "100"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "Four Diamond"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
32
data/Pokémon TCG Pocket/Genetic Apex/005.ts
Normal file
32
data/Pokémon TCG Pocket/Genetic Apex/005.ts
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Caterpie"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Find a Friend"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Put 1 random G Pokémon from your deck into your hand."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/006.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/006.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Metapod"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bug Bite"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
42
data/Pokémon TCG Pocket/Genetic Apex/007.ts
Normal file
42
data/Pokémon TCG Pocket/Genetic Apex/007.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Butterfree"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Powder Heal"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, you may heal 20 damage from each of your Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Gust"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/008.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/008.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Weedle"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sting"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/009.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/009.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Kakuna"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bug Bite"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/010.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/010.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Beedrill"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sharp Sting"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "70"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/011.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/011.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Oddish"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ram"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/012.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/012.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Gloom"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Drool"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/013.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/013.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Vileplume"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Soothing Scent"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent's Active Pokémon is now Asleep"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "80"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/014.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/014.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Paras"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Scratch"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/015.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/015.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Venonat"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tackle"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/017.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/017.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Venomoth"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Poison Powder"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent's Active Pokémon is now Poisoned."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/018.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/018.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bellsprout"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Vine Whip"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/019.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/019.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Weepinbell"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Razor Leaf"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
42
data/Pokémon TCG Pocket/Genetic Apex/020.ts
Normal file
42
data/Pokémon TCG Pocket/Genetic Apex/020.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Victreebel"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fragrance Trap"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If this Pokémon is in the Active Spot, once during your turn, you may switch in 1 of your opponent's Benched Basic Pokémon to the Active Spot."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Vine Whip"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/021.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/021.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Exeggcute"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Seed Bomb"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/022.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/022.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Exeggutor"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 160,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Stomp"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, this attack does 20 more damage."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
20
data/Pokémon TCG Pocket/Genetic Apex/023.ts
Normal file
20
data/Pokémon TCG Pocket/Genetic Apex/023.ts
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Exeggutor ex"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 160,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
suffix: "EX",
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/024.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/024.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tangela"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Absorb"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal 10 damage from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/025.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/025.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Scyther"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sharp Scythe"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/026.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/026.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pinsir"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Double Horn"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip 2 coins. This attack does 50 damage for each heads."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "50x"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/027.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/027.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Cottonee"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Attach"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/028.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/028.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Whimsicott"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rolling Tackle"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/029.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/029.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Petilil"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Blot"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heal 10 damage from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/030.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/030.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lilligant"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Grass"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Leaf Supply"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Take a G Energy from your Energy Zone and attach it to 1 of your Benched G Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "50"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/031.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/031.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Skiddo"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Grass"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Surprise Attack"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If tails, this attack does nothing."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
29
data/Pokémon TCG Pocket/Genetic Apex/032.ts
Normal file
29
data/Pokémon TCG Pocket/Genetic Apex/032.ts
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Gogoat"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Grass", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Razor Leaf"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "70"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/033.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/033.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Charmander"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ember"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard a R Energy from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/034.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/034.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Charmeleon"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fire Claws"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/035.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/035.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Charizard"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Fire", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fire Spin"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard 2 R Energy from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "150"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
43
data/Pokémon TCG Pocket/Genetic Apex/036.ts
Normal file
43
data/Pokémon TCG Pocket/Genetic Apex/036.ts
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Charizard ex"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 180,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Stage2",
|
||||||
|
suffix: "EX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Slash"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}, {
|
||||||
|
cost: ["Fire", "Fire", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Crimson Storm"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard 2 R Energy from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "200"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
32
data/Pokémon TCG Pocket/Genetic Apex/037.ts
Normal file
32
data/Pokémon TCG Pocket/Genetic Apex/037.ts
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Vulpix"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tail Whip"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, your opponent's Active Pokémon can't attack during your opponent's next turn."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/038.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/038.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ninetales"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flamethrower"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard 1 R Energy from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/039.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/039.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Growlithe"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bite"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/040.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/040.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Arcanine"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Heat Tackle"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 20 damage to itself."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "100"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
35
data/Pokémon TCG Pocket/Genetic Apex/041.ts
Normal file
35
data/Pokémon TCG Pocket/Genetic Apex/041.ts
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Arcanine ex"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Stage1",
|
||||||
|
suffix: "EX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Inferno Onrush"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon also does 20 damage to itself."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "120"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/042.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/042.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ponyta"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flare"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/043.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/043.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rapidash"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fire Mane"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/044.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/044.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Magmar"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Magma Punch"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "50"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/045.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/045.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flareon"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flamethrower"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard 1 R Energy from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "110"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/046.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/046.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Moltres"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sky Attack"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If tails, this attack does nothing"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "130"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
41
data/Pokémon TCG Pocket/Genetic Apex/047.ts
Normal file
41
data/Pokémon TCG Pocket/Genetic Apex/047.ts
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Moltres ex"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "EX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Inferno Dance"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip 3 coins. Take an amount of R Energy from your Energy Zone equal to the number of heads and attach it to your Benched R Pokémon in any way you like."
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
cost: ["Fire", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Heat Blast"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "70"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/048.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/048.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Heatmor"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Combustion"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/049.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/049.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Salandit"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Scratch"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/050.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/050.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Salazzle"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fire Claws"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/051.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/051.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Sizzlipede"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Gnaw"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/052.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/052.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Centiskorch"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Fire"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Fire", "Colorless", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Fire Blast"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard a R Energy from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "130"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/054.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/054.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Wartortle"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Wave Splash"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/055.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/055.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Blastoise"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Hydro Pump"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If this Pokémon has at least 2 extra W Energy attached, this attack does 60 more damage."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "80+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
43
data/Pokémon TCG Pocket/Genetic Apex/056.ts
Normal file
43
data/Pokémon TCG Pocket/Genetic Apex/056.ts
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Blastoise ex"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 180,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage2",
|
||||||
|
suffix: "EX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Surf"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}, {
|
||||||
|
cost: ["Water", "Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Hydro Bazooka"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If this Pokémon has at least 2 extra W Energy attached, this attack does 60 more damage."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "100+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/057.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/057.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Psyduck"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Headache"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent can't use any Supporter cards from their hand during their next turn."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/058.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/058.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Golduck"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Aqua Edge"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "70"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/059.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/059.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Poliwag"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Razor Fin"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/060.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/060.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Poliwhirl"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Knuckle Punch"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/061.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/061.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tentacool"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Gentle Slap"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/063.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/063.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tentacruel"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 110,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Poison Tentacles"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent's Active Pokémon is now Poisoned."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "50"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/064.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/064.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Seel"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Headbutt"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/065.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/065.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Dewgong"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Water", "Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Surf"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/066.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/066.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Shellder"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tongue Slap"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
42
data/Pokémon TCG Pocket/Genetic Apex/067.ts
Normal file
42
data/Pokémon TCG Pocket/Genetic Apex/067.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Cloyster"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Shell Armor"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This Pokémon takes -10 damage from attacks."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Surf"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "70"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/068.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/068.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Krabby"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Vise Grip"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/069.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/069.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Kingler"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "KO Crab"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip 2 coins. If both of them are heads, this attack does 80 more damage"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "80+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 3,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/070.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/070.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Horsea"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Water Gun"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
32
data/Pokémon TCG Pocket/Genetic Apex/071.ts
Normal file
32
data/Pokémon TCG Pocket/Genetic Apex/071.ts
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Seadra"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Water Arrow"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 50 damage to 1 of your opponent's Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/072.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/072.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Goldeen"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flop"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/073.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/073.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Seaking"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Horn Hazard"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If tails, this attack does nothing."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "80"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/074.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/074.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Staryu"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Smack"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/075.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/075.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Starmie"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Wave Splash"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 0,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
31
data/Pokémon TCG Pocket/Genetic Apex/076.ts
Normal file
31
data/Pokémon TCG Pocket/Genetic Apex/076.ts
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Starmie ex"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
suffix: "EX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Hydro Splash"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "90"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 0,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/077.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/077.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Magikarp"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 30,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Splash"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/078.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/078.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Gyarados"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 150,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Water", "Water", "Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Hyper Beam"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard a random Energy from your opponent's Active Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "100"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 4,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/079.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/079.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lapras"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Hydro Pump"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If this Pokémon has at least 3 extra W Energy attached, this attack does 70 more damage."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/080.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/080.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Vaporeon"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 130,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bubble Drain"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Heals 30 damage from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/081.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/081.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Omanyte"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Water Gun"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/082.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/082.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Omastar"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ancient Whirlpool"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "During your opponent's next turn, the Defending Pokémon can't attack"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "70"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/083.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/083.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Articuno"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ice Beam"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
43
data/Pokémon TCG Pocket/Genetic Apex/084.ts
Normal file
43
data/Pokémon TCG Pocket/Genetic Apex/084.ts
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Articuno ex"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 140,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "EX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ice Wing"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}, {
|
||||||
|
cost: ["Water", "Water", "Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Blizzard"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 10 damage to each of your opponent's Benched Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "80"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/085.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/085.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Ducklett"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 50,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flap"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/086.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/086.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Swanna"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Wing Attack"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "70"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/087.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/087.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Froakie"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Flop"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/088.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/088.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Frogadier"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Water Drip"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
42
data/Pokémon TCG Pocket/Genetic Apex/089.ts
Normal file
42
data/Pokémon TCG Pocket/Genetic Apex/089.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Greninja"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage2",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Water Shuriken"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, you may do 20 damage to 1 of your opponent's Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Mist Slash"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/090.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/090.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pyukumuku"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Rain Splash"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/091.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/091.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Bruxish"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Second Strike"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "If your opponent's Active Pokémon has damage on it, this attack does 60 more damage."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "10+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/092.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/092.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Frosmoth"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Water"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Water", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Powder Snow"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Your opponent's Active Pokémon is now Asleep."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/094.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/094.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pikachu"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Gnaw"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/095.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/095.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Raichu"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 100,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning", "Lightning", "Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Thunderbolt"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Discard all Energy from this Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "140"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
35
data/Pokémon TCG Pocket/Genetic Apex/096.ts
Normal file
35
data/Pokémon TCG Pocket/Genetic Apex/096.ts
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pikachu ex"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 120,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
suffix: "EX",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning", "Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Circle Circuit"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "This attack does 30 damage for each of your Benched L Pokémon."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "30x"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/097.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/097.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Magnemite"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Lightning Ball"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
42
data/Pokémon TCG Pocket/Genetic Apex/098.ts
Normal file
42
data/Pokémon TCG Pocket/Genetic Apex/098.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Magneton"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
abilities: [{
|
||||||
|
type: "Ability",
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Volt Charge"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Once during your turn, you may take a L Energy from your Energy Zone and attach it to this Pokémon."
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning", "Colorless", "Colorless", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Spinning Attack"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "60"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 2,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/099.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/099.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Voltorb"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 60,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Tackle"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "20"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
30
data/Pokémon TCG Pocket/Genetic Apex/100.ts
Normal file
30
data/Pokémon TCG Pocket/Genetic Apex/100.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Electrode"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 80,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning", "Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Electro Ball"
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "70"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 0,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/101.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/101.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Electabuzz"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 70,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Basic",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning", "Lightning"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Thunder Punch"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip a coin. If heads, this attack does 40 more damage. If tails, this Pokémon does 20 damage to itself."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40+"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
34
data/Pokémon TCG Pocket/Genetic Apex/102.ts
Normal file
34
data/Pokémon TCG Pocket/Genetic Apex/102.ts
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import { Card } from "../../../interfaces"
|
||||||
|
import Set from "../Genetic Apex"
|
||||||
|
|
||||||
|
const card: Card = {
|
||||||
|
set: Set,
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Jolteon"
|
||||||
|
},
|
||||||
|
|
||||||
|
category: "Pokemon",
|
||||||
|
hp: 90,
|
||||||
|
types: ["Lightning"],
|
||||||
|
stage: "Stage1",
|
||||||
|
|
||||||
|
attacks: [{
|
||||||
|
cost: ["Lightning", "Colorless"],
|
||||||
|
|
||||||
|
name: {
|
||||||
|
en: "Pin Missile"
|
||||||
|
},
|
||||||
|
|
||||||
|
effect: {
|
||||||
|
en: "Flip 4 coins. This attack does 40 damage for each heads."
|
||||||
|
},
|
||||||
|
|
||||||
|
damage: "40x"
|
||||||
|
}],
|
||||||
|
|
||||||
|
retreat: 1,
|
||||||
|
rarity: "None"
|
||||||
|
}
|
||||||
|
|
||||||
|
export default card
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user