1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-15 01:41:59 +00:00

Compare commits

...

20 Commits

Author SHA1 Message Date
2ca455a957 feat: Add support for ARM servers (#528) 2025-04-30 22:53:22 +02:00
13ad5fb0a2 Revert "feat: added variants to Journey Together cards (#715)" (#717) 2025-04-30 22:46:43 +02:00
Andre Viermann
17a0e241cc feat: added variants to Journey Together cards (#715) 2025-04-30 22:04:22 +02:00
Khaleeq Ahmad
dc51d5e8a8 Fix: A2b Shining Revelry attack amendments (#698)
* Fix: Shining Revelry - Add missing attack damage symbols

* Fix: Shining Revelry - Add missing energy symbols to attack effects

* Fix: Shining Revelry set setails- add foreign language names and update card counts

---------

Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-04-30 09:54:55 +02:00
Khaleeq Ahmad
e1de8e8323 feat: Add data TCGP Promo-A 042-059 (March 2025) (#680)
* Add new PTCGP Promo-A cards for March 2025 (42 through 49)

* Add additional cards Promos-A 050 - 059

---------

Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-04-30 09:53:54 +02:00
Khaleeq Ahmad
744ad63e3a fix: Triumphant Light corrections (#679)
* Fix Triumphant Light card data and formatting

Fix card data including attack damage modifiers, Palkia and Dalgia Origin forme names and incorrect weakness for Giratina.
Also remove unnecessary HTML formatting from card descriptions

* Remove HTML anchor tags around referenced Pokemon names

---------

Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-04-30 09:53:01 +02:00
Simone Anile
6b223c688d Fix evolveFrom for Card 1 of POP Series 3 set (#700)
Updated 
"evolveFrom": "Unown"
to
"evolveFrom": "Wartortle"
2025-04-30 09:51:44 +02:00
Dizo
e749ed01e2 FIX: Prismatic Evolutions set name (Spanish) (#706) 2025-04-30 09:51:31 +02:00
kvacquier
e4eb25b6ea 2025 Rotation (#709) 2025-04-30 09:51:10 +02:00
Octopixell
814f94be6f fix: Add holo variant for sv03-100 (#713)
* fix: Add holo variant for sv03-100

* feat: Add verbose variants for sv03-100

* Update 100.ts

---------

Co-authored-by: Avior <florian.bouillon@delta-wings.net>
2025-04-30 09:50:55 +02:00
yugi-classic
63790a056c feat: Add 1 Missing card in tk-dp-l (#714) 2025-04-30 09:45:36 +02:00
51e017e9cc feat: add Celestial Guardians (#716) 2025-04-30 09:45:00 +02:00
a550cf079c feat: Add Journey Together (#701)
* feat: Add static data for Journey Together

Signed-off-by: Avior <git@avior.me>

* feat: finish naming

Signed-off-by: Avior <git@avior.me>

* should be done

Signed-off-by: Avior <git@avior.me>

* Update index.ts

---------

Signed-off-by: Avior <git@avior.me>
2025-03-29 12:44:17 +01:00
78366685f8 feat: TCG Pocket A2b (#695)
* feat: TCG Pocket A2b

Signed-off-by: Avior <git@avior.me>

* fix:implement new rarities

Signed-off-by: Avior <git@avior.me>

* fix:implement new rarities

Signed-off-by: Avior <git@avior.me>

---------

Signed-off-by: Avior <git@avior.me>
2025-03-27 01:01:27 +01:00
Octopixell
08971af0bf fix: Add holo variants for sv03-013 and sv03-014 (#690)
* fix: Add holo variant for sv03-013

* fix: Add holo variant for sv03-014
2025-03-26 14:56:46 +01:00
Octopixell
7111c33403 fix: Add normal variant for sv01-190 (#689) 2025-03-26 14:55:04 +01:00
Octopixell
a08b8d8cca fix: Add normal variant for sv03-062 (#688) 2025-03-26 14:54:45 +01:00
c3cfb2607a fix: random exit from worker making server not react (#685) 2025-03-12 08:10:49 +01:00
Octopixell
16caf3384e fix: Add holo variant for sv01-134 (#678) 2025-03-11 10:29:48 +01:00
Ziya Fenn
c5ab6d966b Fix Exeggutor ex attack name (#682) 2025-03-11 10:29:18 +01:00
674 changed files with 27494 additions and 268 deletions

View File

@@ -19,4 +19,3 @@ dist/
# production
/server/dist
/server/generated

View File

@@ -1,63 +1,85 @@
name: Build Docker image
on:
push:
branches:
- '*'
tags:
- v*
pull_request:
branches:
- master
env:
REGISTRY_IMAGE: |
ghcr.io/tcgdex/server
tcgdex/server
jobs:
build:
runs-on: ubuntu-latest
name: Build TCGdex Server
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/tcgdex/server
tcgdex/server
tags: |
type=edge
type=ref,event=pr
type=ref,event=branch,prefix=branch-
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=semver,pattern=latest
- name: Checkout
uses: actions/checkout@v4
with:
# fetch full history for `updated` support
fetch-depth: 0
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY_IMAGE }}
tags: |
type=edge
type=ref,event=pr
type=ref,event=branch,prefix=branch-
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=semver,pattern=latest
- name: Login to Github Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.DOCKER_TOKEN }}
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Github Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.DOCKER_TOKEN }}
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Pre build server
run: |
bun install --frozen-lockfile
cd server
bun install --frozen-lockfile
bun run compile
rm -rf node_modules
cd ..
rm -rf node_modules
- name: Build and push
id: build
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
file: ./Dockerfile.github-actions
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
push: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
cache-to: type=gha,mode=max
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
file: ./Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

40
Dockerfile.github-actions Normal file
View File

@@ -0,0 +1,40 @@
FROM docker.io/oven/bun:1-alpine AS build
# go to work folder
WORKDIR /usr/src/app
# allow bun user to edit folder
RUN chown -R bun:bun .
USER bun
ADD --chown=bun:bun server/package.json server/bun.lockb ./server/
# install prod deps dependencies
RUN cd server && \
bun install --frozen-install --production
# go to another VM
FROM docker.io/oven/bun:1-alpine AS prod
# inform software to be in production
ENV NODE_ENV=production
# run as non root user
USER bun
# go to work folder
WORKDIR /usr/src/app
# copy from build image
COPY --chown=bun:bun ./server/public ./public
COPY --chown=bun:bun ./server/package.json ./package.json
COPY --chown=bun:bun --from=build /usr/src/app/server/node_modules ./node_modules
COPY --chown=bun:bun ./server/src ./src
COPY --chown=bun:bun ./server/generated ./generated
# Expose port
EXPOSE 3000
# run it !
CMD ["bun", "src/index.ts"]

View File

@@ -22,7 +22,7 @@ const card: Card = {
],
evolveFrom: {
en: "Unown",
en: "Wartortle",
},
stage: "Stage2",

View File

@@ -0,0 +1,25 @@
import { Set } from '../../interfaces'
import serie from '../Pokémon TCG Pocket'
const set: Set = {
id: "A3",
name: {
// de: "Unschlagbare Gene",
en: "Celestial Guardians",
// es: "Genes Formidables",
// fr: "Puissance Génétique",
// it: "Geni Supremi",
// pt: "Dominação Genética"
},
serie: serie,
cardCount: {
official: 155
},
releaseDate: "2025-04-30"
}
export default set

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Exeggcute"
},
illustrator: "HYOGONOSUKE",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
en: "Though it may look like it's just a bunch of eggs, it's a proper Pokémon. Exeggcute communicates with others of its kind via telepathy, apparently."
},
stage: "Basic",
attacks: [{
name: {
en: "Rolling Tackle"
},
damage: 30,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Exeggutor"
},
illustrator: "Anesaki Dynamic",
rarity: "Three Diamond",
category: "Pokemon",
hp: 150,
types: ["Grass"],
evolveFrom: {
en: "Exeggcute"
},
description: {
en: "Blazing sunlight has brought out the true form and powers of this Pokémon."
},
stage: "Stage1",
attacks: [{
name: {
en: "Tropical Hammer"
},
damage: 150,
cost: ["Grass", "Colorless", "Colorless"],
effect: {
en: "Flip a coin. If tails, this attack does nothing."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 4
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Surskit"
},
illustrator: "Miki Tanaka",
rarity: "One Diamond",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
en: "They usually live on ponds, but after an evening shower, they may appear on puddles in towns."
},
stage: "Basic",
attacks: [{
name: {
en: "Quick Attack"
},
damage: 10,
cost: ["Colorless"],
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Masquerain"
},
illustrator: "Kanako Eo",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Grass"],
evolveFrom: {
en: "Surskit"
},
description: {
en: "It flaps its four wings to hover and fly freely in any direction—to and fro and sideways."
},
stage: "Stage1",
attacks: [{
name: {
en: "Bug Buzz"
},
damage: 40,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 0
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Maractus"
},
illustrator: "Kagemaru Himeno",
rarity: "One Diamond",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
en: "With noises that could be mistaken for the rattles of maracas, it creates an upbeat rhythm, startling bird Pokémon and making them fly off in a hurry."
},
stage: "Basic",
attacks: [{
name: {
en: "Sting"
},
damage: 40,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Karrablast"
},
illustrator: "OOYAMA",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
en: "Its strange physiology reacts to electrical energy in interesting ways. The presence of a Shelmet will cause this Pokémon to evolve."
},
stage: "Basic",
attacks: [{
name: {
en: "Headbutt"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Phantump"
},
illustrator: "miki kudo",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
en: "After a lost child perished in the forest, their spirit possessed a tree stump, causing the spirit's rebirth as this Pokémon."
},
stage: "Basic",
attacks: [{
name: {
en: "Hook"
},
damage: 20,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Trevenant"
},
illustrator: "Shin Nagasawa",
rarity: "Two Diamond",
category: "Pokemon",
hp: 130,
types: ["Grass"],
evolveFrom: {
en: "Phantump"
},
description: {
en: "People fear it due to a belief that it devours any who try to cut down trees in its forest, but to the Pokémon it shares its woods with, it's kind."
},
stage: "Stage1",
attacks: [{
name: {
en: "Claw Slash"
},
damage: 80,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 3
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Rowlet"
},
illustrator: "Megumi Mizutani",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
en: "It sends its feathers, which are as sharp as blades, flying in attack. Its legs are strong, so its kicks are also formidable."
},
stage: "Basic",
attacks: [{
name: {
en: "Leafage"
},
damage: 20,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Rowlet"
},
illustrator: "Saya Tsuruta",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
en: "It sends its feathers, which are as sharp as blades, flying in attack. Its legs are strong, so its kicks are also formidable."
},
stage: "Basic",
attacks: [{
name: {
en: "Skill Dive"
},
cost: ["Grass"],
effect: {
en: "This attack does 10 damage to 1 of your opponent's Pokémon."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Dartrix"
},
illustrator: "Mizue",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Grass"],
evolveFrom: {
en: "Rowlet"
},
description: {
en: "This narcissistic Pokémon is a clean freak. If you don't groom it diligently, it may stop listening to you."
},
stage: "Stage1",
attacks: [{
name: {
en: "Razor Wing"
},
damage: 30,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Decidueye ex"
},
illustrator: "PLANETA CG Works",
rarity: "Four Diamond",
category: "Pokemon",
hp: 170,
types: ["Grass"],
evolveFrom: {
en: "Dartrix"
},
stage: "Stage2",
suffix: "EX",
attacks: [{
name: {
en: "Pierce the Pain"
},
cost: ["Colorless", "Colorless"],
effect: {
en: "This attack does 100 damage to 1 of your opponent's Pokémon that have damage on them."
}
}, {
name: {
en: "Razor Leaf"
},
damage: 80,
cost: ["Grass", "Grass"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Grubbin"
},
illustrator: "Yuka Morii",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
en: "Its natural enemies, like Rookidee, may flee rather than risk getting caught in its large mandibles that can snap thick tree branches."
},
stage: "Basic",
attacks: [{
name: {
en: "Gnaw"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Fomantis"
},
illustrator: "Kagemaru Himeno",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
en: "Fomantis hates having its naps interrupted. It fires off beams using energy it gathers by bathing in the sun."
},
stage: "Basic",
attacks: [{
name: {
en: "Leafage"
},
damage: 20,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Lurantis"
},
illustrator: "AKIRA EGAWA",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Grass"],
evolveFrom: {
en: "Fomantis"
},
description: {
en: "By masquerading as a bug Pokémon, it lowers the guard of actual bug Pokémon lured in by a scent of sweet flowers. Its sickles bring them down."
},
stage: "Stage1",
attacks: [{
name: {
en: "Petal Blizzard"
},
cost: ["Grass"],
effect: {
en: "This attack does 20 damage to each of your opponent's Pokémon."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Morelull"
},
illustrator: "You Iribi",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
en: "Pokémon living in the forest eat the delicious caps on Morelull's head. The caps regrow overnight."
},
stage: "Basic",
attacks: [{
name: {
en: "Stampede"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Shiinotic"
},
illustrator: "Suwama Chiaki",
rarity: "Two Diamond",
category: "Pokemon",
hp: 100,
types: ["Grass"],
evolveFrom: {
en: "Morelull"
},
description: {
en: "Its flickering spores lure in prey and put them to sleep. Once this Pokémon has its prey snoozing, it drains their vitality with its fingertips."
},
stage: "Stage1",
attacks: [{
name: {
en: "Flickering Light"
},
damage: 50,
cost: ["Grass", "Colorless"],
effect: {
en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Bounsweet"
},
illustrator: "Akira Komayama",
rarity: "One Diamond",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
en: "Its sweat is sweet, like syrup made from boiled-down fruit. Because of this, Bounsweet was highly valued in the past, when sweeteners were scarce."
},
stage: "Basic",
attacks: [{
name: {
en: "Stampede"
},
damage: 20,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Steenee"
},
illustrator: "Mizue",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Grass"],
evolveFrom: {
en: "Bounsweet"
},
description: {
en: "Steenee spreads a sweet scent that makes others feel invigorated. This same scent is popular for antiperspirants."
},
stage: "Stage1",
attacks: [{
name: {
en: "Double Spin"
},
damage: 30,
cost: ["Grass"],
effect: {
en: "Flip 2 coins. This attack does 30 damage for each heads."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Tsareena"
},
illustrator: "Hasuno",
rarity: "Three Diamond",
category: "Pokemon",
hp: 130,
types: ["Grass"],
evolveFrom: {
en: "Steenee"
},
description: {
en: "This Pokémon is proud and aggressive. However, it is said that a Tsareena will instantly become calm if someone touches the crown on its calyx."
},
stage: "Stage2",
attacks: [{
name: {
en: "Three Kick Combo"
},
damage: 50,
cost: ["Grass"],
effect: {
en: "Flip 3 coins. This attack does 50 damage for each heads."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Wimpod"
},
illustrator: "Kagemaru Himeno",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
en: "It's nature's cleaner—it eats anything and everything, including garbage and rotten things. The ground near its nest is always clean."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Wimp Out"
},
effect: {
en: "During your first turn, this Pokémon has no Retreat Cost."
}
}],
attacks: [{
name: {
en: "Gnaw"
},
damage: 30,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 3
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Golisopod"
},
illustrator: "Kouki Saitou",
rarity: "Three Diamond",
category: "Pokemon",
hp: 120,
types: ["Grass"],
evolveFrom: {
en: "Wimpod"
},
description: {
en: "It will do anything to win, taking advantage of every opening and finishing opponents off with the small claws on its front legs."
},
stage: "Stage1",
attacks: [{
name: {
en: "First Impression"
},
damage: 60,
cost: ["Grass", "Grass", "Grass"],
effect: {
en: "If this Pokémon moved from your Bench to the Active Spot this turn, this attack does 60 more damage."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Dhelmise ex"
},
illustrator: "PLANETA Tsuji",
rarity: "Four Diamond",
category: "Pokemon",
hp: 140,
types: ["Grass"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
en: "Anchor Shot"
},
damage: 80,
cost: ["Grass", "Grass", "Colorless"],
effect: {
en: "During your opponent's next turn, the Defending Pokémon can't retreat."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Tapu Bulu"
},
illustrator: "Satoshi Shirai",
rarity: "Three Diamond",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
en: "Although it's called a guardian deity, it's violent enough to crush anyone it sees as an enemy."
},
stage: "Basic",
attacks: [{
name: {
en: "Stuck-In Tackle"
},
damage: 100,
cost: ["Grass", "Grass", "Colorless"],
effect: {
en: "Flip a coin. If tails, this Pokémon also does 20 damage to itself."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Growlithe"
},
illustrator: "Naoyo Kimura",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
en: "It has a brave and trustworthy nature. It fearlessly stands up to bigger and stronger foes."
},
stage: "Basic",
attacks: [{
name: {
en: "Combustion"
},
damage: 30,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Arcanine"
},
illustrator: "match",
rarity: "Two Diamond",
category: "Pokemon",
hp: 130,
types: ["Fire"],
evolveFrom: {
en: "Growlithe"
},
description: {
en: "An ancient picture scroll shows that people were captivated by its movement as it ran through prairies."
},
stage: "Stage1",
attacks: [{
name: {
en: "Fire Mane"
},
damage: 80,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 3
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Marowak"
},
illustrator: "miki kudo",
rarity: "Two Diamond",
category: "Pokemon",
hp: 110,
types: ["Fire"],
evolveFrom: {
en: "Cubone"
},
description: {
en: "This Pokémon sets the bone it holds on fire and dances through the night as a way to mourn its fallen allies."
},
stage: "Stage1",
attacks: [{
name: {
en: "Burning Bonemerang"
},
damage: 70,
cost: ["Fire", "Fire", "Colorless"],
effect: {
en: "Flip 2 coins. This attack does 70 damage for each heads. If at least 1 of them is heads, your opponent's Active Pokémon is now Burned."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Fletchinder"
},
illustrator: "Mina Nakai",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Fire"],
evolveFrom: {
en: "Fletchling"
},
description: {
en: "Fletchinder scatters embers in tall grass where bug Pokémon might be hiding and then catches them as they come leaping out."
},
stage: "Stage1",
attacks: [{
name: {
en: "Steady Firebreathing"
},
damage: 30,
cost: ["Fire"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Talonflame"
},
illustrator: "Masakazu Fukuda",
rarity: "Three Diamond",
category: "Pokemon",
hp: 120,
types: ["Fire"],
evolveFrom: {
en: "Fletchinder"
},
description: {
en: "It has top-notch flying capabilities. It flies around easily, even while carrying prey that weighs more than 220 lbs."
},
stage: "Stage2",
attacks: [{
name: {
en: "Fire Wing"
},
damage: 90,
cost: ["Fire", "Fire"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Litten"
},
illustrator: "Akira Komayama",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Fire"],
description: {
en: "If you try too hard to get close to it, it won't open up to you. Even if you do grow close, giving it too much affection is still a no-no."
},
stage: "Basic",
attacks: [{
name: {
en: "Heat Tackle"
},
damage: 30,
cost: ["Fire"],
effect: {
en: "This Pokémon also does 10 damage to itself."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Litten"
},
illustrator: "sui",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Fire"],
description: {
en: "If you try too hard to get close to it, it won't open up to you. Even if you do grow close, giving it too much affection is still a no-no."
},
stage: "Basic",
attacks: [{
name: {
en: "Scratch"
},
damage: 20,
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Torracat"
},
illustrator: "tetsuya koizumi",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Fire"],
evolveFrom: {
en: "Litten"
},
description: {
en: "Torracat will let its Trainer coddle it once they've grown close, but it's a powerful, sharp-clawed Pokémon, so its Trainer gets covered in scratches."
},
stage: "Stage1",
attacks: [{
name: {
en: "Heat Tackle"
},
damage: 40,
cost: ["Fire"],
effect: {
en: "This Pokémon also does 10 damage to itself."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Incineroar ex"
},
illustrator: "PLANETA CG Works",
rarity: "Four Diamond",
category: "Pokemon",
hp: 180,
types: ["Fire"],
evolveFrom: {
en: "Torracat"
},
stage: "Stage2",
suffix: "EX",
attacks: [{
name: {
en: "Fire Fang"
},
damage: 30,
cost: ["Fire"],
effect: {
en: "Your opponent's Active Pokémon is now Burned."
}
}, {
name: {
en: "Scar-Charged Smash"
},
damage: 80,
cost: ["Fire", "Fire", "Colorless"],
effect: {
en: "If this Pokémon has damage on it, this attack does 60 more damage."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Oricorio"
},
illustrator: "Jerky",
rarity: "Two Diamond",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
en: "This form of Oricorio has sipped red nectar. It whips up blazing flames as it moves to the steps of its passionate dance."
},
stage: "Basic",
attacks: [{
name: {
en: "Kindle"
},
damage: 40,
cost: ["Fire", "Fire"],
effect: {
en: "Discard a random Energy from both Active Pokémon."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Salandit"
},
illustrator: "Yukiko Baba",
rarity: "One Diamond",
category: "Pokemon",
hp: 50,
types: ["Fire"],
description: {
en: "It taunts its prey and lures them into narrow, rocky areas where it then sprays them with toxic gas to make them dizzy and take them down."
},
stage: "Basic",
attacks: [{
name: {
en: "Gnaw"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Salazzle"
},
illustrator: "Naoki Saito",
rarity: "One Diamond",
category: "Pokemon",
hp: 90,
types: ["Fire"],
evolveFrom: {
en: "Salandit"
},
description: {
en: "Salazzle makes its opponents light-headed with poisonous gas, then captivates them with alluring movements to turn them into loyal servants."
},
stage: "Stage1",
attacks: [{
name: {
en: "Heated Poison"
},
damage: 30,
cost: ["Fire", "Fire"],
effect: {
en: "Your opponent's Active Pokémon is now Poisoned and Burned."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Turtonator"
},
illustrator: "Shin Nagasawa",
rarity: "Three Diamond",
category: "Pokemon",
hp: 120,
types: ["Fire"],
description: {
en: "Explosive substances coat the shell on its back. Enemies that dare attack it will be blown away by an immense detonation."
},
stage: "Basic",
attacks: [{
name: {
en: "Fire Spin"
},
damage: 90,
cost: ["Fire", "Fire", "Colorless"],
effect: {
en: "Discard a Energy from this Pokémon."
}
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 4
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Sandshrew"
},
illustrator: "ryoma uratsuka",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
en: "Life on mountains covered with deep snow has granted this Pokémon a body of ice that's as hard as steel."
},
stage: "Basic",
attacks: [{
name: {
en: "Scratch"
},
damage: 20,
cost: ["Water"]
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Sandslash"
},
illustrator: "Hasuno",
rarity: "Two Diamond",
category: "Pokemon",
hp: 100,
types: ["Water"],
evolveFrom: {
en: "Alolan Sandshrew"
},
description: {
en: "It uses large, hooked claws to cut a path through deep snow as it runs. On snowy mountains, this Sandslash is faster than any other Pokémon."
},
stage: "Stage1",
attacks: [{
name: {
en: "Spike Armor"
},
damage: 20,
cost: ["Water"],
effect: {
en: "During your opponent's next turn, if this Pokémon is damaged by an attack, do 40 damage to the Attacking Pokémon."
}
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Vulpix"
},
illustrator: "You Iribi",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
en: "After long years in the ever-snowcapped mountains of Alola, this Vulpix has gained power over ice."
},
stage: "Basic",
attacks: [{
name: {
en: "Call Forth Cold"
},
cost: ["Water"],
effect: {
en: "Take a Energy from your Energy Zone and attach it to this Pokémon."
}
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Ninetales"
},
illustrator: "Eri Yamaki",
rarity: "Three Diamond",
category: "Pokemon",
hp: 110,
types: ["Water"],
evolveFrom: {
en: "Alolan Vulpix"
},
description: {
en: "A deity resides in the snowy mountains where this Pokémon lives. In ancient times, it was worshiped as that deity's incarnation."
},
stage: "Stage1",
attacks: [{
name: {
en: "Blizzard"
},
damage: 60,
cost: ["Water", "Water", "Water"],
effect: {
en: "This attack also does 20 damage to each of your opponent's Benched Pokémon."
}
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Shellder"
},
illustrator: "Midori Harada",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
en: "It is encased in a shell that is harder than diamond. Inside, however, it is surprisingly tender."
},
stage: "Basic",
attacks: [{
name: {
en: "Tackle"
},
damage: 10,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Cloyster"
},
illustrator: "Masakazu Fukuda",
rarity: "Two Diamond",
category: "Pokemon",
hp: 110,
types: ["Water"],
evolveFrom: {
en: "Shellder"
},
description: {
en: "Cloyster that live in seas with harsh tidal currents grow large, sharp spikes on their shells."
},
stage: "Stage1",
attacks: [{
name: {
en: "Guard Press"
},
damage: 50,
cost: ["Water", "Water"],
effect: {
en: "During your opponent's next turn, this Pokémon takes 20 damage from attacks."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 3
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Lapras"
},
illustrator: "Hitoshi Ariga",
rarity: "Two Diamond",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
en: "A smart and kindhearted Pokémon, it glides across the surface of the sea while its beautiful song echoes around it."
},
stage: "Basic",
attacks: [{
name: {
en: "Surf"
},
damage: 70,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Popplio"
},
illustrator: "Kanami Ogata",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
en: "The balloons it inflates with its nose grow larger and larger as it practices day by day."
},
stage: "Basic",
attacks: [{
name: {
en: "Sing"
},
cost: ["Colorless"],
effect: {
en: "Your opponent's Active Pokémon is now Asleep."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Popplio"
},
illustrator: "Kouki Saitou",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
en: "The balloons it inflates with its nose grow larger and larger as it practices day by day."
},
stage: "Basic",
attacks: [{
name: {
en: "Water Gun"
},
damage: 20,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Brionne"
},
illustrator: "Saya Tsuruta",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Water"],
evolveFrom: {
en: "Popplio"
},
description: {
en: "It gets excited when it sees a dance it doesn't know. This hard worker practices diligently until it can learn that dance."
},
stage: "Stage1",
attacks: [{
name: {
en: "Wave Splash"
},
damage: 30,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Primarina"
},
illustrator: "Kagemaru Himeno",
rarity: "Three Diamond",
category: "Pokemon",
hp: 140,
types: ["Water"],
evolveFrom: {
en: "Brionne"
},
description: {
en: "To Primarina, every battle is a stage. It takes down its prey with beautiful singing and dancing."
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
en: "Melodious Healing"
},
effect: {
en: "Once during your turn, you may heal 30 damage from each of your Pokémon."
}
}],
attacks: [{
name: {
en: "Surf"
},
damage: 60,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,45 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Crabominable ex"
},
illustrator: "PLANETA CG Works",
rarity: "Four Diamond",
category: "Pokemon",
hp: 160,
types: ["Water"],
evolveFrom: {
en: "Crabrawler"
},
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
en: "Insatiable Striking"
},
damage: 40,
cost: ["Water"],
effect: {
en: "During your next turn, this Pokémon's Insatiable Striking attack does +40 damage."
}
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 3
}
export default card

View File

@@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Wishiwashi"
},
illustrator: "Kouki Saitou",
rarity: "One Diamond",
category: "Pokemon",
hp: 30,
types: ["Water"],
description: {
en: "Individually, they're incredibly weak. It's by gathering up into schools that they're able to confront opponents."
},
stage: "Basic",
attacks: [{
name: {
en: "Call for Family"
},
cost: ["Water"],
effect: {
en: "Put 1 random Wishiwashi or Wishiwashi ex from your deck onto your Bench."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Wishiwashi ex"
},
illustrator: "PLANETA CG Works",
rarity: "Four Diamond",
category: "Pokemon",
hp: 170,
types: ["Water"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
en: "School Storm"
},
damage: 30,
cost: ["Water", "Water", "Water"],
effect: {
en: "This attack does 40 more damage for each of your Benched Wishiwashi and Wishiwashi ex."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 3
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Dewpider"
},
illustrator: "Atsuko Nishida",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
en: "It forms a water bubble at the rear of its body and then covers its head with it. Meeting another Dewpider means comparing water-bubble sizes."
},
stage: "Basic",
attacks: [{
name: {
en: "Hook"
},
damage: 30,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Araquanid"
},
illustrator: "kodama",
rarity: "Two Diamond",
category: "Pokemon",
hp: 110,
types: ["Water"],
evolveFrom: {
en: "Dewpider"
},
description: {
en: "It launches water bubbles with its legs, drowning prey within the bubbles. This Pokémon can then take its time to savor its meal."
},
stage: "Stage1",
attacks: [{
name: {
en: "Dangerous Claws"
},
damage: 60,
cost: ["Water", "Water", "Colorless"],
effect: {
en: "If your opponent's Active Pokémon is a Basic Pokémon, this attack does 60 more damage."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Pyukumuku"
},
illustrator: "You Iribi",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
en: "It lives in warm, shallow waters. If it encounters a foe, it will spit out its internal organs as a means to punch them."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Innards Out"
},
effect: {
en: "If this Pokémon is in the Active Spot and is Knocked Out by damage from an attack from your opponent's Pokémon, do 50 damage to the Attacking Pokémon."
}
}],
attacks: [{
name: {
en: "Sprinkle Water"
},
damage: 20,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Bruxish"
},
illustrator: "Masakazu Fukuda",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Water"],
description: {
en: "It grinds its teeth with great force to stimulate its brain. It fires the psychic energy created by this process from the protuberance on its head."
},
stage: "Basic",
attacks: [{
name: {
en: "Wave Splash"
},
damage: 50,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Tapu Fini"
},
illustrator: "chibi",
rarity: "Three Diamond",
category: "Pokemon",
hp: 100,
types: ["Water"],
description: {
en: "This guardian deity of Poni Island manipulates water. Because it lives deep within a thick fog, it came to be both feared and revered."
},
stage: "Basic",
attacks: [{
name: {
en: "Spiral Drain"
},
damage: 60,
cost: ["Water", "Water", "Colorless"],
effect: {
en: "Heal 20 damage from this Pokémon."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Pikachu"
},
illustrator: "Naoyo Kimura",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
description: {
en: "When it is angered, it immediately discharges the energy stored in the pouches in its cheeks."
},
stage: "Basic",
attacks: [{
name: {
en: "Tail Smack"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,45 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Raichu ex"
},
illustrator: "PLANETA CG Works",
rarity: "Four Diamond",
category: "Pokemon",
hp: 140,
types: ["Lightning"],
evolveFrom: {
en: "Pikachu"
},
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
en: "Psychic"
},
damage: 60,
cost: ["Colorless", "Colorless", "Colorless"],
effect: {
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Geodude"
},
illustrator: "Hitoshi Ariga",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
description: {
en: "If you mistake it for a rock and step on it, it will headbutt you in anger. In addition to the pain, it will also zap you with a shock."
},
stage: "Basic",
attacks: [{
name: {
en: "Knuckle Punch"
},
damage: 40,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Graveler"
},
illustrator: "match",
rarity: "Two Diamond",
category: "Pokemon",
hp: 110,
types: ["Lightning"],
evolveFrom: {
en: "Alolan Geodude"
},
description: {
en: "When two Graveler fight each other, it fills the surroundings with flashes of light and sound. People call it the \"fireworks of the earth.\""
},
stage: "Stage1",
attacks: [{
name: {
en: "Heavy Impact"
},
damage: 60,
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 3
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Golem"
},
illustrator: "kawayoo",
rarity: "Three Diamond",
category: "Pokemon",
hp: 160,
types: ["Lightning"],
evolveFrom: {
en: "Alolan Graveler"
},
description: {
en: "It's grumpy and stubborn. If you upset it, it discharges electricity from the surface of its body and growls with a voice like thunder."
},
stage: "Stage2",
attacks: [{
name: {
en: "Super Zap Cannon"
},
damage: 150,
cost: ["Lightning", "Lightning", "Colorless", "Colorless"],
effect: {
en: "Discard 2 Energy from this Pokémon."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 4
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Helioptile"
},
illustrator: "0313",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
description: {
en: "When spread, the frills on its head act like solar panels, generating the power behind this Pokémon's electric moves."
},
stage: "Basic",
attacks: [{
name: {
en: "Smash Kick"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Heliolisk"
},
illustrator: "Kagemaru Himeno",
rarity: "One Diamond",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
evolveFrom: {
en: "Helioptile"
},
description: {
en: "One Heliolisk basking in the sun with its frill outspread is all it would take to produce enough electricity to power a city."
},
stage: "Stage1",
attacks: [{
name: {
en: "Rear Kick"
},
damage: 40,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Charjabug"
},
illustrator: "Naoki Saito",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
evolveFrom: {
en: "Grubbin"
},
description: {
en: "While its durable shell protects it from attacks, Charjabug strikes at enemies with jolts of electricity discharged from the tips of its jaws."
},
stage: "Stage1",
attacks: [{
name: {
en: "Vise Grip"
},
damage: 30,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Vikavolt"
},
illustrator: "Hitoshi Ariga",
rarity: "Three Diamond",
category: "Pokemon",
hp: 140,
types: ["Lightning"],
evolveFrom: {
en: "Charjabug"
},
description: {
en: "It builds up electricity in its abdomen, focuses it through its jaws, and then fires the electricity off in concentrated beams."
},
stage: "Stage2",
attacks: [{
name: {
en: "Disconnect"
},
damage: 70,
cost: ["Lightning", "Lightning"],
effect: {
en: "During your opponent's next turn, they can't play any Item cards from their hand."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Oricorio"
},
illustrator: "Jerky",
rarity: "Three Diamond",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
description: {
en: "This form of Oricorio has sipped yellow nectar. It uses nimble steps to approach opponents, then knocks them out with electric punches."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Safeguard"
},
effect: {
en: "Prevent all damage done to this Pokémon by attacks from your opponent's Pokémon ex."
}
}],
attacks: [{
name: {
en: "Zzzap"
},
damage: 50,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Togedemaru"
},
illustrator: "Misa Tsutsui",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
description: {
en: "With the long hairs on its back, this Pokémon takes in electricity from other electric Pokémon. It stores what it absorbs in an electric sac."
},
stage: "Basic",
attacks: [{
name: {
en: "Electrosmash"
},
damage: 20,
cost: ["Lightning"],
effect: {
en: "Flip a coin. If heads, this attack does 30 more damage."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Tapu Koko"
},
illustrator: "kirisAki",
rarity: "Three Diamond",
category: "Pokemon",
hp: 100,
types: ["Lightning"],
description: {
en: "Although it's called a guardian deity, if a person or Pokémon puts it in a bad mood, it will become a malevolent deity and attack."
},
stage: "Basic",
attacks: [{
name: {
en: "Volt Switch"
},
damage: 70,
cost: ["Lightning", "Lightning", "Lightning"],
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Mr. Mime"
},
illustrator: "Yukihiro Tada",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
en: "The broadness of its hands may be no coincidence—many scientists believe its palms became enlarged specifically for pantomiming."
},
stage: "Basic",
attacks: [{
name: {
en: "Barrier Shove"
},
damage: 30,
cost: ["Psychic", "Colorless"],
effect: {
en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Sableye"
},
illustrator: "Aya Kusube",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
en: "It dwells in the darkness of caves. It uses its sharp claws to dig up gems to nourish itself."
},
stage: "Basic",
attacks: [{
name: {
en: "Corner"
},
damage: 40,
cost: ["Psychic", "Colorless"],
effect: {
en: "During your opponent's next turn, the Defending Pokémon can't retreat."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Spoink"
},
illustrator: "Sekio",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
en: "Spoink will die if it stops bouncing. The pearl on its head amplifies its psychic powers."
},
stage: "Basic",
attacks: [{
name: {
en: "Psycharge"
},
cost: ["Psychic"],
effect: {
en: "Take a Energy from your Energy Zone and attach it to this Pokémon."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Grumpig"
},
illustrator: "Yukiko Baba",
rarity: "Two Diamond",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
evolveFrom: {
en: "Spoink"
},
description: {
en: "It can perform odd dance steps to influence foes. Its style of dancing became hugely popular overseas."
},
stage: "Stage1",
attacks: [{
name: {
en: "Zen Headbutt"
},
damage: 70,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Lunatone"
},
illustrator: "Hisao Nakamura",
rarity: "One Diamond",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
en: "The phase of the moon apparently has some effect on its power. It's active on the night of a full moon."
},
stage: "Basic",
attacks: [{
name: {
en: "Moon Press"
},
damage: 50,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Shuppet"
},
illustrator: "Kyoko Umemoto",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
en: "It loves to feed on feelings like envy and malice. Its upright horn catches the emotions of people."
},
stage: "Basic",
attacks: [{
name: {
en: "Will-O-Wisp"
},
damage: 20,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Banette"
},
illustrator: "Aya Kusube",
rarity: "One Diamond",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
evolveFrom: {
en: "Shuppet"
},
description: {
en: "This Pokémon developed from an abandoned doll that amassed a grudge. It is seen in dark alleys."
},
stage: "Stage1",
attacks: [{
name: {
en: "Night Bind"
},
damage: 30,
cost: ["Psychic"],
effect: {
en: "During your opponent's next turn, they can't take any Energy from their Energy Zone to attach to their Active Pokémon."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Oricorio"
},
illustrator: "Jerky",
rarity: "Two Diamond",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
en: "This form of Oricorio has sipped pink nectar. It elevates its mind with the gentle steps of its dance, then unleashes its psychic energy."
},
stage: "Basic",
attacks: [{
name: {
en: "Dazzle Dance"
},
damage: 40,
cost: ["Psychic", "Psychic"],
effect: {
en: "Your opponent's Active Pokémon is now Confused."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Oricorio"
},
illustrator: "Jerky",
rarity: "Two Diamond",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
en: "This form of Oricorio has sipped purple nectar. It uses ethereal dance steps to call forth the spirits of the dead."
},
stage: "Basic",
attacks: [{
name: {
en: "Spiteful Dance"
},
damage: 20,
cost: ["Psychic"],
effect: {
en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 60 more damage."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Cutiefly"
},
illustrator: "Hitoshi Ariga",
rarity: "One Diamond",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
description: {
en: "Nectar and pollen are its favorite fare. In fields of flowers, it gets into skirmishes with Butterfree over food."
},
stage: "Basic",
attacks: [{
name: {
en: "Flap"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 0
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Ribombee"
},
illustrator: "Megumi Mizutani",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
evolveFrom: {
en: "Cutiefly"
},
description: {
en: "It makes pollen puffs from pollen and nectar. The puffs' effects depend on the type of ingredients and how much of each one is used."
},
stage: "Stage1",
attacks: [{
name: {
en: "Fairy Wind"
},
damage: 40,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 0
}
export default card

View File

@@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Comfey"
},
illustrator: "Sanosuke Sakuma",
rarity: "Three Diamond",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
en: "Comfey picks flowers with its vine and decorates itself with them. For some reason, flowers won't wither once they're attached to a Comfey."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Flower Shield"
},
effect: {
en: "Each of your Pokémon that has any Energy attached recovers from all Special Conditions and can't be affected by any Special Conditions."
}
}],
attacks: [{
name: {
en: "Spinning Attack"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Sandygast"
},
illustrator: "Akira Komayama",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
en: "If it loses its shovel, it will stick something else—like a branch—in its head to make do until it finds another shovel."
},
stage: "Basic",
attacks: [{
name: {
en: "Vibration"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Palossand"
},
illustrator: "OOYAMA",
rarity: "Three Diamond",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
evolveFrom: {
en: "Sandygast"
},
description: {
en: "The terrifying Palossand drags smaller Pokémon into its sandy body. Once its victims are trapped, it drains them of their vitality whenever it pleases."
},
stage: "Stage1",
attacks: [{
name: {
en: "Spooky Shot"
},
damage: 70,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 3
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Mimikyu"
},
illustrator: "HYOGONOSUKE",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
en: "There was a scientist who peeked under Mimikyu's old rag in the name of research. The scientist died of a mysterious disease."
},
stage: "Basic",
attacks: [{
name: {
en: "Shadow Hit"
},
damage: 60,
cost: ["Psychic", "Colorless"],
effect: {
en: "This attack also does 20 damage to 1 of your Pokémon."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Tapu Lele"
},
illustrator: "Misa Tsutsui",
rarity: "Three Diamond",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
en: "It heals the wounds of people and Pokémon by sprinkling them with its sparkling scales. This guardian deity is worshiped on Akala."
},
stage: "Basic",
attacks: [{
name: {
en: "Energy Arrow"
},
cost: ["Psychic"],
effect: {
en: "This attack does 20 damage to 1 of your opponent's Pokémon for each Energy attached to that Pokémon."
}
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Cosmog"
},
illustrator: "sui",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
en: "Even though its helpless, gaseous body can be blown away by the slightest breeze, it doesn't seem to care."
},
stage: "Basic",
attacks: [{
name: {
en: "Teleport"
},
cost: ["Colorless"],
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Cosmoem"
},
illustrator: "Aya Kusube",
rarity: "Two Diamond",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
evolveFrom: {
en: "Cosmog"
},
description: {
en: "The king who ruled Alola in times of antiquity called it the \"cocoon of the stars\" and built an altar to worship it."
},
stage: "Stage1",
attacks: [{
name: {
en: "Stiffen"
},
cost: ["Colorless", "Colorless"],
effect: {
en: "During your opponent's next turn, this Pokémon takes 50 damage from attacks."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 3
}
export default card

View File

@@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Lunala ex"
},
illustrator: "PLANETA CG Works",
rarity: "Four Diamond",
category: "Pokemon",
hp: 180,
types: ["Psychic"],
evolveFrom: {
en: "Cosmoem"
},
stage: "Stage2",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
en: "Psychic Connect"
},
effect: {
en: "Once during your turn, you may move all Energy from 1 of your Benched Pokémon to your Active Pokémon."
}
}],
attacks: [{
name: {
en: "Lunar Blast"
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Necrozma"
},
illustrator: "Masakazu Fukuda",
rarity: "Three Diamond",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
en: "It looks somehow pained as it rages around in search of light, which serves as its energy. It's apparently from another world."
},
stage: "Basic",
attacks: [{
name: {
en: "Prismatic Laser"
},
damage: 120,
cost: ["Psychic", "Psychic", "Colorless", "Colorless"],
effect: {
en: "During your next turn, this Pokémon can't attack."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Cubone"
},
illustrator: "kawayoo",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
description: {
en: "When the memory of its departed mother brings it to tears, its cries echo mournfully within the skull it wears on its head."
},
stage: "Basic",
attacks: [{
name: {
en: "Beat"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Makuhita"
},
illustrator: "Mina Nakai",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
en: "It grows stronger by enduring harsh training. It is a gutsy Pokémon that can withstand any attack."
},
stage: "Basic",
attacks: [{
name: {
en: "Slap Push"
},
damage: 20,
cost: ["Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Hariyama"
},
illustrator: "Miki Tanaka",
rarity: "Two Diamond",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
evolveFrom: {
en: "Makuhita"
},
description: {
en: "It loves challenging others to tests of strength. It has the power to stop a train with a slap."
},
stage: "Stage1",
attacks: [{
name: {
en: "Push Out"
},
damage: 50,
cost: ["Fighting", "Colorless"],
effect: {
en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)"
}
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 3
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Solrock"
},
illustrator: "Kyoko Umemoto",
rarity: "One Diamond",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
description: {
en: "When it rotates itself, it gives off light similar to the sun, thus blinding its foes."
},
stage: "Basic",
attacks: [{
name: {
en: "Solar Beam"
},
damage: 60,
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 2
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Drilbur"
},
illustrator: "Tomokazu Komiya",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
description: {
en: "It brings its claws together and whirls around at high speed before rushing toward its prey."
},
stage: "Basic",
attacks: [{
name: {
en: "Scratch"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Timburr"
},
illustrator: "Mizue",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
description: {
en: "It loves helping out with construction projects. It loves it so much that if rain causes work to halt, it swings its log around and throws a tantrum."
},
stage: "Basic",
attacks: [{
name: {
en: "Corkscrew Punch"
},
damage: 20,
cost: ["Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 1
}
export default card

View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Gurdurr"
},
illustrator: "Naoki Saito",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
evolveFrom: {
en: "Timburr"
},
description: {
en: "It shows off its muscles to Machoke and other Gurdurr. If it fails to measure up to the other Pokémon, it lies low for a little while."
},
stage: "Stage1",
attacks: [{
name: {
en: "Strength"
},
damage: 40,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 2
}
export default card

Some files were not shown because too many files have changed in this diff Show More