-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Genetic Apex (A1) (English Only) (#573)
- Loading branch information
1 parent
bf8f610
commit 14ed8ee
Showing
279 changed files
with
8,875 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.