Skip to content

Commit

Permalink
feat: Genetic Apex (A1) (English Only) (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aviortheking authored Nov 6, 2024
1 parent bf8f610 commit 14ed8ee
Show file tree
Hide file tree
Showing 279 changed files with 8,875 additions and 2 deletions.
10 changes: 10 additions & 0 deletions data/Pokémon TCG Pocket.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Serie } from '../interfaces'

const serie: Serie = {
id: "tcgp",
name: {
en: "Pokémon TCG Pocket"
},
}

export default serie
25 changes: 25 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex.ts
Original file line number Diff line number Diff line change
@@ -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 changes: 30 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex/001.ts
Original file line number Diff line number Diff line change
@@ -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 changes: 30 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex/002.ts
Original file line number Diff line number Diff line change
@@ -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 changes: 34 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex/003.ts
Original file line number Diff line number Diff line change
@@ -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 changes: 43 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex/004.ts
Original file line number Diff line number Diff line change
@@ -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 changes: 32 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex/005.ts
Original file line number Diff line number Diff line change
@@ -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 changes: 30 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex/006.ts
Original file line number Diff line number Diff line change
@@ -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 changes: 42 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex/007.ts
Original file line number Diff line number Diff line change
@@ -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 changes: 30 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex/008.ts
Original file line number Diff line number Diff line change
@@ -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 changes: 30 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex/009.ts
Original file line number Diff line number Diff line change
@@ -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 changes: 30 additions & 0 deletions data/Pokémon TCG Pocket/Genetic Apex/010.ts
Original file line number Diff line number Diff line change
@@ -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
Loading

0 comments on commit 14ed8ee

Please sign in to comment.