mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-15 01:41:59 +00:00
Compare commits
2 Commits
v2.18.0
...
decks-supp
Author | SHA1 | Date | |
---|---|---|---|
4908aeed8a | |||
2d427e7ddf |
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"version": "1",
|
||||
"name": "TCGdex",
|
||||
"type": "collection",
|
||||
"presets": {
|
||||
"requestType": "http"
|
||||
}
|
||||
}
|
@@ -1,28 +0,0 @@
|
||||
meta {
|
||||
name: Get the cards list
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/cards?sort:field=name&sort:order=DESC&pagination:page=1&pagination:itemsPerPage=4
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
query {
|
||||
sort:field: name
|
||||
sort:order: DESC
|
||||
pagination:page: 1
|
||||
pagination:itemsPerPage: 4
|
||||
~name: furret
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
res.body.length: eq 4
|
||||
}
|
||||
|
||||
docs {
|
||||
Fully describe the card list request, it also has every parameters it can
|
||||
}
|
@@ -1,16 +0,0 @@
|
||||
meta {
|
||||
name: Get one card
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/cards/swsh3-136
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
res.body.id: eq swsh3-136
|
||||
}
|
@@ -1,3 +0,0 @@
|
||||
vars {
|
||||
BASE_URL: http://localhost:3000
|
||||
}
|
@@ -1,3 +0,0 @@
|
||||
vars {
|
||||
BASE_URL: https://api.tcgdex.net
|
||||
}
|
@@ -1,22 +0,0 @@
|
||||
meta {
|
||||
name: 466 - Invalid Sorting
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/sets/swsh8/53
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
assert {
|
||||
res.body.id: eq swsh8-53
|
||||
res.status: eq 200
|
||||
}
|
||||
|
||||
docs {
|
||||
Validate the issue seen in
|
||||
|
||||
https://github.com/tcgdex/cards-database/issues/466
|
||||
}
|
@@ -1,15 +0,0 @@
|
||||
meta {
|
||||
name: 467 - Validate that we can run OPTIONS
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
options {
|
||||
url: {{BASE_URL}}/status
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
}
|
@@ -1,22 +0,0 @@
|
||||
meta {
|
||||
name: 471 - Invalid Set Sorting
|
||||
type: http
|
||||
seq: 3
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/sets/swsh12/10
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
assert {
|
||||
res.body.id: eq swsh12-010
|
||||
res.status: eq 200
|
||||
}
|
||||
|
||||
docs {
|
||||
Validate the issue seen in
|
||||
|
||||
https://github.com/tcgdex/cards-database/issues/471
|
||||
}
|
@@ -1,25 +0,0 @@
|
||||
meta {
|
||||
name: 474 - Queries crashing the server
|
||||
type: http
|
||||
seq: 4
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/cards?legal.standard=true
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
query {
|
||||
legal.standard: true
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
}
|
||||
|
||||
docs {
|
||||
Validate the issue seen in
|
||||
|
||||
https://github.com/tcgdex/cards-database/issues/474
|
||||
}
|
@@ -1,25 +0,0 @@
|
||||
meta {
|
||||
name: 475 - Ability to query subfileds
|
||||
type: http
|
||||
seq: 5
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/cards?legal.standard=true
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
query {
|
||||
legal.standard: true
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
}
|
||||
|
||||
docs {
|
||||
Validate the issue seen in
|
||||
|
||||
https://github.com/tcgdex/cards-database/issues/474
|
||||
}
|
@@ -1,17 +0,0 @@
|
||||
meta {
|
||||
name: 489 - Crash When sorting with Null values
|
||||
type: http
|
||||
seq: 6
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/cards?name=pikachu&sort:field=hp&sort:order=DESC
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
query {
|
||||
name: pikachu
|
||||
sort:field: hp
|
||||
sort:order: DESC
|
||||
}
|
@@ -1,33 +0,0 @@
|
||||
meta {
|
||||
name: GraphQL API
|
||||
type: graphql
|
||||
seq: 1
|
||||
}
|
||||
|
||||
post {
|
||||
url: {{BASE_URL}}/v2/graphql
|
||||
body: graphql
|
||||
auth: none
|
||||
}
|
||||
|
||||
body:graphql {
|
||||
query Pouet {
|
||||
cards {
|
||||
id
|
||||
localId
|
||||
name
|
||||
set {
|
||||
id
|
||||
name
|
||||
serie {
|
||||
id
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
}
|
@@ -1,20 +0,0 @@
|
||||
meta {
|
||||
name: Random Card
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/random/card?name=furret
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
query {
|
||||
name: furret
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
res.body.name: contains Furret
|
||||
}
|
@@ -1,19 +0,0 @@
|
||||
meta {
|
||||
name: Random Serie
|
||||
type: http
|
||||
seq: 3
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/random/serie?name=p
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
query {
|
||||
name: p
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
}
|
@@ -1,20 +0,0 @@
|
||||
meta {
|
||||
name: Random Set
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/random/set?name=sword
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
query {
|
||||
name: sword
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
res.body.name: contains Sword
|
||||
}
|
@@ -1,25 +0,0 @@
|
||||
meta {
|
||||
name: Get a list of sets
|
||||
type: http
|
||||
seq: 3
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/sets?sort:field=name&sort:order=DESC&pagination:page=1&pagination:itemsPerPage=1&name=Dark
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
query {
|
||||
sort:field: name
|
||||
sort:order: DESC
|
||||
pagination:page: 1
|
||||
pagination:itemsPerPage: 1
|
||||
name: Dark
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
res.body[0].id: eq swsh3
|
||||
res.body.length: eq 1
|
||||
}
|
@@ -1,16 +0,0 @@
|
||||
meta {
|
||||
name: Get a set
|
||||
type: http
|
||||
seq: 2
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/sets/swsh3
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
res.body.id: eq swsh3
|
||||
}
|
@@ -1,16 +0,0 @@
|
||||
meta {
|
||||
name: Get one card from a set
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
get {
|
||||
url: {{BASE_URL}}/v2/en/sets/swsh3/136
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
res.body.id: eq swsh3-136
|
||||
}
|
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -15,9 +15,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Docker meta
|
||||
id: meta
|
||||
|
4
.github/workflows/conventionnal-commit.yml
vendored
4
.github/workflows/conventionnal-commit.yml
vendored
@@ -5,8 +5,8 @@ jobs:
|
||||
name: Conventional PR
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
- uses: beemojs/conventional-pr-action@v2
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
|
||||
- name: Setup BunJS
|
||||
@@ -24,7 +24,6 @@ jobs:
|
||||
bun install --frozen-lockfile
|
||||
cd server
|
||||
bun install --frozen-lockfile
|
||||
bun run compile
|
||||
|
||||
- name: Validate the data & the server
|
||||
run: |
|
||||
|
@@ -3,10 +3,6 @@ FROM docker.io/oven/bun:1-alpine as BUILD_IMAGE
|
||||
# go to work folder
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# Add git as it is used to fetch updated times
|
||||
RUN apk add git &&\
|
||||
git config --global safe.directory '*'
|
||||
|
||||
ADD --chown=bun:bun package.json bun.lockb ./
|
||||
ADD --chown=bun:bun server/package.json server/bun.lockb ./server/
|
||||
|
||||
|
14
data/Base/Base Set 2/Decks/Grass Chopper.ts
Normal file
14
data/Base/Base Set 2/Decks/Grass Chopper.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Base Set 2"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base4.gc",
|
||||
name: {
|
||||
en: "Grass Chopper"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Fighting", "Grass"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Base Set 2/Decks/Hot Water.ts
Normal file
14
data/Base/Base Set 2/Decks/Hot Water.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Base Set 2"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base4.hw",
|
||||
name: {
|
||||
en: "Hot Water"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Fire", "Water"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Base Set 2/Decks/Lightning Bug.ts
Normal file
14
data/Base/Base Set 2/Decks/Lightning Bug.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Base Set 2"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base4.lg",
|
||||
name: {
|
||||
en: "Lightning Bug"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Lightning", "Grass"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Base Set 2/Decks/Psych Out.ts
Normal file
14
data/Base/Base Set 2/Decks/Psych Out.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Base Set 2"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base4.po",
|
||||
name: {
|
||||
en: "Psych Out"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Psychic", "Water"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Base Set/decks/Blackout.ts
Normal file
14
data/Base/Base Set/decks/Blackout.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Base Set"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base1.bl",
|
||||
name: {
|
||||
en: "Blackout"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Water", "Fighting"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Base Set/decks/Brushfire.ts
Normal file
14
data/Base/Base Set/decks/Brushfire.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Base Set"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base1.br",
|
||||
name: {
|
||||
en: "Brushfire"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Fire", "Grass"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Base Set/decks/Overgrowth.ts
Normal file
14
data/Base/Base Set/decks/Overgrowth.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Base Set"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base1.ov",
|
||||
name: {
|
||||
en: "Overgrowth"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Water", "Grass"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Base Set/decks/Zap!.ts
Normal file
14
data/Base/Base Set/decks/Zap!.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Base Set"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base1.za",
|
||||
name: {
|
||||
en: "Zap!"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Lightning", "Psychic"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Fossil/Decks/BodyGuard.ts
Normal file
14
data/Base/Fossil/Decks/BodyGuard.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Fossil"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base1.bd",
|
||||
name: {
|
||||
en: "BodyGuard"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Grass", "Fighting"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Fossil/Decks/LockDown.ts
Normal file
14
data/Base/Fossil/Decks/LockDown.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Base Set"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base1.ld",
|
||||
name: {
|
||||
en: "LockDown"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Fire", "Water"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Jungle/decks/Power Reserve.ts
Normal file
14
data/Base/Jungle/decks/Power Reserve.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Jungle"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base2.pr",
|
||||
name: {
|
||||
en: "Power Reserve"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Psychic", "Grass"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Jungle/decks/Water Blast.ts
Normal file
14
data/Base/Jungle/decks/Water Blast.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Jungle"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base2.wb",
|
||||
name: {
|
||||
en: "Water Blast"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Water", "Fighting"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Team Rocket/decks/Devastation.ts
Normal file
14
data/Base/Team Rocket/decks/Devastation.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Team Rocket"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base4.de",
|
||||
name: {
|
||||
en: "Devastation"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Grass", "Water"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
14
data/Base/Team Rocket/decks/Grass Chopper.ts
Normal file
14
data/Base/Team Rocket/decks/Grass Chopper.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Deck } from "../../../../interfaces"
|
||||
import Set from "../../Team Rocket"
|
||||
|
||||
const deck: Deck = {
|
||||
id: "td.base4.to",
|
||||
name: {
|
||||
en: "Trouble"
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ["Psychic", "Grass"],
|
||||
cards: []
|
||||
}
|
||||
|
||||
export default deck
|
40
data/Black & White/Noble Victories/Decks/Fast Daze.ts
Normal file
40
data/Black & White/Noble Victories/Decks/Fast Daze.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
import { Deck } from '../../../../interfaces'
|
||||
import Set from "../../Noble Victories"
|
||||
|
||||
const deck: Deck = {
|
||||
id: 'td.bw3.fd',
|
||||
name: {
|
||||
en: 'Fast Daze'
|
||||
},
|
||||
set: Set,
|
||||
typesFocus: ['Fire', 'Grass'],
|
||||
cards: [
|
||||
{ id: 'bw3-12', variant: 'holo' },
|
||||
'bw3-12',
|
||||
{ id: 'bw3-11', quantity: 4 },
|
||||
'bw3-3',
|
||||
{ id: 'bw3-2', quantity: 2 },
|
||||
{ id: 'bw3-1', quantity: 3 },
|
||||
'bw3-5',
|
||||
{ id: 'bw3-4', quantity: 2 },
|
||||
{ id: 'bw3-7', quantity: 2 },
|
||||
{ id: 'bw3-6', quantity: 2 },
|
||||
{ id: 'bw3-9', quantity: 3 },
|
||||
'bw3-21',
|
||||
{ id: 'bw3-21', quantity: 2 },
|
||||
{ id: 'bw3-17', quantity: 2 },
|
||||
{ id: 'bw3-16', quantity: 2 },
|
||||
{ id: 'bw3-7', quantity: 2 },
|
||||
{ id: 'bw1-93', quantity: 2 },
|
||||
{ id: 'bw1-100', quantity: 2 },
|
||||
{ id: 'bw2-91', quantity: 2 },
|
||||
{ id: 'bw2-91', quantity: 2 },
|
||||
'bw3-92',
|
||||
{ id: 'bw1-99', quantity: 2 },
|
||||
{ id: 'bw3-95', quantity: 2 },
|
||||
{ id: 'bw1-105', quantity: 12 },
|
||||
{ id: 'bw1-106', quantity: 6 }
|
||||
]
|
||||
}
|
||||
|
||||
export default deck
|
@@ -1,25 +0,0 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../Scarlet & Violet'
|
||||
|
||||
const set: Set = {
|
||||
id: "sv04.5",
|
||||
|
||||
name: {
|
||||
de: "Paldeas Schicksale",
|
||||
en: "Paldean Fates",
|
||||
es: "Destinos de Paldea",
|
||||
fr: "Destinées de Paldea",
|
||||
it: "Destino di Paldea",
|
||||
pt: "Destinos de Paldea"
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 91
|
||||
},
|
||||
|
||||
releaseDate: "2024-01-26"
|
||||
}
|
||||
|
||||
export default set
|
@@ -1,41 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pineco",
|
||||
fr: "Pomdepik",
|
||||
es: "Pineco",
|
||||
it: "Pineco",
|
||||
pt: "Pineco",
|
||||
de: "Tannza"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
name: {
|
||||
en: "Rollout",
|
||||
fr: "Roulade",
|
||||
es: "Rodar",
|
||||
it: "Rotolamento",
|
||||
pt: "Rolagem",
|
||||
de: "Walzer"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Forretress ex",
|
||||
fr: "Foretress-ex",
|
||||
es: "Forretress ex",
|
||||
it: "Forretress-ex",
|
||||
pt: "Forretress ex",
|
||||
de: "Forstellka-ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 270,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Exploding Energy",
|
||||
fr: "Énergie Explosive",
|
||||
es: "Energía Explosiva",
|
||||
it: "Esplodienergia",
|
||||
pt: "Energia Explosiva",
|
||||
de: "Explodierende Energie"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may search your deck for up to 5 Basic Grass Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck. If you searched your deck in this way, this Pokémon is Knocked Out.",
|
||||
fr: "Une fois pendant votre tour, vous pouvez chercher dans votre deck jusqu'à 5 cartes Énergie Grass de base et les attacher à vos Pokémon, comme il vous plaît. Mélangez ensuite votre deck. Si vous avez cherché dans votre deck de cette façon, ce Pokémon est mis K.O.",
|
||||
es: "Una vez durante tu turno, puedes buscar en tu baraja hasta 5 cartas de Energía Grass Básica y unirlas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja. Si has buscado en tu baraja de esta manera, este Pokémon queda Fuera de Combate.",
|
||||
it: "Una sola volta durante il tuo turno, puoi cercare nel tuo mazzo fino a cinque carte Energia base Grass e assegnarle ai tuoi Pokémon nel modo che preferisci. Poi rimischia le carte del tuo mazzo. Se hai cercato nel tuo mazzo in questo modo, questo Pokémon viene messo KO.",
|
||||
pt: "Uma vez durante o seu turno, você poderá procurar por até 5 cartas de Energia Grass Básica no seu baralho e ligá-las aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho. Se você procurar no seu baralho desta forma, este Pokémon será Nocauteado.",
|
||||
de: "Einmal während deines Zuges kannst du dein Deck nach bis zu 5 Basis-Grass-Energiekarten durchsuchen und sie beliebig an deine Pokémon anlegen. Mische anschließend dein Deck. Wenn du auf diese Weise dein Deck durchsucht hast, ist dieses Pokémon kampfunfähig."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
name: {
|
||||
en: "Guard Press",
|
||||
fr: "Pression de Garde",
|
||||
es: "Presión de Guardia",
|
||||
it: "Pressadifesa",
|
||||
pt: "Aperto Protetor",
|
||||
de: "Schutzdruck"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||||
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).",
|
||||
es: "Durante el próximo turno de tu rival, los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).",
|
||||
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.",
|
||||
pt: "Durante o próximo turno do seu oponente, este Pokémon receberá 30 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).",
|
||||
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,70 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Maractus",
|
||||
fr: "Maracachi",
|
||||
es: "Maractus",
|
||||
it: "Maractus",
|
||||
pt: "Maractus",
|
||||
de: "Maracamba"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Double Draw",
|
||||
fr: "Double Pioche",
|
||||
es: "Roba Doble",
|
||||
it: "Pescata Doppia",
|
||||
pt: "Compra Dupla",
|
||||
de: "Zweifachzug"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw 2 cards.",
|
||||
fr: "Piochez 2 cartes.",
|
||||
es: "Roba 2 cartas.",
|
||||
it: "Pesca due carte.",
|
||||
pt: "Compre 2 cartas.",
|
||||
de: "Ziehe 2 Karten."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Pin Missile",
|
||||
fr: "Dard-Nuée",
|
||||
es: "Pin Misil",
|
||||
it: "Missilspillo",
|
||||
pt: "Míssil de Espinhos",
|
||||
de: "Nadelrakete"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip 4 coins. This attack does 30 damage for each heads.",
|
||||
fr: "Lancez 4 pièces. Cette attaque inflige 30 dégâts pour chaque côté face.",
|
||||
es: "Lanza 4 monedas. Este ataque hace 30 puntos de daño por cada cara.",
|
||||
it: "Lancia quattro volte una moneta. Questo attacco infligge 30 danni ogni volta che esce testa.",
|
||||
pt: "Jogue 4 moedas. Este ataque causa 30 pontos de dano para cada cara.",
|
||||
de: "Wirf 4 Münzen. Diese Attacke fügt 30 Schadenspunkte pro Kopf zu."
|
||||
},
|
||||
|
||||
damage: "30×"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Toedscool",
|
||||
fr: "Terracool",
|
||||
es: "Toedscool",
|
||||
it: "Toedscool",
|
||||
pt: "Toedscool",
|
||||
de: "Tentagra"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Furious Kicks",
|
||||
fr: "Coups de Pied Rageurs",
|
||||
es: "Patadas Furiosas",
|
||||
it: "Calci Furiosi",
|
||||
pt: "Chutes de Fúria",
|
||||
de: "Zorntritte"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 10 damage for each heads.",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts pour chaque côté face.",
|
||||
es: "Lanza 3 monedas. Este ataque hace 10 puntos de daño por cada cara.",
|
||||
it: "Lancia tre volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.",
|
||||
pt: "Jogue 3 moedas. Este ataque causa 10 pontos de dano para cada cara.",
|
||||
de: "Wirf 3 Münzen. Diese Attacke fügt 10 Schadenspunkte pro Kopf zu."
|
||||
},
|
||||
|
||||
damage: "10×"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Toedscruel ex",
|
||||
fr: "Terracruel-ex",
|
||||
es: "Toedscruel ex",
|
||||
it: "Toedscruel-ex",
|
||||
pt: "Toedscruel ex",
|
||||
de: "Tenterra-ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 270,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Protective Mycelium",
|
||||
fr: "Protection Fongique",
|
||||
es: "Micelio Protector",
|
||||
it: "Micoprotezione",
|
||||
pt: "Micélio Protetor",
|
||||
de: "Schützendes Myzelium"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Prevent all effects of attacks used by your opponent's Pokémon done to all of your Pokémon that have Energy attached. (Existing effects are not removed. Damage is not an effect.)",
|
||||
fr: "Évitez tous les effets infligés à tous vos Pokémon auxquels de l'Énergie est attachée et provenant des attaques utilisées par les Pokémon de votre adversaire. (Les effets déjà en action ne sont pas retirés. Les dégâts ne sont pas un effet.)",
|
||||
es: "Se evitan todos los efectos de los ataques usados por los Pokémon de tu rival e infligidos a cada uno de tus Pokémon que tenga alguna Energía unida. (No se eliminan los efectos ya existentes. El daño no es un efecto).",
|
||||
it: "Previeni tutti gli effetti degli attacchi usati dai Pokémon del tuo avversario inflitti ai tuoi Pokémon che hanno Energie assegnate. Gli effetti esistenti non vengono rimossi. I danni non sono un effetto.",
|
||||
pt: "Previna todos os efeitos de ataques usados pelos Pokémon do seu oponente causados a todos os seus Pokémon que têm Energia ligada a eles. (Efeitos existentes não são removidos e dano não é um efeito.)",
|
||||
de: "Verhindere alle Effekte der von den Pokémon deines Gegners eingesetzten Attacken, die allen deinen Pokémon zugefügt werden, an die Energie angelegt ist. (Bestehende Effekte werden nicht entfernt. Schaden ist kein Effekt.)"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
name: {
|
||||
en: "Colony Rush",
|
||||
fr: "Ruée Collective",
|
||||
es: "Colonia al Ataque",
|
||||
it: "Assalto della Colonia",
|
||||
pt: "Colônia Furiosa",
|
||||
de: "Kolonieansturm"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 40 more damage for each of your Benched Pokémon that has any Grass Energy attached.",
|
||||
fr: "Cette attaque inflige 40 dégâts supplémentaires pour chacun de vos Pokémon de Banc auxquels au moins une Énergie Grass est attachée.",
|
||||
es: "Este ataque hace 40 puntos de daño más por cada uno de tus Pokémon en Banca que tenga alguna Energía Grass unida.",
|
||||
it: "Questo attacco infligge 40 danni in più per ogni Pokémon nella tua panchina che ha delle Energie Grass assegnate.",
|
||||
pt: "Este ataque causa 40 pontos de dano a mais para cada um dos seus Pokémon no Banco que tem alguma Energia Grass ligada a ele.",
|
||||
de: "Diese Attacke fügt für jedes Pokémon auf deiner Bank, an das mindestens 1 Grass-Energie angelegt ist, 40 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "80+"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Espathra ex",
|
||||
fr: "Cléopsytra-ex",
|
||||
es: "Espathra ex",
|
||||
it: "Espathra-ex",
|
||||
pt: "Espathra ex",
|
||||
de: "Psiopatra-ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 260,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Dazzling Gaze",
|
||||
fr: "Regard Éblouissant",
|
||||
es: "Mirada Deslumbrante",
|
||||
it: "Sguardo Accecante",
|
||||
pt: "Olhar Deslumbrante",
|
||||
de: "Überwältigender Blick"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "As long as this Pokémon is in the Active Spot, attacks used by your opponent's Active Pokémon cost Colorless more.",
|
||||
fr: "Tant que ce Pokémon est sur le Poste Actif, les attaques utilisées par le Pokémon Actif de votre adversaire coûtent Colorless de plus.",
|
||||
es: "Mientras este Pokémon esté en el Puesto Activo, los ataques usados por el Pokémon Activo de tu rival cuestan Colorless más.",
|
||||
it: "Fintanto che questo Pokémon è in posizione attiva, il costo degli attacchi usati dal Pokémon attivo del tuo avversario aumenta di Colorless.",
|
||||
pt: "Enquanto este Pokémon estiver no Campo Ativo, os ataques usados pelo Pokémon Ativo do seu oponente custarão Colorless a mais.",
|
||||
de: "Solange dieses Pokémon in der Aktiven Position ist, erhöhen sich die Kosten der vom Aktiven Pokémon deines Gegners eingesetzten Attacken um Colorless."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Psy Ball",
|
||||
fr: "Balle Psy",
|
||||
es: "Bola Psi",
|
||||
it: "Psicopalla",
|
||||
pt: "Bola Psíquica",
|
||||
de: "Psyball"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 30 more damage for each Energy attached to both Active Pokémon.",
|
||||
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie attachée aux deux Pokémon Actifs.",
|
||||
es: "Este ataque hace 30 puntos de daño más por cada Energía unida a ambos Pokémon Activos.",
|
||||
it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata a ciascuno dei Pokémon attivi.",
|
||||
pt: "Este ataque causa 30 pontos de dano a mais para cada Energia ligada a ambos os Pokémon Ativos.",
|
||||
de: "Diese Attacke fügt für jede an beide Aktiven Pokémon angelegte Energie 30 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "30+"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Charmander",
|
||||
fr: "Salamèche",
|
||||
es: "Charmander",
|
||||
it: "Charmander",
|
||||
pt: "Charmander",
|
||||
de: "Glumanda"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Blazing Destruction",
|
||||
fr: "Destruction Ardente",
|
||||
es: "Destrucción Abrasadora",
|
||||
it: "Raso al Fuoco",
|
||||
pt: "Destruição Flamejante",
|
||||
de: "Feurige Verwüstung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard a Stadium in play.",
|
||||
fr: "Défaussez un Stade en jeu.",
|
||||
es: "Descarta 1 Estadio en juego.",
|
||||
it: "Scarta una carta Stadio in gioco.",
|
||||
pt: "Descarte um Estádio em jogo.",
|
||||
de: "Lege 1 Stadionkarte im Spiel auf den Ablagestapel."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fire", "Fire"],
|
||||
|
||||
name: {
|
||||
en: "Steady Firebreathing",
|
||||
fr: "Crachage de Feu Régulier",
|
||||
es: "Lanzallamas Continuo",
|
||||
it: "Soffiofuoco Mirato",
|
||||
pt: "Hálito de Fogo Constante",
|
||||
de: "Stetiger Feuerhauch"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,63 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Charmeleon",
|
||||
fr: "Reptincel",
|
||||
es: "Charmeleon",
|
||||
it: "Charmeleon",
|
||||
pt: "Charmeleon",
|
||||
de: "Glutexo"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Flare Veil",
|
||||
fr: "Voile Flamboyant",
|
||||
es: "Velo Ígneo",
|
||||
it: "Fuocovelo",
|
||||
pt: "Véu de Chamas",
|
||||
de: "Flammenschleier"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Prevent all effects of attacks used by your opponent's Pokémon done to this Pokémon. (Damage is not an effect.)",
|
||||
fr: "Évitez tous les effets infligés à ce Pokémon provenant des attaques utilisées par les Pokémon de votre adversaire. (Les dégâts ne sont pas un effet.)",
|
||||
es: "Se evitan todos los efectos de los ataques usados por los Pokémon de tu rival e infligidos a este Pokémon. (El daño no es un efecto).",
|
||||
it: "Previeni tutti gli effetti inflitti a questo Pokémon dagli attacchi usati dai Pokémon del tuo avversario. I danni non sono un effetto.",
|
||||
pt: "Previna todos os efeitos de ataques usados pelos Pokémon do seu oponente causados a este Pokémon. (Dano não é um efeito.)",
|
||||
de: "Verhindere alle Effekte der von Pokémon deines Gegners eingesetzten Attacken, die diesem Pokémon zugefügt werden. (Schaden ist kein Effekt.)"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Fire"],
|
||||
|
||||
name: {
|
||||
en: "Combustion",
|
||||
fr: "Fournaise",
|
||||
es: "Combustión",
|
||||
it: "Fuoco Continuo",
|
||||
pt: "Combustão",
|
||||
de: "Glühen"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Magmar",
|
||||
fr: "Magmar",
|
||||
es: "Magmar",
|
||||
it: "Magmar",
|
||||
pt: "Magmar",
|
||||
de: "Magmar"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Collect",
|
||||
fr: "Collecte",
|
||||
es: "Coleccionar",
|
||||
it: "Tassa",
|
||||
pt: "Coleta",
|
||||
de: "Sammeln"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
es: "Roba 1 carta.",
|
||||
it: "Pesca una carta.",
|
||||
pt: "Compre uma carta.",
|
||||
de: "Ziehe 1 Karte."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Steady Firebreathing",
|
||||
fr: "Crachage de Feu Régulier",
|
||||
es: "Lanzallamas Continuo",
|
||||
it: "Soffiofuoco Mirato",
|
||||
pt: "Hálito de Fogo Constante",
|
||||
de: "Stetiger Feuerhauch"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,63 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Magmortar",
|
||||
fr: "Maganon",
|
||||
es: "Magmortar",
|
||||
it: "Magmortar",
|
||||
pt: "Magmortar",
|
||||
de: "Magbrant"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Flare",
|
||||
fr: "Flamboiement",
|
||||
es: "Llama",
|
||||
it: "Fiammata",
|
||||
pt: "Chama",
|
||||
de: "Flackern"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Volcanic Heat",
|
||||
fr: "Chaleur Volcanique",
|
||||
es: "Calor Volcánico",
|
||||
it: "Calore Vulcanico",
|
||||
pt: "Calor Vulcânico",
|
||||
de: "Vulkanhitze"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can't attack.",
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
||||
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
||||
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
||||
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
||||
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
||||
},
|
||||
|
||||
damage: 170
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Numel",
|
||||
fr: "Chamallot",
|
||||
es: "Numel",
|
||||
it: "Numel",
|
||||
pt: "Numel",
|
||||
de: "Camaub"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Singe",
|
||||
fr: "Roussi",
|
||||
es: "Quemadura",
|
||||
it: "Scottata",
|
||||
pt: "Chamuscada",
|
||||
de: "Versengung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Heat Blast",
|
||||
fr: "Explosion de Chaleur",
|
||||
es: "Explosión de Calor",
|
||||
it: "Caldobomba",
|
||||
pt: "Raio de Calor",
|
||||
de: "Hitzestoß"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,70 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Camerupt",
|
||||
fr: "Camérupt",
|
||||
es: "Camerupt",
|
||||
it: "Camerupt",
|
||||
pt: "Camerupt",
|
||||
de: "Camerupt"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Super Singe",
|
||||
fr: "Super Roussi",
|
||||
es: "Superquemadura",
|
||||
it: "Super Scottata",
|
||||
pt: "Superchamuscada",
|
||||
de: "Super-Versengung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Cinder Cannon",
|
||||
fr: "Canon à Braises",
|
||||
es: "Cañón de Ceniza",
|
||||
it: "Cannonbrace",
|
||||
pt: "Canhão de Cinzas",
|
||||
de: "Zunderkanone"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "You may discard a Fighting Energy from this Pokémon. If you do, this attack does 120 more damage.",
|
||||
fr: "Vous pouvez défausser une Énergie Fighting de ce Pokémon. Dans ce cas, cette attaque inflige 120 dégâts supplémentaires.",
|
||||
es: "Puedes descartar 1 Energía Fighting de este Pokémon. Si lo haces, este ataque hace 120 puntos de daño más.",
|
||||
it: "Puoi scartare un'Energia Fighting da questo Pokémon. Se lo fai, questo attacco infligge 120 danni in più.",
|
||||
pt: "Você pode descartar uma Energia Fighting deste Pokémon. Se fizer isto, este ataque causará 120 pontos de dano a mais.",
|
||||
de: "Du kannst 1 Fighting-Energie von diesem Pokémon auf deinen Ablagestapel legen. Wenn du das machst, fügt diese Attacke 120 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "120+"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Heat Rotom",
|
||||
fr: "Motisma Chaleur",
|
||||
es: "Rotom Calor",
|
||||
it: "Rotom Calore",
|
||||
pt: "Rotom Calor",
|
||||
de: "Hitze-Rotom"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Fire"],
|
||||
|
||||
name: {
|
||||
en: "Heat Tackle",
|
||||
fr: "Charge Énergétique",
|
||||
es: "Placaje Ardiente",
|
||||
it: "Calorazione",
|
||||
pt: "Golpe de Colisão Aquecido",
|
||||
de: "Hitze-Tackle"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 40 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 40 dégâts.",
|
||||
es: "Este Pokémon también se hace 40 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 40 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 40 pontos de dano a si mesmo.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 40 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,41 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Charcadet",
|
||||
fr: "Charbambin",
|
||||
es: "Charcadet",
|
||||
it: "Charcadet",
|
||||
pt: "Charcadet",
|
||||
de: "Knarbon"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Heat Blast",
|
||||
fr: "Explosion de Chaleur",
|
||||
es: "Explosión de Calor",
|
||||
it: "Caldobomba",
|
||||
pt: "Raio de Calor",
|
||||
de: "Hitzestoß"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Armarouge",
|
||||
fr: "Carmadura",
|
||||
es: "Armarouge",
|
||||
it: "Armarouge",
|
||||
pt: "Armarouge",
|
||||
de: "Crimanzo"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Fire Off",
|
||||
fr: "Feu Projeté",
|
||||
es: "Pirodisparo",
|
||||
it: "Raffica Ignea",
|
||||
pt: "Disparada de Fogo",
|
||||
de: "Abfeuern"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "As often as you like during your turn, you may move a Fire Energy from 1 of your Benched Pokémon to your Active Pokémon.",
|
||||
fr: "Autant de fois que vous le voulez pendant votre tour, vous pouvez déplacer une Énergie Fire de l'un de vos Pokémon de Banc vers votre Pokémon Actif.",
|
||||
es: "Todas las veces que quieras durante tu turno, puedes mover 1 Energía Fire de uno de tus Pokémon en Banca a tu Pokémon Activo.",
|
||||
it: "Durante il tuo turno, puoi spostare un'Energia Fire da uno dei tuoi Pokémon in panchina al tuo Pokémon attivo tutte le volte che vuoi.",
|
||||
pt: "Quantas vezes desejar durante o seu turno, você poderá mover uma Energia Fire de 1 dos seus Pokémon no Banco para o seu Pokémon Ativo.",
|
||||
de: "Beliebig oft während deines Zuges kannst du 1 Fire-Energie von 1 Pokémon auf deiner Bank auf dein Aktives Pokémon verschieben."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Flame Cannon",
|
||||
fr: "Canon Flamme",
|
||||
es: "Cañón Llama",
|
||||
it: "Fiammacannone",
|
||||
pt: "Canhão de Chamas",
|
||||
de: "Flammenkanone"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,70 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lapras",
|
||||
fr: "Lokhlass",
|
||||
es: "Lapras",
|
||||
it: "Lapras",
|
||||
pt: "Lapras",
|
||||
de: "Lapras"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Into the Deep",
|
||||
fr: "Dans l'Abysse",
|
||||
es: "En lo Profundo",
|
||||
it: "Baratro",
|
||||
pt: "Nas Profundezas",
|
||||
de: "In die Tiefe"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Put up to 3 Basic Energy cards from your discard pile into your hand.",
|
||||
fr: "Ajoutez jusqu'à 3 cartes Énergie de base de votre pile de défausse à votre main.",
|
||||
es: "Pon hasta 3 cartas de Energía Básica de tu pila de descartes en tu mano.",
|
||||
it: "Prendi fino a tre carte Energia base dalla tua pila degli scarti e aggiungile alle carte che hai in mano.",
|
||||
pt: "Coloque até 3 cartas de Energia Básica da sua pilha de descarte na sua mão.",
|
||||
de: "Nimm bis zu 3 Basis-Energiekarten aus deinem Ablagestapel auf deine Hand."
|
||||
}
|
||||
}, {
|
||||
cost: ["Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Freeze-Dry",
|
||||
fr: "Lyophilisation",
|
||||
es: "Liofilización",
|
||||
it: "Liofilizzazione",
|
||||
pt: "Liofilização",
|
||||
de: "Gefriertrockner"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente agora estará Paralisado.",
|
||||
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Frigibax",
|
||||
fr: "Frigodo",
|
||||
es: "Frigibax",
|
||||
it: "Frigibax",
|
||||
pt: "Frigibax",
|
||||
de: "Frospino"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Collect",
|
||||
fr: "Collecte",
|
||||
es: "Coleccionar",
|
||||
it: "Tassa",
|
||||
pt: "Coleta",
|
||||
de: "Sammeln"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
es: "Roba 1 carta.",
|
||||
it: "Pesca una carta.",
|
||||
pt: "Compre uma carta.",
|
||||
de: "Ziehe 1 Karte."
|
||||
}
|
||||
}, {
|
||||
cost: ["Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Beat",
|
||||
fr: "Bataille",
|
||||
es: "Toque",
|
||||
it: "Battuta",
|
||||
pt: "Pulso",
|
||||
de: "Verprügler"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pikachu",
|
||||
fr: "Pikachu",
|
||||
es: "Pikachu",
|
||||
it: "Pikachu",
|
||||
pt: "Pikachu",
|
||||
de: "Pikachu"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Growl",
|
||||
fr: "Rugissement",
|
||||
es: "Gruñido",
|
||||
it: "Ruggito",
|
||||
pt: "Rosnadura",
|
||||
de: "Heuler"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, the Defending Pokémon's attacks do 20 less damage (before applying Weakness and Resistance).",
|
||||
fr: "Pendant le prochain tour de votre adversaire, les attaques du Pokémon Défenseur infligent 20 dégâts de moins (avant application de la Faiblesse et de la Résistance).",
|
||||
es: "Durante el próximo turno de tu rival, los ataques del Pokémon Defensor hacen 20 puntos de daño menos (antes de aplicar Debilidad y Resistencia).",
|
||||
it: "Durante il prossimo turno del tuo avversario, gli attacchi del Pokémon difensore infliggono 20 danni in meno, prima di aver applicato debolezza e resistenza.",
|
||||
pt: "Durante o próximo turno do seu oponente, os ataques do Pokémon Defensor causarão 20 pontos de dano a menos (antes de aplicar Fraqueza e Resistência).",
|
||||
de: "Während des nächsten Zuges deines Gegners fügen die Attacken des Verteidigenden Pokémon 20 Schadenspunkte weniger zu (bevor Schwäche und Resistenz verrechnet werden)."
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Pika Bolt",
|
||||
fr: "Pik'Éclair",
|
||||
es: "Rayo Pika",
|
||||
it: "Pikafulmine",
|
||||
pt: "Relâmpagochu",
|
||||
de: "Pikaschuss"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Raichu",
|
||||
fr: "Raichu",
|
||||
es: "Raichu",
|
||||
it: "Raichu",
|
||||
pt: "Raichu",
|
||||
de: "Raichu"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Electrical Grounding",
|
||||
fr: "Prise de Terre",
|
||||
es: "Toma de Tierra",
|
||||
it: "Messa a Terra Elettrica",
|
||||
pt: "Aterramento Elétrico",
|
||||
de: "Elektrische Erdung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "When 1 of your Pokémon is Knocked Out by damage from an attack from your opponent's Pokémon, you may move a Lightning Energy from that Pokémon to this Pokémon.",
|
||||
fr: "Lorsque l'un de vos Pokémon est mis K.O. par les dégâts d'une attaque d'un Pokémon de votre adversaire, vous pouvez déplacer une Énergie Lightning de ce Pokémon-là vers celui-ci.",
|
||||
es: "Cuando uno de tus Pokémon queda Fuera de Combate por el daño de un ataque de los Pokémon de tu rival, puedes mover 1 Energía Lightning de ese Pokémon a este Pokémon.",
|
||||
it: "Quando uno dei tuoi Pokémon viene messo KO dai danni inflitti da un attacco di un Pokémon del tuo avversario, puoi spostare un'Energia Lightning da quel Pokémon a questo Pokémon.",
|
||||
pt: "Quando 1 dos seus Pokémon for Nocauteado pelo dano de um ataque dos Pokémon do seu oponente, você poderá mover uma Energia Lightning daquele Pokémon para este Pokémon.",
|
||||
de: "Wenn 1 deiner Pokémon durch Schaden einer Attacke von Pokémon deines Gegners kampfunfähig wird, kannst du 1 Lightning-Energie von jenem Pokémon auf dieses Pokémon verschieben."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning", "Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Thunder",
|
||||
fr: "Fatal-Foudre",
|
||||
es: "Trueno",
|
||||
it: "Tuono",
|
||||
pt: "Trovão",
|
||||
de: "Donner"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 50 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 50 dégâts.",
|
||||
es: "Este Pokémon también se hace 50 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 50 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 50 pontos de dano a si mesmo.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 50 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: 180
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Chinchou",
|
||||
fr: "Loupio",
|
||||
es: "Chinchou",
|
||||
it: "Chinchou",
|
||||
pt: "Chinchou",
|
||||
de: "Lampi"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Shine On",
|
||||
fr: "Brillance",
|
||||
es: "Brilla que te Brilla",
|
||||
it: "Fotòforo",
|
||||
pt: "Iluminar",
|
||||
de: "Ans Licht bringen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Look at the top card of your deck. You may put that card on the bottom of your deck.",
|
||||
fr: "Regardez la carte du dessus de votre deck. Vous pouvez placer cette carte en dessous de votre deck.",
|
||||
es: "Mira la primera carta de tu baraja. Puedes poner esa carta en la parte inferior de tu baraja.",
|
||||
it: "Guarda la prima carta del tuo mazzo. Puoi mettere quella carta in fondo al tuo mazzo.",
|
||||
pt: "Olhe a carta de cima do seu baralho. Você pode colocar aquela carta como a carta de baixo do seu baralho.",
|
||||
de: "Schau dir die oberste Karte deines Decks an. Du kannst jene Karte unter dein Deck legen."
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Tiny Charge",
|
||||
fr: "Décharge Mineure",
|
||||
es: "Carga Diminuta",
|
||||
it: "Sottocarica Minuscola",
|
||||
pt: "Carga Pequenina",
|
||||
de: "Mini-Stromstoß"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,63 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lanturn",
|
||||
fr: "Lanturn",
|
||||
es: "Lanturn",
|
||||
it: "Lanturn",
|
||||
pt: "Lanturn",
|
||||
de: "Lanturn"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Lightning Ball",
|
||||
fr: "Boule Éclair",
|
||||
es: "Bola Relámpago",
|
||||
it: "Fulminpalla",
|
||||
pt: "Bola de Raios",
|
||||
de: "Kugelblitz"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Aqua Spark",
|
||||
fr: "Aqua-Étincelle",
|
||||
es: "Chispa Aqua",
|
||||
it: "Acquascintilla",
|
||||
pt: "Faísca de Água",
|
||||
de: "Aquafunke"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has any Water Energy attached, this attack does 120 more damage.",
|
||||
fr: "Si au moins une Énergie Water est attachée à ce Pokémon, cette attaque inflige 120 dégâts supplémentaires.",
|
||||
es: "Si este Pokémon tiene alguna Energía Water unida, este ataque hace 120 puntos de daño más.",
|
||||
it: "Se questo Pokémon ha delle Energie Water assegnate, questo attacco infligge 120 danni in più.",
|
||||
pt: "Se este Pokémon tiver alguma Energia Water ligada a ele, este ataque causará 120 pontos de dano a mais.",
|
||||
de: "Wenn an dieses Pokémon mindestens 1 Water-Energie angelegt ist, fügt diese Attacke 120 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "80+"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Kilowattrel",
|
||||
fr: "Fulgulairo",
|
||||
es: "Kilowattrel",
|
||||
it: "Kilowattrel",
|
||||
pt: "Kilowattrel",
|
||||
de: "Voltrean"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "United Thunder",
|
||||
fr: "Tonnerre Uni",
|
||||
es: "Truenos Unidos",
|
||||
it: "Tuono Unito",
|
||||
pt: "União de Trovões",
|
||||
de: "Vereinter Donner"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 10 damage for each Pokémon in your discard pile that has the United Wings attack to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige 10 dégâts à l'un des Pokémon de Banc de votre adversaire pour chaque Pokémon dans votre pile de défausse ayant l'attaque Ailes Unies. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
es: "Este ataque hace 10 puntos de daño a uno de los Pokémon en Banca de tu rival por cada Pokémon en tu pila de descartes que tenga el ataque Alas Unidas. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||
it: "Questo attacco infligge 10 danni a uno dei Pokémon nella panchina del tuo avversario per ogni Pokémon nella tua pila degli scarti che ha l'attacco Ali Unite. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||
pt: "Este ataque causa 10 pontos de dano para cada Pokémon na sua pilha de descarte que tiver o ataque União Alada a 1 dos Pokémon no Banco do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)",
|
||||
de: "Diese Attacke fügt 1 Pokémon auf der Bank deines Gegners 10 Schadenspunkte für jedes Pokémon in deinem Ablagestapel, das die Attacke Vereinte Schwingen hat, zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Speed Wing",
|
||||
fr: "Ailes Vives",
|
||||
es: "Ala Veloz",
|
||||
it: "Alaveloce",
|
||||
pt: "Asa da Velocidade",
|
||||
de: "Turboschwinge"
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Exeggcute",
|
||||
fr: "Noeunoeuf",
|
||||
es: "Exeggcute",
|
||||
it: "Exeggcute",
|
||||
pt: "Exeggcute",
|
||||
de: "Owei"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Hypnosis",
|
||||
fr: "Hypnose",
|
||||
es: "Hipnosis",
|
||||
it: "Ipnosi",
|
||||
pt: "Hipnose",
|
||||
de: "Hypnose"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||||
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rolling Tackle",
|
||||
fr: "Roulé-Boulé",
|
||||
es: "Placaje Giro",
|
||||
it: "Rollazione",
|
||||
pt: "Golpe de Colisão Rolante",
|
||||
de: "Rolltackle"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Exeggutor",
|
||||
fr: "Noadkoko",
|
||||
es: "Exeggutor",
|
||||
it: "Exeggutor",
|
||||
pt: "Exeggutor",
|
||||
de: "Kokowei"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Hypnoblast",
|
||||
fr: "Hypnoblast",
|
||||
es: "Hipnorrayo",
|
||||
it: "Ipnobomba",
|
||||
pt: "Borrifada Hipnótica",
|
||||
de: "Hypnoschuss"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||||
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Psychic Loop",
|
||||
fr: "Boucle Psy",
|
||||
es: "Bucle Psíquico",
|
||||
it: "Circuito Psichico",
|
||||
pt: "Loop Psíquico",
|
||||
de: "Psychoschleife"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Put 2 Energy attached to this Pokémon into your hand.",
|
||||
fr: "Ajoutez à votre main 2 Énergies attachées à ce Pokémon.",
|
||||
es: "Pon 2 Energías unidas a este Pokémon en tu mano.",
|
||||
it: "Prendi due Energie assegnate a questo Pokémon e aggiungile alle carte che hai in mano.",
|
||||
pt: "Coloque 2 Energias ligadas a este Pokémon na sua mão.",
|
||||
de: "Nimm 2 an dieses Pokémon angelegte Energien auf deine Hand."
|
||||
},
|
||||
|
||||
damage: 160
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Natu",
|
||||
fr: "Natu",
|
||||
es: "Natu",
|
||||
it: "Natu",
|
||||
pt: "Natu",
|
||||
de: "Natu"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Triple Strike",
|
||||
fr: "Triple Frappe",
|
||||
es: "Triple Impacto",
|
||||
it: "Triplo Colpo",
|
||||
pt: "Golpe Triplo",
|
||||
de: "Dreifachstoß"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 10 damage for each heads.",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts pour chaque côté face.",
|
||||
es: "Lanza 3 monedas. Este ataque hace 10 puntos de daño por cada cara.",
|
||||
it: "Lancia tre volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.",
|
||||
pt: "Jogue 3 moedas. Este ataque causa 10 pontos de dano para cada cara.",
|
||||
de: "Wirf 3 Münzen. Diese Attacke fügt 10 Schadenspunkte pro Kopf zu."
|
||||
},
|
||||
|
||||
damage: "10×"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,63 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Xatu",
|
||||
fr: "Xatu",
|
||||
es: "Xatu",
|
||||
it: "Xatu",
|
||||
pt: "Xatu",
|
||||
de: "Xatu"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Clairvoyant Sense",
|
||||
fr: "Don de Clairvoyance",
|
||||
es: "Sentido Clarividente",
|
||||
it: "Senso Chiaroveggente",
|
||||
pt: "Sentido Clarividente",
|
||||
de: "Hellsichtiger Sinn"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may attach a Basic Psychic Energy card from your hand to 1 of your Benched Pokémon. If you attached Energy to a Pokémon in this way, draw 2 cards.",
|
||||
fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Psychic de base de votre main à l'un de vos Pokémon de Banc. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, piochez 2 cartes.",
|
||||
es: "Una vez durante tu turno, puedes unir 1 carta de Energía Psychic Básica de tu mano a uno de tus Pokémon en Banca. Si has unido Energía a un Pokémon de esta manera, roba 2 cartas.",
|
||||
it: "Una sola volta durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon in panchina una carta Energia base Psychic dalla tua mano. Se hai assegnato dell'Energia a un Pokémon in questo modo, pesca due carte.",
|
||||
pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Psychic Básica da sua mão a 1 dos seus Pokémon no Banco. Se você ligou Energia a um Pokémon desta forma, compre 2 cartas.",
|
||||
de: "Einmal während deines Zuges kannst du 1 Basis-Psychic-Energiekarte aus deiner Hand an 1 Pokémon auf deiner Bank anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, ziehe 2 Karten."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Super Psy Bolt",
|
||||
fr: "Super Psy",
|
||||
es: "Superrayo Psi",
|
||||
it: "Superpsico",
|
||||
pt: "Super-raio Psíquico",
|
||||
de: "Super-Psischlag"
|
||||
},
|
||||
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,41 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Ralts",
|
||||
fr: "Tarsal",
|
||||
es: "Ralts",
|
||||
it: "Ralts",
|
||||
pt: "Ralts",
|
||||
de: "Trasla"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Psyshot",
|
||||
fr: "Piqûre Psy",
|
||||
es: "Disparo Psi",
|
||||
it: "Psicosparo",
|
||||
pt: "Tiro Psíquico",
|
||||
de: "Psychoschuss"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,63 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Kirlia",
|
||||
fr: "Kirlia",
|
||||
es: "Kirlia",
|
||||
it: "Kirlia",
|
||||
pt: "Kirlia",
|
||||
de: "Kirlia"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Magical Shot",
|
||||
fr: "Coup Magique",
|
||||
es: "Disparo Mágico",
|
||||
it: "Magicolpo",
|
||||
pt: "Tiro Mágico",
|
||||
de: "Magischer Schuss"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Psychic",
|
||||
fr: "Psyko",
|
||||
es: "Psíquico",
|
||||
it: "Psichico",
|
||||
pt: "Psíquico",
|
||||
de: "Psychokinese"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon.",
|
||||
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
|
||||
es: "Este ataque hace 20 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
|
||||
it: "Questo attacco infligge 20 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
|
||||
pt: "Este ataque causa 20 pontos de dano a mais para cada Energia ligada ao Pokémon Ativo do seu oponente.",
|
||||
de: "Diese Attacke fügt für jede an das Aktive Pokémon deines Gegners angelegte Energie 20 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "60+"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gardevoir ex",
|
||||
fr: "Gardevoir-ex",
|
||||
es: "Gardevoir ex",
|
||||
it: "Gardevoir-ex",
|
||||
pt: "Gardevoir ex",
|
||||
de: "Guardevoir-ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 310,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Psychic Embrace",
|
||||
fr: "Enlacement Psy",
|
||||
es: "Abrazo Psíquico",
|
||||
it: "Psicoabbraccio",
|
||||
pt: "Abraço Psíquico",
|
||||
de: "Psycho-Umarmung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "As often as you like during your turn, you may attach a Basic Psychic Energy card from your discard pile to 1 of your Psychic Pokémon. If you attached Energy to a Pokémon in this way, put 2 damage counters on that Pokémon. You can't use this Ability on a Pokémon that would be Knocked Out.",
|
||||
fr: "Autant de fois que vous le voulez pendant votre tour, vous pouvez attacher une carte Énergie Psychic de base de votre pile de défausse à l'un de vos Pokémon Psychic. Si vous avez attaché une Énergie à un Pokémon de cette façon, placez 2 marqueurs de dégâts sur ce Pokémon-là. Vous ne pouvez pas utiliser ce talent si cela doit mettre K.O. ce Pokémon.",
|
||||
es: "Todas las veces que quieras durante tu turno, puedes unir 1 carta de Energía Psychic Básica de tu pila de descartes a uno de tus Pokémon Psychic. Si has unido Energía a un Pokémon de esta manera, pon 2 contadores de daño en ese Pokémon. No puedes usar esta habilidad en un Pokémon que fuese a quedar Fuera de Combate.",
|
||||
it: "Durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon Psychic una carta Energia base Psychic dalla tua pila degli scarti tutte le volte che vuoi. Se hai assegnato dell'Energia a un Pokémon in questo modo, metti due segnalini danno su quel Pokémon. Non puoi usare questa abilità su un Pokémon che verrebbe messo KO.",
|
||||
pt: "Quantas vezes desejar durante o seu turno, você poderá ligar uma carta de Energia Psychic Básica da sua pilha de descarte a 1 dos seus Pokémon Psychic. Se você ligou Energia a um Pokémon desta forma, coloque 2 contadores de dano naquele Pokémon. Você não pode usar esta Habilidade em um Pokémon que seria Nocauteado.",
|
||||
de: "Beliebig oft während deines Zuges kannst du 1 Basis-Psychic-Energiekarte aus deinem Ablagestapel an 1 deiner Psychic-Pokémon anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, lege 2 Schadensmarken auf jenes Pokémon. Du kannst diese Fähigkeit nicht bei einem Pokémon einsetzen, das kampfunfähig würde."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Miracle Force",
|
||||
fr: "Force Miracle",
|
||||
es: "Fuerza Milagrosa",
|
||||
it: "Forza Miracolosa",
|
||||
pt: "Força Milagrosa",
|
||||
de: "Wunderkraft"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon recovers from all Special Conditions.",
|
||||
fr: "Ce Pokémon guérit de tous les États Spéciaux.",
|
||||
es: "Este Pokémon se recupera de todas las Condiciones Especiales.",
|
||||
it: "Questo Pokémon guarisce da tutte le condizioni speciali.",
|
||||
pt: "Este Pokémon se recupera de todas as Condições Especiais.",
|
||||
de: "Dieses Pokémon erholt sich von allen Speziellen Zuständen."
|
||||
},
|
||||
|
||||
damage: 190
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Chimecho",
|
||||
fr: "Éoko",
|
||||
es: "Chimecho",
|
||||
it: "Chimecho",
|
||||
pt: "Chimecho",
|
||||
de: "Palimpalim"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Sleep Inducer",
|
||||
fr: "Poussododo",
|
||||
es: "Inductor de Sueño",
|
||||
it: "Induci-Sonno",
|
||||
pt: "Indutor de Sono",
|
||||
de: "Schlafeinflößer"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Switch in 1 of your opponent's Benched Pokémon to the Active Spot. The new Active Pokémon is now Asleep.",
|
||||
fr: "Envoyez l'un des Pokémon de Banc de votre adversaire sur le Poste Actif. Le nouveau Pokémon Actif est maintenant Endormi.",
|
||||
es: "Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo. El nuevo Pokémon Activo pasa a estar Dormido.",
|
||||
it: "Sostituisci uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon in posizione attiva. Il nuovo Pokémon attivo viene addormentato.",
|
||||
pt: "Mande 1 dos Pokémon no Banco do seu oponente para o Campo Ativo. O novo Pokémon Ativo agora está Adormecido.",
|
||||
de: "Wechsle 1 Pokémon von der Bank deines Gegners in die Aktive Position ein. Das neue Aktive Pokémon schläft jetzt."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Psyshot",
|
||||
fr: "Piqûre Psy",
|
||||
es: "Disparo Psi",
|
||||
it: "Psicosparo",
|
||||
pt: "Tiro Psíquico",
|
||||
de: "Psychoschuss"
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,46 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mime Jr.",
|
||||
fr: "Mime Jr.",
|
||||
es: "Mime Jr.",
|
||||
it: "Mime Jr.",
|
||||
pt: "Mime Jr.",
|
||||
de: "Pantimimi"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 30,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Mimed Games",
|
||||
fr: "Jeux Mimés",
|
||||
es: "Juegos Mímicos",
|
||||
it: "Giochi Mimici",
|
||||
pt: "Jogos Miméticos",
|
||||
de: "Mimenspiele"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent chooses an attack from 1 of their Pokémon in play. Use the chosen attack as this attack.",
|
||||
fr: "Votre adversaire choisit une attaque de l'un de ses Pokémon en jeu. Utilisez l'attaque choisie en tant que cette attaque.",
|
||||
es: "Tu rival elige un ataque de uno de sus Pokémon en juego. Usa el ataque elegido para este ataque.",
|
||||
it: "Il tuo avversario sceglie un attacco di uno dei suoi Pokémon in gioco. Usalo al posto di questo attacco.",
|
||||
pt: "Seu oponente escolhe um ataque de 1 dos Pokémon dele em jogo. Use o ataque escolhido como este ataque.",
|
||||
de: "Dein Gegner wählt 1 Attacke von 1 seiner Pokémon im Spiel. Setze die gewählte Attacke als diese Attacke ein."
|
||||
}
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Woobat",
|
||||
fr: "Chovsourir",
|
||||
es: "Woobat",
|
||||
it: "Woobat",
|
||||
pt: "Woobat",
|
||||
de: "Fleknoil"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Reckless Charge",
|
||||
fr: "Attaque Imprudente",
|
||||
es: "Carga Descuidada",
|
||||
it: "Carica Avventata",
|
||||
pt: "Carga Indomável",
|
||||
de: "Waghalsiger Sturmangriff"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 10 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 10 dégâts.",
|
||||
es: "Este Pokémon también se hace 10 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 10 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 10 pontos de dano a si mesmo.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 10 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Swoobat",
|
||||
fr: "Rhinolove",
|
||||
es: "Swoobat",
|
||||
it: "Swoobat",
|
||||
pt: "Swoobat",
|
||||
de: "Fletiamo"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Attraction Wave",
|
||||
fr: "Onde Attirante",
|
||||
es: "Onda Atracción",
|
||||
it: "Fascinonda",
|
||||
pt: "Onda de Atração",
|
||||
de: "Anziehungswelle"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Confused. Put 6 damage counters instead of 3 on that Pokémon for this Special Condition.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus. Placez 6 marqueurs de dégâts au lieu de 3 sur ce Pokémon-là pour cet État Spécial.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Confundido. Pon 6 contadores de daño en vez de 3 en ese Pokémon por esta Condición Especial.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene confuso. Metti sei segnalini danno invece di tre su quel Pokémon per effetto di questa condizione speciale.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Confuso. Coloque 6 contadores de dano ao invés de 3 naquele Pokémon para esta Condição Especial.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt. Lege für diesen Speziellen Zustand 6 Schadensmarken anstelle von 3 Schadensmarken auf jenes Pokémon."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cottonee",
|
||||
fr: "Doudouvet",
|
||||
es: "Cottonee",
|
||||
it: "Cottonee",
|
||||
pt: "Cottonee",
|
||||
de: "Waumboll"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Fickle Attack",
|
||||
fr: "Attaque Inconstante",
|
||||
es: "Ataque Impredecible",
|
||||
it: "Attacco Bislacco",
|
||||
pt: "Ataque Errático",
|
||||
de: "Launischer Angriff"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||||
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
||||
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
||||
pt: "Jogue uma moeda. Se sair coroa, este ataque não fará nada.",
|
||||
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,41 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Whimsicott",
|
||||
fr: "Farfaduvet",
|
||||
es: "Whimsicott",
|
||||
it: "Whimsicott",
|
||||
pt: "Whimsicott",
|
||||
de: "Elfun"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Fairy Wind",
|
||||
fr: "Vent Féérique",
|
||||
es: "Viento Feérico",
|
||||
it: "Vento di Fata",
|
||||
pt: "Vento de Fada",
|
||||
de: "Feenbrise"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,70 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dedenne",
|
||||
fr: "Dedenne",
|
||||
es: "Dedenne",
|
||||
it: "Dedenne",
|
||||
pt: "Dedenne",
|
||||
de: "Dedenne"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Minor Errand-Running",
|
||||
fr: "Rendez-Vous Mineur",
|
||||
es: "Recado Menor",
|
||||
it: "Lavoretto Rapido",
|
||||
pt: "Pequena Missão",
|
||||
de: "Kleine Besorgung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for up to 2 Basic Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja hasta 2 cartas de Energía Básica, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo fino a due carte Energia base, mostrale e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por até 2 cartas de Energia Básica no seu baralho, revele-as e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Spin Turn",
|
||||
fr: "Tournoyer",
|
||||
es: "Giro y Vuelta",
|
||||
it: "Girotondo",
|
||||
pt: "Volta Giratória",
|
||||
de: "Absatzdreher"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc.",
|
||||
es: "Cambia este Pokémon por uno de tus Pokémon en Banca.",
|
||||
it: "Scambia questo Pokémon con uno della tua panchina.",
|
||||
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco.",
|
||||
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,70 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mimikyu",
|
||||
fr: "Mimiqui",
|
||||
es: "Mimikyu",
|
||||
it: "Mimikyu",
|
||||
pt: "Mimikyu",
|
||||
de: "Mimigma"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Safeguard",
|
||||
fr: "Rune Protect",
|
||||
es: "Velo Sagrado",
|
||||
it: "Salvaguardia",
|
||||
pt: "Salvaguarda",
|
||||
de: "Bodyguard"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Prevent all damage done to this Pokémon by attacks from your opponent's Pokémon ex and Pokémon V.",
|
||||
fr: "Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon-ex et des Pokémon-V de votre adversaire.",
|
||||
es: "Se evita todo el daño infligido a este Pokémon por ataques de los Pokémon ex y Pokémon V de tu rival.",
|
||||
it: "Previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon-ex e dei Pokémon-V del tuo avversario.",
|
||||
pt: "Previna todo o dano causado a este Pokémon por ataques dos Pokémon ex e Pokémon V do seu oponente.",
|
||||
de: "Verhindere allen Schaden, der diesem Pokémon durch Attacken von Pokémon-ex und Pokémon-V deines Gegners zugefügt wird."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ghost Eye",
|
||||
fr: "Œil Fantôme",
|
||||
es: "Ojo Fantasmal",
|
||||
it: "Sguardo Spettrale",
|
||||
pt: "Olhar Fantasma",
|
||||
de: "Geisterauge"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Put 7 damage counters on your opponent's Active Pokémon.",
|
||||
fr: "Placez 7 marqueurs de dégâts sur le Pokémon Actif de votre adversaire.",
|
||||
es: "Pon 7 contadores de daño en el Pokémon Activo de tu rival.",
|
||||
it: "Metti sette segnalini danno sul Pokémon attivo del tuo avversario.",
|
||||
pt: "Coloque 7 contadores de dano no Pokémon Ativo do seu oponente.",
|
||||
de: "Lege 7 Schadensmarken auf das Aktive Pokémon deines Gegners."
|
||||
}
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,41 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Fidough",
|
||||
fr: "Pâtachiot",
|
||||
es: "Fidough",
|
||||
it: "Fidough",
|
||||
pt: "Fidough",
|
||||
de: "Hefel"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rear Kick",
|
||||
fr: "Ruade",
|
||||
es: "Patada Trasera",
|
||||
it: "Retrocalcio",
|
||||
pt: "Chute Traseiro",
|
||||
de: "Rückwärtskick"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,63 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dachsbun",
|
||||
fr: "Briochien",
|
||||
es: "Dachsbun",
|
||||
it: "Dachsbun",
|
||||
pt: "Dachsbun",
|
||||
de: "Backel"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Well-Baked Body",
|
||||
fr: "Bien Cuit",
|
||||
es: "Cuerpo Horneado",
|
||||
it: "Bentostato",
|
||||
pt: "Corpo Bem-passado",
|
||||
de: "Knusperkruste"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon can't be Burned. Prevent all damage done to this Pokémon by attacks from your opponent's Fire Pokémon.",
|
||||
fr: "Ce Pokémon ne peut pas être Brûlé. Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon Fire de votre adversaire.",
|
||||
es: "Este Pokémon no puede pasar a estar Quemado. Se evita todo el daño infligido a este Pokémon por ataques de los Pokémon Fire de tu rival.",
|
||||
it: "Questo Pokémon non può venire bruciato. Previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Fire del tuo avversario.",
|
||||
pt: "Este Pokémon não pode ser Queimado. Previna todo o dano causado a este Pokémon por ataques dos Pokémon Fire do seu oponente.",
|
||||
de: "Dieses Pokémon kann nicht verbrannt werden. Verhindere allen Schaden, der diesem Pokémon durch Attacken von Fire-Pokémon deines Gegners zugefügt wird."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Headbutt Bounce",
|
||||
fr: "Culbute Surprise",
|
||||
es: "Bote Cabezazo",
|
||||
it: "Rimbalzo Bottintesta",
|
||||
pt: "Cabeçada Ricochete",
|
||||
de: "Abrupter Kopfstoß"
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Ceruledge",
|
||||
fr: "Malvalame",
|
||||
es: "Ceruledge",
|
||||
it: "Ceruledge",
|
||||
pt: "Ceruledge",
|
||||
de: "Azugladis"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Life Sucker",
|
||||
fr: "Aspire-Vie",
|
||||
es: "Sorbevidas",
|
||||
it: "Aspiravita",
|
||||
pt: "Sugador de Vida",
|
||||
de: "Lebenssauger"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
fr: "Soignez 30 dégâts de ce Pokémon.",
|
||||
es: "Cura 30 puntos de daño a este Pokémon.",
|
||||
it: "Cura questo Pokémon da 30 danni.",
|
||||
pt: "Cure 30 pontos de dano deste Pokémon.",
|
||||
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Fighting Sword",
|
||||
fr: "Épée Combattante",
|
||||
es: "Espada Combativa",
|
||||
it: "Spada Combattente",
|
||||
pt: "Espada de Combate",
|
||||
de: "Kampfschwert"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is a Pokémon ex or Pokémon V, this attack does 100 more damage.",
|
||||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex ou un Pokémon-V, cette attaque inflige 100 dégâts supplémentaires.",
|
||||
es: "Si el Pokémon Activo de tu rival es un Pokémon ex o un Pokémon V, este ataque hace 100 puntos de daño más.",
|
||||
it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex o un Pokémon-V, questo attacco infligge 100 danni in più.",
|
||||
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex ou um Pokémon V, este ataque causará 100 pontos de dano a mais.",
|
||||
de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex oder Pokémon-V ist, fügt diese Attacke 100 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "100+"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Flittle",
|
||||
fr: "Flotillon",
|
||||
es: "Flittle",
|
||||
it: "Flittle",
|
||||
pt: "Flittle",
|
||||
de: "Flattutu"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 30,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Psy Bolt",
|
||||
fr: "Choc Mental",
|
||||
es: "Rayo Psi",
|
||||
it: "Psico",
|
||||
pt: "Raio Psíquico",
|
||||
de: "Mentale Blockade"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente agora estará Paralisado.",
|
||||
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Greavard",
|
||||
fr: "Toutombe",
|
||||
es: "Greavard",
|
||||
it: "Greavard",
|
||||
pt: "Greavard",
|
||||
de: "Gruff"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Graveyard Gamboling",
|
||||
fr: "Cabriole Funèbre",
|
||||
es: "Jugueteo en el Cementerio",
|
||||
it: "Saltellacimitero",
|
||||
pt: "Cambalhotas no Cemitério",
|
||||
de: "Grufttollerei"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 10 damage for each Psychic Pokémon in your discard pile.",
|
||||
fr: "Cette attaque inflige 10 dégâts pour chaque Pokémon Psychic dans votre pile de défausse.",
|
||||
es: "Este ataque hace 10 puntos de daño por cada Pokémon Psychic en tu pila de descartes.",
|
||||
it: "Questo attacco infligge 10 danni per ogni Pokémon Psychic nella tua pila degli scarti.",
|
||||
pt: "Este ataque causa 10 pontos de dano para cada Pokémon Psychic na sua pilha de descarte.",
|
||||
de: "Diese Attacke fügt für jedes Psychic-Pokémon in deinem Ablagestapel 10 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: "10×"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Houndstone",
|
||||
fr: "Tomberro",
|
||||
es: "Houndstone",
|
||||
it: "Houndstone",
|
||||
pt: "Houndstone",
|
||||
de: "Friedwuff"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Last Respects",
|
||||
fr: "Hommage Posthume",
|
||||
es: "Homenaje Póstumo",
|
||||
it: "Omaggio ai KO",
|
||||
pt: "Último Adeus",
|
||||
de: "Letzte Ehre"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 10 more damage for each Psychic Pokémon in your discard pile.",
|
||||
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque Pokémon Psychic dans votre pile de défausse.",
|
||||
es: "Este ataque hace 10 puntos de daño más por cada Pokémon Psychic en tu pila de descartes.",
|
||||
it: "Questo attacco infligge 10 danni in più per ogni Pokémon Psychic nella tua pila degli scarti.",
|
||||
pt: "Este ataque causa 10 pontos de dano a mais para cada Pokémon Psychic na sua pilha de descarte.",
|
||||
de: "Diese Attacke fügt für jedes Psychic-Pokémon in deinem Ablagestapel 10 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "80+"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gimmighoul",
|
||||
fr: "Mordudor",
|
||||
es: "Gimmighoul",
|
||||
it: "Gimmighoul",
|
||||
pt: "Gimmighoul",
|
||||
de: "Gierspenst"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Chest-ouflage",
|
||||
fr: "Coffrouflage",
|
||||
es: "Encofrarse",
|
||||
it: "Camufforziere",
|
||||
pt: "Baú-muflagem",
|
||||
de: "Truhentarnung"
|
||||
},
|
||||
|
||||
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.",
|
||||
fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, évitez tous les dégâts et les effets d'attaques infligés à ce Pokémon.",
|
||||
es: "Lanza 1 moneda. Si sale cara, durante el próximo turno de tu rival, se evitan todo el daño y todos los efectos de los ataques infligidos a este Pokémon.",
|
||||
it: "Lancia una moneta. Se esce testa, durante il prossimo turno del tuo avversario, previeni sia i danni che gli effetti degli attacchi inflitti a questo Pokémon.",
|
||||
pt: "Jogue uma moeda. Se sair cara, durante o próximo turno do seu oponente, previna todo o dano e os efeitos de ataques causados a este Pokémon.",
|
||||
de: "Wirf 1 Münze. Verhindere bei Kopf während des nächsten Zuges deines Gegners allen Schaden durch und alle Effekte von Attacken, die diesem Pokémon zugefügt werden."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
es: "Apisonar",
|
||||
it: "Carica",
|
||||
pt: "Aríete",
|
||||
de: "Ramme"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mankey",
|
||||
fr: "Férosinge",
|
||||
es: "Mankey",
|
||||
it: "Mankey",
|
||||
pt: "Mankey",
|
||||
de: "Menki"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Monkey Beatdown",
|
||||
fr: "Raclée Simiesque",
|
||||
es: "Golpe Macaco",
|
||||
it: "Batosta della Scimmia",
|
||||
pt: "Pancada Primata",
|
||||
de: "Affenprügel"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 10 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 10 dégâts.",
|
||||
es: "Este Pokémon también se hace 10 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 10 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 10 pontos de dano a si mesmo.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 10 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Primeape",
|
||||
fr: "Colossinge",
|
||||
es: "Primeape",
|
||||
it: "Primeape",
|
||||
pt: "Primeape",
|
||||
de: "Rasaff"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Raging Punch",
|
||||
fr: "Coup de Poing Furieux",
|
||||
es: "Puño Furioso",
|
||||
it: "Furiapugno",
|
||||
pt: "Soco Feroz",
|
||||
de: "Wuthaken"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 20 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 20 dégâts.",
|
||||
es: "Este Pokémon también se hace 20 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 20 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 20 pontos de dano a si mesmo.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 20 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Annihilape",
|
||||
fr: "Courrousinge",
|
||||
es: "Annihilape",
|
||||
it: "Annihilape",
|
||||
pt: "Annihilape",
|
||||
de: "Epitaff"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Rage Fist",
|
||||
fr: "Poing de Colère",
|
||||
es: "Puño Furia",
|
||||
it: "Pugno Furibondo",
|
||||
pt: "Punho Feroz",
|
||||
de: "Zornesfaust"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 70 damage for each Prize card your opponent has taken.",
|
||||
fr: "Cette attaque inflige 70 dégâts pour chaque carte Récompense que votre adversaire a récupérée.",
|
||||
es: "Este ataque hace 70 puntos de daño por cada carta de Premio que haya cogido tu rival.",
|
||||
it: "Questo attacco infligge 70 danni per ogni carta Premio presa dal tuo avversario.",
|
||||
pt: "Este ataque causa 70 pontos de dano para cada carta de Prêmio que seu oponente pegou.",
|
||||
de: "Diese Attacke fügt für jede von deinem Gegner genommene Preiskarte 70 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: "70×"
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Dynamite Punch",
|
||||
fr: "Poing Dynamite",
|
||||
es: "Puño Dinamita",
|
||||
it: "Pugno Dinamite",
|
||||
pt: "Soco Dinamite",
|
||||
de: "Dynamitstoß"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 50 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 50 dégâts.",
|
||||
es: "Este Pokémon también se hace 50 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 50 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 50 pontos de dano a si mesmo.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 50 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: 170
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,54 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Phanpy",
|
||||
fr: "Phanpy",
|
||||
es: "Phanpy",
|
||||
it: "Phanpy",
|
||||
pt: "Phanpy",
|
||||
de: "Phanpy"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Strength",
|
||||
fr: "Force",
|
||||
es: "Fuerza",
|
||||
it: "Forza",
|
||||
pt: "Força",
|
||||
de: "Stärke"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rolling Tackle",
|
||||
fr: "Roulé-Boulé",
|
||||
es: "Placaje Giro",
|
||||
it: "Rollazione",
|
||||
pt: "Golpe de Colisão Rolante",
|
||||
de: "Rolltackle"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Donphan",
|
||||
fr: "Donphan",
|
||||
es: "Donphan",
|
||||
it: "Donphan",
|
||||
pt: "Donphan",
|
||||
de: "Donphan"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Cragalanche",
|
||||
fr: "Lapidalanche",
|
||||
es: "Rocalud",
|
||||
it: "Valanghiaia",
|
||||
pt: "Rochavalanche",
|
||||
de: "Grolllawine"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard the top 2 cards of your opponent's deck.",
|
||||
fr: "Défaussez les 2 cartes du dessus du deck de votre adversaire.",
|
||||
es: "Descarta las 2 primeras cartas de la baraja de tu rival.",
|
||||
it: "Scarta le prime due carte del mazzo del tuo avversario.",
|
||||
pt: "Descarte as 2 cartas de cima do baralho do seu oponente.",
|
||||
de: "Lege die obersten 2 Karten des Decks deines Gegners auf seinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Powerful Spin",
|
||||
fr: "Pirouette Puissante",
|
||||
es: "Supergiro",
|
||||
it: "Supergiro",
|
||||
pt: "Pirueta Potente",
|
||||
de: "Mächtiger Wirbler"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can't attack.",
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
||||
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
||||
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
||||
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
||||
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
||||
},
|
||||
|
||||
damage: 160
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Barboach",
|
||||
fr: "Barloche",
|
||||
es: "Barboach",
|
||||
it: "Barboach",
|
||||
pt: "Barboach",
|
||||
de: "Schmerbe"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Hide",
|
||||
fr: "Cachette",
|
||||
es: "Ocultarse",
|
||||
it: "Nascondino",
|
||||
pt: "Esconder",
|
||||
de: "Verstecken"
|
||||
},
|
||||
|
||||
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.",
|
||||
fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, évitez tous les dégâts et les effets d'attaques infligés à ce Pokémon.",
|
||||
es: "Lanza 1 moneda. Si sale cara, durante el próximo turno de tu rival, se evitan todo el daño y todos los efectos de los ataques infligidos a este Pokémon.",
|
||||
it: "Lancia una moneta. Se esce testa, durante il prossimo turno del tuo avversario, previeni sia i danni che gli effetti degli attacchi inflitti a questo Pokémon.",
|
||||
pt: "Jogue uma moeda. Se sair cara, durante o próximo turno do seu oponente, previna todo o dano e os efeitos de ataques causados a este Pokémon.",
|
||||
de: "Wirf 1 Münze. Verhindere bei Kopf während des nächsten Zuges deines Gegners allen Schaden durch und alle Effekte von Attacken, die diesem Pokémon zugefügt werden."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Mud-Slap",
|
||||
fr: "Coud'Boue",
|
||||
es: "Bofetón Lodo",
|
||||
it: "Fangosberla",
|
||||
pt: "Tapa de Lama",
|
||||
de: "Lehmschelle"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Clobbopus",
|
||||
fr: "Poulpaf",
|
||||
es: "Clobbopus",
|
||||
it: "Clobbopus",
|
||||
pt: "Clobbopus",
|
||||
de: "Klopptopus"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Feint",
|
||||
fr: "Ruse",
|
||||
es: "Amago",
|
||||
it: "Fintoattacco",
|
||||
pt: "Fintar",
|
||||
de: "Offenlegung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack's damage isn't affected by Resistance.",
|
||||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
|
||||
es: "El daño de este ataque no se ve afectado por Resistencia.",
|
||||
it: "I danni di questo attacco non sono influenzati dalla resistenza.",
|
||||
pt: "O dano deste ataque não é afetado por Resistência.",
|
||||
de: "Der Schaden dieser Attacke wird durch Resistenz nicht verändert."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,63 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Grapploct",
|
||||
fr: "Krakos",
|
||||
es: "Grapploct",
|
||||
it: "Grapploct",
|
||||
pt: "Grapploct",
|
||||
de: "Kaocto"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Slow-Acting Syncope",
|
||||
fr: "Syncope à Retardement",
|
||||
es: "Síncope de Acción Lenta",
|
||||
it: "Sincope Differita",
|
||||
pt: "Síncope a Conta-gotas",
|
||||
de: "Schleichende Ohnmacht"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "At the end of your opponent's next turn, the Defending Pokémon will be Knocked Out.",
|
||||
fr: "À la fin du prochain tour de votre adversaire, le Pokémon Défenseur sera mis K.O.",
|
||||
es: "Al final del próximo turno de tu rival, el Pokémon Defensor quedará Fuera de Combate.",
|
||||
it: "Alla fine del prossimo turno del tuo avversario, il Pokémon difensore verrà messo KO.",
|
||||
pt: "No final do próximo turno do seu oponente, o Pokémon Defensor será Nocauteado.",
|
||||
de: "Am Ende des nächsten Zuges deines Gegners wird das Verteidigende Pokémon kampfunfähig."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Mach Cross",
|
||||
fr: "Passage Éclair",
|
||||
es: "Puñetazo Mach",
|
||||
it: "Incromach",
|
||||
pt: "Cruzado Veloz",
|
||||
de: "Tempo-Cross"
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Great Tusk ex",
|
||||
fr: "Fort-Ivoire-ex",
|
||||
es: "Colmilargo ex",
|
||||
it: "Grandizanne-ex",
|
||||
pt: "Presa Grande ex",
|
||||
de: "Riesenzahn-ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 250,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Quaking Demolition",
|
||||
fr: "Démolition Sismique",
|
||||
es: "Demolición Sísmica",
|
||||
it: "Demolizione Tellurica",
|
||||
pt: "Demolição Tremor",
|
||||
de: "Bebende Zerstörung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once at the end of your turn (after your attack), if this Pokémon is in the Active Spot, you must discard the top 5 cards of your deck.",
|
||||
fr: "Une fois à la fin de votre tour (après votre attaque), si ce Pokémon est sur le Poste Actif, vous devez défausser les 5 cartes du dessus de votre deck.",
|
||||
es: "Una vez al final de tu turno (después de tu ataque), si este Pokémon está en el Puesto Activo, debes descartar las 5 primeras cartas de tu baraja.",
|
||||
it: "Una sola volta alla fine del tuo turno, dopo il tuo attacco, se questo Pokémon è in posizione attiva, devi scartare le prime cinque carte del tuo mazzo.",
|
||||
pt: "Uma vez no final do seu turno (depois do seu ataque), se este Pokémon estiver no Campo Ativo, você deverá descartar as 5 cartas de cima do seu baralho.",
|
||||
de: "Einmal am Ende deines Zuges (nachdem du angegriffen hast), wenn dieses Pokémon in der Aktiven Position ist, musst du die obersten 5 Karten deines Decks auf deinen Ablagestapel legen."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Great Bash",
|
||||
fr: "Grand Coup",
|
||||
es: "Golpe y Porrazo",
|
||||
it: "Granbotta",
|
||||
pt: "Pancada Grande",
|
||||
de: "Grandioser Stoß"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon.",
|
||||
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.",
|
||||
es: "El daño de este ataque no se ve afectado por ningún efecto en el Pokémon Activo de tu rival.",
|
||||
it: "I danni di questo attacco non sono influenzati da alcun effetto presente sul Pokémon attivo del tuo avversario.",
|
||||
pt: "O dano deste ataque não é afetado por quaisquer efeitos no Pokémon Ativo do seu oponente.",
|
||||
de: "Der Schaden dieser Attacke wird durch Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert."
|
||||
},
|
||||
|
||||
damage: 260
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Charizard ex",
|
||||
fr: "Dracaufeu-ex",
|
||||
es: "Charizard ex",
|
||||
it: "Charizard-ex",
|
||||
pt: "Charizard ex",
|
||||
de: "Glurak-ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 330,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Infernal Reign",
|
||||
fr: "Règne Infernal",
|
||||
es: "Reino Infernal",
|
||||
it: "Regno Infernale",
|
||||
pt: "Reino Infernal",
|
||||
de: "Infernalische Herrschaft"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may search your deck for up to 3 Basic Fire Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.",
|
||||
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez chercher dans votre deck jusqu'à 3 cartes Énergie Fire de base et les attacher à vos Pokémon comme il vous plaît. Mélangez ensuite votre deck.",
|
||||
es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes buscar en tu baraja hasta 3 cartas de Energía Fire Básica y unirlas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja.",
|
||||
it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi cercare nel tuo mazzo fino a tre carte Energia base Fire e assegnarle ai tuoi Pokémon nel modo che preferisci. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá procurar por até 3 cartas de Energia Fire Básica no seu baralho e ligá-las aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du dein Deck nach bis zu 3 Basis-Fire-Energiekarten durchsuchen und sie beliebig an deine Pokémon anlegen. Mische anschließend dein Deck."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Fire"],
|
||||
|
||||
name: {
|
||||
en: "Burning Darkness",
|
||||
fr: "Obscurité Brûlante",
|
||||
es: "Oscuridad Ardiente",
|
||||
it: "Oscurità Infuocata",
|
||||
pt: "Escuridão Ardente",
|
||||
de: "Brennende Finsternis"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 30 more damage for each Prize card your opponent has taken.",
|
||||
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récupérée.",
|
||||
es: "Este ataque hace 30 puntos de daño más por cada carta de Premio que haya cogido tu rival.",
|
||||
it: "Questo attacco infligge 30 danni in più per ogni carta Premio presa dal tuo avversario.",
|
||||
pt: "Este ataque causa 30 pontos de dano a mais para cada carta de Prêmio que seu oponente pegou.",
|
||||
de: "Diese Attacke fügt für jede von deinem Gegner genommene Preiskarte 30 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "180+"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gastly",
|
||||
fr: "Fantominus",
|
||||
es: "Gastly",
|
||||
it: "Gastly",
|
||||
pt: "Gastly",
|
||||
de: "Nebulak"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Allure",
|
||||
fr: "Allure",
|
||||
es: "Atractivo",
|
||||
it: "Affascinante",
|
||||
pt: "Fascinar",
|
||||
de: "Verlockung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
es: "Roba 1 carta.",
|
||||
it: "Pesca una carta.",
|
||||
pt: "Compre uma carta.",
|
||||
de: "Ziehe 1 Karte."
|
||||
}
|
||||
}, {
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Will-O-Wisp",
|
||||
fr: "Feu Follet",
|
||||
es: "Fuego Fatuo",
|
||||
it: "Fuocofatuo",
|
||||
pt: "Fogo Fátuo",
|
||||
de: "Irrlicht"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,50 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Haunter",
|
||||
fr: "Spectrum",
|
||||
es: "Haunter",
|
||||
it: "Haunter",
|
||||
pt: "Haunter",
|
||||
de: "Alpollo"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Dark Slumber",
|
||||
fr: "Sommeil Obscur",
|
||||
es: "Letargo Oscuro",
|
||||
it: "Sonno Oscuro",
|
||||
pt: "Sono Sombrio",
|
||||
de: "Dunkler Schlummer"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||||
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gengar",
|
||||
fr: "Ectoplasma",
|
||||
es: "Gengar",
|
||||
it: "Gengar",
|
||||
pt: "Gengar",
|
||||
de: "Gengar"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Night Gate",
|
||||
fr: "Portail Nocturne",
|
||||
es: "Portal Nocturno",
|
||||
it: "Portale Notturno",
|
||||
pt: "Portão Noturno",
|
||||
de: "Nachtpforte"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may switch your Active Pokémon with 1 of your Benched Pokémon.",
|
||||
fr: "Une fois pendant votre tour, vous pouvez échanger votre Pokémon Actif contre l'un de vos Pokémon de Banc.",
|
||||
es: "Una vez durante tu turno, puedes cambiar tu Pokémon Activo por uno de tus Pokémon en Banca.",
|
||||
it: "Una sola volta durante il tuo turno, puoi scambiare il tuo Pokémon attivo con uno della tua panchina.",
|
||||
pt: "Uma vez durante o seu turno, você poderá trocar o seu Pokémon Ativo por 1 dos seus Pokémon no Banco.",
|
||||
de: "Einmal während deines Zuges kannst du dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank austauschen."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Nightmare",
|
||||
fr: "Cauchemar",
|
||||
es: "Pesadilla",
|
||||
it: "Incubo",
|
||||
pt: "Pesadelo",
|
||||
de: "Nachtmahr"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||||
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,61 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Paldean Wooper",
|
||||
fr: "Axoloto de Paldea",
|
||||
es: "Wooper de Paldea",
|
||||
it: "Wooper di Paldea",
|
||||
pt: "Wooper de Paldea",
|
||||
de: "Paldea-Felino"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Find a Home",
|
||||
fr: "Recherche de Foyer",
|
||||
es: "Buscar un Hogar",
|
||||
it: "Trovadimora",
|
||||
pt: "Encontrar um Lar",
|
||||
de: "Finde ein Zuhause"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for a Stadium card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck une carte Stade, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja 1 carta de Estadio, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo una carta Stadio, mostrala e aggiungila alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por uma carta de Estádio no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach 1 Stadionkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
es: "Apisonar",
|
||||
it: "Carica",
|
||||
pt: "Aríete",
|
||||
de: "Ramme"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,72 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Paldean Clodsire ex",
|
||||
fr: "Terraiste de Paldea-ex",
|
||||
es: "Clodsire de Paldea ex",
|
||||
it: "Clodsire di Paldea-ex",
|
||||
pt: "Clodsire de Paldea ex",
|
||||
de: "Paldea-Suelord-ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 280,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Toxic Wetland",
|
||||
fr: "Marécage Toxique",
|
||||
es: "Pantano Tóxico",
|
||||
it: "Palude Tossica",
|
||||
pt: "Brejo Tóxico",
|
||||
de: "Giftiges Sumpfgebiet"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, if a Stadium is in play, you may make your opponent's Active Pokémon Poisoned.",
|
||||
fr: "Une fois pendant votre tour, si un Stade est en jeu, vous pouvez laisser le Pokémon Actif de votre adversaire Empoisonné.",
|
||||
es: "Una vez durante tu turno, si hay un Estadio en juego, puedes dejar al Pokémon Activo de tu rival Envenenado.",
|
||||
it: "Una sola volta durante il tuo turno, se c'è in gioco una carta Stadio, puoi lasciare il Pokémon attivo del tuo avversario avvelenato.",
|
||||
pt: "Uma vez durante o seu turno, se um Estádio estiver em jogo, você poderá deixar o Pokémon Ativo do seu oponente Envenenado.",
|
||||
de: "Einmal während deines Zuges, wenn eine Stadionkarte im Spiel ist, kannst du das Aktive Pokémon deines Gegners vergiften."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Needle Bone",
|
||||
fr: "Os Piquant",
|
||||
es: "Hueso de Aguja",
|
||||
it: "Osso Acuminato",
|
||||
pt: "Agulha de Osso",
|
||||
de: "Nadelknochen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, during your next turn, this Pokémon can't attack.",
|
||||
fr: "Lancez une pièce. Si c'est pile, pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
||||
es: "Lanza 1 moneda. Si sale cruz, este Pokémon no puede atacar durante tu próximo turno.",
|
||||
it: "Lancia una moneta. Se esce croce, durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
||||
pt: "Jogue uma moeda. Se sair coroa, durante o seu próximo turno, este Pokémon não poderá atacar.",
|
||||
de: "Wirf 1 Münze. Bei Zahl kann dieses Pokémon während deines nächsten Zuges nicht angreifen."
|
||||
},
|
||||
|
||||
damage: 200
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,54 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Scraggy",
|
||||
fr: "Baggiguane",
|
||||
es: "Scraggy",
|
||||
it: "Scraggy",
|
||||
pt: "Scraggy",
|
||||
de: "Zurrokex"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Low Kick",
|
||||
fr: "Balayage",
|
||||
es: "Patada Baja",
|
||||
it: "Colpo Basso",
|
||||
pt: "Rasteira",
|
||||
de: "Fußkick"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Darkness", "Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Headstrike",
|
||||
fr: "Coup de Tête",
|
||||
es: "Testarada",
|
||||
it: "Testata",
|
||||
pt: "Golpe de Cabeça",
|
||||
de: "Kopftreffer"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
@@ -1,63 +0,0 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Scrafty",
|
||||
fr: "Baggaïd",
|
||||
es: "Scrafty",
|
||||
it: "Scrafty",
|
||||
pt: "Scrafty",
|
||||
de: "Irokex"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Lambaste",
|
||||
fr: "Étrillage",
|
||||
es: "Vapuleo",
|
||||
it: "Strigliata",
|
||||
pt: "Desancar",
|
||||
de: "Zurechtweisen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If the Defending Pokémon is a Basic Pokémon, it can't attack during your opponent's next turn.",
|
||||
fr: "Si le Pokémon Défenseur est un Pokémon de base, il ne peut pas attaquer pendant le prochain tour de votre adversaire.",
|
||||
es: "Si el Pokémon Defensor es un Pokémon Básico, no puede atacar durante el próximo turno de tu rival.",
|
||||
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare se è un Pokémon Base.",
|
||||
pt: "Se o Pokémon Defensor for um Pokémon Básico, ele não poderá atacar durante o próximo turno do seu oponente.",
|
||||
de: "Wenn das Verteidigende Pokémon ein Basis-Pokémon ist, kann es während des nächsten Zuges deines Gegners nicht angreifen."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Darkness", "Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Headbang",
|
||||
fr: "Frappe de Tête",
|
||||
es: "Cabecear",
|
||||
it: "Scuotitesta",
|
||||
pt: "Baque de Cabeça",
|
||||
de: "Headbangen"
|
||||
},
|
||||
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user