diff --git a/.bruno/cards/advanced-query.bru b/.bruno/cards/advanced-query.bru new file mode 100644 index 000000000..381bf98da --- /dev/null +++ b/.bruno/cards/advanced-query.bru @@ -0,0 +1,25 @@ +meta { + name: Advanced Query + type: http + seq: 1 +} + +get { + url: {{BASE_URL}}/v2/en/cards?name=eq:Pikachu&hp=gte:60&hp=lt:70&localId=5&localId=not:tg&id=neq:cel25-5 + body: none + auth: none +} + +params:query { + name: eq:Pikachu + hp: gte:60 + hp: lt:70 + localId: 5 + localId: not:tg + id: neq:cel25-5 +} + +assert { + res.status: eq 200 + res.body.length: gte 14 +} diff --git a/.bruno/cards/multiple.bru b/.bruno/cards/multiple.bru new file mode 100644 index 000000000..5026514e4 --- /dev/null +++ b/.bruno/cards/multiple.bru @@ -0,0 +1,23 @@ +meta { + name: Multiple values + type: http + seq: 1 +} + +get { + url: {{BASE_URL}}/v2/en/cards?name=eq:Pikachu|Pichu&hp=lt:70&localId=not:tg&id=neq:cel25-5 + body: none + auth: none +} + +params:query { + name: eq:Pikachu|Pichu + hp: lt:70 + localId: not:tg + id: neq:cel25-5 +} + +assert { + res.status: eq 200 + res.body.length: gt 85 +} diff --git a/.bruno/environments/Developpement.bru b/.bruno/environments/Developpement.bru index fa6654ac8..c0a0a0e4e 100644 --- a/.bruno/environments/Developpement.bru +++ b/.bruno/environments/Developpement.bru @@ -1,3 +1,3 @@ vars { - BASE_URL: http://localhost:3000 + BASE_URL: http://127.0.0.1:3000 } diff --git a/.bruno/fixes/562-graphql-set-request-is-not-returning-the-correct-value.bru b/.bruno/fixes/562-graphql-set-request-is-not-returning-the-correct-value.bru new file mode 100644 index 000000000..e8335ac40 --- /dev/null +++ b/.bruno/fixes/562-graphql-set-request-is-not-returning-the-correct-value.bru @@ -0,0 +1,29 @@ +meta { + name: 562 - GraphQL set request is not returning the correct value + type: graphql + seq: 7 +} + +post { + url: {{BASE_URL}}/v2/graphql + body: graphql + auth: none +} + +body:graphql { + query Pouet { + set(id: "{{SET_ID}}") { + id + } + } + +} + +vars:pre-request { + SET_ID: swsh1 +} + +assert { + res.status: eq 200 + res.body.data.set.id: eq {{SET_ID}} +} diff --git a/.bruno/fixes/566-specific-request-crash-the-request.bru b/.bruno/fixes/566-specific-request-crash-the-request.bru new file mode 100644 index 000000000..d1a051091 --- /dev/null +++ b/.bruno/fixes/566-specific-request-crash-the-request.bru @@ -0,0 +1,15 @@ +meta { + name: 566 - Specific request crash the request + type: http + seq: 7 +} + +get { + url: {{BASE_URL}}/v2/fr/cards?name=eq:Pikachu&name=eq:Pichu,Pikachu + body: none + auth: none +} + +assert { + res.status: eq 200 +} diff --git a/.bruno/fixes/567-invalid-data-returned-when-filtering-using-set.bru b/.bruno/fixes/567-invalid-data-returned-when-filtering-using-set.bru new file mode 100644 index 000000000..163f952c2 --- /dev/null +++ b/.bruno/fixes/567-invalid-data-returned-when-filtering-using-set.bru @@ -0,0 +1,21 @@ +meta { + name: 567 - invalid data returned when filtering using set + type: http + seq: 9 +} + +get { + url: {{BASE_URL}}/v2/en/cards?name=umbreon&set=evolving skies + body: none + auth: none +} + +params:query { + name: umbreon + set: evolving skies +} + +assert { + res.status: eq 200 + res.body.length: gte 6 +} diff --git a/.bruno/graphql/card.bru b/.bruno/graphql/card.bru new file mode 100644 index 000000000..b833ccb81 --- /dev/null +++ b/.bruno/graphql/card.bru @@ -0,0 +1,28 @@ +meta { + name: card + type: graphql + seq: 2 +} + +post { + url: {{BASE_URL}}/v2/graphql + body: graphql + auth: none +} + +body:graphql { + query Pouet { + card(id: "{{ID}}") { + id + } + } +} + +vars:pre-request { + ID: swsh1-136 +} + +assert { + res.status: eq 200 + res.body.data.card.id: eq {{ID}} +} diff --git a/.bruno/graphql.bru b/.bruno/graphql/cards.bru similarity index 94% rename from .bruno/graphql.bru rename to .bruno/graphql/cards.bru index 55a869c96..7c1fa463d 100644 --- a/.bruno/graphql.bru +++ b/.bruno/graphql/cards.bru @@ -1,5 +1,5 @@ meta { - name: GraphQL API + name: cards type: graphql seq: 1 } diff --git a/.bruno/graphql/serie.bru b/.bruno/graphql/serie.bru new file mode 100644 index 000000000..493228638 --- /dev/null +++ b/.bruno/graphql/serie.bru @@ -0,0 +1,29 @@ +meta { + name: serie + type: graphql + seq: 5 +} + +post { + url: {{BASE_URL}}/v2/graphql + body: graphql + auth: none +} + +body:graphql { + query Pouet { + serie(id: "{{ID}}") { + id + } + } + +} + +vars:pre-request { + ID: swsh +} + +assert { + res.status: eq 200 + res.body.data.serie.id: eq {{ID}} +} diff --git a/.bruno/graphql/series.bru b/.bruno/graphql/series.bru new file mode 100644 index 000000000..9d5e5ecaa --- /dev/null +++ b/.bruno/graphql/series.bru @@ -0,0 +1,24 @@ +meta { + name: series + type: graphql + seq: 6 +} + +post { + url: {{BASE_URL}}/v2/graphql + body: graphql + auth: none +} + +body:graphql { + query Pouet { + series { + id + } + } + +} + +assert { + res.status: eq 200 +} diff --git a/.bruno/graphql/set.bru b/.bruno/graphql/set.bru new file mode 100644 index 000000000..5372e7bc8 --- /dev/null +++ b/.bruno/graphql/set.bru @@ -0,0 +1,29 @@ +meta { + name: set + type: graphql + seq: 3 +} + +post { + url: {{BASE_URL}}/v2/graphql + body: graphql + auth: none +} + +body:graphql { + query Pouet { + set(id: "{{SET_ID}}") { + id + } + } + +} + +vars:pre-request { + SET_ID: swsh1 +} + +assert { + res.status: eq 200 + res.body.data.set.id: eq {{SET_ID}} +} diff --git a/.bruno/graphql/sets.bru b/.bruno/graphql/sets.bru new file mode 100644 index 000000000..f5574c3b3 --- /dev/null +++ b/.bruno/graphql/sets.bru @@ -0,0 +1,24 @@ +meta { + name: sets + type: graphql + seq: 4 +} + +post { + url: {{BASE_URL}}/v2/graphql + body: graphql + auth: none +} + +body:graphql { + query Pouet { + sets { + id + } + } + +} + +assert { + res.status: eq 200 +} diff --git a/.bruno/sets/Advanced Query.bru b/.bruno/sets/Advanced Query.bru new file mode 100644 index 000000000..b07788021 --- /dev/null +++ b/.bruno/sets/Advanced Query.bru @@ -0,0 +1,21 @@ +meta { + name: Advanced Query + type: http + seq: 4 +} + +get { + url: {{BASE_URL}}/v2/en/sets?cardCount.official=gt:64&id=swsh + body: none + auth: none +} + +params:query { + cardCount.official:gt: 64 + id: swsh +} + +assert { + res.status: eq 200 + res.body: length 17 +} diff --git a/.bruno/sets/Get a card by set name.bru b/.bruno/sets/Get a card by set name.bru new file mode 100644 index 000000000..254c3c906 --- /dev/null +++ b/.bruno/sets/Get a card by set name.bru @@ -0,0 +1,16 @@ +meta { + name: Get a card by set name + type: http + seq: 6 +} + +get { + url: {{BASE_URL}}/v2/en/sets/Crystal%20Guardians/10 + body: none + auth: none +} + +assert { + res.status: eq 200 + res.body.id: eq ex14-10 +} diff --git a/.bruno/sets/Get a set by name.bru b/.bruno/sets/Get a set by name.bru new file mode 100644 index 000000000..1a6d62580 --- /dev/null +++ b/.bruno/sets/Get a set by name.bru @@ -0,0 +1,16 @@ +meta { + name: Get a set by name + type: http + seq: 5 +} + +get { + url: {{BASE_URL}}/v2/en/sets/Crystal%20Guardians + body: none + auth: none +} + +assert { + res.status: eq 200 + res.body.id: eq ex14 +} diff --git a/.github/sponsors/dzeio.svg b/.github/sponsors/dzeio.svg new file mode 100644 index 000000000..f03608336 --- /dev/null +++ b/.github/sponsors/dzeio.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2ce0d19f1..1344c0c35 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,6 +21,7 @@ jobs: - name: Install deps run: | + bun install -g @usebruno/cli bun install --frozen-lockfile cd server bun install --frozen-lockfile @@ -31,3 +32,11 @@ jobs: bun run validate cd server bun run validate + + - name: Validate some requests + run: | + cd server + bun run start & + sleep 10 + cd ../.bruno + bru run --env Developpement diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 2e01f5ca2..91905fdc7 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -6,8 +6,8 @@ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, -nationality, personal appearance, race, religion, or sexual identity -and orientation. +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. @@ -22,17 +22,17 @@ community include: * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience -* Focusing on what is best not just for us as individuals, but for the - overall community +* Focusing on what is best not just for us as individuals, but for the overall + community Examples of unacceptable behavior include: -* The use of sexualized language or imagery, and sexual attention or - advances of any kind +* The use of sexualized language or imagery, and sexual attention or advances of + any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment -* Publishing others' private information, such as a physical or email - address, without their explicit permission +* Publishing others' private information, such as a physical or email address, + without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting @@ -52,15 +52,15 @@ decisions when appropriate. This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. -Examples of representing our community include using an official e-mail address, +Examples of representing our community include using an official email address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported to the community leaders responsible for enforcement at -the `contact@tcgdex.net` email or on Discord to `Avior#3872`. +reported to the community leaders responsible for enforcement at contact@tcgdex.net or +on Discord to Avior through the official server https://discord.gg/63mQvd3GVE. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the @@ -82,15 +82,15 @@ behavior was inappropriate. A public apology may be requested. ### 2. Warning -**Community Impact**: A violation through a single incident or series -of actions. +**Community Impact**: A violation through a single incident or series of +actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels -like social media. Violating these terms may lead to a temporary or -permanent ban. +like social media. Violating these terms may lead to a temporary or permanent +ban. ### 3. Temporary Ban @@ -106,23 +106,27 @@ Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community -standards, including sustained inappropriate behavior, harassment of an +standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. -**Consequence**: A permanent ban from any sort of public interaction within -the community. +**Consequence**: A permanent ban from any sort of public interaction within the +community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], -version 2.0, available at -https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. +version 2.1, available at +[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. -Community Impact Guidelines were inspired by [Mozilla's code of conduct -enforcement ladder](https://github.com/mozilla/diversity). - -[homepage]: https://www.contributor-covenant.org +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. For answers to common questions about this code of conduct, see the FAQ at -https://www.contributor-covenant.org/faq. Translations are available at -https://www.contributor-covenant.org/translations. +[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at +[https://www.contributor-covenant.org/translations][translations]. + +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/Dockerfile b/Dockerfile index 78ea17dd6..75ed159a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,34 +1,37 @@ -FROM docker.io/oven/bun:1-alpine AS build-image +FROM docker.io/oven/bun:1-alpine AS build # 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 '*' +RUN apk add git\ + && git config --global safe.directory '*'\ + && chown -R bun:bun . + +USER bun ADD --chown=bun:bun package.json bun.lockb ./ ADD --chown=bun:bun server/package.json server/bun.lockb ./server/ # install dependencies RUN bun install --frozen-lockfile && \ -cd server && \ -bun install --frozen-lockfile + cd server && \ + bun install --frozen-lockfile # Add project files ADD --chown=bun:bun . . # build RUN cd server && \ -bun run compile + bun run compile # remove dev dependencies (bun do not yet support "prune") RUN cd server && \ -rm -rf node_modules && \ -bun install --frozen-install --production + rm -rf node_modules && \ + bun install --frozen-install --production # go to another VM -FROM docker.io/oven/bun:1-alpine AS prod-image +FROM docker.io/oven/bun:1-alpine AS prod # inform software to be in production ENV NODE_ENV=production @@ -40,11 +43,11 @@ USER bun WORKDIR /usr/src/app # copy from build image -COPY --chown=bun:bun --from=build-image /usr/src/app/server/generated ./generated -COPY --chown=bun:bun --from=build-image /usr/src/app/server/node_modules ./node_modules -COPY --chown=bun:bun --from=build-image /usr/src/app/server/src ./src -COPY --chown=bun:bun --from=build-image /usr/src/app/server/public ./public -COPY --chown=bun:bun --from=build-image /usr/src/app/server/package.json ./package.json +COPY --chown=bun:bun --from=build /usr/src/app/server/generated ./generated +COPY --chown=bun:bun --from=build /usr/src/app/server/node_modules ./node_modules +COPY --chown=bun:bun --from=build /usr/src/app/server/src ./src +COPY --chown=bun:bun --from=build /usr/src/app/server/public ./public +COPY --chown=bun:bun --from=build /usr/src/app/server/package.json ./package.json # Expose port EXPOSE 3000 diff --git a/README.md b/README.md index f6bebd023..778bdf9c5 100644 --- a/README.md +++ b/README.md @@ -27,15 +27,11 @@ A Multilanguage Pokémon TCG Database with Cards Pictures and most of the inform ## Getting Started -_If you need help for using/editing the database, [join us on Discord](https://discord.gg/NehYTAhsZE)!_ - -### Using the Database - -_The full documentation is available at _ +A full documentation of the API is available at - The easiest way to interact with the database is by using one of our SDKs listed below. - You can also direcly use the endpoints at `api.tcgdex.net` (see the documentation). -- You can build the API yourself by using our `Dockerfile` and using it on the port 3000 +- You can build the API yourself by using our `Dockerfile` and using it on the port 3000 (`docker-compose.yml` file included above) #### SDKs / API Wrappers @@ -45,14 +41,6 @@ We currently officially support theses SDKs - [PHP SDK](https://github.com/tcgdex/php-sdk) - [Java SDK](https://github.com/tcgdex/java-sdk) -### Editing the Database - -There is three sub folders that will allow you to edit some faces of the database - -- `/data`: Contains Cards Data architectured around `SerieName/SetName/CardLocalId` folders -- `/meta`: Contains informations for the project (definitions files, Translations for some fields) -- `/server`: The server that allow to communicate with the database - ## Status We are making sure to make every cards available for every languages they were available ! @@ -62,18 +50,19 @@ We are making sure to make every cards available for every languages they were a _want to help translating? each object fields on cards that have at least en,fr,es,de,it or pt can have the others!,_ _Also we have another translation files located at `meta/translations`_ -## Contributing +## Sponsors 💕 -See [CONTRIBUTING.md](./CONTRIBUTING.md) +_[Support us as a sponsor](https://github.com/sponsors/tcgdex) and have your logo featured on our GitHub README, complete with a link to your website._ -TL::DR -- Fork -- make your changes -- pull request +

+ + TCGdex Sponsor Dzeio + +

-## Deprecation - -As of February 2021, the v1 API is no longer supported. +

+ +

## Contributors ✨ @@ -103,6 +92,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! +## Deprecation + +As of February 2021, the v1 API is no longer supported. + ## Licenses This database is not produced, endorsed, supported or affiliated with Nintendo or The Pokémon Company diff --git a/data-asia/SV/SV5a.ts b/data-asia/SV/SV5a.ts index df96aeb88..bf0e06c23 100644 --- a/data-asia/SV/SV5a.ts +++ b/data-asia/SV/SV5a.ts @@ -6,7 +6,8 @@ const set: Set = { name: { ja: 'クリムゾンヘイズ', 'zh-tw': '緋紅薄霧', - th: 'หมอกสีชาด' + th: 'หมอกสีชาด', + ko: '크림슨헤이즈' }, serie: serie, @@ -17,7 +18,8 @@ const set: Set = { releaseDate: { ja: '2024-03-22', 'zh-tw': '2024-04-03', - th: '2024-04-26' + th: '2024-04-26', + ko: '2024-05-24' } } diff --git a/data-asia/SV/SV6.ts b/data-asia/SV/SV6.ts index d13bb95e6..d801a8f5c 100644 --- a/data-asia/SV/SV6.ts +++ b/data-asia/SV/SV6.ts @@ -4,7 +4,10 @@ import serie from '../SV' const set: Set = { id: 'SV6', name: { - ja: '変幻の仮面' + ja: '変幻の仮面', + 'zh-tw': '變幻假面', + th: 'หน้ากากจอมลวงตา', + ko: '변환의 가면' }, serie: serie, @@ -14,7 +17,9 @@ const set: Set = { }, releaseDate: { ja: '2024-04-26', - 'zh-tw': '2024-05-10' + 'zh-tw': '2024-05-10', + th: '2024-05-31', + ko: '2024-06-21' } } diff --git a/data-asia/SV/SV6/001.ts b/data-asia/SV/SV6/001.ts index 6a2f3c9e8..17f1dbb25 100644 --- a/data-asia/SV/SV6/001.ts +++ b/data-asia/SV/SV6/001.ts @@ -3,7 +3,8 @@ import set from '../SV6' const card: Card = { name: { ja: "ヒマナッツ", - 'zh-tw': "向日種子" + 'zh-tw': "向日種子", + th: "ฮิมานัทส์" }, category: 'Pokemon', @@ -16,7 +17,8 @@ const card: Card = { description: { ja: "とても ひ弱。 襲われても 葉っぱを 必死に 振りまわして 追い払うのが やっとだ。", - 'zh-tw': "十分弱小。即使遭到攻擊, 也只能勉勉強強地靠著 拼命揮舞葉子來趕走敵人。" + 'zh-tw': "十分弱小。即使遭到攻擊, 也只能勉勉強強地靠著 拼命揮舞葉子來趕走敵人。", + th: "อ่อนแอมาก ถึงถูกโจมตีก็ทำได้แค่พยายามเหวี่ยงใบไม้เพื่อไล่อีกฝ่ายอย่างสุดกำลังเท่านั้น" }, stage: "Basic", @@ -26,14 +28,16 @@ const card: Card = { name: { ja: "タネマシンガン", - 'zh-tw': "種子機關槍" + 'zh-tw': "種子機關槍", + th: "ปืนกลเมล็ดพืช" }, damage: "10×", effect: { ja: "コインを4回投げ、オモテの数×10ダメージ。", - 'zh-tw': "擲4次硬幣,造成正面出現的次數×10點傷害。" + 'zh-tw': "擲4次硬幣,造成正面出現的次數×10點傷害。", + th: "ทอยเหรียญ 4 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10" } }], diff --git a/data-asia/SV/SV6/002.ts b/data-asia/SV/SV6/002.ts index 8dbb38f1b..e75d20853 100644 --- a/data-asia/SV/SV6/002.ts +++ b/data-asia/SV/SV6/002.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "キマワリ", - 'zh-tw': "向日花怪" + 'zh-tw': "向日花怪", + th: "คิมาวาริ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "浴びた 日差しを エネルギーに 変換するため 昼間は ずっと 太陽の方を 向いている。", - 'zh-tw': "由於會將沐浴到的陽光 轉換成能量,因此白天 總是一直面向著太陽。" + 'zh-tw': "由於會將沐浴到的陽光 轉換成能量,因此白天 總是一直面向著太陽。", + th: "ตอนกลางวันจะหันหน้าเข้าหาดวงอาทิตย์ตลอดเวลาเพื่อเปลี่ยนแสงอาทิตย์ที่อาบมาให้เป็นพลังงาน" }, stage: "Stage1", @@ -28,28 +30,32 @@ const card: Card = { name: { ja: "ひざしがえし", - 'zh-tw': "光返" + 'zh-tw': "光返", + th: "แสงตะวันสะท้อนกลับ" }, damage: "60×", effect: { ja: "相手のポケモン全員についているエネルギーの数×60ダメージ。", - 'zh-tw': "造成對手的所有寶可夢身上附加的【火】能量的數量×60點傷害。" + 'zh-tw': "造成對手的所有寶可夢身上附加的【火】能量的數量×60點傷害。", + th: "แดเมจจะเท่ากับจำนวนพลังงาน[ไฟ]ที่ติดอยู่กับโปเกมอนฝ่ายตรงข้ามทุกตัว x60" } }, { cost: ["Grass", "Colorless"], name: { ja: "メガドレイン", - 'zh-tw': "超級吸取" + 'zh-tw': "超級吸取", + th: "เมก้าเดรน" }, damage: 50, effect: { ja: "このポケモンのHPを「30」回復する。", - 'zh-tw': "將這隻寶可夢恢復「30」HP。" + 'zh-tw': "將這隻寶可夢恢復「30」HP。", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]" } }], diff --git a/data-asia/SV/SV6/003.ts b/data-asia/SV/SV6/003.ts index 1f8f600ee..55771d184 100644 --- a/data-asia/SV/SV6/003.ts +++ b/data-asia/SV/SV6/003.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ヘラクロス", - 'zh-tw': "赫拉克羅斯" + 'zh-tw': "赫拉克羅斯", + th: "เฮราครอส" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "ものすごい 怪力の 持ち主。 自分の 体重の 100倍の 重さでも 楽に ぶん投げる。", - 'zh-tw': "擁有十分驚人的怪力。 就連重量是自己體重100倍的 物體也能輕鬆扔飛。" + 'zh-tw': "擁有十分驚人的怪力。 就連重量是自己體重100倍的 物體也能輕鬆扔飛。", + th: "มีพละกำลังมหาศาลมาก สามารถโยนของที่หนักกว่าตัวเอง 100 เท่าได้อย่างสบาย ๆ" }, stage: "Basic", @@ -28,21 +30,24 @@ const card: Card = { name: { ja: "のしかかり", - 'zh-tw': "泰山壓頂" + 'zh-tw': "泰山壓頂", + th: "ทิ้งตัวทับ" }, damage: 60, effect: { ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。", - 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。" + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]" } }, { cost: ["Grass", "Colorless", "Colorless", "Colorless"], name: { ja: "ちきゅうなげ", - 'zh-tw': "地球上投" + 'zh-tw': "地球上投", + th: "ขว้างใส่โลก" }, damage: 130 diff --git a/data-asia/SV/SV6/004.ts b/data-asia/SV/SV6/004.ts index 161392926..2b9fc2f52 100644 --- a/data-asia/SV/SV6/004.ts +++ b/data-asia/SV/SV6/004.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "バルビート", - 'zh-tw': "電螢蟲" + 'zh-tw': "電螢蟲", + th: "บารูบีท" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "お尻の 光を 点滅させて 仲間と 会話する。 イルミーゼの 出す 甘い 香りが 大好き。", - 'zh-tw': "會閃爍臀部的光芒 來與夥伴交流。最喜歡 甜甜螢放出的甜甜香氣。" + 'zh-tw': "會閃爍臀部的光芒 來與夥伴交流。最喜歡 甜甜螢放出的甜甜香氣。", + th: "กะพริบแสงที่ก้นเพื่อสื่อสารกับพวกพ้อง ชอบกลิ่นหอมหวานที่อิลูมิเซะปล่อยออกมามาก" }, stage: "Basic", @@ -28,26 +30,30 @@ const card: Card = { name: { ja: "ファストサイン", - 'zh-tw': "急速信號" + 'zh-tw': "急速信號", + th: "เฟิสต์ไซน์" }, effect: { ja: "このワザは、先攻プレイヤーの最初の番でも使える。自分の山札からたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。", - 'zh-tw': "這個招式可在先攻玩家的最初回合使用。從自己的牌庫選擇最多2張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。" + 'zh-tw': "這個招式可在先攻玩家的最初回合使用。從自己的牌庫選擇最多2張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + th: "ท่าต่อสู้นี้ แม้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเริ่มก่อนก็สามารถใช้ได้ เลือกการ์ดโปเกมอน[พื้นฐาน]ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด" } }, { cost: ["Colorless", "Colorless"], name: { ja: "れんけいアタック", - 'zh-tw': "聯合攻擊" + 'zh-tw': "聯合攻擊", + th: "ผสานบุกประจัญบาน" }, damage: "20+", effect: { ja: "自分のベンチに「イルミーゼ」がいるなら、60ダメージ追加。", - 'zh-tw': "若自己的備戰區有「甜甜螢」,則增加60點傷害。" + 'zh-tw': "若自己的備戰區有「甜甜螢」,則增加60點傷害。", + th: "ถ้าบนเบนช์ฝ่ายเรามี [อิลูมิเซะ] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 60" } }], diff --git a/data-asia/SV/SV6/005.ts b/data-asia/SV/SV6/005.ts index 95fb8cabf..cef36c5b9 100644 --- a/data-asia/SV/SV6/005.ts +++ b/data-asia/SV/SV6/005.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "イルミーゼ", - 'zh-tw': "甜甜螢" + 'zh-tw': "甜甜螢", + th: "อิลูมิเซะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "バルビートを 誘導して 夜空に サインを 描く。 サインの 意味を 研究する 学者も いる。", - 'zh-tw': "會誘導電螢蟲在夜空中 描繪記號。也有些學者 在研究記號的含意。" + 'zh-tw': "會誘導電螢蟲在夜空中 描繪記號。也有些學者 在研究記號的含意。", + th: "จะชักนำบารูบีทขึ้นไปวาดสัญลักษณ์บนท้องฟ้าในเวลากลางคืน และก็มีนักวิชาการที่ศึกษาค้นคว้าถึงความหมายของสัญลักษณ์เหล่านั้น" }, stage: "Basic", @@ -28,19 +30,22 @@ const card: Card = { name: { ja: "スローパフューム", - 'zh-tw': "慢芬香" + 'zh-tw': "慢芬香", + th: "สโลว์เพอร์ฟูม" }, effect: { ja: "このワザは、後攻プレイヤーの最初の番にだけ使える。相手のベンチポケモンを1匹選び、そのポケモンと、ついているすべてのカードを、相手の山札にもどして切る。", - 'zh-tw': "這個招式只可在後攻玩家的最初回合使用。選擇1隻對手的備戰寶可夢,將那隻寶可夢與附加的卡全部放回對手的牌庫並重洗。" + 'zh-tw': "這個招式只可在後攻玩家的最初回合使用。選擇1隻對手的備戰寶可夢,將那隻寶可夢與附加的卡全部放回對手的牌庫並重洗。", + th: "ท่าต่อสู้นี้ ใช้ได้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเล่นทีหลังเท่านั้น เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว นำโปเกมอนนั้น และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายตรงข้ามแล้วสับ" } }, { cost: ["Grass", "Colorless"], name: { ja: "かっくう", - 'zh-tw': "滑翔" + 'zh-tw': "滑翔", + th: "ถลาลม" }, damage: 30 diff --git a/data-asia/SV/SV6/006.ts b/data-asia/SV/SV6/006.ts index 9b03ace67..a330798bb 100644 --- a/data-asia/SV/SV6/006.ts +++ b/data-asia/SV/SV6/006.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ボクレー", - 'zh-tw': "小木靈" + 'zh-tw': "小木靈", + th: "โบคุเร" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "死んだ 子供の 魂が 切り株に 宿った ポケモン。 森を さまよい 仲間を 探す。", - 'zh-tw': "死去的孩子的靈魂附在 樹樁上,變成了寶可夢。 會徘徊在森林裡尋找夥伴。" + 'zh-tw': "死去的孩子的靈魂附在 樹樁上,變成了寶可夢。 會徘徊在森林裡尋找夥伴。", + th: "โปเกมอนที่เกิดจากการที่วิญญาณเด็กที่เสียชีวิตมาสิงสู่อยู่ในตอไม้ ร่อนเร่ในป่าเพื่อตามหาเพื่อนพ้อง" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "やどりぎのタネ", - 'zh-tw': "寄生種子" + 'zh-tw': "寄生種子", + th: "เมล็ดกาฝาก" }, damage: 20, effect: { ja: "このポケモンのHPを「20」回復する。", - 'zh-tw': "將這隻寶可夢恢復「20」HP。" + 'zh-tw': "將這隻寶可夢恢復「20」HP。", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]" } }], diff --git a/data-asia/SV/SV6/007.ts b/data-asia/SV/SV6/007.ts index 099a67017..ad6f2dc68 100644 --- a/data-asia/SV/SV6/007.ts +++ b/data-asia/SV/SV6/007.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "オーロット", - 'zh-tw': "朽木妖" + 'zh-tw': "朽木妖", + th: "โอร็อต" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "森に 棲む ポケモンには とても 優しい。 頭の しげみを 棲み処にされても 気にしない。", - 'zh-tw': "對住在森林裡的寶可夢 非常親切,就算被住進了 頭上那叢葉子裡也毫不在意。" + 'zh-tw': "對住在森林裡的寶可夢 非常親切,就算被住進了 頭上那叢葉子裡也毫不在意。", + th: "อ่อนโยนต่อเหล่าโปเกมอนที่อาศัยอยู่ในป่าเป็นอย่างมาก แม้พุ่มไม้บนหัวจะถูกเอาไปทำเป็นที่อยู่อาศัยก็ไม่สนใจ" }, stage: "Stage1", @@ -28,21 +30,24 @@ const card: Card = { name: { ja: "ギガドレイン", - 'zh-tw': "終極吸取" + 'zh-tw': "終極吸取", + th: "กิก้าเดรน" }, damage: 50, effect: { ja: "相手のバトルポケモンに与えたダメージぶん、このポケモンのHPを回復する。", - 'zh-tw': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。" + 'zh-tw': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。", + th: "ฟื้นฟู HP ของโปเกมอนนี้ ตามจำนวนแดเมจที่ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม" } }, { cost: ["Grass", "Grass", "Colorless"], name: { ja: "フォレストダンプ", - 'zh-tw': "森林拋擲" + 'zh-tw': "森林拋擲", + th: "ฟอเรสต์ดัมป์" }, damage: 130 diff --git a/data-asia/SV/SV6/008.ts b/data-asia/SV/SV6/008.ts index af459fe69..0aa5b2722 100644 --- a/data-asia/SV/SV6/008.ts +++ b/data-asia/SV/SV6/008.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "サルノリ", - 'zh-tw': "敲音猴" + 'zh-tw': "敲音猴", + th: "ซารุโนริ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "特別な スティックで リズムを 刻むと 草花を 元気にする パワーが 音波になって 広がる。", - 'zh-tw': "當牠用特別的木棒敲奏時, 能夠給予花草活力的力量 就會變成音波擴散開來。" + 'zh-tw': "當牠用特別的木棒敲奏時, 能夠給予花草活力的力量 就會變成音波擴散開來。", + th: "เมื่อใช้แท่งไม้พิเศษเคาะจังหวะดนตรี พลังที่ทำให้ต้นไม้ดอกไม้ร่าเริงจะกลายเป็นคลื่นเสียงแผ่ขยายออกไป" }, stage: "Basic", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "けとばす", - 'zh-tw': "踢飛" + 'zh-tw': "踢飛", + th: "ดีด" }, damage: 10 @@ -37,7 +40,8 @@ const card: Card = { name: { ja: "えだづき", - 'zh-tw': "木枝突刺" + 'zh-tw': "木枝突刺", + th: "ต่อกิ่ง" }, damage: 30 diff --git a/data-asia/SV/SV6/009.ts b/data-asia/SV/SV6/009.ts index 845907d3b..b7f167be9 100644 --- a/data-asia/SV/SV6/009.ts +++ b/data-asia/SV/SV6/009.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "バチンキー", - 'zh-tw': "啪咚猴" + 'zh-tw': "啪咚猴", + th: "บาจินคี" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "2本の スティックで 激しい ビートを 刻める バチンキーほど 仲間たちの 尊敬を 集める。", - 'zh-tw': "越是能用2根木棒敲奏出 激烈節拍的啪咚猴,越是 能獲得夥伴們的尊敬。" + 'zh-tw': "越是能用2根木棒敲奏出 激烈節拍的啪咚猴,越是 能獲得夥伴們的尊敬。", + th: "ยิ่งบาจินคีตีจังหวะรุนแรงด้วยแท่งไม้ 2 แท่งเท่าไหร่ ก็ยิ่งได้รับความเคารพจากเหล่าสหาย" }, stage: "Stage1", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "ドンドンだいこ", - 'zh-tw': "衝衝鼓" + 'zh-tw': "衝衝鼓", + th: "ตีกลองตึ้งตึ้ง" }, effect: { ja: "自分のバトルポケモンが特性「おまつりおんど」を持つポケモンなら、自分の番に1回使える。自分の山札から好きなカードを1枚選び、手札に加える。そして山札を切る。", - 'zh-tw': "若自己的戰鬥寶可夢為擁有特性「祭典樂舞」的寶可夢,則在自己的回合時可使用1次。從自己的牌庫任意選擇1張卡加入手牌。並且重洗牌庫。" + 'zh-tw': "若自己的戰鬥寶可夢為擁有特性「祭典樂舞」的寶可夢,則在自己的回合時可使用1次。從自己的牌庫任意選擇1張卡加入手牌。並且重洗牌庫。", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายเราเป็นโปเกมอนที่มีความสามารถ [รำวงงานเทศกาล] ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ดที่ชอบ 1 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด" } }], @@ -42,7 +46,8 @@ const card: Card = { name: { ja: "たたく", - 'zh-tw': "敲擊" + 'zh-tw': "敲擊", + th: "ตี" }, damage: 50 diff --git a/data-asia/SV/SV6/010.ts b/data-asia/SV/SV6/010.ts index f58c92835..116d2de3d 100644 --- a/data-asia/SV/SV6/010.ts +++ b/data-asia/SV/SV6/010.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ゴリランダー", - 'zh-tw': "轟擂金剛猩" + 'zh-tw': "轟擂金剛猩", + th: "กอริลลันดา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "特別な 切り株の パワーを ドラミングで コントロール。 根っこを 操って 戦う。", - 'zh-tw': "能夠透過打鼓來控制 特別的樹樁中的力量, 操縱樹根進行戰鬥。" + 'zh-tw': "能夠透過打鼓來控制 特別的樹樁中的力量, 操縱樹根進行戰鬥。", + th: "ควบคุมพลังของตอไม้พิเศษด้วยการตีกลอง บังคับตอไม้เพื่อต่อสู้" }, stage: "Stage2", @@ -28,28 +30,32 @@ const card: Card = { name: { ja: "ドラムアタック", - 'zh-tw': "鼓擊" + 'zh-tw': "鼓擊", + th: "ดรัมแอทแทก" }, damage: 60, effect: { ja: "次の相手の番、このワザを受けたポケモンは、ワザを使うためのエネルギーとにげるためのエネルギーが、それぞれエネルギー1個ぶん多くなる。", - 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式所需的能量與【撤退】所需的能量,各增加1個【無】能量。" + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式所需的能量與【撤退】所需的能量,各增加1個【無】能量。", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ พลังงานสำหรับใช้ท่าต่อสู้กับพลังงานสำหรับ[หนี] แต่ละอย่างจะใช้พลังงาน[ไร้สี]เพิ่มขึ้น 1 ลูก" } }, { cost: ["Grass", "Grass"], name: { ja: "ウッドハンマー", - 'zh-tw': "木槌" + 'zh-tw': "木槌", + th: "วู้ดแฮมเมอร์" }, damage: 180, effect: { ja: "このポケモンにも50ダメージ。", - 'zh-tw': "這隻寶可夢也受到50點傷害。" + 'zh-tw': "這隻寶可夢也受到50點傷害。", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 50 ด้วย" } }], diff --git a/data-asia/SV/SV6/011.ts b/data-asia/SV/SV6/011.ts index dd34eb0b2..d10616ec1 100644 --- a/data-asia/SV/SV6/011.ts +++ b/data-asia/SV/SV6/011.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "カジッチュ", - 'zh-tw': "啃果蟲" + 'zh-tw': "啃果蟲", + th: "คาจิชชู" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "りんごの 中で 暮らしている。 りんごが なくなると 体の 水分が 抜けて 弱ってしまう。", - 'zh-tw': "平時都在蘋果中生活。 如果失去了蘋果,身體的 水分就會流失而變得虛弱。" + 'zh-tw': "平時都在蘋果中生活。 如果失去了蘋果,身體的 水分就會流失而變得虛弱。", + th: "อาศัยอยู่ในแอปเปิล พอไม่มีแอปเปิลแล้ว จะสูญเสียน้ำในร่างกายและอ่อนแอลง" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "ローリングアタック", - 'zh-tw': "回轉攻擊" + 'zh-tw': "回轉攻擊", + th: "โรลลิงแอทแทก" }, damage: "10+", effect: { ja: "コインを1回投げオモテなら、20ダメージ追加。", - 'zh-tw': "擲1次硬幣若為正面,則增加20點傷害。" + 'zh-tw': "擲1次硬幣若為正面,則增加20點傷害。", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 20" } }], diff --git a/data-asia/SV/SV6/012.ts b/data-asia/SV/SV6/012.ts index 09581e6f6..8cdc544c9 100644 --- a/data-asia/SV/SV6/012.ts +++ b/data-asia/SV/SV6/012.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "カミッチュ", - 'zh-tw': "裹蜜蟲" + 'zh-tw': "裹蜜蟲", + th: "คามิชชู" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "頭を 出している そとッチュと 尻尾を 出している なかッチュが 助け合い りんごのなかで 暮らす。", - 'zh-tw': "由露出了頭部的外頭蟲與 露出了尾巴的裡頭蟲相扶相持, 一起在蘋果裡面生活。" + 'zh-tw': "由露出了頭部的外頭蟲與 露出了尾巴的裡頭蟲相扶相持, 一起在蘋果裡面生活。", + th: "ตัวนอกที่ยื่นหัวออกมาและตัวในที่ยื่นหางออกมานั้นอาศัยอยู่ด้วยกันในแอปเปิลและคอยช่วยเหลือซึ่งกันและกัน" }, stage: "Stage1", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "おまつりおんど", - 'zh-tw': "祭典樂舞" + 'zh-tw': "祭典樂舞", + th: "รำวงงานเทศกาล" }, effect: { ja: "場に「お祭り会場」が出ているなら、このポケモンは、持っているワザを2回連続で使える。(1回目のワザで相手のバトルポケモンがきぜつしたなら、次のバトルポケモンが出たあと、2回目のワザを使う。)", - 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)" + 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)", + th: "ถ้ามี [สถานที่จัดเทศกาล] อยู่บนกระดาน โปเกมอนนี้ จะใช้ท่าต่อสู้ที่มีต่อเนื่องกันได้ 2 ครั้ง (ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ]ด้วยท่าต่อสู้ครั้งที่ 1 หลังจากที่โปเกมอนบนตำแหน่งต่อสู้ตัวถัดไปออกมา ให้ใช้ท่าต่อสู้ครั้งที่ 2)" } }], @@ -42,14 +46,16 @@ const card: Card = { name: { ja: "ともだちのわ", - 'zh-tw': "朋友之環" + 'zh-tw': "朋友之環", + th: "กลุ่มเพื่อน" }, damage: "20×", effect: { ja: "自分のベンチポケモンの数×20ダメージ。", - 'zh-tw': "造成自己的備戰寶可夢的數量×20點傷害。" + 'zh-tw': "造成自己的備戰寶可夢的數量×20點傷害。", + th: "แดเมจจะเท่ากับจำนวนโปเกมอนบนเบนช์ฝ่ายเรา x20" } }], diff --git a/data-asia/SV/SV6/013.ts b/data-asia/SV/SV6/013.ts index f8343714d..4b7e265c6 100644 --- a/data-asia/SV/SV6/013.ts +++ b/data-asia/SV/SV6/013.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "チャデス", - 'zh-tw': "斯魔茶" + 'zh-tw': "斯魔茶", + th: "ฉะเดธ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "ヤバチャの リージョンフォームに 見えるが まったく 関係のない ポケモンと 最近 判明した。", - 'zh-tw': "雖然這種寶可夢看起來像是 來悲茶的地區型態,但最近 被發現其實兩者毫無關係。" + 'zh-tw': "雖然這種寶可夢看起來像是 來悲茶的地區型態,但最近 被發現其實兩者毫無關係。", + th: "แม้จะดูเหมือนฟอร์มตามภูมิภาคของยาบาฉะ แต่ไม่นานมานี้มีการค้นพบแล้วว่ามันเป็นโปเกมอนที่ไม่เกี่ยวข้องกันโดยสิ้นเชิง" }, stage: "Basic", @@ -28,26 +30,30 @@ const card: Card = { name: { ja: "おちゃだし", - 'zh-tw': "上茶" + 'zh-tw': "上茶", + th: "เสิร์ฟน้ำชา" }, effect: { ja: "自分のトラッシュから「基本エネルギー」を1枚選び、相手に見せて、手札に加える。", - 'zh-tw': "從自己的棄牌區選擇1張「基本【草】能量」卡,在給對手看過後加入手牌。" + 'zh-tw': "從自己的棄牌區選擇1張「基本【草】能量」卡,在給對手看過後加入手牌。", + th: "เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ" } }, { cost: ["Grass"], name: { ja: "ふいをつく", - 'zh-tw': "偷襲" + 'zh-tw': "偷襲", + th: "จู่โจมกะทันหัน" }, damage: 30, effect: { ja: "コインを1回投げウラなら、このワザは失敗。", - 'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。" + 'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。", + th: "ทอยเหรียญ 1 ครั้งถ้าออกก้อย ท่าต่อสู้นี้จะล้มเหลว" } }], diff --git a/data-asia/SV/SV6/014.ts b/data-asia/SV/SV6/014.ts index 12abf4c8d..89df18f71 100644 --- a/data-asia/SV/SV6/014.ts +++ b/data-asia/SV/SV6/014.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ヤバソチャ", - 'zh-tw': "來悲粗茶" + 'zh-tw': "來悲粗茶", + th: "ยาบาโซฉะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "民家の 床下や 棚の奥など 冷暗所を 好む。 日没後 獲物を 探して 徘徊する。", - 'zh-tw': "喜歡待在民宅的地板下或 架子深處等陰涼的地方。 日落後會四處徘徊尋找獵物。" + 'zh-tw': "喜歡待在民宅的地板下或 架子深處等陰涼的地方。 日落後會四處徘徊尋找獵物。", + th: "ชอบสถานที่เย็น ๆ มืด ๆ อย่างใต้พื้นบ้านหรือตามซอกมุมชั้นวางของ หลังพระอาทิตย์ตกจะไปตระเวนหาอาหาร" }, stage: "Stage1", @@ -28,26 +30,30 @@ const card: Card = { name: { ja: "のろいのしずく", - 'zh-tw': "詛咒水滴" + 'zh-tw': "詛咒水滴", + th: "หยาดหยดแห่งคำสาป" }, effect: { ja: "ダメカン4個を、相手のポケモンに好きなようにのせる。", - 'zh-tw': "將4個傷害指示物以任意方式放置於對手的寶可夢身上。" + 'zh-tw': "將4個傷害指示物以任意方式放置於對手的寶可夢身上。", + th: "วางตัวนับแดเมจ 4 ตัว บนโปเกมอนฝ่ายตรงข้ามตามชอบ" } }, { cost: ["Grass"], name: { ja: "ぶちまけちゃ", - 'zh-tw': "傾瀉茶" + 'zh-tw': "傾瀉茶", + th: "คว่ำชาทิ้ง" }, damage: "70×", effect: { ja: "自分の場のポケモンについているエネルギーを3枚までトラッシュし、その枚数×70ダメージ。", - 'zh-tw': "將最多3張自己的場上寶可夢身上附加的【草】能量卡丟棄,造成其張數×70點傷害。" + 'zh-tw': "將最多3張自己的場上寶可夢身上附加的【草】能量卡丟棄,造成其張數×70點傷害。", + th: "ทิ้งการ์ดพลังงาน[หญ้า]ที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเราได้สูงสุด 3 ใบที่ตำแหน่งทิ้งการ์ด แดเมจจะเท่ากับจำนวนการ์ดนั้น x70" } }], diff --git a/data-asia/SV/SV6/015.ts b/data-asia/SV/SV6/015.ts index a8821e108..72f38ca31 100644 --- a/data-asia/SV/SV6/015.ts +++ b/data-asia/SV/SV6/015.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "オーガポン みどりのめん", - 'zh-tw': "厄鬼椪 碧草面具" + 'zh-tw': "厄鬼椪 碧草面具", + th: "โอการ์ปอง หน้ากากสีทีล" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "いたずら好きで 好奇心旺盛。 仮面に こめられた タイプの エネルギーを 引き出して 戦う。", - 'zh-tw': "喜歡惡作劇,好奇心旺盛。 能激發出面具蘊藏的 屬性的能量來戰鬥。" + 'zh-tw': "喜歡惡作劇,好奇心旺盛。 能激發出面具蘊藏的 屬性的能量來戰鬥。", + th: "ชอบเล่นซนและเต็มเปี่ยมไปด้วยความอยากรู้อยากเห็น ต่อสู้ด้วยการดึงพลังงานแห่งประเภทที่อัดแน่นอยู่ในหน้ากากออกมา" }, stage: "Basic", @@ -28,26 +30,30 @@ const card: Card = { name: { ja: "やまあるき", - 'zh-tw': "步山" + 'zh-tw': "步山", + th: "เดินเขา" }, effect: { ja: "自分の山札から基本エネルギーを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。", - 'zh-tw': "從自己的牌庫選擇最多2張基本能量卡,在給對手看過後加入手牌。並且重洗牌庫。" + 'zh-tw': "從自己的牌庫選擇最多2張基本能量卡,在給對手看過後加入手牌。並且重洗牌庫。", + th: "เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด" } }, { cost: ["Grass", "Colorless"], name: { ja: "おにがえし", - 'zh-tw': "鬼返" + 'zh-tw': "鬼返", + th: "ยักษ์เอาคืน" }, damage: "20+", effect: { ja: "相手のベンチポケモンの数×20ダメージ追加。", - 'zh-tw': "增加對手的備戰寶可夢的數量×20點傷害。" + 'zh-tw': "增加對手的備戰寶可夢的數量×20點傷害。", + th: "แดเมจจะเพิ่มตามจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้าม x20" } }], diff --git a/data-asia/SV/SV6/016.ts b/data-asia/SV/SV6/016.ts index 8e4f0e2c8..9ceaa4d29 100644 --- a/data-asia/SV/SV6/016.ts +++ b/data-asia/SV/SV6/016.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "オーガポン みどりのめんex", - 'zh-tw': "厄鬼椪 碧草面具ex" + 'zh-tw': "厄鬼椪 碧草面具ex", + th: "โอการ์ปอง หน้ากากสีทีลex" }, category: "Pokemon", @@ -22,12 +23,14 @@ const card: Card = { name: { ja: "みどりのまい", - 'zh-tw': "碧綠之舞" + 'zh-tw': "碧綠之舞", + th: "ระบำเขียวขจี" }, effect: { ja: "自分の番に1回使える。自分の手札から「基本エネルギー」を1枚選び、このポケモンにつける。その後、自分の山札を1枚引く。", - 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於這隻寶可夢身上。然後,從自己的牌庫抽出1張卡。" + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於這隻寶可夢身上。然後,從自己的牌庫抽出1張卡。", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนนี้ หลังจากนั้น จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา" } }], @@ -36,14 +39,16 @@ const card: Card = { name: { ja: "まんようしぐれ", - 'zh-tw': "萬葉陣雨" + 'zh-tw': "萬葉陣雨", + th: "ฝนใบไม้โปรยปราย" }, damage: "30+", effect: { ja: "おたがいのバトルポケモンについているエネルギーの数×30ダメージ追加。", - 'zh-tw': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。" + 'zh-tw': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。", + th: "แดเมจจะเพิ่มตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่าย x30" } }], diff --git a/data-asia/SV/SV6/017.ts b/data-asia/SV/SV6/017.ts index 25ec98a85..1ef4e7309 100644 --- a/data-asia/SV/SV6/017.ts +++ b/data-asia/SV/SV6/017.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ダルマッカ", - 'zh-tw': "火紅不倒翁" + 'zh-tw': "火紅不倒翁", + th: "ดารุมักกะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "体の 中で 燃える 炎が パワーの 源。 火が 小さく なると たちまち 眠ってしまう。", - 'zh-tw': "能量之源是體內的火焰。 如果火焰變小了, 牠馬上就會睡著。" + 'zh-tw': "能量之源是體內的火焰。 如果火焰變小了, 牠馬上就會睡著。", + th: "ไฟที่เผาไหม้อยู่ในร่างกายเป็นแหล่งพลังงาน หากเปลวเพลิงหรี่เล็กลงก็จะหลับไปในทันที" }, stage: "Basic", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "かいりき", - 'zh-tw': "怪力" + 'zh-tw': "怪力", + th: "พลังมหากาฬ" }, damage: 10 @@ -37,14 +40,16 @@ const card: Card = { name: { ja: "ほのおタックル", - 'zh-tw': "火焰衝撞" + 'zh-tw': "火焰衝撞", + th: "ไฟกระแทก" }, damage: 50, effect: { ja: "このポケモンにも20ダメージ。", - 'zh-tw': "這隻寶可夢也受到20點傷害。" + 'zh-tw': "這隻寶可夢也受到20點傷害。", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 20 ด้วย" } }], diff --git a/data-asia/SV/SV6/018.ts b/data-asia/SV/SV6/018.ts index 11eb16345..7138f11ee 100644 --- a/data-asia/SV/SV6/018.ts +++ b/data-asia/SV/SV6/018.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ヒヒダルマ", - 'zh-tw': "達摩狒狒" + 'zh-tw': "達摩狒狒", + th: "ฮิฮิดารุมะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "血気 盛んな ポケモン。 太い 腕から 繰りだす パンチは ダンプカーも 粉々に するぞ。", - 'zh-tw': "總是熱血沸騰的寶可夢。 牠厚重的手臂使出的拳擊 甚至能把砂石車打得粉碎。" + 'zh-tw': "總是熱血沸騰的寶可夢。 牠厚重的手臂使出的拳擊 甚至能把砂石車打得粉碎。", + th: "เป็นโปเกมอนที่มีพละกำลังเต็มเปี่ยม หมัดที่ปล่อยออกมาจากลำแขนท่อนใหญ่ แม้รถบรรทุกเทท้ายก็แหลกเป็นผุยผงได้" }, stage: "Stage1", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "ころがりタックル", - 'zh-tw': "滾動衝撞" + 'zh-tw': "滾動衝撞", + th: "กลิ้งโจมตี" }, damage: 60 @@ -37,14 +40,16 @@ const card: Card = { name: { ja: "もうかのとっしん", - 'zh-tw': "猛火猛撞" + 'zh-tw': "猛火猛撞", + th: "ไฟลุกพุ่งเข้าใส่" }, damage: 210, effect: { ja: "このポケモンにも70ダメージ。", - 'zh-tw': "這隻寶可夢也受到70點傷害。" + 'zh-tw': "這隻寶可夢也受到70點傷害。", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 70 ด้วย" } }], diff --git a/data-asia/SV/SV6/019.ts b/data-asia/SV/SV6/019.ts index e81075931..c80ad261f 100644 --- a/data-asia/SV/SV6/019.ts +++ b/data-asia/SV/SV6/019.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ヒトモシ", - 'zh-tw': "燭光靈" + 'zh-tw': "燭光靈", + th: "ฮิโตโมชิ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "明かりを 灯して 道案内を するように 見せかけながら 生命力を 吸い取っている。", - 'zh-tw': "點亮頭上的燭火, 假裝在指引道路。 但其實是在吸取對方的生命力。" + 'zh-tw': "點亮頭上的燭火, 假裝在指引道路。 但其實是在吸取對方的生命力。", + th: "จุดไฟให้แสงสว่างแล้วแสร้งทำเป็นคอยนำทางให้ผู้อื่น ระหว่างนั้นก็สูบพลังชีวิตของผู้คนเหล่านั้นไปด้วย" }, stage: "Basic", @@ -28,19 +30,22 @@ const card: Card = { name: { ja: "なかまをよぶ", - 'zh-tw': "呼朋引伴" + 'zh-tw': "呼朋引伴", + th: "เรียกเพื่อน" }, effect: { ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。", - 'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。" + 'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด" } }, { cost: ["Fire", "Colorless"], name: { ja: "ひだね", - 'zh-tw': "火種" + 'zh-tw': "火種", + th: "เชื้อไฟ" }, damage: 20 diff --git a/data-asia/SV/SV6/020.ts b/data-asia/SV/SV6/020.ts index 567e1232b..4b38caad0 100644 --- a/data-asia/SV/SV6/020.ts +++ b/data-asia/SV/SV6/020.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ランプラー", - 'zh-tw': "燈火幽靈" + 'zh-tw': "燈火幽靈", + th: "แลมพูลา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "魂を 吸いとり 火を灯す。 人が 死ぬのを 待つため 病院を うろつくようになった。", - 'zh-tw': "吸取靈魂來點亮燈火。 為了等待人類死去, 而在醫院裡徘徊遊蕩。" + 'zh-tw': "吸取靈魂來點亮燈火。 為了等待人類死去, 而在醫院裡徘徊遊蕩。", + th: "สูบวิญญาณแล้วนำมาจุดไฟ มักวนเวียนอยู่แถวโรงพยาบาลเพื่อรอให้มีคนเสียชีวิต" }, stage: "Stage1", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "ひだね", - 'zh-tw': "火種" + 'zh-tw': "火種", + th: "เชื้อไฟ" }, damage: 20 @@ -37,14 +40,16 @@ const card: Card = { name: { ja: "もえつくす", - 'zh-tw': "燃燒盡" + 'zh-tw': "燃燒盡", + th: "เผาเกลี้ยง" }, damage: 60, effect: { ja: "このポケモンについているエネルギーを、すべてトラッシュする。", - 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。" + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。", + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด" } }], diff --git a/data-asia/SV/SV6/021.ts b/data-asia/SV/SV6/021.ts index 36ef2c405..9fce108c5 100644 --- a/data-asia/SV/SV6/021.ts +++ b/data-asia/SV/SV6/021.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "シャンデラ", - 'zh-tw': "水晶燈火靈" + 'zh-tw': "水晶燈火靈", + th: "แชนเดลา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "魂を 吸い取って 燃やす。 腕の 炎を 揺らして 相手を 催眠状態に する。", - 'zh-tw': "會吸走並燃燒掉靈魂。 透過搖晃手臂的火焰 讓對手陷入催眠狀態。" + 'zh-tw': "會吸走並燃燒掉靈魂。 透過搖晃手臂的火焰 讓對手陷入催眠狀態。", + th: "สูบวิญญาณและเผาให้มอดไหม้ สั่นเปลวเพลิงบนแขนเพื่อทำให้อีกฝ่ายตกอยู่ในสภาวะถูกสะกดจิต" }, stage: "Stage2", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "いざなうあかり", - 'zh-tw': "勸誘亮光" + 'zh-tw': "勸誘亮光", + th: "แสงไฟล่อหลอก" }, effect: { ja: "自分の番に1回使える。おたがいのプレイヤーは、それぞれ山札を1枚引く。", - 'zh-tw': "在自己的回合時可使用1次。雙方玩家各從牌庫抽出1張卡。" + 'zh-tw': "在自己的回合時可使用1次。雙方玩家各從牌庫抽出1張卡。", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ผู้เล่นทั้งสองฝ่าย แต่ละฝ่ายจั่วการ์ด 1 ใบจากสำรับการ์ด" } }], @@ -42,14 +46,16 @@ const card: Card = { name: { ja: "マインドルーラー", - 'zh-tw': "意志統治者" + 'zh-tw': "意志統治者", + th: "มายด์รูลเลอร์" }, damage: "30×", effect: { ja: "相手の手札の枚数×30ダメージ。", - 'zh-tw': "造成對手的手牌的張數×30點傷害。" + 'zh-tw': "造成對手的手牌的張數×30點傷害。", + th: "แดเมจจะเท่ากับจำนวนการ์ดบนมือฝ่ายตรงข้าม x30" } }], diff --git a/data-asia/SV/SV6/022.ts b/data-asia/SV/SV6/022.ts index 384d07ae0..8dedf1fdb 100644 --- a/data-asia/SV/SV6/022.ts +++ b/data-asia/SV/SV6/022.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "オーガポン かまどのめんex", - 'zh-tw': "厄鬼椪 火灶面具ex" + 'zh-tw': "厄鬼椪 火灶面具ex", + th: "โอการ์ปอง หน้ากากเตาไฟex" }, category: "Pokemon", @@ -22,28 +23,32 @@ const card: Card = { name: { ja: "いかりがま", - 'zh-tw': "憤怒之窯" + 'zh-tw': "憤怒之窯", + th: "เตาไฟพิโรธ" }, damage: "20×", effect: { ja: "このポケモンにのっているダメカンの数×20ダメージ。", - 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。" + 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。", + th: "แดเมจจะเท่ากับจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x20" } }, { cost: ["Fire", "Fire", "Fire"], name: { ja: "ダイナミックブレイズ", - 'zh-tw': "極限火焰" + 'zh-tw': "極限火焰", + th: "ไดนามิกเบลซ" }, damage: "140+", effect: { ja: "相手のバトルポケモンが進化ポケモンなら、140ダメージ追加。その場合、このポケモンについているエネルギーを、すべてトラッシュする。", - 'zh-tw': "若對手的戰鬥寶可夢為進化寶可夢,則增加140點傷害。這個情況下,將這隻寶可夢身上附加的能量卡全部丟棄。" + 'zh-tw': "若對手的戰鬥寶可夢為進化寶可夢,則增加140點傷害。這個情況下,將這隻寶可夢身上附加的能量卡全部丟棄。", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นโปเกมอนวิวัฒนาการ การโจมตีนี้จะเพิ่มแดเมจอีก 140 เมื่อทำเช่นนั้นแล้ว ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด" } }], diff --git a/data-asia/SV/SV6/023.ts b/data-asia/SV/SV6/023.ts index 02458f936..48e5e1900 100644 --- a/data-asia/SV/SV6/023.ts +++ b/data-asia/SV/SV6/023.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ニョロモ", - 'zh-tw': "蚊香蝌蚪" + 'zh-tw': "蚊香蝌蚪", + th: "เนียวโรโมะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "まだ 脚が 生えた ばかりで うまく 歩けない。 水の中を 泳いでる ほうが 好きなようだ。", - 'zh-tw': "由於腳才剛長出來, 因此還不太擅長走路。 似乎更喜歡在水中游泳。" + 'zh-tw': "由於腳才剛長出來, 因此還不太擅長走路。 似乎更喜歡在水中游泳。", + th: "ขาพึ่งงอกออกมาไม่นาน จึงยังเดินได้ไม่คล่อง ดูเหมือนจะชอบว่ายไปมาในน้ำมากกว่า" }, stage: "Basic", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "ふむ", - 'zh-tw': "踩" + 'zh-tw': "踩", + th: "เหยียบ" }, damage: 10 @@ -37,14 +40,16 @@ const card: Card = { name: { ja: "しっぽビンタ", - 'zh-tw': "擺尾拍打" + 'zh-tw': "擺尾拍打", + th: "ตบด้วยหาง" }, damage: "20×", effect: { ja: "コインを2回投げ、オモテの数×20ダメージ。", - 'zh-tw': "擲2次硬幣,造成正面出現的次數×20點傷害。" + 'zh-tw': "擲2次硬幣,造成正面出現的次數×20點傷害。", + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20" } }], diff --git a/data-asia/SV/SV6/024.ts b/data-asia/SV/SV6/024.ts index 2776b84d0..b6721e710 100644 --- a/data-asia/SV/SV6/024.ts +++ b/data-asia/SV/SV6/024.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ニョロゾ", - 'zh-tw': "蚊香君" + 'zh-tw': "蚊香君", + th: "เนียวโรโซ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "全身の 皮膚は 湿っているが お腹の 渦巻きの 部分の 感触は すべすべとしている。", - 'zh-tw': "全身的皮膚都濕答答的, 但肚子上的漩渦部分 摸起來很光滑。" + 'zh-tw': "全身的皮膚都濕答答的, 但肚子上的漩渦部分 摸起來很光滑。", + th: "ผิวทั่วร่างชุ่มชื้น แต่ส่วนที่ขดเป็นวงตรงท้องนั้นมีผิวสัมผัสที่นุ่มลื่น" }, stage: "Stage1", @@ -28,26 +30,30 @@ const card: Card = { name: { ja: "さいみんじゅつ", - 'zh-tw': "催眠術" + 'zh-tw': "催眠術", + th: "สะกดจิต" }, effect: { ja: "相手のバトルポケモンをねむりにする。", - 'zh-tw': "將對手的戰鬥寶可夢【睡眠】。" + 'zh-tw': "將對手的戰鬥寶可夢【睡眠】。", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]" } }, { cost: ["Colorless", "Colorless"], name: { ja: "おうふくビンタ", - 'zh-tw': "連環巴掌" + 'zh-tw': "連環巴掌", + th: "ตบเรียกสติ" }, damage: "30×", effect: { ja: "コインを2回投げ、オモテの数×30ダメージ。", - 'zh-tw': "擲2次硬幣,造成正面出現的次數×30點傷害。" + 'zh-tw': "擲2次硬幣,造成正面出現的次數×30點傷害。", + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x30" } }], diff --git a/data-asia/SV/SV6/025.ts b/data-asia/SV/SV6/025.ts index 95cb17002..7e6950056 100644 --- a/data-asia/SV/SV6/025.ts +++ b/data-asia/SV/SV6/025.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ニョロボン", - 'zh-tw': "蚊香泳士" + 'zh-tw': "蚊香泳士", + th: "เนียวโรบอน" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "発達した 手足を 使って ほんの 一瞬だけなら 水の上を 走ることができる。", - 'zh-tw': "如果只是一瞬間的話, 牠能夠用肌肉發達的 四肢在水上奔跑。" + 'zh-tw': "如果只是一瞬間的話, 牠能夠用肌肉發達的 四肢在水上奔跑。", + th: "สามารถวิ่งเหนือน้ำได้ชั่วครู่ด้วยแขนและขาที่พัฒนาขึ้นมา" }, stage: "Stage2", @@ -28,26 +30,30 @@ const card: Card = { name: { ja: "さいみんじゅつ", - 'zh-tw': "催眠術" + 'zh-tw': "催眠術", + th: "สะกดจิต" }, effect: { ja: "相手のバトルポケモンをねむりにする。", - 'zh-tw': "將對手的戰鬥寶可夢【睡眠】。" + 'zh-tw': "將對手的戰鬥寶可夢【睡眠】。", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]" } }, { cost: ["Colorless", "Colorless"], name: { ja: "ジャンピングアッパー", - 'zh-tw': "跳躍衝天" + 'zh-tw': "跳躍衝天", + th: "กระโดดอัดเสย" }, damage: "120+", effect: { ja: "のぞむなら、120ダメージ追加。その場合、このポケモンと、ついているすべてのカードを、自分の山札にもどして切る。", - 'zh-tw': "若希望,增加120點傷害。這個情況下,將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。" + 'zh-tw': "若希望,增加120點傷害。這個情況下,將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。", + th: "หากต้องการ การโจมตีนี้จะเพิ่มแดเมจอีก 120 เมื่อทำเช่นนั้นแล้ว นำการ์ดโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายเราแล้วสับ" } }], diff --git a/data-asia/SV/SV6/026.ts b/data-asia/SV/SV6/026.ts index a5c7829c3..23a2e02bc 100644 --- a/data-asia/SV/SV6/026.ts +++ b/data-asia/SV/SV6/026.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "トサキント", - 'zh-tw': "角金魚" + 'zh-tw': "角金魚", + th: "โทซาคินโตะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "背びれ 胸びれ 尾びれが 優雅に たなびくので 水の踊り子 と呼ばれる。", - 'zh-tw': "會優雅地搖擺 背鰭、胸鰭和尾鰭, 所以被稱為水中的舞者。" + 'zh-tw': "會優雅地搖擺 背鰭、胸鰭和尾鰭, 所以被稱為水中的舞者。", + th: "ครีบหลัง ครีบอก ครีบหางโบกสะบัดอย่างงดงามจนถูกเรียกว่านักระบำแห่งท้องน้ำ" }, stage: "Basic", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "おまつりおんど", - 'zh-tw': "祭典樂舞" + 'zh-tw': "祭典樂舞", + th: "รำวงงานเทศกาล" }, effect: { ja: "場に「お祭り会場」が出ているなら、このポケモンは、持っているワザを2回連続で使える。(1回目のワザで相手のバトルポケモンがきぜつしたなら、次のバトルポケモンが出たあと、2回目のワザを使う。)", - 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)" + 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)", + th: "ถ้ามี [สถานที่จัดเทศกาล] อยู่บนกระดาน โปเกมอนนี้ จะใช้ท่าต่อสู้ที่มีต่อเนื่องกันได้ 2 ครั้ง (ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ]ด้วยท่าต่อสู้ครั้งที่ 1 หลังจากที่โปเกมอนบนตำแหน่งต่อสู้ตัวถัดไปออกมา ให้ใช้ท่าต่อสู้ครั้งที่ 2)" } }], @@ -42,14 +46,16 @@ const card: Card = { name: { ja: "うずしお", - 'zh-tw': "潮旋" + 'zh-tw': "潮旋", + th: "น้ำวน" }, damage: 10, effect: { ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。", - 'zh-tw': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。" + 'zh-tw': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" } }], diff --git a/data-asia/SV/SV6/027.ts b/data-asia/SV/SV6/027.ts index eff39ab4e..01e7bda92 100644 --- a/data-asia/SV/SV6/027.ts +++ b/data-asia/SV/SV6/027.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "アズマオウ", - 'zh-tw': "金魚王" + 'zh-tw': "金魚王", + th: "อซึมาโอ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "秋になると プロポーズのため 体に 脂が のってきて とても きれいな色に 変化する。", - 'zh-tw': "到了秋天,體內的脂肪 會因為要求偶而增加, 體色也會變得非常漂亮。" + 'zh-tw': "到了秋天,體內的脂肪 會因為要求偶而增加, 體色也會變得非常漂亮。", + th: "เมื่อเข้าสู่ฤดูใบไม้ร่วง ร่างกายจะมีไขมันออกมาตามตัวและเปลี่ยนเป็นสีที่สวยงามมาก เพื่อรอผสมพันธุ์" }, stage: "Stage1", @@ -28,21 +30,24 @@ const card: Card = { name: { ja: "つつきおとす", - 'zh-tw': "啄落" + 'zh-tw': "啄落", + th: "จิกลงมา" }, damage: 50, effect: { ja: "ダメージを与える前に、相手のバトルポケモンについている「ポケモンのどうぐ」をトラッシュする。", - 'zh-tw': "在造成傷害前,將對手的戰鬥寶可夢身上附加的「寶可夢道具」卡丟棄。" + 'zh-tw': "在造成傷害前,將對手的戰鬥寶可夢身上附加的「寶可夢道具」卡丟棄。", + th: "ก่อนจะทำแดเมจ ทิ้ง [ไอเท็มติดโปเกมอน] ที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด" } }, { cost: ["Colorless", "Colorless", "Colorless"], name: { ja: "つのドリル", - 'zh-tw': "角鑽" + 'zh-tw': "角鑽", + th: "เขาสว่าน" }, damage: 90 diff --git a/data-asia/SV/SV6/028.ts b/data-asia/SV/SV6/028.ts index adbab733e..db2bed9cc 100644 --- a/data-asia/SV/SV6/028.ts +++ b/data-asia/SV/SV6/028.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ルージュラ", - 'zh-tw': "迷唇姐" + 'zh-tw': "迷唇姐", + th: "รูจูลา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "ガラルの とある 地域では 氷の 女王と 呼んで ルージュラを 恐れ崇めていた。", - 'zh-tw': "在伽勒爾的某個地區, 人們稱迷唇姐為冰之女王, 並且敬畏崇拜牠。" + 'zh-tw': "在伽勒爾的某個地區, 人們稱迷唇姐為冰之女王, 並且敬畏崇拜牠。", + th: "ณ ดินแดนแห่งหนึ่งในกาลาร์ เคยยำเกรงต่อรูจูลาและเรียกเธอว่าราชินีน้ำแข็ง" }, stage: "Basic", @@ -28,19 +30,22 @@ const card: Card = { name: { ja: "おさそいキッス", - 'zh-tw': "邀請之吻" + 'zh-tw': "邀請之吻", + th: "จูบชักชวน" }, effect: { ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。その後、このポケモンについているエネルギーを1個選び、新しく出したポケモンにつけ替える。", - 'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。然後,選擇1個這隻寶可夢身上附加的能量,改附於新上場的寶可夢身上。" + 'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。然後,選擇1個這隻寶可夢身上附加的能量,改附於新上場的寶可夢身上。", + th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด หลังจากนั้น เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ย้ายไปติดกับโปเกมอนที่เพิ่งออกมาใหม่" } }, { cost: ["Water"], name: { ja: "スノーアイス", - 'zh-tw': "雪花冰" + 'zh-tw': "雪花冰", + th: "สโนว์ไอซ์" }, damage: 30 diff --git a/data-asia/SV/SV6/029.ts b/data-asia/SV/SV6/029.ts index b14d166c4..98ff696cd 100644 --- a/data-asia/SV/SV6/029.ts +++ b/data-asia/SV/SV6/029.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ヒンバス", - 'zh-tw': "醜醜魚" + 'zh-tw': "醜醜魚", + th: "ฮินบาส" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "一番 みすぼらしい ポケモン。 水草の 多い 川底で 大勢 集まって 暮らしている。", - 'zh-tw': "最寒酸的寶可夢。 在有許多水草的河底 群聚而居。" + 'zh-tw': "最寒酸的寶可夢。 在有許多水草的河底 群聚而居。", + th: "โปเกมอนที่ดูโทรมที่สุด อาศัยอยู่กันเป็นฝูงที่ก้นแม่น้ำที่มีพืชน้ำมากมาย" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "じたばた", - 'zh-tw': "抓狂" + 'zh-tw': "抓狂", + th: "กระเสือกกระสน" }, damage: "10×", effect: { ja: "このポケモンにのっているダメカンの数×10ダメージ。", - 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×10點傷害。" + 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×10點傷害。", + th: "แดเมจจะเท่ากับจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10" } }], diff --git a/data-asia/SV/SV6/030.ts b/data-asia/SV/SV6/030.ts index 9a66a0ccd..0cce3ac02 100644 --- a/data-asia/SV/SV6/030.ts +++ b/data-asia/SV/SV6/030.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ミロカロス", - 'zh-tw': "美納斯" + 'zh-tw': "美納斯", + th: "มิโลคารอส" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "澄んだ 湖の 底に 棲む。 戦争が 起こるとき 現れ 人々の 心を いやす。", - 'zh-tw': "棲息在清澈的湖底。 在發生戰爭時出現, 治癒人們的心。" + 'zh-tw': "棲息在清澈的湖底。 在發生戰爭時出現, 治癒人們的心。", + th: "อาศัยอยู่ก้นทะเลสาบที่ใสสะอาด จะปรากฏตัวเมื่อเกิดสงครามเพื่อเยียวยาจิตใจของผู้คน" }, stage: "Stage1", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "なぎのきょうち", - 'zh-tw': "平穩境地" + 'zh-tw': "平穩境地", + th: "สภาวะสงบนิ่ง" }, effect: { ja: "このポケモンがいるかぎり、相手の場のポケモンと、そのポケモンについているすべてのカードは、手札にもどせない。", - 'zh-tw': "只要這隻寶可夢在場上,對手的場上寶可夢與那隻寶可夢身上附加的卡,全部無法放回手牌。" + 'zh-tw': "只要這隻寶可夢在場上,對手的場上寶可夢與那隻寶可夢身上附加的卡,全部無法放回手牌。", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ โปเกมอนบนกระดานฝ่ายตรงข้าม และการ์ดทั้งหมดที่ติดอยู่กับโปเกมอนนั้น จะนำกลับขึ้นมือไม่ได้" } }], @@ -42,7 +46,8 @@ const card: Card = { name: { ja: "ハイドロスプラッシュ", - 'zh-tw': "水炮濺射" + 'zh-tw': "水炮濺射", + th: "ไฮโดรสแปลช" }, damage: 100 diff --git a/data-asia/SV/SV6/031.ts b/data-asia/SV/SV6/031.ts index 206441129..908ebb0ec 100644 --- a/data-asia/SV/SV6/031.ts +++ b/data-asia/SV/SV6/031.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ユキワラシ", - 'zh-tw': "雪童子" + 'zh-tw': "雪童子", + th: "ยูกิวาราชิ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "ユキワラシが 訪れた 家は お金持ちに なると 言われている。 マイナス 100度でも へっちゃら。", - 'zh-tw': "據說雪童子到訪過的家 將會變得富有。對牠來說 零下100度根本不算什麼。" + 'zh-tw': "據說雪童子到訪過的家 將會變得富有。對牠來說 零下100度根本不算什麼。", + th: "ว่ากันว่าบ้านที่ยูกิวาราชิมาเยือนจะมั่งคั่ง แม้จะอยู่ในที่ที่อากาศติดลบ 100 องศาเซลเซียสก็ยังสบาย ๆ" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "おどろかす", - 'zh-tw': "驚嚇" + 'zh-tw': "驚嚇", + th: "ทำให้ตกใจ" }, damage: 20, effect: { ja: "相手の手札からオモテを見ないで1枚選び、そのカードのオモテを見て、相手の山札にもどして切る。", - 'zh-tw': "在不看正面的情況下,從對手的手牌選擇1張,查看那張卡的正面後放回對手的牌庫並重洗。" + 'zh-tw': "在不看正面的情況下,從對手的手牌選擇1張,查看那張卡的正面後放回對手的牌庫並重洗。", + th: "เลือกการ์ด 1 ใบจากบนมือฝ่ายตรงข้ามโดยไม่ดูหน้าการ์ด หลังจากดูหน้าการ์ดนั้นแล้ว ใส่กลับไปในสำรับการ์ดฝ่ายตรงข้ามแล้วสับ" } }], diff --git a/data-asia/SV/SV6/032.ts b/data-asia/SV/SV6/032.ts index 4be640555..eafe24293 100644 --- a/data-asia/SV/SV6/032.ts +++ b/data-asia/SV/SV6/032.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "オニゴーリ", - 'zh-tw': "冰鬼護" + 'zh-tw': "冰鬼護", + th: "โอนิโกริ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "空気中の 水分を 一瞬で 凍らせることで 獲物が 逃げられないように する。", - 'zh-tw': "會透過瞬間凍結 空氣中的水分, 使獵物無法逃脫。" + 'zh-tw': "會透過瞬間凍結 空氣中的水分, 使獵物無法逃脫。", + th: "ทำให้เหยื่อไม่สามารถหนีได้โดยการแช่แข็งน้ำในอากาศในชั่วพริบตา" }, stage: "Stage1", @@ -28,28 +30,32 @@ const card: Card = { name: { ja: "ダメージビート", - 'zh-tw': "傷害律動" + 'zh-tw': "傷害律動", + th: "แดเมจบีต" }, damage: "20×", effect: { ja: "相手のバトルポケモンにのっているダメカンの数×20ダメージ。", - 'zh-tw': "造成對手的戰鬥寶可夢身上放置的傷害指示物的數量×20點傷害。" + 'zh-tw': "造成對手的戰鬥寶可夢身上放置的傷害指示物的數量×20點傷害。", + th: "แดเมจจะเท่ากับจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x20" } }, { cost: ["Water", "Colorless", "Colorless"], name: { ja: "クレイジーヘッズ", - 'zh-tw': "瘋狂頭" + 'zh-tw': "瘋狂頭", + th: "เครซีเฮด" }, damage: 140, effect: { ja: "このポケモンについているエネルギーを1個選び、トラッシュする。", - 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。" + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" } }], diff --git a/data-asia/SV/SV6/033.ts b/data-asia/SV/SV6/033.ts index d4a697710..1dad78a59 100644 --- a/data-asia/SV/SV6/033.ts +++ b/data-asia/SV/SV6/033.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ユキメノコ", - 'zh-tw': "雪妖女" + 'zh-tw': "雪妖女", + th: "ยูกิเมโนโกะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "マイナス50度の 息を 吹きかけ 凍らせた 獲物を 秘密の 場所に 飾っていると 言われる。", - 'zh-tw': "據說會吐出零下50度的 氣息凍結獵物,然後帶到 秘密的地方裝飾起來。" + 'zh-tw': "據說會吐出零下50度的 氣息凍結獵物,然後帶到 秘密的地方裝飾起來。", + th: "ว่ากันว่าเอาเหยื่อที่แช่แข็งด้วยการเป่าไอเย็นติดลบ 50 องศาเซลเซียสใส่ไปวางตกแต่งในสถานที่ลับ" }, stage: "Stage1", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "いてつくとばり", - 'zh-tw': "冰冷之帳" + 'zh-tw': "冰冷之帳", + th: "ฉากกั้นแช่แข็ง" }, effect: { ja: "このポケモンがいるかぎり、ポケモンチェックのたび、おたがいの特性を持つポケモン(「ユキメノコ」をのぞく)全員に、それぞれダメカンを1個のせる。", - 'zh-tw': "只要這隻寶可夢在場上,每次寶可夢檢查時,在雙方的擁有特性的所有寶可夢(「雪妖女」除外)身上各放置1個傷害指示物。" + 'zh-tw': "只要這隻寶可夢在場上,每次寶可夢檢查時,在雙方的擁有特性的所有寶可夢(「雪妖女」除外)身上各放置1個傷害指示物。", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ ทุกครั้งที่ตรวจสอบโปเกมอน ให้วางตัวนับแดเมจบนโปเกมอนที่มีความสามารถของทั้งสองฝ่ายทุกตัว (ยกเว้น [ยูกิเมโนโกะ]) ตัวละ 1 ตัว" } }], @@ -42,7 +46,8 @@ const card: Card = { name: { ja: "フロストスマッシュ", - 'zh-tw': "冰霜粉碎" + 'zh-tw': "冰霜粉碎", + th: "ฟรอสต์สแมช" }, damage: 60 diff --git a/data-asia/SV/SV6/034.ts b/data-asia/SV/SV6/034.ts index dddad557b..6a42fc170 100644 --- a/data-asia/SV/SV6/034.ts +++ b/data-asia/SV/SV6/034.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ナミイルカ", - 'zh-tw': "波普海豚" + 'zh-tw': "波普海豚", + th: "นามิอิรุกะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "水のリングは 頭の 穴から 出る 粘着液と 海の水を 混ぜて 作り出したものなのだ。", - 'zh-tw': "牠的水環是頭部的洞 冒出來的黏膠與海水 混合後製造出來的。" + 'zh-tw': "牠的水環是頭部的洞 冒出來的黏膠與海水 混合後製造出來的。", + th: "วงแหวนน้ำถูกสร้างขึ้นมาจากการผสมกันของของเหลวเหนียวหนืดที่ออกมาจากรูที่หัวและน้ำทะเล" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "アクアスラッシュ", - 'zh-tw': "水流斬" + 'zh-tw': "水流斬", + th: "อควาสแลช" }, damage: 30, effect: { ja: "次の自分の番、このポケモンはワザが使えない。", - 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。" + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้" } }], diff --git a/data-asia/SV/SV6/035.ts b/data-asia/SV/SV6/035.ts index 8617dd622..07e5d6bcc 100644 --- a/data-asia/SV/SV6/035.ts +++ b/data-asia/SV/SV6/035.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "イルカマン", - 'zh-tw': "海豚俠" + 'zh-tw': "海豚俠", + th: "อิรุกะแมน" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "身体能力は ナミイルカと 変わらないが 仲間の ピンチには 変身して パワーアップするぞ。", - 'zh-tw': "體能與波普海豚不相上下, 但一旦夥伴陷入了危機, 就會變身來提高自己的力量。" + 'zh-tw': "體能與波普海豚不相上下, 但一旦夥伴陷入了危機, 就會變身來提高自己的力量。", + th: "ความสามารถทางกายภาพนั้นไม่ต่างจากนามิอิรุกะ แต่เมื่อเพื่อนพ้องตกอยู่ในอันตรายจะแปลงร่างและแข็งแกร่งขึ้น" }, stage: "Stage1", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "マイティチェンジ", - 'zh-tw': "全能變身" + 'zh-tw': "全能變身", + th: "แปลงร่างขั้นสุดยอด" }, effect: { ja: "自分の番に、このポケモンがバトル場からベンチにもどったとき、1回使える。自分の山札から「イルカマンex」を1枚選び、このカードと入れ替える(ついているカード・ダメカン・特殊状態・効果などは、すべて引きつぐ)。入れ替えたなら、このカードは山札にもどす。そして山札を切る。", - 'zh-tw': "在自己的回合,這隻寶可夢從戰鬥場回到備戰區時,可使用1次。從自己的牌庫選擇1張「海豚俠【ex】」,與這張卡互換(所附加的卡・傷害指示物・特殊狀態・效果等全部保留)。若互換了,則這張卡放回牌庫。並且重洗牌庫。" + 'zh-tw': "在自己的回合,這隻寶可夢從戰鬥場回到備戰區時,可使用1次。從自己的牌庫選擇1張「海豚俠【ex】」,與這張卡互換(所附加的卡・傷害指示物・特殊狀態・效果等全部保留)。若互換了,則這張卡放回牌庫。並且重洗牌庫。", + th: "ในเทิร์นฝ่ายเรา เมื่อโปเกมอนนี้ออกจากตำแหน่งต่อสู้กลับมาบนเบนช์ ใช้ได้ 1 ครั้ง เลือกการ์ด [อิรุกะแมน【ex】] 1 ใบจากสำรับการ์ดฝ่ายเรา สลับกับการ์ดนี้ (การ์ดที่ติดอยู่ ตัวนับแดเมจ สภาวะผิดปกติ เอฟเฟกต์ทั้งหมดยังคงอยู่ต่อไป) ถ้าสลับแล้ว นำการ์ดนี้ใส่กลับไปในสำรับการ์ด แล้วสับสำรับการ์ด" } }], @@ -42,7 +46,8 @@ const card: Card = { name: { ja: "スプラッシュ", - 'zh-tw': "飛濺" + 'zh-tw': "飛濺", + th: "สแปลช" }, damage: 30 diff --git a/data-asia/SV/SV6/036.ts b/data-asia/SV/SV6/036.ts index 9d071731c..3a1ce67b6 100644 --- a/data-asia/SV/SV6/036.ts +++ b/data-asia/SV/SV6/036.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "イルカマンex", - 'zh-tw': "海豚俠ex" + 'zh-tw': "海豚俠ex", + th: "อิรุกะแมนex" }, category: "Pokemon", @@ -22,12 +23,14 @@ const card: Card = { name: { ja: "マイティソウル", - 'zh-tw': "全能靈魂" + 'zh-tw': "全能靈魂", + th: "ไมตี้โซล" }, effect: { ja: "このカードは、「イルカマン」の特性「マイティチェンジ」の効果によってしか場に出せない。", - 'zh-tw': "這張卡只可依據「海豚俠」的特性「全能變身」的效果放置於場上。" + 'zh-tw': "這張卡只可依據「海豚俠」的特性「全能變身」的效果放置於場上。", + th: "การ์ดนี้ สามารถวางบนกระดานได้ด้วยเอฟเฟกต์ของความสามารถ [แปลงร่างขั้นสุดยอด] ของ [อิรุกะแมน] เท่านั้น" } }], @@ -36,14 +39,16 @@ const card: Card = { name: { ja: "ギガインパクト", - 'zh-tw': "終極衝擊" + 'zh-tw': "終極衝擊", + th: "กิก้าอิมแพกต์" }, damage: 250, effect: { ja: "次の自分の番、このポケモンはワザが使えない。", - 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。" + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้" } }], diff --git a/data-asia/SV/SV6/037.ts b/data-asia/SV/SV6/037.ts index b457e6d52..030624ced 100644 --- a/data-asia/SV/SV6/037.ts +++ b/data-asia/SV/SV6/037.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "テツノツツミ", - 'zh-tw': "鐵包袱" + 'zh-tw': "鐵包袱", + th: "ถุงเหล็ก" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "古い 書物に 登場する 謎の 物体に 似た ポケモン。 目撃例は 過去 2件のみ。", - 'zh-tw': "與古書裡記載的神秘物體 長得很相像的寶可夢。 過去只被目擊過2次。" + 'zh-tw': "與古書裡記載的神秘物體 長得很相像的寶可夢。 過去只被目擊過2次。", + th: "โปเกมอนที่มีความคล้ายคลึงกับวัตถุลึกลับที่ปรากฏในบันทึกเก่าแก่ ในอดีตมีข้อมูลว่ามีผู้พบเห็นเพียง 2 ครั้งเท่านั้น" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "インタージェット", - 'zh-tw': "內部噴射" + 'zh-tw': "內部噴射", + th: "อินเทอร์เจ็ต" }, damage: 60, effect: { ja: "このポケモンをベンチポケモンと入れ替える。その後、相手は相手自身のバトルポケモンをベンチポケモンと入れ替える。", - 'zh-tw': "將這隻寶可夢與備戰寶可夢互換。然後,對手將對手自己的戰鬥寶可夢與備戰寶可夢互換。" + 'zh-tw': "將這隻寶可夢與備戰寶可夢互換。然後,對手將對手自己的戰鬥寶可夢與備戰寶可夢互換。", + th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์ หลังจากนั้น ฝ่ายตรงข้ามสลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเองกับโปเกมอนบนเบนช์" } }], diff --git a/data-asia/SV/SV6/038.ts b/data-asia/SV/SV6/038.ts index 14a3535bb..f8db869ef 100644 --- a/data-asia/SV/SV6/038.ts +++ b/data-asia/SV/SV6/038.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "オーガポン いどのめんex", - 'zh-tw': "厄鬼椪 水井面具ex" + 'zh-tw': "厄鬼椪 水井面具ex", + th: "โอการ์ปอง หน้ากากบ่อน้ำex" }, category: "Pokemon", @@ -22,28 +23,32 @@ const card: Card = { name: { ja: "すすりなく", - 'zh-tw': "啜泣" + 'zh-tw': "啜泣", + th: "สะอึกสะอื้น" }, damage: 20, effect: { ja: "次の相手の番、このワザを受けたポケモンは、にげられない。", - 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" } }, { cost: ["Water", "Colorless", "Colorless"], name: { ja: "げきりゅうポンプ", - 'zh-tw': "激流水泵" + 'zh-tw': "激流水泵", + th: "ปั๊มพ์น้ำเชี่ยว" }, damage: 100, effect: { ja: "のぞむなら、このポケモンについているエネルギーを3個選び、山札にもどして切る。その場合、相手のベンチポケモン1匹にも、120ダメージ。[ベンチは弱点・抵抗力を計算しない。]", - 'zh-tw': "若希望,選擇3個這隻寶可夢身上附加的能量,放回牌庫並重洗。這個情況下,對手的1隻備戰寶可夢也受到120點傷害。[在備戰區不計算弱點・抵抗力。]" + 'zh-tw': "若希望,選擇3個這隻寶可夢身上附加的能量,放回牌庫並重洗。這個情況下,對手的1隻備戰寶可夢也受到120點傷害。[在備戰區不計算弱點・抵抗力。]", + th: "หากต้องการ เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 3 ลูก ใส่กลับไปในสำรับการ์ดแล้วสับ เมื่อทำเช่นนั้นแล้ว โปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ก็จะได้รับแดเมจ 120 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" } }], diff --git a/data-asia/SV/SV6/039.ts b/data-asia/SV/SV6/039.ts index 55b68d383..425b9bf95 100644 --- a/data-asia/SV/SV6/039.ts +++ b/data-asia/SV/SV6/039.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "コリンク", - 'zh-tw': "小貓怪" + 'zh-tw': "小貓怪", + th: "โคลิงก์" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "筋肉が 伸び縮み することで 電気が 発生。 ピンチになると 体毛が まぶしく 光る。", - 'zh-tw': "只要伸縮肌肉就能夠 產生電流。身陷危機時 體毛會發出刺眼的亮光。" + 'zh-tw': "只要伸縮肌肉就能夠 產生電流。身陷危機時 體毛會發出刺眼的亮光。", + th: "สร้างไฟฟ้าโดยการยืดและหดตัวของกล้ามเนื้อ พอเข้าตาจน ขนทั่วตัวจะเปล่งแสงแสบตา" }, stage: "Basic", @@ -28,19 +30,22 @@ const card: Card = { name: { ja: "こうきしん", - 'zh-tw': "好奇心" + 'zh-tw': "好奇心", + th: "อยากรู้อยากเห็น" }, effect: { ja: "相手の手札を見る。", - 'zh-tw': "查看對手的手牌。" + 'zh-tw': "查看對手的手牌。", + th: "ดูการ์ดบนมือฝ่ายตรงข้าม" } }, { cost: ["Lightning", "Lightning"], name: { ja: "バチバチ", - 'zh-tw': "劈哩啪啦" + 'zh-tw': "劈哩啪啦", + th: "ประกายไฟ" }, damage: 30 diff --git a/data-asia/SV/SV6/040.ts b/data-asia/SV/SV6/040.ts index 62dde496f..2eadc4b46 100644 --- a/data-asia/SV/SV6/040.ts +++ b/data-asia/SV/SV6/040.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ルクシオ", - 'zh-tw': "勒克貓" + 'zh-tw': "勒克貓", + th: "ลุคซิโอ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "仲間と 尻尾を つなげると より 強力な 電撃を ツメから 出すことが できる。", - 'zh-tw': "只要與夥伴的尾巴互相 串聯,就能將更加強大 的電擊從爪子釋放出去。" + 'zh-tw': "只要與夥伴的尾巴互相 串聯,就能將更加強大 的電擊從爪子釋放出去。", + th: "สามารถปล่อยไฟฟ้าที่ทรงพลังกว่าปกติจากกรงเล็บได้โดยการพันหางตัวเองกับเพื่อนพ้อง" }, stage: "Stage1", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "かじりつく", - 'zh-tw': "咬緊" + 'zh-tw': "咬緊", + th: "กัด" }, damage: 60, effect: { ja: "次の相手の番、このワザを受けたポケモンは、にげられない。", - 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" } }], diff --git a/data-asia/SV/SV6/041.ts b/data-asia/SV/SV6/041.ts index 00aeb596f..849e3e9bf 100644 --- a/data-asia/SV/SV6/041.ts +++ b/data-asia/SV/SV6/041.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "レントラーex", - 'zh-tw': "倫琴貓ex" + 'zh-tw': "倫琴貓ex", + th: "เร็นโทราex" }, category: "Pokemon", @@ -22,28 +23,32 @@ const card: Card = { name: { ja: "つきさすがんこう", - 'zh-tw': "突刺目光" + 'zh-tw': "突刺目光", + th: "ตาประกายทิ่มแทง" }, damage: 120, effect: { ja: "相手の手札を見て、その中からカードを1枚選び、トラッシュする。", - 'zh-tw': "查看對手的手牌,從其中選擇1張卡,將其丟棄。" + 'zh-tw': "查看對手的手牌,從其中選擇1張卡,將其丟棄。", + th: "ดูการ์ดบนมือฝ่ายตรงข้าม เลือกการ์ด 1 ใบจากในนั้น ทิ้งที่ตำแหน่งทิ้งการ์ด" } }, { cost: ["Lightning", "Lightning"], name: { ja: "ボルトストライク", - 'zh-tw': "伏特強襲" + 'zh-tw': "伏特強襲", + th: "โวลต์สไตรค์" }, damage: 250, effect: { ja: "このポケモンについているエネルギーを、すべてトラッシュする。", - 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。" + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。", + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด" } }], diff --git a/data-asia/SV/SV6/042.ts b/data-asia/SV/SV6/042.ts index abd00d82d..859a14bcb 100644 --- a/data-asia/SV/SV6/042.ts +++ b/data-asia/SV/SV6/042.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "エモンガ", - 'zh-tw': "電飛鼠" + 'zh-tw': "電飛鼠", + th: "เอมอนกา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "電気を ほとばしらせながら 空を 舞うように 飛ぶ。 可愛いが やっかいなのだ。", - 'zh-tw': "會一邊放電一邊像是 在空中跳舞般地飛行。 雖然可愛,但很難纏。" + 'zh-tw': "會一邊放電一邊像是 在空中跳舞般地飛行。 雖然可愛,但很難纏。", + th: "บินราวกับร่ายรำอยู่บนท้องฟ้าพลางปล่อยไฟฟ้าพุ่งทะลักออกมาด้วย ถึงแม้ว่าจะน่ารักแต่ก็สร้างปัญหาไม่น้อย" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "スカイウェーブ", - 'zh-tw': "天空波" + 'zh-tw': "天空波", + th: "สกายเวฟ" }, damage: 10, effect: { ja: "おたがいのベンチポケモン全員にも、それぞれ10ダメージ。[ベンチは弱点・抵抗力を計算しない。]", - 'zh-tw': "雙方的所有備戰寶可夢也各受到10點傷害。 [在備戰區不計算弱點・抵抗力。]" + 'zh-tw': "雙方的所有備戰寶可夢也各受到10點傷害。 [在備戰區不計算弱點・抵抗力。]", + th: "โปเกมอนบนเบนช์ของทั้งสองฝ่ายทุกตัว ก็จะได้รับแดเมจตัวละ 10 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" } }], diff --git a/data-asia/SV/SV6/043.ts b/data-asia/SV/SV6/043.ts index bc9ac87ce..b1677df8a 100644 --- a/data-asia/SV/SV6/043.ts +++ b/data-asia/SV/SV6/043.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "カイデン", - 'zh-tw': "電海燕" + 'zh-tw': "電海燕", + th: "ไคเด็น" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "海岸の 崖に 巣を 作る。 巣は パチパチ 弾ける 不思議な 食感で 人気の 珍味。", - 'zh-tw': "會在海岸的懸崖上築巢。 吃起來劈哩啪啦跳的神奇口感, 讓牠的巢成了受歡迎的珍奇美食。" + 'zh-tw': "會在海岸的懸崖上築巢。 吃起來劈哩啪啦跳的神奇口感, 讓牠的巢成了受歡迎的珍奇美食。", + th: "สร้างรังบนหน้าผาริมชายฝั่ง รังของมันเป็นอาหารแสนโอชะและเป็นที่นิยมเนื่องจากเนื้อสัมผัสประหลาดที่จะแตกเปรี๊ยะภายในปาก" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "でんきショック", - 'zh-tw': "電擊" + 'zh-tw': "電擊", + th: "ช็อกไฟฟ้า" }, damage: 10, effect: { ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。", - 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。" + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]" } }], diff --git a/data-asia/SV/SV6/044.ts b/data-asia/SV/SV6/044.ts index 240c59a52..332202c91 100644 --- a/data-asia/SV/SV6/044.ts +++ b/data-asia/SV/SV6/044.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "タイカイデン", - 'zh-tw': "大電海燕" + 'zh-tw': "大電海燕", + th: "ไทไคเด็น" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "のど袋に 翼で 作った 電気を 溜める。 羽の 油分が とても 少なく 泳ぎは 苦手。", - 'zh-tw': "會把翅膀製造的電儲存到喉囊裡。 由於羽毛含的油脂少之又少, 導致牠不是很擅長游泳。" + 'zh-tw': "會把翅膀製造的電儲存到喉囊裡。 由於羽毛含的油脂少之又少, 導致牠不是很擅長游泳。", + th: "สะสมไฟฟ้าที่สร้างจากปีกไว้ในถุงที่คอ ปริมาณน้ำมันในขนปีกนั้นน้อยมากจึงไม่ถนัดการว่ายน้ำ" }, stage: "Stage1", @@ -28,28 +30,32 @@ const card: Card = { name: { ja: "ふうりょくチャージ", - 'zh-tw': "風力充能" + 'zh-tw': "風力充能", + th: "ชาร์จพลังลม" }, damage: 10, effect: { ja: "次の自分の番、このポケモンが使うワザの、相手のバトルポケモンへのダメージは「+120」される。", - 'zh-tw': "在下個自己的回合,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+120」點。" + 'zh-tw': "在下個自己的回合,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+120」點。", + th: "เทิร์นถัดไปของฝ่ายเรา แดเมจของท่าต่อสู้ที่โปเกมอนนี้ ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+120]" } }, { cost: ["Lightning", "Colorless"], name: { ja: "ストロングボルト", - 'zh-tw': "強力伏特" + 'zh-tw': "強力伏特", + th: "สตรองโวลต์" }, damage: 100, effect: { ja: "このポケモンについているエネルギーを1個選び、トラッシュする。", - 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。" + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" } }], diff --git a/data-asia/SV/SV6/045.ts b/data-asia/SV/SV6/045.ts index a1105876e..fd99c95ce 100644 --- a/data-asia/SV/SV6/045.ts +++ b/data-asia/SV/SV6/045.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ピッピ", - 'zh-tw': "皮皮" + 'zh-tw': "皮皮", + th: "ปิปปี" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "満月の 晩に 集まって 仲間と ダンス。 その周囲は 異常な 磁場に 包まれる。", - 'zh-tw': "在月圓之夜聚集, 和夥伴一起跳舞。 周圍被異常的磁場包圍著。" + 'zh-tw': "在月圓之夜聚集, 和夥伴一起跳舞。 周圍被異常的磁場包圍著。", + th: "ออกมารวมตัวและเต้นกับพวกพ้องในค่ำคืนที่พระจันทร์เต็มดวง บริเวณโดยรอบนั้นจะถูกห้อมล้อมด้วยสนามแม่เหล็กที่ผิดธรรมชาติ" }, stage: "Basic", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "ムーンキック", - 'zh-tw': "月亮踢" + 'zh-tw': "月亮踢", + th: "มูนคิก" }, damage: 40 diff --git a/data-asia/SV/SV6/046.ts b/data-asia/SV/SV6/046.ts index 8b724edfc..eda1a0ef1 100644 --- a/data-asia/SV/SV6/046.ts +++ b/data-asia/SV/SV6/046.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ピクシー", - 'zh-tw': "皮可西" + 'zh-tw': "皮可西", + th: "ปิคซี" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "耳が 良くて 1キロ 離れた ところで 落とした 針の音を 見事に 聞き分けられる。", - 'zh-tw': "聽覺靈敏,連1公里以外 針落地的聲音都能夠 分辨得一清二楚。" + 'zh-tw': "聽覺靈敏,連1公里以外 針落地的聲音都能夠 分辨得一清二楚。", + th: "มีประสาทรับฟังเสียงที่ดี สามารถแยกแยะเสียงของเข็มที่หล่นในสถานที่ที่ห่างออกไป 1 กิโลเมตรได้อย่างง่ายดาย" }, stage: "Stage1", @@ -28,19 +30,22 @@ const card: Card = { name: { ja: "ゆびをふる", - 'zh-tw': "揮指" + 'zh-tw': "揮指", + th: "ตวัดนิ้ว" }, effect: { ja: "相手のバトルポケモンが持っているワザを1つ選び、このワザとして使う。", - 'zh-tw': "選擇1個對手的戰鬥寶可夢持有的招式,作為這個招式使用。" + 'zh-tw': "選擇1個對手的戰鬥寶可夢持有的招式,作為這個招式使用。", + th: "เลือกท่าต่อสู้ที่โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมี 1 ท่า ใช้เป็นท่าต่อสู้นี้ได้" } }, { cost: ["Psychic", "Colorless", "Colorless"], name: { ja: "マジカルショット", - 'zh-tw': "魔法射擊" + 'zh-tw': "魔法射擊", + th: "เมจิคัลช็อต" }, damage: 100 diff --git a/data-asia/SV/SV6/047.ts b/data-asia/SV/SV6/047.ts index cfb244eb8..85dac1936 100644 --- a/data-asia/SV/SV6/047.ts +++ b/data-asia/SV/SV6/047.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ケーシィ", - 'zh-tw': "凱西" + 'zh-tw': "凱西", + th: "เคซี" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "寝ながら 超能力を 操る。 夢の 内容が 使う 力に 影響する。", - 'zh-tw': "會一邊睡覺一邊操控超能力。 夢的內容會影響牠使用的能力。" + 'zh-tw': "會一邊睡覺一邊操控超能力。 夢的內容會影響牠使用的能力。", + th: "ขณะที่นอนอยู่ก็ใช้พลังจิตไปด้วย เรื่องในฝันจะส่งผลกระทบกับพลังที่จะใช้" }, stage: "Basic", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "テレポーター", - 'zh-tw': "瞬間移動者" + 'zh-tw': "瞬間移動者", + th: "เทเลพอร์เตอร์" }, effect: { ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。このポケモンと、ついているすべてのカードを、自分の山札にもどして切る。", - 'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。" + 'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。", + th: "ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา นำโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายเราแล้วสับ" } }], @@ -42,7 +46,8 @@ const card: Card = { name: { ja: "ビーム", - 'zh-tw': "光束" + 'zh-tw': "光束", + th: "ลำแสง" }, damage: 10 diff --git a/data-asia/SV/SV6/048.ts b/data-asia/SV/SV6/048.ts index 79623898e..297d85b96 100644 --- a/data-asia/SV/SV6/048.ts +++ b/data-asia/SV/SV6/048.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ユンゲラー", - 'zh-tw': "勇基拉" + 'zh-tw': "勇基拉", + th: "ยุนเกเรอร์" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "サイコパワーで 宙に 浮いたまま 眠る。 弾力に 優れた しっぽを 枕がわりに するぞ。", - 'zh-tw': "會用精神力量浮在空中睡覺。 牠還會把彈力十足的尾巴 當成枕頭用喔。" + 'zh-tw': "會用精神力量浮在空中睡覺。 牠還會把彈力十足的尾巴 當成枕頭用喔。", + th: "ใช้พลังจิตเพื่อลอยตัวหลับอยู่ในอากาศ ใช้หางที่มีความยืดหยุ่นเป็นหมอน" }, stage: "Stage1", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "サイコキネシス", - 'zh-tw': "精神強念" + 'zh-tw': "精神強念", + th: "ไซโคคิเนซิส" }, damage: "10+", effect: { ja: "相手のバトルポケモンについているエネルギーの数×30ダメージ追加。", - 'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。" + 'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。", + th: "แดเมจจะเพิ่มตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x30" } }], diff --git a/data-asia/SV/SV6/049.ts b/data-asia/SV/SV6/049.ts index 1f08ae7bf..06d0a1cc4 100644 --- a/data-asia/SV/SV6/049.ts +++ b/data-asia/SV/SV6/049.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "フーディン", - 'zh-tw': "胡地" + 'zh-tw': "胡地", + th: "ฟูดิน" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "非常に 高い 知能を 持つ。 生まれてから 死ぬまでの できごとを すべて 覚えている という。", - 'zh-tw': "擁有非常高的智商。 據說牠能記住從出生到死 一輩子發生過的所有事情。" + 'zh-tw': "擁有非常高的智商。 據說牠能記住從出生到死 一輩子發生過的所有事情。", + th: "มีสติปัญญาสูงมาก สามารถจำทุกสิ่งที่เกิดขึ้นได้ตั้งแต่เกิดจนเสียชีวิต" }, stage: "Stage2", @@ -28,26 +30,30 @@ const card: Card = { name: { ja: "ストレンジハック", - 'zh-tw': "奇異駭入" + 'zh-tw': "奇異駭入", + th: "สเตรนจ์แฮก" }, effect: { ja: "相手のバトルポケモンをこんらんにする。相手の場のポケモンにのっているダメカンを好きなだけ選び、相手の場のポケモンに好きなようにのせ替える。", - 'zh-tw': "將對手的戰鬥寶可夢【混亂】。選擇任意數量的對手的場上寶可夢身上放置的傷害指示物,以任意方式改放於對手的場上寶可夢身上。" + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。選擇任意數量的對手的場上寶可夢身上放置的傷害指示物,以任意方式改放於對手的場上寶可夢身上。", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน] เลือกตัวนับแดเมจที่วางอยู่บนโปเกมอนบนกระดานฝ่ายตรงข้ามตามจำนวนที่ชอบ ย้ายไปวางที่โปเกมอนบนกระดานฝ่ายตรงข้ามตามชอบ" } }, { cost: ["Psychic"], name: { ja: "サイコキネシス", - 'zh-tw': "精神強念" + 'zh-tw': "精神強念", + th: "ไซโคคิเนซิส" }, damage: "10+", effect: { ja: "相手のバトルポケモンについているエネルギーの数×50ダメージ追加。", - 'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×50點傷害。" + 'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×50點傷害。", + th: "แดเมจจะเพิ่มตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x50" } }], diff --git a/data-asia/SV/SV6/050.ts b/data-asia/SV/SV6/050.ts index 5f230df54..44719a9f8 100644 --- a/data-asia/SV/SV6/050.ts +++ b/data-asia/SV/SV6/050.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "チリーン", - 'zh-tw': "風鈴鈴" + 'zh-tw': "風鈴鈴", + th: "ชิรีน" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "鳴き声は 体の 空洞で 響き合って きれいな 音色になり 敵を驚かせ 追いはらう。", - 'zh-tw': "叫聲會在身體的空洞裡 迴盪出美麗的音色, 趕走被嚇到的敵人。" + 'zh-tw': "叫聲會在身體的空洞裡 迴盪出美麗的音色, 趕走被嚇到的敵人。", + th: "เสียงร้องก้องกังวานภายในร่างที่กลวงเกิดเป็นเสียงที่ไพเราะ ทำให้ศัตรูตกใจและไล่มันออกไป" }, stage: "Basic", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "ハイパーボイス", - 'zh-tw': "巨聲" + 'zh-tw': "巨聲", + th: "ไฮเปอร์วอยซ์" }, damage: 20 @@ -37,12 +40,14 @@ const card: Card = { name: { ja: "おかえりチャイム", - 'zh-tw': "回家鐘聲" + 'zh-tw': "回家鐘聲", + th: "เสียงกระดิ่งต้อนรับกลับ" }, effect: { ja: "自分のベンチポケモンを1匹選び、そのポケモンと、ついているすべてのカードを、山札にもどして切る。", - 'zh-tw': "選擇1隻自己的備戰寶可夢,將那隻寶可夢與附加的卡全部放回牌庫並重洗。" + 'zh-tw': "選擇1隻自己的備戰寶可夢,將那隻寶可夢與附加的卡全部放回牌庫並重洗。", + th: "เลือกโปเกมอนบนเบนช์ฝ่ายเรา 1 ตัว นำโปเกมอนนั้น และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดแล้วสับ" } }], diff --git a/data-asia/SV/SV6/051.ts b/data-asia/SV/SV6/051.ts index bd48bc057..2133b24fc 100644 --- a/data-asia/SV/SV6/051.ts +++ b/data-asia/SV/SV6/051.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ペロッパフ", - 'zh-tw': "綿綿泡芙" + 'zh-tw': "綿綿泡芙", + th: "เพร็อพพัฟ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "1日に 食べる 砂糖は 自分の 体重と 同じ。 糖分が 足りないと ひどく 不機嫌になる。", - 'zh-tw': "每天要吃掉與自己體重 相同重量的砂糖, 糖分不夠就會鬧脾氣。" + 'zh-tw': "每天要吃掉與自己體重 相同重量的砂糖, 糖分不夠就會鬧脾氣。", + th: "ปริมาณน้ำตาลที่กินต่อหนึ่งวันเทียบเท่ากับน้ำหนักตัวของมัน หากน้ำตาลไม่พอจะอารมณ์เสียมาก" }, stage: "Basic", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "おまつりおんど", - 'zh-tw': "祭典樂舞" + 'zh-tw': "祭典樂舞", + th: "รำวงงานเทศกาล" }, effect: { ja: "場に「お祭り会場」が出ているなら、このポケモンは、持っているワザを2回連続で使える。(1回目のワザで相手のバトルポケモンがきぜつしたなら、次のバトルポケモンが出たあと、2回目のワザを使う。)", - 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)" + 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)", + th: "ถ้ามี [สถานที่จัดเทศกาล] อยู่บนกระดาน โปเกมอนนี้ จะใช้ท่าต่อสู้ที่มีต่อเนื่องกันได้ 2 ครั้ง (ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ]ด้วยท่าต่อสู้ครั้งที่ 1 หลังจากที่โปเกมอนบนตำแหน่งต่อสู้ตัวถัดไปออกมา ให้ใช้ท่าต่อสู้ครั้งที่ 2)" } }], @@ -42,12 +46,14 @@ const card: Card = { name: { ja: "そっとのせる", - 'zh-tw': "悄聲加害" + 'zh-tw': "悄聲加害", + th: "ค่อย ๆ วาง" }, effect: { ja: "相手のポケモン1匹に、ダメカンを2個のせる。", - 'zh-tw': "在對手的1隻寶可夢身上放置2個傷害指示物。" + 'zh-tw': "在對手的1隻寶可夢身上放置2個傷害指示物。", + th: "วางตัวนับแดเมจ 2 ตัว บนโปเกมอนฝ่ายตรงข้าม 1 ตัว" } }], diff --git a/data-asia/SV/SV6/052.ts b/data-asia/SV/SV6/052.ts index cadd2f455..7351461b0 100644 --- a/data-asia/SV/SV6/052.ts +++ b/data-asia/SV/SV6/052.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ペロリーム", - 'zh-tw': "胖甜妮" + 'zh-tw': "胖甜妮", + th: "เพโรรีม" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "体臭から 心と 体の 調子を 嗅ぎとる。 医療への 応用が 期待されている。", - 'zh-tw': "能從人們身上的氣味裡 嗅出他們的身心狀態。 在醫療領域的實際應用備受矚目。" + 'zh-tw': "能從人們身上的氣味裡 嗅出他們的身心狀態。 在醫療領域的實際應用備受矚目。", + th: "สามารถรับรู้สภาพร่างกายและจิตใจได้จากการดมกลิ่นตัว ถูกคาดหวังว่าจะสามารถนำมาปรับใช้ในทางการแพทย์ได้" }, stage: "Stage1", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "ペロペロリン", - 'zh-tw': "甜甜你" + 'zh-tw': "甜甜你", + th: "แลบลิ้นแพล็บ" }, damage: "90×", effect: { ja: "コインを2回投げ、オモテの数×90ダメージ。すべてウラなら、相手のバトルポケモンをこんらんにする。", - 'zh-tw': "擲2次硬幣,造成正面出現的次數×90點傷害。若全部為反面,則將對手的戰鬥寶可夢【混亂】。" + 'zh-tw': "擲2次硬幣,造成正面出現的次數×90點傷害。若全部為反面,則將對手的戰鬥寶可夢【混亂】。", + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x90 ถ้าออกก้อยทั้งหมด จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]" } }], diff --git a/data-asia/SV/SV6/053.ts b/data-asia/SV/SV6/053.ts index 9249f1f37..7b1532587 100644 --- a/data-asia/SV/SV6/053.ts +++ b/data-asia/SV/SV6/053.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "スナバァ", - 'zh-tw': "沙丘娃" + 'zh-tw': "沙丘娃", + th: "ซึนาบา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "獲物の 目を 砂で 潰し その隙に 近づこうとするが 動きが 遅いので 逃げられる。", - 'zh-tw': "會用沙子攻擊獵物的眼睛後 趁機接近,但卻總是因為 行動緩慢而讓獵物逃走。" + 'zh-tw': "會用沙子攻擊獵物的眼睛後 趁機接近,但卻總是因為 行動緩慢而讓獵物逃走。", + th: "สาดทรายเข้าตาเหยื่อแล้วอาศัยจังหวะนั้นขยับเข้าไปใกล้ ๆ แต่เพราะเคลื่อนไหวช้า เหยื่อเลยมักหนีไปได้" }, stage: "Basic", @@ -28,21 +30,24 @@ const card: Card = { name: { ja: "すなかけ", - 'zh-tw': "潑沙" + 'zh-tw': "潑沙", + th: "สาดทราย" }, damage: 10, effect: { ja: "次の相手の番、このワザを受けたポケモンがワザを使うとき、相手はコインを1回投げる。ウラならそのワザは失敗。", - 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式時,對手擲1次硬幣。若為反面,則那個招式失敗。" + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式時,對手擲1次硬幣。若為反面,則那個招式失敗。", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม เมื่อโปเกมอนที่ได้รับท่าต่อสู้นี้จะใช้ท่าต่อสู้ ฝ่ายตรงข้ามทอยเหรียญ 1 ครั้ง ถ้าออกก้อยท่าต่อสู้นั้นจะล้มเหลว" } }, { cost: ["Psychic", "Colorless", "Colorless"], name: { ja: "ホロウショット", - 'zh-tw': "陰森射擊" + 'zh-tw': "陰森射擊", + th: "ฮอลโลว์ช็อต" }, damage: 30 diff --git a/data-asia/SV/SV6/054.ts b/data-asia/SV/SV6/054.ts index ce2b41f05..b3893d177 100644 --- a/data-asia/SV/SV6/054.ts +++ b/data-asia/SV/SV6/054.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "シロデスナ", - 'zh-tw': "噬沙堡爺" + 'zh-tw': "噬沙堡爺", + th: "ชิโรเดซึนะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "生命エネルギーを 吸い取り 干からびた ものたちの 骨を 腕の へこみから 発射する。", - 'zh-tw': "會把對手的生命能量 吸得精光,然後把骨骸 從臂上的凹洞發射出去。" + 'zh-tw': "會把對手的生命能量 吸得精光,然後把骨骸 從臂上的凹洞發射出去。", + th: "สูบพลังชีวิตจนหมด แล้วพ่นกระดูกที่เหี่ยวแห้งของเหยื่อออกมาจากหลุมที่แขน" }, stage: "Stage1", @@ -28,21 +30,24 @@ const card: Card = { name: { ja: "すなかけ", - 'zh-tw': "潑沙" + 'zh-tw': "潑沙", + th: "สาดทราย" }, damage: 60, effect: { ja: "次の相手の番、このワザを受けたポケモンがワザを使うとき、相手はコインを1回投げる。ウラならそのワザは失敗。", - 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式時,對手擲1次硬幣。若為反面,則那個招式失敗。" + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式時,對手擲1次硬幣。若為反面,則那個招式失敗。", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม เมื่อโปเกมอนที่ได้รับท่าต่อสู้นี้จะใช้ท่าต่อสู้ ฝ่ายตรงข้ามทอยเหรียญ 1 ครั้ง ถ้าออกก้อยท่าต่อสู้นั้นจะล้มเหลว" } }, { cost: ["Psychic", "Colorless", "Colorless", "Colorless"], name: { ja: "サンドホロウ", - 'zh-tw': "沙之陰森" + 'zh-tw': "沙之陰森", + th: "แซนด์ฮอลโลว์" }, damage: 150 diff --git a/data-asia/SV/SV6/055.ts b/data-asia/SV/SV6/055.ts index 2759ccb9c..ea2d38811 100644 --- a/data-asia/SV/SV6/055.ts +++ b/data-asia/SV/SV6/055.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "マシマシラ", - 'zh-tw': "願增猿" + 'zh-tw': "願增猿", + th: "มาชิมาชิระ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "安全な 場所から 強烈な めまいを 引き起こす 念力を 放って 敵を 翻弄する。", - 'zh-tw': "會從安全的地方釋放出 能引起強烈頭暈的念力, 把敵手戲弄得團團轉。" + 'zh-tw': "會從安全的地方釋放出 能引起強烈頭暈的念力, 把敵手戲弄得團團轉。", + th: "อยู่ในสถานที่ที่ปลอดภัยแล้วหยอกล้อศัตรูด้วยการปล่อยพลังจิตที่ทำให้เวียนหัวรุนแรงได้" }, stage: "Basic", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "アドレナブレイン", - 'zh-tw': "腎上腺腦力" + 'zh-tw': "腎上腺腦力", + th: "อะดรีนาลีนเบรน" }, effect: { ja: "このポケモンにエネルギーがついているなら、自分の番に1回使える。自分の場のポケモン1匹にのっているダメカンを3個まで選び、相手の場のポケモン1匹にのせ替える。", - 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則在自己的回合時可使用1次。選擇最多3個自己的1隻場上寶可夢身上放置的傷害指示物,改放於對手的1隻場上寶可夢身上。" + 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則在自己的回合時可使用1次。選擇最多3個自己的1隻場上寶可夢身上放置的傷害指示物,改放於對手的1隻場上寶可夢身上。", + th: "ถ้าโปเกมอนนี้มีพลังงาน[ความมืด]ติดอยู่ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกตัวนับแดเมจที่วางอยู่บนโปเกมอนบนกระดานฝ่ายเรา 1 ตัวได้สูงสุด 3 ตัว ย้ายไปวางที่โปเกมอนบนกระดานฝ่ายตรงข้าม 1 ตัว" } }], @@ -42,14 +46,16 @@ const card: Card = { name: { ja: "サイコトリップ", - 'zh-tw': "精神歪曲" + 'zh-tw': "精神歪曲", + th: "ไซโคทริป" }, damage: 60, effect: { ja: "相手のバトルポケモンをこんらんにする。", - 'zh-tw': "將對手的戰鬥寶可夢【混亂】。" + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]" } }], diff --git a/data-asia/SV/SV6/056.ts b/data-asia/SV/SV6/056.ts index cbd009319..169eb0853 100644 --- a/data-asia/SV/SV6/056.ts +++ b/data-asia/SV/SV6/056.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "キチキギス", - 'zh-tw': "吉雉雞" + 'zh-tw': "吉雉雞", + th: "คิจิคิกิสึ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "艶やかな 翼を 羽ばたかせて フェロモンを 振りまき 人や ポケモンを 蠱惑に 魅了する。", - 'zh-tw': "會拍動豔麗的翅膀散佈 費洛蒙,使人類和寶可夢 神魂顛倒,為牠著迷。" + 'zh-tw': "會拍動豔麗的翅膀散佈 費洛蒙,使人類和寶可夢 神魂顛倒,為牠著迷。", + th: "กระพือปีกที่แสนเย้ายวนเพื่อโปรยฟีโรโมนยั่วยวนคนและโปเกมอนให้หลงใหล" }, stage: "Basic", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "アドレナフェロモン", - 'zh-tw': "腎上腺費洛蒙" + 'zh-tw': "腎上腺費洛蒙", + th: "อะดรีนาลีนฟีโรโมน" }, effect: { ja: "このポケモンにエネルギーがついているなら、このポケモンがワザのダメージを受けるとき、自分はコインを1回投げる。オモテなら、このポケモンはそのダメージを受けない。", - 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則這隻寶可夢受到招式的傷害時,自己擲1次硬幣。若為正面,則這隻寶可夢不會受到那個傷害。" + 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則這隻寶可夢受到招式的傷害時,自己擲1次硬幣。若為正面,則這隻寶可夢不會受到那個傷害。", + th: "ถ้าโปเกมอนนี้มีพลังงาน[ความมืด]ติดอยู่ เมื่อโปเกมอนนี้ได้รับแดเมจของท่าต่อสู้ ฝ่ายเราทอยเหรียญ 1 ครั้ง ถ้าออกหัว โปเกมอนนี้จะไม่ได้รับแดเมจนั้น" } }], @@ -42,14 +46,16 @@ const card: Card = { name: { ja: "エナジーフェザー", - 'zh-tw': "能量羽毛" + 'zh-tw': "能量羽毛", + th: "เอนเนอร์จี้ฟีเธอร์" }, damage: "30×", effect: { ja: "このポケモンについているエネルギーの数×30ダメージ。", - 'zh-tw': "造成這隻寶可夢身上附加的能量的數量×30點傷害。" + 'zh-tw': "造成這隻寶可夢身上附加的能量的數量×30點傷害。", + th: "แดเมจจะเท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนนี้ x30" } }], diff --git a/data-asia/SV/SV6/057.ts b/data-asia/SV/SV6/057.ts index 39db28354..7097ea902 100644 --- a/data-asia/SV/SV6/057.ts +++ b/data-asia/SV/SV6/057.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "サンド", - 'zh-tw': "穿山鼠" + 'zh-tw': "穿山鼠", + th: "แซนด์" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "どんなに 高い ところから 落ちても 体を 丸めれば バウンドできて 助かるのだ。", - 'zh-tw': "不管從多高的地方掉下, 只要把身體蜷成一團 就可以藉著反彈而得救。" + 'zh-tw': "不管從多高的地方掉下, 只要把身體蜷成一團 就可以藉著反彈而得救。", + th: "ไม่ว่าจะตกลงมาจากที่ที่สูงขนาดไหนก็ตาม หากมันม้วนตัวกลมแล้วกระดอนไปมาก็จะปลอดภัย" }, stage: "Basic", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "ころがる", - 'zh-tw': "滾動" + 'zh-tw': "滾動", + th: "กลิ้ง" }, damage: 10 @@ -37,14 +40,16 @@ const card: Card = { name: { ja: "ダブルひっかき", - 'zh-tw': "雙重抓" + 'zh-tw': "雙重抓", + th: "ข่วนทวีคูณ" }, damage: "20×", effect: { ja: "コインを2回投げ、オモテの数×20ダメージ。", - 'zh-tw': "擲2次硬幣,造成正面出現的次數×20點傷害。" + 'zh-tw': "擲2次硬幣,造成正面出現的次數×20點傷害。", + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20" } }], diff --git a/data-asia/SV/SV6/058.ts b/data-asia/SV/SV6/058.ts index ab78a2add..5e8caf684 100644 --- a/data-asia/SV/SV6/058.ts +++ b/data-asia/SV/SV6/058.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "サンドパン", - 'zh-tw': "穿山王" + 'zh-tw': "穿山王", + th: "แซนด์แพน" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "トゲは 皮膚が 硬くなったもの。 体を 丸めて トゲトゲを 刺すように 相手を 攻撃する。", - 'zh-tw': "身上的刺是皮膚硬化後形成的。 會將身體蜷成一團, 用尖刺刺向對手進行攻擊。" + 'zh-tw': "身上的刺是皮膚硬化後形成的。 會將身體蜷成一團, 用尖刺刺向對手進行攻擊。", + th: "หนามคือผิวหนังที่แข็งตัว ม้วนตัวกลมแล้วโจมตีศัตรูด้วยการใช้หนามทิ่มแทง" }, stage: "Stage1", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "ツメをたてる", - 'zh-tw': "豎爪" + 'zh-tw': "豎爪", + th: "กางกรงเล็บ" }, damage: 30 @@ -37,14 +40,16 @@ const card: Card = { name: { ja: "じしん", - 'zh-tw': "地震" + 'zh-tw': "地震", + th: "แผ่นดินไหว" }, damage: 120, effect: { ja: "自分のベンチポケモン全員にも、それぞれ10ダメージ。[ベンチは弱点・抵抗力を計算しない。]", - 'zh-tw': "自己的所有備戰寶可夢也各受到10點傷害。 [在備戰區不計算弱點・抵抗力。]" + 'zh-tw': "自己的所有備戰寶可夢也各受到10點傷害。 [在備戰區不計算弱點・抵抗力。]", + th: "โปเกมอนบนเบนช์ฝ่ายเราทุกตัว ก็จะได้รับแดเมจตัวละ 10 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" } }], diff --git a/data-asia/SV/SV6/059.ts b/data-asia/SV/SV6/059.ts index f21011925..67a013e88 100644 --- a/data-asia/SV/SV6/059.ts +++ b/data-asia/SV/SV6/059.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ドッコラー", - 'zh-tw': "搬運小匠" + 'zh-tw': "搬運小匠", + th: "ด็อคโคเรอร์" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "角材を 振り回して 戦う。 重い 角材を 苦もなく 持つようになると 進化は 近い。", - 'zh-tw': "會亂揮木材來戰鬥。如果可以 不費勁地搬起沉重的木材, 就代表牠即將要進化了。" + 'zh-tw': "會亂揮木材來戰鬥。如果可以 不費勁地搬起沉重的木材, 就代表牠即將要進化了。", + th: "ต่อสู้ด้วยการเหวี่ยงท่อนไม้สี่เหลี่ยม เมื่อมันสามารถยกท่อนไม้สี่เหลี่ยมที่หนักได้อย่างสบาย ๆ เมื่อไหร่ แปลว่าใกล้วิวัฒนาการ" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "ぜんりょくパンチ", - 'zh-tw': "全力拳" + 'zh-tw': "全力拳", + th: "ปล่อยหมัดเต็มกำลัง" }, damage: 40, effect: { ja: "コインを1回投げウラなら、このワザは失敗。", - 'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。" + 'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。", + th: "ทอยเหรียญ 1 ครั้งถ้าออกก้อย ท่าต่อสู้นี้จะล้มเหลว" } }], diff --git a/data-asia/SV/SV6/060.ts b/data-asia/SV/SV6/060.ts index 8fc61c55d..df70aa793 100644 --- a/data-asia/SV/SV6/060.ts +++ b/data-asia/SV/SV6/060.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ドテッコツ", - 'zh-tw': "鐵骨土人" + 'zh-tw': "鐵骨土人", + th: "โดเท็คคทซึ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "鍛え上げられた 筋肉の 体は プロレスラーが 束になって 攻撃しても びくともしない。", - 'zh-tw': "身體的肌肉經過完美鍛鍊。 即使是職業摔角手一擁而上 進行攻擊,也能毫髮無傷。" + 'zh-tw': "身體的肌肉經過完美鍛鍊。 即使是職業摔角手一擁而上 進行攻擊,也能毫髮無傷。", + th: "ร่างกายมีกล้ามเนื้อที่เพาะบ่มเป็นอย่างดี แม้จะมีนักมวยปล้ำจับกลุ่มกันเข้ามาโจมตีก็ไม่สะดุ้งสะเทือน" }, stage: "Stage1", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "げんこつ", - 'zh-tw': "拳骨" + 'zh-tw': "拳骨", + th: "กำปั้น" }, damage: 20 @@ -37,14 +40,16 @@ const card: Card = { name: { ja: "ばかぢから", - 'zh-tw': "蠻力" + 'zh-tw': "蠻力", + th: "พลังสุดขีด" }, damage: "50+", effect: { ja: "のぞむなら、30ダメージ追加。その場合、このポケモンにも30ダメージ。", - 'zh-tw': "若希望,增加30點傷害。這個情況下,這隻寶可夢也受到30點傷害。" + 'zh-tw': "若希望,增加30點傷害。這個情況下,這隻寶可夢也受到30點傷害。", + th: "หากต้องการ การโจมตีนี้จะเพิ่มแดเมจอีก 30 เมื่อทำเช่นนั้นแล้ว โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย" } }], diff --git a/data-asia/SV/SV6/061.ts b/data-asia/SV/SV6/061.ts index cb7fe6e56..33f31fa4a 100644 --- a/data-asia/SV/SV6/061.ts +++ b/data-asia/SV/SV6/061.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ローブシン", - 'zh-tw': "修建老匠" + 'zh-tw': "修建老匠", + th: "โรบูชิน" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "力に 頼らず 遠心力を うまく 活かして コンクリートを 振り回す 技を 使いこなせる。", - 'zh-tw': "能夠不憑蠻力, 而是巧妙利用離心力 來揮舞水泥柱使出招式。" + 'zh-tw': "能夠不憑蠻力, 而是巧妙利用離心力 來揮舞水泥柱使出招式。", + th: "ใช้ท่าต่อสู้เหวี่ยงคอนกรีตโดยอาศัยแรงหนีศูนย์กลางแทนการใช้พลังได้อย่างคล่องแคล่วและช่ำชอง" }, stage: "Stage2", @@ -28,28 +30,32 @@ const card: Card = { name: { ja: "あばれまわる", - 'zh-tw': "暴走" + 'zh-tw': "暴走", + th: "อาละวาดไปทั่ว" }, damage: 80, effect: { ja: "このポケモンをこんらんにする。", - 'zh-tw': "將這隻寶可夢【混亂】。" + 'zh-tw': "將這隻寶可夢【混亂】。", + th: "ทำให้โปเกมอนนี้เป็นสภาวะ[สับสน]" } }, { cost: ["Fighting", "Colorless", "Colorless", "Colorless"], name: { ja: "ガッツスイング", - 'zh-tw': "堅毅橫掃" + 'zh-tw': "堅毅橫掃", + th: "กวัดแกว่งกล้าหาญ" }, damage: 250, effect: { ja: "このワザは、このポケモンが特殊状態なら、このワザを使うためのエネルギーがこのポケモンについていなくても、使える。", - 'zh-tw': "若這隻寶可夢處於特殊狀態,則使用這個招式所需的能量就算沒有附於這隻寶可夢身上,這個招式也可使用。" + 'zh-tw': "若這隻寶可夢處於特殊狀態,則使用這個招式所需的能量就算沒有附於這隻寶可夢身上,這個招式也可使用。", + th: "ท่าต่อสู้นี้ ถ้าโปเกมอนนี้เป็นสภาวะผิดปกติ แม้โปเกมอนนี้ไม่มีพลังงานสำหรับใช้ท่าต่อสู้นี้ติดอยู่ ก็ใช้ได้" } }], diff --git a/data-asia/SV/SV6/062.ts b/data-asia/SV/SV6/062.ts index 257a50e24..273c0c9a7 100644 --- a/data-asia/SV/SV6/062.ts +++ b/data-asia/SV/SV6/062.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "キラーメ", - 'zh-tw': "晶光芽" + 'zh-tw': "晶光芽", + th: "คิราเมะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "毒成分の 結晶が まるで 花びらに 見える。 花粉のように 毒の粉を ばらまき 身を守る。", - 'zh-tw': "以毒構成的結晶看似花瓣。 會如灑花粉般地灑出毒粉 來保護自身安全。" + 'zh-tw': "以毒構成的結晶看似花瓣。 會如灑花粉般地灑出毒粉 來保護自身安全。", + th: "ผลึกของสารพิษดูราวกับกลีบดอกไม้ โรยผงพิษเหมือนเกสรดอกไม้เพื่อป้องกันตัวเอง" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "ロックショット", - 'zh-tw': "岩石射擊" + 'zh-tw': "岩石射擊", + th: "ร็อกช็อต" }, damage: 30, effect: { ja: "このポケモンについているエネルギーを1個選び、トラッシュする。", - 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。" + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" } }], diff --git a/data-asia/SV/SV6/063.ts b/data-asia/SV/SV6/063.ts index 2da20debb..fba8d61e7 100644 --- a/data-asia/SV/SV6/063.ts +++ b/data-asia/SV/SV6/063.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "キラフロル", - 'zh-tw': "晶光花" + 'zh-tw': "晶光花", + th: "คิราฟลอร์" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "毒エネルギーが 結晶化した 花びらは テラスタルの 宝石に 似ていると 最近 判明した。", - 'zh-tw': "最近發現牠的毒能量 結晶化後所形成的花瓣 與太晶的寶石類似。" + 'zh-tw': "最近發現牠的毒能量 結晶化後所形成的花瓣 與太晶的寶石類似。", + th: "เมื่อไม่นานมานี้พบว่ากลีบดอกไม้ที่ตกผลึกจากพลังงานพิษนั้นมีความคล้ายกับอัญมณีเทรัสตัล" }, stage: "Stage1", @@ -28,26 +30,30 @@ const card: Card = { name: { ja: "しんけいどく", - 'zh-tw': "神經毒" + 'zh-tw': "神經毒", + th: "พิษทำลายประสาท" }, effect: { ja: "コインを1回投げオモテなら、相手のバトルポケモンをどくとマヒにする。", - 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【中毒】與【麻痺】。" + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【中毒】與【麻痺】。", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]และ[ชา]" } }, { cost: ["Fighting"], name: { ja: "ベノムショック", - 'zh-tw': "毒液衝擊" + 'zh-tw': "毒液衝擊", + th: "เวนอมช็อก" }, damage: "30+", effect: { ja: "相手のバトルポケモンがどくなら、100ダメージ追加。", - 'zh-tw': "若對手的戰鬥寶可夢【中毒】,則增加100點傷害。" + 'zh-tw': "若對手的戰鬥寶可夢【中毒】,則增加100點傷害。", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ] การโจมตีนี้จะเพิ่มแดเมจอีก 100" } }], diff --git a/data-asia/SV/SV6/064.ts b/data-asia/SV/SV6/064.ts index 4a1574542..cd94f2efd 100644 --- a/data-asia/SV/SV6/064.ts +++ b/data-asia/SV/SV6/064.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "イイネイヌ", - 'zh-tw': "夠讚狗" + 'zh-tw': "夠讚狗", + th: "อี้เนะอินุ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "すぐ 頭に 血が 上ってしまう 荒くれもの。 首の 鎖を 振り回し なんでも 叩き潰す。", - 'zh-tw': "動不動就會怒火沖天的 粗暴傢伙。會揮甩脖子的鎖鏈 一股腦兒地擊碎東西。" + 'zh-tw': "動不動就會怒火沖天的 粗暴傢伙。會揮甩脖子的鎖鏈 一股腦兒地擊碎東西。", + th: "จอมอันธพาลที่มีอารมณ์รุนแรงและเลือดขึ้นหน้าได้ง่าย ทุบทำลายทุกสิ่งทุกอย่างด้วยการเหวี่ยงโซ่ที่คอ" }, stage: "Basic", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "アドレナパワー", - 'zh-tw': "腎上腺力量" + 'zh-tw': "腎上腺力量", + th: "อะดรีนาลีนพาวเวอร์" }, effect: { ja: "このポケモンにエネルギーがついているなら、このポケモンの最大HPは「+100」され、このポケモンが使うワザの、相手のバトルポケモンへのダメージは「+100」される。", - 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則這隻寶可夢的最大HP「+100」,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+100」點。" + 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則這隻寶可夢的最大HP「+100」,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+100」點。", + th: "ถ้าโปเกมอนนี้มีพลังงาน[ความมืด]ติดอยู่ HP สูงสุดของโปเกมอนนี้จะถูก [+100] แดเมจของท่าต่อสู้ที่โปเกมอนนี้ ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+100]" } }], @@ -42,7 +46,8 @@ const card: Card = { name: { ja: "グッドパンチ", - 'zh-tw': "好拳" + 'zh-tw': "好拳", + th: "กู้ดพันช์" }, damage: 70 diff --git a/data-asia/SV/SV6/065.ts b/data-asia/SV/SV6/065.ts index ea458774e..6dad3c632 100644 --- a/data-asia/SV/SV6/065.ts +++ b/data-asia/SV/SV6/065.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "オーガポン いしずえのめんex", - 'zh-tw': "厄鬼椪 礎石面具ex" + 'zh-tw': "厄鬼椪 礎石面具ex", + th: "โอการ์ปอง หน้ากากฐานรากex" }, category: "Pokemon", @@ -22,12 +23,14 @@ const card: Card = { name: { ja: "いしずえのかまえ", - 'zh-tw': "礎石之勢" + 'zh-tw': "礎石之勢", + th: "การเตรียมพร้อมของฐานราก" }, effect: { ja: "このポケモンは、相手の特性を持つポケモンからワザのダメージを受けない。", - 'zh-tw': "這隻寶可夢不會受到對手的擁有特性的寶可夢招式的傷害。" + 'zh-tw': "這隻寶可夢不會受到對手的擁有特性的寶可夢招式的傷害。", + th: "โปเกมอนนี้ จะไม่ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้ามที่มีความสามารถ" } }], @@ -36,14 +39,16 @@ const card: Card = { name: { ja: "ぶちやぶる", - 'zh-tw': "打爆" + 'zh-tw': "打爆", + th: "ตีแตกพ่าย" }, damage: 140, effect: { ja: "このワザのダメージは、弱点・抵抗力と、相手のバトルポケモンにかかっている効果を計算しない。", - 'zh-tw': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。" + 'zh-tw': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。", + th: "แดเมจของท่าต่อสู้นี้ จะไม่นำจุดอ่อน ความต้านทาน และเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด" } }], diff --git a/data-asia/SV/SV6/066.ts b/data-asia/SV/SV6/066.ts index f57c03b8a..65a5c57db 100644 --- a/data-asia/SV/SV6/066.ts +++ b/data-asia/SV/SV6/066.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ポチエナ", - 'zh-tw': "土狼犬" + 'zh-tw': "土狼犬", + th: "โปชิเอนา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "群れで 獲物を 追いかけまわす。 疲れきったところを 仕留めるが たまに 反撃されて 逃げだす。", - 'zh-tw': "會成群追擊獵物,並在其 筋疲力盡時給予致命一擊, 但有時會因遭到反擊而逃走。" + 'zh-tw': "會成群追擊獵物,並在其 筋疲力盡時給予致命一擊, 但有時會因遭到反擊而逃走。", + th: "ไล่ตามเหยื่อกันเป็นฝูง จะจัดการเหยื่อตอนที่เหยื่อเหนื่อย แต่บางครั้งก็จะหนีไปเมื่อโดนเหยื่อโต้กลับ" }, stage: "Basic", @@ -28,21 +30,24 @@ const card: Card = { name: { ja: "れんぞくステップ", - 'zh-tw': "連續舞步" + 'zh-tw': "連續舞步", + th: "สเต็ปต่อเนื่อง" }, damage: "10×", effect: { ja: "ウラが出るまでコインを投げ、オモテの数×10ダメージ。", - 'zh-tw': "擲硬幣直到出現反面,造成正面出現的次數×10點傷害。" + 'zh-tw': "擲硬幣直到出現反面,造成正面出現的次數×10點傷害。", + th: "ทอยเหรียญจนกว่าจะออกก้อย แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10" } }, { cost: ["Darkness", "Colorless"], name: { ja: "やみのキバ", - 'zh-tw': "暗之牙" + 'zh-tw': "暗之牙", + th: "เขี้ยวแห่งความมืด" }, damage: 20 diff --git a/data-asia/SV/SV6/067.ts b/data-asia/SV/SV6/067.ts index 9f9461a99..6202495d5 100644 --- a/data-asia/SV/SV6/067.ts +++ b/data-asia/SV/SV6/067.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "グラエナ", - 'zh-tw': "大狼犬" + 'zh-tw': "大狼犬", + th: "กราเอนา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "遠くにいる 獲物の においを 嗅ぎつけると リーダーの 指示で 群れが いっせいに 動きはじめる。", - 'zh-tw': "當嗅到遠處有獵物的氣味, 群體就會遵從首領的指示, 一起展開行動。" + 'zh-tw': "當嗅到遠處有獵物的氣味, 群體就會遵從首領的指示, 一起展開行動。", + th: "เมื่อได้กลิ่นของเหยื่อที่อยู่ไกลออกไป ฝูงจะเริ่มเคลื่อนไหวตามคำสั่งของจ่าฝูงอย่างพร้อมเพรียง" }, stage: "Stage1", @@ -28,28 +30,32 @@ const card: Card = { name: { ja: "むれでかる", - 'zh-tw': "群起打獵" + 'zh-tw': "群起打獵", + th: "ออกล่าเป็นฝูง" }, damage: "30+", effect: { ja: "自分のベンチに「グラエナ」がいるなら、90ダメージ追加。", - 'zh-tw': "若自己的備戰區有「大狼犬」,則增加90點傷害。" + 'zh-tw': "若自己的備戰區有「大狼犬」,則增加90點傷害。", + th: "ถ้าบนเบนช์ฝ่ายเรามี [กราเอนา] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 90" } }, { cost: ["Darkness", "Colorless"], name: { ja: "おいつめる", - 'zh-tw': "窮追不捨" + 'zh-tw': "窮追不捨", + th: "ไล่ต้อน" }, damage: 60, effect: { ja: "次の相手の番、このワザを受けたポケモンは、にげられない。", - 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" } }], diff --git a/data-asia/SV/SV6/068.ts b/data-asia/SV/SV6/068.ts index 89e7960cd..44ba4350c 100644 --- a/data-asia/SV/SV6/068.ts +++ b/data-asia/SV/SV6/068.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "フシデ", - 'zh-tw': "百足蜈蚣" + 'zh-tw': "百足蜈蚣", + th: "ฟูชิเดะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "ヤクデは 種類の 近い 仲間だが おたがいが 出会うと 大げんかに なるぞ。", - 'zh-tw': "雖然和燒火蚣屬於種類 相近的夥伴,但是彼此 撞見時就會大打一架喔。" + 'zh-tw': "雖然和燒火蚣屬於種類 相近的夥伴,但是彼此 撞見時就會大打一架喔。", + th: "ถึงแม้จะเป็นสายพันธุ์ใกล้เคียงกับยาคุเดะ แต่พอเจอกันก็จะทะเลาะกันใหญ่โต" }, stage: "Basic", @@ -28,19 +30,22 @@ const card: Card = { name: { ja: "どくえき", - 'zh-tw': "毒液" + 'zh-tw': "毒液", + th: "ของเหลวพิษ" }, effect: { ja: "相手のバトルポケモンをどくにする。", - 'zh-tw': "將對手的戰鬥寶可夢【中毒】。" + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]" } }, { cost: ["Darkness", "Colorless", "Colorless"], name: { ja: "かいてんアタック", - 'zh-tw': "迴轉攻擊" + 'zh-tw': "迴轉攻擊", + th: "โจมตีหมุนวน" }, damage: 40 diff --git a/data-asia/SV/SV6/069.ts b/data-asia/SV/SV6/069.ts index b7e574ce4..d57ddee52 100644 --- a/data-asia/SV/SV6/069.ts +++ b/data-asia/SV/SV6/069.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ホイーガ", - 'zh-tw': "車輪毬" + 'zh-tw': "車輪毬", + th: "วีกา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "高速で 回転し 相手に 突撃。 最高時速は およそ 100キロに 達する。", - 'zh-tw': "會高速旋轉去突擊對手。 牠的最高時速可以達到 大約100公里。" + 'zh-tw': "會高速旋轉去突擊對手。 牠的最高時速可以達到 大約100公里。", + th: "หมุนตัวด้วยความเร็วสูงเข้าจู่โจมคู่ต่อสู้ ความเร็วสูงสุดอยู่ที่ประมาณ 100 กิโลเมตรต่อชั่วโมง" }, stage: "Stage1", @@ -28,19 +30,22 @@ const card: Card = { name: { ja: "ポイズンサークル", - 'zh-tw': "毒陣" + 'zh-tw': "毒陣", + th: "พอยซันเซอร์เคิล" }, effect: { ja: "相手のバトルポケモンをどくにする。次の相手の番、このワザを受けたポケモンは、にげられない。", - 'zh-tw': "將對手的戰鬥寶可夢【中毒】。在下個對手的回合,受到這個招式的寶可夢無法撤退。" + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。在下個對手的回合,受到這個招式的寶可夢無法撤退。", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ] เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" } }, { cost: ["Darkness", "Colorless", "Colorless"], name: { ja: "かいてんアタック", - 'zh-tw': "迴轉攻擊" + 'zh-tw': "迴轉攻擊", + th: "โจมตีหมุนวน" }, damage: 60 diff --git a/data-asia/SV/SV6/070.ts b/data-asia/SV/SV6/070.ts index 553af34d7..1bd4bf6a7 100644 --- a/data-asia/SV/SV6/070.ts +++ b/data-asia/SV/SV6/070.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ペンドラー", - 'zh-tw': "蜈蚣王" + 'zh-tw': "蜈蚣王", + th: "เพนโดรา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "首のツメで 獲物を つかむと そのまま 地面に 叩きつけ 毒のトゲを 突きたてるぞ。", - 'zh-tw': "用頸部的爪子夾住獵物後, 會直接將對方摔到地上, 然後用毒刺戳下去。" + 'zh-tw': "用頸部的爪子夾住獵物後, 會直接將對方摔到地上, 然後用毒刺戳下去。", + th: "พอจับเหยื่อด้วยกรงเล็บที่อยู่ตามคอได้ ก็จะฟาดลงพื้นแล้วแทงหนามพิษลงไป" }, stage: "Stage2", @@ -28,19 +30,22 @@ const card: Card = { name: { ja: "ひどうなひとさし", - 'zh-tw': "偏道一回" + 'zh-tw': "偏道一回", + th: "เสียดแทงไร้เมตตา" }, effect: { ja: "相手のバトルポケモンの残りHPが「10」になるように、ダメカンをのせる。", - 'zh-tw': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「10」為止。" + 'zh-tw': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「10」為止。", + th: "วางตัวนับแดเมจให้ HP ของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเหลือเท่ากับ [10]" } }, { cost: ["Darkness", "Colorless", "Colorless"], name: { ja: "ヘドロばくだん", - 'zh-tw': "污泥炸彈" + 'zh-tw': "污泥炸彈", + th: "สลัดจ์บอมบ์" }, damage: 160 diff --git a/data-asia/SV/SV6/071.ts b/data-asia/SV/SV6/071.ts index 01e22e541..0b6e086e6 100644 --- a/data-asia/SV/SV6/071.ts +++ b/data-asia/SV/SV6/071.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "アラブルタケ", - 'zh-tw': "猛惡菇" + 'zh-tw': "猛惡菇", + th: "เห็ดคลุ้มคลั่ง" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "ある本の中で アラブルタケと 記されていた 生物は このポケモンの 可能性がある。", - 'zh-tw': "某本書裡記載的一種 叫做猛惡菇的生物, 有可能就是這隻寶可夢。" + 'zh-tw': "某本書裡記載的一種 叫做猛惡菇的生物, 有可能就是這隻寶可夢。", + th: "มีความเป็นไปได้ว่าโปเกมอนตัวนี้คือสิ่งมีชีวิตที่เรียกว่าเห็ดคลุ้มคลั่งซึ่งถูกระบุไว้ในหนังสือเล่มหนึ่ง" }, stage: "Basic", @@ -28,26 +30,30 @@ const card: Card = { name: { ja: "どくをとばす", - 'zh-tw': "噴毒" + 'zh-tw': "噴毒", + th: "พ่นพิษ" }, effect: { ja: "相手のバトルポケモンをどくにする。", - 'zh-tw': "將對手的戰鬥寶可夢【中毒】。" + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]" } }, { cost: ["Darkness", "Darkness", "Darkness"], name: { ja: "まくしなぐる", - 'zh-tw': "爆毆" + 'zh-tw': "爆毆", + th: "ต่อยรัว ๆ" }, damage: "50+", effect: { ja: "相手のバトルポケモンにのっているダメカンの数×50ダメージ追加。", - 'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×50點傷害。" + 'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×50點傷害。", + th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x50" } }], diff --git a/data-asia/SV/SV6/072.ts b/data-asia/SV/SV6/072.ts index ea66b4f4b..9bcfec53e 100644 --- a/data-asia/SV/SV6/072.ts +++ b/data-asia/SV/SV6/072.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "エアームド", - 'zh-tw': "盔甲鳥" + 'zh-tw': "盔甲鳥", + th: "แอร์มุโด" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "抜け落ちた 羽根から 剣が 作られることから 紋章の 図案として 人気が 高い。", - 'zh-tw': "由於牠脫落下來的羽毛 能夠製成劍,因此作為 家徽的圖案也很有人氣。" + 'zh-tw': "由於牠脫落下來的羽毛 能夠製成劍,因此作為 家徽的圖案也很有人氣。", + th: "เพราะมีการนำขนที่ร่วงออกมาทำเป็นดาบ จึงได้รับความนิยมสูงในการนำมาทำเป็นแบบของตราประจำตระกูล" }, stage: "Basic", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "カッターウインド", - 'zh-tw': "利刃之風" + 'zh-tw': "利刃之風", + th: "คัตเตอร์วินด์" }, damage: 30 @@ -37,14 +40,16 @@ const card: Card = { name: { ja: "おおあらし", - 'zh-tw': "大風暴" + 'zh-tw': "大風暴", + th: "พายุใหญ่" }, damage: 90, effect: { ja: "場に出ているスタジアムをトラッシュする。", - 'zh-tw': "將場上的競技場卡丟棄。" + 'zh-tw': "將場上的競技場卡丟棄。", + th: "ทิ้งการ์ดสเตเดียมที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ด" } }], diff --git a/data-asia/SV/SV6/073.ts b/data-asia/SV/SV6/073.ts index 6518a0534..985a0931d 100644 --- a/data-asia/SV/SV6/073.ts +++ b/data-asia/SV/SV6/073.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ココドラ", - 'zh-tw': "可可多拉" + 'zh-tw': "可可多拉", + th: "โคโคโดรา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "鉄鉱石や たまに 鉄道の レールを 食べて 体を 守る 鋼の 鎧が つくられる。", - 'zh-tw': "保護牠身體的鋼鐵盔甲, 是由牠吃下的鐵礦石以及 偶爾吃下的鐵軌所製成的。" + 'zh-tw': "保護牠身體的鋼鐵盔甲, 是由牠吃下的鐵礦石以及 偶爾吃下的鐵軌所製成的。", + th: "กินแร่เหล็กหรือบางครั้งก็รางรถไฟเพื่อสร้างเกราะเหล็กกล้าปกป้องร่างกาย" }, stage: "Basic", @@ -28,14 +30,16 @@ const card: Card = { name: { ja: "すてみタックル", - 'zh-tw': "捨身衝撞" + 'zh-tw': "捨身衝撞", + th: "กระแทกสุดแรง" }, damage: 20, effect: { ja: "このポケモンにも10ダメージ。", - 'zh-tw': "這隻寶可夢也受到10點傷害。" + 'zh-tw': "這隻寶可夢也受到10點傷害。", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย" } }], diff --git a/data-asia/SV/SV6/074.ts b/data-asia/SV/SV6/074.ts index 4850fa000..948093ca0 100644 --- a/data-asia/SV/SV6/074.ts +++ b/data-asia/SV/SV6/074.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "コドラ", - 'zh-tw': "可多拉" + 'zh-tw': "可多拉", + th: "โคโดรา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "コドラが 暮らす 山は 湧き水と 鉄鉱石が 豊富なので 人と 争いに なることも 多かった。", - 'zh-tw': "可多拉棲息的山區有 豐富的泉水和鐵礦石, 因此常會與人類起紛爭。" + 'zh-tw': "可多拉棲息的山區有 豐富的泉水和鐵礦石, 因此常會與人類起紛爭。", + th: "ภูเขาที่โคโดราอาศัยอยู่อุดมไปด้วยน้ำแร่และแร่เหล็ก ดังนั้นจึงเคยเกิดการต่อสู้กับมนุษย์หลายครั้ง" }, stage: "Stage1", @@ -28,21 +30,24 @@ const card: Card = { name: { ja: "こうてつタックル", - 'zh-tw': "鋼鐵衝撞" + 'zh-tw': "鋼鐵衝撞", + th: "กระแทกพลังเหล็ก" }, damage: 40, effect: { ja: "このポケモンにも20ダメージ。", - 'zh-tw': "這隻寶可夢也受到20點傷害。" + 'zh-tw': "這隻寶可夢也受到20點傷害。", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 20 ด้วย" } }, { cost: ["Metal", "Colorless", "Colorless"], name: { ja: "メタルクロー", - 'zh-tw': "金屬爪" + 'zh-tw': "金屬爪", + th: "เมทัลคลอว์" }, damage: 60 diff --git a/data-asia/SV/SV6/075.ts b/data-asia/SV/SV6/075.ts index 50a6bd4fb..44fdd2780 100644 --- a/data-asia/SV/SV6/075.ts +++ b/data-asia/SV/SV6/075.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ボスゴドラ", - 'zh-tw': "波士可多拉" + 'zh-tw': "波士可多拉", + th: "บอสโกโดรา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "ぶ厚い 鉄板を 貫くほどの 鋭い ツノを 体当たりとともに くらわせて 敵を しとめる。", - 'zh-tw': "在撞擊敵人的同時,會用 能刺穿厚鐵板的銳利尖角 給予對方致命的一擊。" + 'zh-tw': "在撞擊敵人的同時,會用 能刺穿厚鐵板的銳利尖角 給予對方致命的一擊。", + th: "จัดการศัตรูด้วยการซัดเขาที่แหลมคมขนาดเสียบทะลุแผ่นเหล็กหนาได้เข้าใส่ พร้อม ๆ กับพุ่งตัวกระแทก" }, stage: "Stage2", @@ -28,28 +30,32 @@ const card: Card = { name: { ja: "アングリースラム", - 'zh-tw': "發怒猛進" + 'zh-tw': "發怒猛進", + th: "โมโหปึงปัง" }, damage: "50×", effect: { ja: "自分の場のダメカンがのっているポケモンの数×50ダメージ。", - 'zh-tw': "造成自己場上的身上放置有傷害指示物的寶可夢的數量×50點傷害。" + 'zh-tw': "造成自己場上的身上放置有傷害指示物的寶可夢的數量×50點傷害。", + th: "แดเมจจะเท่ากับจำนวนโปเกมอนบนกระดานฝ่ายเราที่มีตัวนับแดเมจวางอยู่ x50" } }, { cost: ["Metal", "Colorless", "Colorless"], name: { ja: "ガードクロー", - 'zh-tw': "防守利爪" + 'zh-tw': "防守利爪", + th: "การ์ดคลอว์" }, damage: 120, effect: { ja: "次の相手の番、このポケモンが受けるワザのダメージは「-50」される。", - 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-50」點。" + 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-50」點。", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-50]" } }], diff --git a/data-asia/SV/SV6/076.ts b/data-asia/SV/SV6/076.ts index f440189a5..346abbb5e 100644 --- a/data-asia/SV/SV6/076.ts +++ b/data-asia/SV/SV6/076.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ヒードラン", - 'zh-tw': "席多藍恩" + 'zh-tw': "席多藍恩", + th: "ฮีดราน" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "火山の 洞穴に 生息。 十字の ツメを 食いこませて 壁や 天井を はい回る。", - 'zh-tw': "棲息在火山的洞穴裡。 以十字形的爪子勾住 牆壁或洞頂爬行。" + 'zh-tw': "棲息在火山的洞穴裡。 以十字形的爪子勾住 牆壁或洞頂爬行。", + th: "อาศัยอยู่ในถ้ำภูเขาไฟ จะใช้เล็บกากบาทเกาะกำแพงหรือเพดานแล้วไต่ไปเรื่อย" }, stage: "Basic", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "しゃくねつボディ", - 'zh-tw': "灼熱之軀" + 'zh-tw': "灼熱之軀", + th: "ร่างร้อนระอุ" }, effect: { ja: "このポケモンが、バトル場で相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンをやけどにする。", - 'zh-tw': "這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害時,將使用招式的寶可夢【灼傷】。" + 'zh-tw': "這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害時,將使用招式的寶可夢【灼傷】。", + th: "เมื่อโปเกมอนนี้ อยู่บนตำแหน่งต่อสู้และได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้าม ทำให้โปเกมอนที่ใช้ท่าต่อสู้เป็นสภาวะ[ไหม้]" } }], @@ -42,14 +46,16 @@ const card: Card = { name: { ja: "スチールバースト", - 'zh-tw': "鋼鐵爆炸" + 'zh-tw': "鋼鐵爆炸", + th: "สตีลเบิสต์" }, damage: "50×", effect: { ja: "このポケモンについているエネルギーをすべてトラッシュし、その枚数×50ダメージ。", - 'zh-tw': "將這隻寶可夢身上附加的【鋼】能量卡全部丟棄,造成其張數×50點傷害。" + 'zh-tw': "將這隻寶可夢身上附加的【鋼】能量卡全部丟棄,造成其張數×50點傷害。", + th: "ทิ้งพลังงาน[โลหะ]ที่ติดอยู่กับโปเกมอนนี้ทั้งหมดที่ตำแหน่งทิ้งการ์ด แดเมจจะเท่ากับจำนวนการ์ดนั้น x50" } }], diff --git a/data-asia/SV/SV6/077.ts b/data-asia/SV/SV6/077.ts index 3e04b4b4f..d0169366f 100644 --- a/data-asia/SV/SV6/077.ts +++ b/data-asia/SV/SV6/077.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ブロロン", - 'zh-tw': "噗隆隆" + 'zh-tw': "噗隆隆", + th: "โบรรอน" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "鋼の 体が 本体。 岩に 張りつき その成分を エネルギーに 変えて 活動する。", - 'zh-tw': "鋼鐵身軀才是本體。 會貼在岩石上將其成分 轉換成活動用的能量。" + 'zh-tw': "鋼鐵身軀才是本體。 會貼在岩石上將其成分 轉換成活動用的能量。", + th: "ร่างที่แท้จริงคือส่วนที่เป็นเหล็ก เกาะติดอยู่กับหินแล้วเปลี่ยนส่วนประกอบนั้นให้เป็นพลังงานที่ใช้ในการขับเคลื่อน" }, stage: "Basic", @@ -28,19 +30,22 @@ const card: Card = { name: { ja: "メタルコーティング", - 'zh-tw': "金屬塗層" + 'zh-tw': "金屬塗層", + th: "เมทัลโค้ตติ้ง" }, effect: { ja: "自分のトラッシュから「基本エネルギー」を1枚選び、このポケモンにつける。", - 'zh-tw': "從自己的棄牌區選擇1張「基本【鋼】能量」卡,附於這隻寶可夢身上。" + 'zh-tw': "從自己的棄牌區選擇1張「基本【鋼】能量」卡,附於這隻寶可夢身上。", + th: "เลือกการ์ด [พลังงานพื้นฐาน[โลหะ]] 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนนี้" } }, { cost: ["Metal", "Colorless", "Colorless"], name: { ja: "ぶつかる", - 'zh-tw': "衝撞" + 'zh-tw': "衝撞", + th: "กระแทก" }, damage: 50 diff --git a/data-asia/SV/SV6/078.ts b/data-asia/SV/SV6/078.ts index fb34449a8..315dd79d7 100644 --- a/data-asia/SV/SV6/078.ts +++ b/data-asia/SV/SV6/078.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ブロロローム", - 'zh-tw': "普隆隆姆" + 'zh-tw': "普隆隆姆", + th: "โบรโรโรม" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "排気音で 激しく 威嚇する。 円筒形の 口から べろを 出して 毒液を まき散らす。", - 'zh-tw': "用排氣聲猛烈威嚇對手。 會從圓筒形的嘴巴 吐出舌頭並噴灑毒液。" + 'zh-tw': "用排氣聲猛烈威嚇對手。 會從圓筒形的嘴巴 吐出舌頭並噴灑毒液。", + th: "เสียงไอเสียนั้นข่มขวัญอีกฝ่ายเป็นอย่างมาก จะแลบลิ้นออกมาจากปากทรงกระบอกแล้วพ่นของเหลวพิษ" }, stage: "Stage1", @@ -28,28 +30,32 @@ const card: Card = { name: { ja: "まきかえす", - 'zh-tw': "捲土重來" + 'zh-tw': "捲土重來", + th: "โต้กลับ" }, damage: "30+", effect: { ja: "前の相手の番に、ワザのダメージで、自分のポケモンがきぜつしていたなら、90ダメージ追加。", - 'zh-tw': "在上個對手的回合,若自己的寶可夢因招式的傷害而【昏厥】了,則增加90點傷害。" + 'zh-tw': "在上個對手的回合,若自己的寶可夢因招式的傷害而【昏厥】了,則增加90點傷害。", + th: "ในเทิร์นก่อนของฝ่ายตรงข้าม ถ้าโปเกมอนฝ่ายเรา[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้ การโจมตีนี้จะเพิ่มแดเมจอีก 90" } }, { cost: ["Metal", "Colorless", "Colorless"], name: { ja: "つっぱしる", - 'zh-tw': "奔進" + 'zh-tw': "奔進", + th: "วิ่งแรง" }, damage: "100×", effect: { ja: "ウラが出るまでコインを投げ、オモテの数×100ダメージ。", - 'zh-tw': "擲硬幣直到出現反面,造成正面出現的次數×100點傷害。" + 'zh-tw': "擲硬幣直到出現反面,造成正面出現的次數×100點傷害。", + th: "ทอยเหรียญจนกว่าจะออกก้อย แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x100" } }], diff --git a/data-asia/SV/SV6/079.ts b/data-asia/SV/SV6/079.ts index 5aa194188..608b1f7af 100644 --- a/data-asia/SV/SV6/079.ts +++ b/data-asia/SV/SV6/079.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ドラメシヤ", - 'zh-tw': "多龍梅西亞" + 'zh-tw': "多龍梅西亞", + th: "โดราเมชิยะ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "食べもしないのに ウデッポウに 食らいつくのは 生きていたころの 行動の 名残りと 言われている。", - 'zh-tw': "明明不吃卻又愛死咬著 鐵臂槍蝦不放,聽說是牠 生前殘留下來的活動習性。" + 'zh-tw': "明明不吃卻又愛死咬著 鐵臂槍蝦不放,聽說是牠 生前殘留下來的活動習性。", + th: "ว่ากันว่าที่มันชอบกัดอุเด็ปโปไว้ไม่ปล่อยแม้จะไม่กินเป็นอาหารนั้นเป็นการกระทำที่มันเคยทำตอนที่มันยังมีชีวิต" }, stage: "Basic", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "ちょっとうらむ", - 'zh-tw': "咒怨一下" + 'zh-tw': "咒怨一下", + th: "เจ็บแค้นหน่อย" }, damage: 10 @@ -37,7 +40,8 @@ const card: Card = { name: { ja: "かみつく", - 'zh-tw': "咬住" + 'zh-tw': "咬住", + th: "กัดติด" }, damage: 40 diff --git a/data-asia/SV/SV6/080.ts b/data-asia/SV/SV6/080.ts index 920e5b494..d180946c0 100644 --- a/data-asia/SV/SV6/080.ts +++ b/data-asia/SV/SV6/080.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ドロンチ", - 'zh-tw': "多龍奇" + 'zh-tw': "多龍奇", + th: "โดรอนจิ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "肺に エネルギーを溜め 撃ち出す。 ドラメシヤが 立派に 育つまで 一緒に 戦い 世話もする。", - 'zh-tw': "會用儲存在肺部的能量進行攻擊。 在多龍梅西亞能獨當一面前, 都會一起戰鬥並照顧起居。" + 'zh-tw': "會用儲存在肺部的能量進行攻擊。 在多龍梅西亞能獨當一面前, 都會一起戰鬥並照顧起居。", + th: "เก็บสะสมพลังงานไว้ในปอดแล้วยิงออกไป จะคอยช่วยเหลือและต่อสู้ร่วมกับโดราเมชิยะจนกว่าพวกมันจะเติบโตได้อย่างงดงาม" }, stage: "Stage1", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "ていさつしれい", - 'zh-tw': "偵查指令" + 'zh-tw': "偵查指令", + th: "คำสั่งสอดแนม" }, effect: { ja: "自分の番に1回使える。自分の山札を上から2枚見て、どちらか1枚を選び、手札に加える。残りのカードは、山札の下にもどす。", - 'zh-tw': "在自己的回合時可使用1次。查看自己的牌庫上方2張卡,選擇其中1張,加入手牌。將剩餘卡放回牌庫下方。" + 'zh-tw': "在自己的回合時可使用1次。查看自己的牌庫上方2張卡,選擇其中1張,加入手牌。將剩餘卡放回牌庫下方。", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ดูการ์ด 2 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกใบใดใบหนึ่ง 1 ใบ นำขึ้นมือ การ์ดที่เหลือ ใส่กลับไปด้านล่างของสำรับการ์ด" } }], @@ -42,7 +46,8 @@ const card: Card = { name: { ja: "リューズヘッド", - 'zh-tw': "龍之頭擊" + 'zh-tw': "龍之頭擊", + th: "หัวมังกรคู่" }, damage: 70 diff --git a/data-asia/SV/SV6/081.ts b/data-asia/SV/SV6/081.ts index e292d15ae..1728c0ea8 100644 --- a/data-asia/SV/SV6/081.ts +++ b/data-asia/SV/SV6/081.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ドラパルトex", - 'zh-tw': "多龍巴魯托ex" + 'zh-tw': "多龍巴魯托ex", + th: "โดราพัลท์ex" }, category: "Pokemon", @@ -22,7 +23,8 @@ const card: Card = { name: { ja: "ジェットヘッド", - 'zh-tw': "噴射頭擊" + 'zh-tw': "噴射頭擊", + th: "เจ็ตเฮด" }, damage: 70 @@ -31,14 +33,16 @@ const card: Card = { name: { ja: "ファントムダイブ", - 'zh-tw': "幻影奇襲" + 'zh-tw': "幻影奇襲", + th: "แฟนธอมไดฟ์" }, damage: 200, effect: { ja: "ダメカン6個を、相手のベンチポケモンに好きなようにのせる。", - 'zh-tw': "將6個傷害指示物以任意方式放置於對手的備戰寶可夢身上。" + 'zh-tw': "將6個傷害指示物以任意方式放置於對手的備戰寶可夢身上。", + th: "วางตัวนับแดเมจ 6 ตัว บนโปเกมอนบนเบนช์ฝ่ายตรงข้ามตามชอบ" } }], diff --git a/data-asia/SV/SV6/082.ts b/data-asia/SV/SV6/082.ts index a19fffe9f..fad208e01 100644 --- a/data-asia/SV/SV6/082.ts +++ b/data-asia/SV/SV6/082.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "シャリタツ", - 'zh-tw': "米立龍" + 'zh-tw': "米立龍", + th: "ชาริทัตสึ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "非常に 悪賢い ポケモン。 弱ったふりで 獲物を おびき寄せ 仲間の ポケモンに 襲わせる。", - 'zh-tw': "極為奸詐狡猾的寶可夢。 會假裝虛弱來吸引獵物接近, 接著讓同夥的寶可夢發動攻擊。" + 'zh-tw': "極為奸詐狡猾的寶可夢。 會假裝虛弱來吸引獵物接近, 接著讓同夥的寶可夢發動攻擊。", + th: "โปเกมอนที่เจ้าเล่ห์เป็นอย่างมาก แสร้งทำเป็นอ่อนแอเพื่อดึงดูดให้เหยื่อเข้ามาใกล้ แล้วให้โปเกมอนที่เป็นพวกพ้องโจมตีใส่" }, stage: "Basic", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "きゃくよせ", - 'zh-tw': "集客" + 'zh-tw': "集客", + th: "ดึงดูดลูกค้า" }, effect: { ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。自分の山札を上から6枚見て、その中からサポートを1枚選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。", - 'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。查看自己的牌庫上方6張卡,從其中選擇1張支援者卡,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。" + 'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。查看自己的牌庫上方6張卡,從其中選擇1張支援者卡,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。", + th: "ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ดูการ์ด 6 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดซัพพอร์ต 1 ใบจากในนั้น ให้ฝ่ายตรงข้ามดู นำขึ้นมือ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ" } }], @@ -42,7 +46,8 @@ const card: Card = { name: { ja: "なみのり", - 'zh-tw': "衝浪" + 'zh-tw': "衝浪", + th: "โต้คลื่น" }, damage: 50 diff --git a/data-asia/SV/SV6/083.ts b/data-asia/SV/SV6/083.ts index 1da21c35b..60ddec6d4 100644 --- a/data-asia/SV/SV6/083.ts +++ b/data-asia/SV/SV6/083.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "カモネギ", - 'zh-tw': "大蔥鴨" + 'zh-tw': "大蔥鴨", + th: "คาโมเนกิ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "羽で もつ 茎を 刀のように 操り 敵を 切り捨てる。 いざと いうときは エサに する。", - 'zh-tw': "會將翅膀所拿的莖狀植物 當成劍一般去劈砍對手。 在非常時期會拿它當作食物。" + 'zh-tw': "會將翅膀所拿的莖狀植物 當成劍一般去劈砍對手。 在非常時期會拿它當作食物。", + th: "ฟันคู่ต่อสู้ทิ้งโดยใช้ลำต้นที่ถือด้วยปีกราวกับดาบได้อย่างช่ำชอง หากถึงคราวจำเป็นก็จะเอามากินแทนอาหาร" }, stage: "Basic", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "でたとこせおい", - 'zh-tw': "臨場背負" + 'zh-tw': "臨場背負", + th: "แบกขึ้นฉับพลัน" }, effect: { ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。自分の山札から「ポケモンのどうぐ」を1枚選び、このポケモンにつける。そして山札を切る。", - 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。從自己的牌庫選擇1張「寶可夢道具」卡,附於這隻寶可夢身上。並且重洗牌庫。" + 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。從自己的牌庫選擇1張「寶可夢道具」卡,附於這隻寶可夢身上。並且重洗牌庫。", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง เลือกการ์ด [ไอเท็มติดโปเกมอน] 1 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด" } }], @@ -42,14 +46,16 @@ const card: Card = { name: { ja: "おんそくぎり", - 'zh-tw': "音速斬" + 'zh-tw': "音速斬", + th: "ผ่าความเร็วเสียง" }, damage: 30, effect: { ja: "相手のバトルポケモンについている特殊エネルギーを1個選び、トラッシュする。", - 'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的特殊能量,將其丟棄。" + 'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的特殊能量,將其丟棄。", + th: "เลือกพลังงานพิเศษที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" } }], diff --git a/data-asia/SV/SV6/084.ts b/data-asia/SV/SV6/084.ts index bb34bde97..ed6cbab28 100644 --- a/data-asia/SV/SV6/084.ts +++ b/data-asia/SV/SV6/084.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ラッキー", - 'zh-tw': "吉利蛋" + 'zh-tw': "吉利蛋", + th: "ลัคกี" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "持っている タマゴを 割らないように 気をつけて 歩く。 でも 逃げ足は とても 速い。", - 'zh-tw': "為了避免蛋被打破, 走起路來小心謹慎。 然而逃跑速度卻是快之無比。" + 'zh-tw': "為了避免蛋被打破, 走起路來小心謹慎。 然而逃跑速度卻是快之無比。", + th: "เดินอย่างระวังเพื่อไม่ให้ไข่ที่มีอยู่แตก แต่ตอนหนีจะหนีไวมาก" }, stage: "Basic", @@ -28,26 +30,30 @@ const card: Card = { name: { ja: "ラッキーアタッチ", - 'zh-tw': "幸運貼附" + 'zh-tw': "幸運貼附", + th: "ลัคกีแอตแทช" }, effect: { ja: "自分の手札から基本エネルギーを1枚選び、自分のポケモンにつける。", - 'zh-tw': "從自己的手牌選擇1張基本能量卡,附於自己的寶可夢身上。" + 'zh-tw': "從自己的手牌選擇1張基本能量卡,附於自己的寶可夢身上。", + th: "เลือกการ์ดพลังงานพื้นฐาน 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา" } }, { cost: ["Colorless", "Colorless", "Colorless"], name: { ja: "そこぢから", - 'zh-tw': "潛力" + 'zh-tw': "潛力", + th: "พลังแฝง" }, damage: 80, effect: { ja: "次の自分の番、このポケモンはワザが使えない。", - 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。" + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้" } }], diff --git a/data-asia/SV/SV6/085.ts b/data-asia/SV/SV6/085.ts index ee2932769..60bbb3129 100644 --- a/data-asia/SV/SV6/085.ts +++ b/data-asia/SV/SV6/085.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ハピナスex", - 'zh-tw': "幸福蛋ex" + 'zh-tw': "幸福蛋ex", + th: "แฮปปีนาสex" }, category: "Pokemon", @@ -22,12 +23,14 @@ const card: Card = { name: { ja: "ハッピースイッチ", - 'zh-tw': "幸福切換" + 'zh-tw': "幸福切換", + th: "แฮปปี้สวิตช์" }, effect: { ja: "自分の番に1回使える。自分の場のポケモンについている基本エネルギーを1個選び、自分の別のポケモンにつけ替える。", - 'zh-tw': "在自己的回合時可使用1次。選擇1個自己的場上寶可夢身上附加的基本能量,改附於自己的其他寶可夢身上。" + 'zh-tw': "在自己的回合時可使用1次。選擇1個自己的場上寶可夢身上附加的基本能量,改附於自己的其他寶可夢身上。", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกพลังงานพื้นฐานที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเรา 1 ลูก ย้ายไปติดกับโปเกมอนตัวอื่นของฝ่ายเรา" } }], @@ -36,14 +39,16 @@ const card: Card = { name: { ja: "おんがえし", - 'zh-tw': "報恩" + 'zh-tw': "報恩", + th: "ทดแทนคุณ" }, damage: 180, effect: { ja: "のぞむなら、自分の手札が6枚になるように、山札を引く。", - 'zh-tw': "若希望,從牌庫抽卡直到自己的手牌滿6張為止。" + 'zh-tw': "若希望,從牌庫抽卡直到自己的手牌滿6張為止。", + th: "หากต้องการ จั่วการ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 6 ใบ" } }], diff --git a/data-asia/SV/SV6/086.ts b/data-asia/SV/SV6/086.ts index c4d216111..999d721b2 100644 --- a/data-asia/SV/SV6/086.ts +++ b/data-asia/SV/SV6/086.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "エイパム", - 'zh-tw': "長尾怪手" + 'zh-tw': "長尾怪手", + th: "เอย์แพม" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "手よりも 自由自在に 動く 尻尾を 巧みに 操りながら 高い 木の上で 暮らしている。", - 'zh-tw': "會巧妙地操縱比雙手 還靈活的尾巴, 生活在高高的樹上。" + 'zh-tw': "會巧妙地操縱比雙手 還靈活的尾巴, 生活在高高的樹上。", + th: "อาศัยอยู่บนต้นไม้สูง ใช้หางที่ขยับได้ดั่งใจได้อย่างช่ำชองยิ่งกว่ามือของมัน" }, stage: "Basic", @@ -28,7 +30,8 @@ const card: Card = { name: { ja: "ぶらさがる", - 'zh-tw': "垂吊" + 'zh-tw': "垂吊", + th: "ห้อยโตงเตง" }, damage: 10 @@ -37,7 +40,8 @@ const card: Card = { name: { ja: "やんちゃげり", - 'zh-tw': "調皮踢" + 'zh-tw': "調皮踢", + th: "เตะแกล้ง" }, damage: 20 diff --git a/data-asia/SV/SV6/087.ts b/data-asia/SV/SV6/087.ts index 71cb80ec7..578386e79 100644 --- a/data-asia/SV/SV6/087.ts +++ b/data-asia/SV/SV6/087.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "エテボース", - 'zh-tw': "雙尾怪手" + 'zh-tw': "雙尾怪手", + th: "เอเทโบธ" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "2本に 分かれた 尻尾は いろんなことが 器用に できるので ほとんど 手を 使わなくなった。", - 'zh-tw': "分叉成2根的尾巴非常靈活, 能夠完成各式各樣的事情, 因此變得幾乎不使用雙手了。" + 'zh-tw': "分叉成2根的尾巴非常靈活, 能夠完成各式各樣的事情, 因此變得幾乎不使用雙手了。", + th: "หางที่แยกออกมาเป็นสองแฉกนั้นสามารถทำหลาย ๆ อย่างได้อย่างช่ำชอง ทำให้มันไม่ค่อยได้ใช้มือ" }, stage: "Stage1", @@ -28,12 +30,14 @@ const card: Card = { name: { ja: "いけずなしっぽ", - 'zh-tw': "使壞之尾" + 'zh-tw': "使壞之尾", + th: "หางขี้แกล้ง" }, effect: { ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。コインを2回投げ、オモテの数ぶん、相手の手札からオモテを見ないで選び、そのカードのオモテを見て、相手の山札にもどして切る。", - 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。擲2次硬幣,在不看手牌正面的情況下,從對手的手牌選擇與正面出現的次數相同數量的卡,查看那些卡的正面後放回對手的牌庫並重洗。" + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。擲2次硬幣,在不看手牌正面的情況下,從對手的手牌選擇與正面出現的次數相同數量的卡,查看那些卡的正面後放回對手的牌庫並重洗。", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง ทอยเหรียญ 2 ครั้ง เลือกการ์ดจากบนมือฝ่ายตรงข้ามโดยไม่ดูหน้าการ์ด ตามจำนวนครั้งที่ออกหัว หลังจากดูหน้าการ์ดนั้นแล้ว ใส่กลับไปในสำรับการ์ดฝ่ายตรงข้ามแล้วสับ" } }], @@ -42,7 +46,8 @@ const card: Card = { name: { ja: "ひっぱたく", - 'zh-tw': "重摑" + 'zh-tw': "重摑", + th: "ตบแรง" }, damage: 100 diff --git a/data-asia/SV/SV6/088.ts b/data-asia/SV/SV6/088.ts index 3ea65d42c..2c3bcc218 100644 --- a/data-asia/SV/SV6/088.ts +++ b/data-asia/SV/SV6/088.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "コアルヒー", - 'zh-tw': "鴨寶寶" + 'zh-tw': "鴨寶寶", + th: "โคอารูฮี" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "エサの 水苔を 探し 池の 深い場所を 泳ぎまわりながら 体を 鍛えているのだ。", - 'zh-tw': "會在池塘水深的地方 四處游動找水苔來吃, 順便鍛鍊身體。" + 'zh-tw': "會在池塘水深的地方 四處游動找水苔來吃, 順便鍛鍊身體。", + th: "ฝึกฝนร่างกายด้วยการว่ายวนเวียนอยู่ในส่วนลึกของบ่อน้ำเพื่อหามอสซึ่งเป็นอาหาร" }, stage: "Basic", @@ -28,19 +30,22 @@ const card: Card = { name: { ja: "ダブルドロー", - 'zh-tw': "雙重抽出" + 'zh-tw': "雙重抽出", + th: "ดับเบิลดรอว์" }, effect: { ja: "自分の山札を2枚引く。", - 'zh-tw': "從自己的牌庫抽出2張卡。" + 'zh-tw': "從自己的牌庫抽出2張卡。", + th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา" } }, { cost: ["Colorless", "Colorless"], name: { ja: "するどいはね", - 'zh-tw': "銳利羽" + 'zh-tw': "銳利羽", + th: "ขนปีกแหลมคม" }, damage: 20 diff --git a/data-asia/SV/SV6/089.ts b/data-asia/SV/SV6/089.ts index efd5a54a8..82f3fe4d0 100644 --- a/data-asia/SV/SV6/089.ts +++ b/data-asia/SV/SV6/089.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "スワンナ", - 'zh-tw': "舞天鵝" + 'zh-tw': "舞天鵝", + th: "สวอนนา" }, category: "Pokemon", @@ -18,7 +19,8 @@ const card: Card = { description: { ja: "薄明の中で 踊る 美しい ダンスから 多くの 芸術家が インスピレーションを 受けたという。", - 'zh-tw': "據說許多藝術家都是從牠在 晨曦暮色的微光中舞出的 優美舞蹈獲得過靈感。" + 'zh-tw': "據說許多藝術家都是從牠在 晨曦暮色的微光中舞出的 優美舞蹈獲得過靈感。", + th: "ว่ากันว่าศิลปินจำนวนมากได้รับแรงบันดาลใจจากท่วงท่าการเต้นรำแสนงดงามใต้แสงสลัวยามสนธยาของมัน" }, stage: "Stage1", @@ -28,21 +30,24 @@ const card: Card = { name: { ja: "とうしのつばさ", - 'zh-tw': "鬥志之翼" + 'zh-tw': "鬥志之翼", + th: "ปีกนักสู้" }, damage: "20+", effect: { ja: "相手のバトルポケモンが「ポケモンex・V」なら、90ダメージ追加。", - 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加90點傷害。" + 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加90點傷害。", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】 /【V】] การโจมตีนี้จะเพิ่มแดเมจอีก 90" } }, { cost: ["Colorless", "Colorless"], name: { ja: "かぜおこし", - 'zh-tw': "起風" + 'zh-tw': "起風", + th: "เรียกลม" }, damage: 70 diff --git a/data-asia/SV/SV6/090.ts b/data-asia/SV/SV6/090.ts index 66710d087..db72e4c7f 100644 --- a/data-asia/SV/SV6/090.ts +++ b/data-asia/SV/SV6/090.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "鬼の仮面", - 'zh-tw': "鬼之假面" + 'zh-tw': "鬼之假面", + th: "หน้ากากยักษ์" }, category: "Trainer", @@ -20,7 +21,8 @@ const card: Card = { effect: { ja: "自分のトラッシュから、名前に「オーガポン」とつく「ポケモンex」を1枚選び、自分の場の、名前に「オーガポン」とつく「ポケモンex」1匹と入れ替える(ついているカード・ダメカン・特殊状態・効果などは、すべて引きつぐ)。入れ替えたポケモンはトラッシュする。", - 'zh-tw': "從自己的棄牌區選擇1張名稱中有「厄鬼椪」的「寶可夢【ex】」卡,與自己的場上的1隻名稱中有「厄鬼椪」的「寶可夢【ex】」互換(所附加的卡・傷害指示物・特殊狀態・效果等全部保留)。將換下的寶可夢丟棄。" + 'zh-tw': "從自己的棄牌區選擇1張名稱中有「厄鬼椪」的「寶可夢【ex】」卡,與自己的場上的1隻名稱中有「厄鬼椪」的「寶可夢【ex】」互換(所附加的卡・傷害指示物・特殊狀態・效果等全部保留)。將換下的寶可夢丟棄。", + th: "เลือกการ์ด [โปเกมอน【ex】] ที่มีคำว่า [โอการ์ปอง] บนชื่อ 1 ใบ จากตำแหน่งทิ้งการ์ดฝ่ายเรา สลับกับ [โปเกมอน【ex】] ที่มีคำว่า [โอการ์ปอง] บนชื่อ บนกระดานฝ่ายเรา 1 ตัว (การ์ดที่ติดอยู่ ตัวนับแดเมจ สภาวะผิดปกติ เอฟเฟกต์ทั้งหมดยังคงอยู่ต่อไป) ทิ้งโปเกมอนที่สลับที่ตำแหน่งทิ้งการ์ด" }, trainerType: "Item", diff --git a/data-asia/SV/SV6/091.ts b/data-asia/SV/SV6/091.ts index c2e79d9f8..07672e060 100644 --- a/data-asia/SV/SV6/091.ts +++ b/data-asia/SV/SV6/091.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "おはやし笛", - 'zh-tw': "配樂之笛" + 'zh-tw': "配樂之笛", + th: "ขลุ่ยบรรเลง" }, category: "Trainer", @@ -20,7 +21,8 @@ const card: Card = { effect: { ja: "相手の山札を上から5枚オモテにして、その中からたねポケモンを好きなだけ選び、相手のベンチに出す。残りのカードは山札にもどして切る。", - 'zh-tw': "將對手的牌庫上方5張卡翻到正面,從其中選擇任意數量的【基礎】寶可夢卡,放置於對手的備戰區。將剩餘卡放回牌庫並重洗。" + 'zh-tw': "將對手的牌庫上方5張卡翻到正面,從其中選擇任意數量的【基礎】寶可夢卡,放置於對手的備戰區。將剩餘卡放回牌庫並重洗。", + th: "หงายการ์ด 5 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้าม เลือกการ์ดโปเกมอน[พื้นฐาน]จากในนั้นตามจำนวนที่ชอบ วางบนเบนช์ฝ่ายตรงข้าม การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ" }, trainerType: "Item", diff --git a/data-asia/SV/SV6/092.ts b/data-asia/SV/SV6/092.ts index 0ff32255e..915117de3 100644 --- a/data-asia/SV/SV6/092.ts +++ b/data-asia/SV/SV6/092.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "シークレットボックス", - 'zh-tw': "秘密箱" + 'zh-tw': "秘密箱", + th: "กล่องลับ" }, category: "Trainer", @@ -19,7 +20,8 @@ const card: Card = { effect: { ja: "このカードは、自分の手札を3枚トラッシュしなければ使えない。\n\n自分の山札から「グッズ」「ポケモンのどうぐ」「サポート」「スタジアム」を1枚ずつ選び、相手に見せて、手札に加える。そして山札を切る。", - 'zh-tw': "這張卡必須將自己的3張手牌丟棄才可使用。 從自己的牌庫選擇「物品」「寶可夢道具」「支援者」「競技場」卡各1張,在給對手看過後加入手牌。並且重洗牌庫。" + 'zh-tw': "這張卡必須將自己的3張手牌丟棄才可使用。 從自己的牌庫選擇「物品」「寶可夢道具」「支援者」「競技場」卡各1張,在給對手看過後加入手牌。並且重洗牌庫。", + th: "การ์ดนี้ ถ้าไม่ทิ้งการ์ดบนมือฝ่ายเรา 3 ใบที่ตำแหน่งทิ้งการ์ดจะใช้ไม่ได้ เลือกการ์ด [ไอเท็ม] การ์ด [ไอเท็มติดโปเกมอน] การ์ด [ซัพพอร์ต] การ์ด [สเตเดียม] อย่างละ 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด" }, trainerType: "Item", diff --git a/data-asia/SV/SV6/093.ts b/data-asia/SV/SV6/093.ts index 08eb03320..3abf52196 100644 --- a/data-asia/SV/SV6/093.ts +++ b/data-asia/SV/SV6/093.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ポケモン回収サイクロン", - 'zh-tw': "寶可夢旋風回收機" + 'zh-tw': "寶可夢旋風回收機", + th: "ไซโคลนเก็บคืนโปเกมอน" }, category: "Trainer", @@ -19,7 +20,8 @@ const card: Card = { effect: { ja: "自分の場のポケモンを1匹選び、そのポケモンと、ついているすべてのカードを、手札にもどす。", - 'zh-tw': "選擇1隻自己的場上寶可夢,將那隻寶可夢與附加的卡,全部放回手牌。" + 'zh-tw': "選擇1隻自己的場上寶可夢,將那隻寶可夢與附加的卡,全部放回手牌。", + th: "เลือกโปเกมอนบนกระดานฝ่ายเรา 1 ตัว นำโปเกมอนนั้น และการ์ดทั้งหมดที่ติดอยู่ กลับขึ้นมือ" }, trainerType: "Item", diff --git a/data-asia/SV/SV6/094.ts b/data-asia/SV/SV6/094.ts index ca92297d0..03db420ff 100644 --- a/data-asia/SV/SV6/094.ts +++ b/data-asia/SV/SV6/094.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "むしとりセット", - 'zh-tw': "捕蟲組合" + 'zh-tw': "捕蟲組合", + th: "ชุดจับแมลง" }, category: "Trainer", @@ -20,7 +21,8 @@ const card: Card = { effect: { ja: "自分の山札を上から7枚見て、その中からポケモンと「基本エネルギー」を合計2枚まで選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。", - 'zh-tw': "查看自己的牌庫上方7張卡,從其中選擇【草】寶可夢卡與「基本【草】能量」卡合計最多2張,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。" + 'zh-tw': "查看自己的牌庫上方7張卡,從其中選擇【草】寶可夢卡與「基本【草】能量」卡合計最多2張,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。", + th: "ดูการ์ด 7 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดโปเกมอน[หญ้า]และการ์ด [พลังงานพื้นฐาน[หญ้า]] รวมกันได้สูงสุด 2 ใบจากในนั้น ให้ฝ่ายตรงข้ามดู นำขึ้นมือ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ" }, trainerType: "Item", diff --git a/data-asia/SV/SV6/095.ts b/data-asia/SV/SV6/095.ts index 2ca922f31..e624ddaba 100644 --- a/data-asia/SV/SV6/095.ts +++ b/data-asia/SV/SV6/095.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ハンディサーキュレーター", - 'zh-tw': "手持循環扇" + 'zh-tw': "手持循環扇", + th: "แฮนดี้เซอร์คูเลเตอร์" }, category: "Trainer", @@ -15,7 +16,8 @@ const card: Card = { effect: { ja: "このカードをつけているポケモンが、バトル場で相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンについているエネルギーを1個選び、相手のベンチポケモンにつけ替える。", - 'zh-tw': "附有這張卡的寶可夢在戰鬥場受到對手的寶可夢招式的傷害時,選擇1個使用招式的寶可夢身上附加的能量,改附於對手的備戰寶可夢身上。" + 'zh-tw': "附有這張卡的寶可夢在戰鬥場受到對手的寶可夢招式的傷害時,選擇1個使用招式的寶可夢身上附加的能量,改附於對手的備戰寶可夢身上。", + th: "เมื่อโปเกมอนที่ติดการ์ดนี้ อยู่บนตำแหน่งต่อสู้และได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้าม เลือกพลังงานที่ติดอยู่กับโปเกมอนที่ใช้ท่าต่อสู้ 1 ลูก ย้ายไปติดกับโปเกมอนบนเบนช์ฝ่ายตรงข้าม" }, trainerType: "Tool", diff --git a/data-asia/SV/SV6/096.ts b/data-asia/SV/SV6/096.ts index 265524bec..69b1368cc 100644 --- a/data-asia/SV/SV6/096.ts +++ b/data-asia/SV/SV6/096.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "スグリ", - 'zh-tw': "烏栗" + 'zh-tw': "烏栗", + th: "ซุกุริ" }, category: "Trainer", @@ -20,7 +21,8 @@ const card: Card = { effect: { ja: "このカードは、2つの効果から1つを選んで使う。\n\n◆自分のバトルポケモンをベンチポケモンと入れ替える。\n\n◆この番、自分のポケモンが使うワザの、相手のバトル場の「ポケモンex・V」へのダメージは「+30」される。", - 'zh-tw': "這張卡從2種效果中選擇1種使用。 ◆將自己的戰鬥寶可夢與備戰寶可夢互換。 ◆在這個回合,自己的寶可夢使用的招式,對對手的戰鬥場的「寶可夢【ex】・【V】」造成的傷害「+30」點。" + 'zh-tw': "這張卡從2種效果中選擇1種使用。 ◆將自己的戰鬥寶可夢與備戰寶可夢互換。 ◆在這個回合,自己的寶可夢使用的招式,對對手的戰鬥場的「寶可夢【ex】・【V】」造成的傷害「+30」點。", + th: "การ์ดนี้ เลือกใช้ 1 เอฟเฟกต์จาก 2 เอฟเฟกต์ ◆สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายเรากับโปเกมอนบนเบนช์ ◆เทิร์นนี้ แดเมจของท่าต่อสู้ที่โปเกมอนฝ่ายเรา ใช้ทำกับ [โปเกมอน【ex】 /【V】] บนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+30]" }, trainerType: "Supporter", diff --git a/data-asia/SV/SV6/097.ts b/data-asia/SV/SV6/097.ts index 1572ce7a2..f6868a285 100644 --- a/data-asia/SV/SV6/097.ts +++ b/data-asia/SV/SV6/097.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ゼイユ", - 'zh-tw': "丹瑜" + 'zh-tw': "丹瑜", + th: "เซย์ยุ" }, category: "Trainer", @@ -20,7 +21,8 @@ const card: Card = { effect: { ja: "このカードは、先攻プレイヤーの最初の番でも使える。\n\n自分の手札をすべてトラッシュし、山札を5枚引く。", - 'zh-tw': "這張卡可在先攻玩家的最初回合使用。 將自己的手牌全部丟棄,從牌庫抽出5張卡。" + 'zh-tw': "這張卡可在先攻玩家的最初回合使用。 將自己的手牌全部丟棄,從牌庫抽出5張卡。", + th: "การ์ดนี้ แม้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเริ่มก่อนก็สามารถใช้ได้ ทิ้งการ์ดบนมือฝ่ายเราทั้งหมดที่ตำแหน่งทิ้งการ์ด จั่วการ์ด 5 ใบจากสำรับการ์ด" }, trainerType: "Supporter", diff --git a/data-asia/SV/SV6/098.ts b/data-asia/SV/SV6/098.ts index b1159f02c..191c80762 100644 --- a/data-asia/SV/SV6/098.ts +++ b/data-asia/SV/SV6/098.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ハッサク", - 'zh-tw': "八朔" + 'zh-tw': "八朔", + th: "ฮัซซาคุ" }, category: "Trainer", @@ -20,7 +21,8 @@ const card: Card = { effect: { ja: "このカードは、前の相手の番に、自分のポケモンがきぜつしていなければ使えない。\n\n自分の山札を上から8枚見て、その中からカードを3枚まで選び、手札に加える。残りのカードは山札にもどして切る。", - 'zh-tw': "這張卡必須在上個對手的回合自己的寶可夢【昏厥】了才可使用。 查看自己的牌庫上方8張卡,從其中選擇最多3張卡加入手牌。將剩餘卡放回牌庫並重洗。" + 'zh-tw': "這張卡必須在上個對手的回合自己的寶可夢【昏厥】了才可使用。 查看自己的牌庫上方8張卡,從其中選擇最多3張卡加入手牌。將剩餘卡放回牌庫並重洗。", + th: "การ์ดนี้ ในเทิร์นก่อนของฝ่ายตรงข้าม ถ้าโปเกมอนฝ่ายเราไม่[หมดสภาพ]จะใช้ไม่ได้ ดูการ์ด 8 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดได้สูงสุด 3 ใบจากในนั้น นำขึ้นมือ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ" }, trainerType: "Supporter", diff --git a/data-asia/SV/SV6/099.ts b/data-asia/SV/SV6/099.ts index 27bbb6907..362fd7dd0 100644 --- a/data-asia/SV/SV6/099.ts +++ b/data-asia/SV/SV6/099.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "お祭り会場", - 'zh-tw': "祭典會場" + 'zh-tw': "祭典會場", + th: "สถานที่จัดเทศกาล" }, category: "Trainer", @@ -20,7 +21,8 @@ const card: Card = { effect: { ja: "エネルギーがついているおたがいのポケモン全員は、特殊状態にならず、受けている特殊状態は、すべて回復する。", - 'zh-tw': "雙方的所有身上附有能量卡的寶可夢不會陷入特殊狀態,並將受到的特殊狀態全部恢復。" + 'zh-tw': "雙方的所有身上附有能量卡的寶可夢不會陷入特殊狀態,並將受到的特殊狀態全部恢復。", + th: "โปเกมอนของทั้งสองฝ่ายทุกตัวที่มีพลังงานติดอยู่ จะไม่เป็นสภาวะผิดปกติ และจะหายจากสภาวะผิดปกติทั้งหมดที่ได้รับมา" }, trainerType: "Stadium", diff --git a/data-asia/SV/SV6/100.ts b/data-asia/SV/SV6/100.ts index 36d2a9db3..cfa4196bb 100644 --- a/data-asia/SV/SV6/100.ts +++ b/data-asia/SV/SV6/100.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "ジャミングタワー", - 'zh-tw': "阻礙之塔" + 'zh-tw': "阻礙之塔", + th: "แจมมิงทาวเวอร์" }, category: "Trainer", @@ -20,7 +21,8 @@ const card: Card = { effect: { ja: "おたがいのポケモン全員についている「ポケモンのどうぐ」の効果は、すべてなくなる。", - 'zh-tw': "雙方的所有寶可夢身上附加的「寶可夢道具」卡的效果全部消除。" + 'zh-tw': "雙方的所有寶可夢身上附加的「寶可夢道具」卡的效果全部消除。", + th: "เอฟเฟกต์ของ [ไอเท็มติดโปเกมอน] ที่ติดอยู่กับโปเกมอนของทั้งสองฝ่ายทุกตัว ทั้งหมดจะหายไป" }, trainerType: "Stadium", diff --git a/data-asia/SV/SV6/101.ts b/data-asia/SV/SV6/101.ts index 1f4f633ad..75f968a72 100644 --- a/data-asia/SV/SV6/101.ts +++ b/data-asia/SV/SV6/101.ts @@ -6,7 +6,8 @@ const card: Card = { name: { ja: "レガシーエネルギー", - 'zh-tw': "古舊能量" + 'zh-tw': "古舊能量", + th: "พลังงานสืบทอด" }, category: "Energy", @@ -14,7 +15,8 @@ const card: Card = { effect: { ja: "このカードは、ポケモンについているかぎり、すべてのタイプのエネルギー1個ぶんとしてはたらく。\n\nこのカードをつけているポケモンが、相手のポケモンからワザのダメージを受けてきぜつしたとき、とられるサイドは1枚少なくなる。対戦中、自分の「レガシーエネルギー」のこの効果は、1回しかはたらかない。", - 'zh-tw': "只要這張卡附於寶可夢身上,視為提供1個所有屬性的能量。 附有這張卡的寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,被獲得的獎賞卡減少1張。對戰中,自己的「古舊能量」的這個效果只生效1次。" + 'zh-tw': "只要這張卡附於寶可夢身上,視為提供1個所有屬性的能量。 附有這張卡的寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,被獲得的獎賞卡減少1張。對戰中,自己的「古舊能量」的這個效果只生效1次。", + th: "การ์ดนี้ ตราบใดที่ติดอยู่กับโปเกมอน จะทำงานเทียบเท่าพลังงานทุกประเภท 1 ลูก เมื่อโปเกมอนที่ติดการ์ดนี้อยู่ ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้ามและ[หมดสภาพ]แล้ว การ์ดรางวัลที่หยิบได้จะลดลง 1 ใบ ในระหว่างการแบตเทิล เอฟเฟกต์นี้ของ [พลังงานสืบทอด] ฝ่ายเราจะทำงาน 1 ครั้งเท่านั้น" }, energyType: "Special", diff --git a/data-asia/SV/SV6/102.ts b/data-asia/SV/SV6/102.ts new file mode 100644 index 000000000..7218d06a5 --- /dev/null +++ b/data-asia/SV/SV6/102.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "向日花怪" + }, + + illustrator: "Shinya Komatsu", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + 'zh-tw': "由於會將沐浴到的陽光 轉換成能量,因此白天 總是一直面向著太陽。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "光返" + }, + + effect: { + 'zh-tw': "造成對手的所有寶可夢身上附加的【火】能量的數量×60點傷害。" + }, + + damage: "60×", + cost: ["Grass"] + }, { + name: { + 'zh-tw': "超級吸取" + }, + + effect: { + 'zh-tw': "將這隻寶可夢恢復「30」HP。" + }, + + damage: 50, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/103.ts b/data-asia/SV/SV6/103.ts new file mode 100644 index 000000000..e023bae6c --- /dev/null +++ b/data-asia/SV/SV6/103.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "裹蜜蟲" + }, + + illustrator: "Akira Komayama", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + description: { + 'zh-tw': "由露出了頭部的外頭蟲與 露出了尾巴的裡頭蟲相扶相持, 一起在蘋果裡面生活。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "祭典樂舞" + }, + + effect: { + 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)" + } + }], + + attacks: [{ + name: { + 'zh-tw': "朋友之環" + }, + + effect: { + 'zh-tw': "造成自己的備戰寶可夢的數量×20點傷害。" + }, + + damage: "20×", + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/104.ts b/data-asia/SV/SV6/104.ts new file mode 100644 index 000000000..e2c706209 --- /dev/null +++ b/data-asia/SV/SV6/104.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "雪妖女" + }, + + illustrator: "matazo", + category: "Pokemon", + hp: 90, + types: ["Water"], + + description: { + 'zh-tw': "據說會吐出零下50度的 氣息凍結獵物,然後帶到 秘密的地方裝飾起來。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "冰冷之帳" + }, + + effect: { + 'zh-tw': "只要這隻寶可夢在場上,每次寶可夢檢查時,在雙方的擁有特性的所有寶可夢(「雪妖女」除外)身上各放置1個傷害指示物。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "冰霜粉碎" + }, + + damage: 60, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/105.ts b/data-asia/SV/SV6/105.ts new file mode 100644 index 000000000..30ebb0932 --- /dev/null +++ b/data-asia/SV/SV6/105.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電海燕" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + 'zh-tw': "會在海岸的懸崖上築巢。 吃起來劈哩啪啦跳的神奇口感, 讓牠的巢成了受歡迎的珍奇美食。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "電擊" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。" + }, + + damage: 10, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/106.ts b/data-asia/SV/SV6/106.ts new file mode 100644 index 000000000..69507ffe0 --- /dev/null +++ b/data-asia/SV/SV6/106.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "風鈴鈴" + }, + + illustrator: "REND", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + 'zh-tw': "叫聲會在身體的空洞裡 迴盪出美麗的音色, 趕走被嚇到的敵人。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "巨聲" + }, + + damage: 20, + cost: ["Psychic"] + }, { + name: { + 'zh-tw': "回家鐘聲" + }, + + effect: { + 'zh-tw': "選擇1隻自己的備戰寶可夢,將那隻寶可夢與附加的卡全部放回牌庫並重洗。" + }, + + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/107.ts b/data-asia/SV/SV6/107.ts new file mode 100644 index 000000000..5eef3c547 --- /dev/null +++ b/data-asia/SV/SV6/107.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "願增猿" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + 'zh-tw': "會從安全的地方釋放出 能引起強烈頭暈的念力, 把敵手戲弄得團團轉。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "腎上腺腦力" + }, + + effect: { + 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則在自己的回合時可使用1次。選擇最多3個自己的1隻場上寶可夢身上放置的傷害指示物,改放於對手的1隻場上寶可夢身上。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "精神歪曲" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。" + }, + + damage: 60, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/108.ts b/data-asia/SV/SV6/108.ts new file mode 100644 index 000000000..a4d3253a7 --- /dev/null +++ b/data-asia/SV/SV6/108.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "吉雉雞" + }, + + illustrator: "KEIICHIRO ITO", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + 'zh-tw': "會拍動豔麗的翅膀散佈 費洛蒙,使人類和寶可夢 神魂顛倒,為牠著迷。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "腎上腺費洛蒙" + }, + + effect: { + 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則這隻寶可夢受到招式的傷害時,自己擲1次硬幣。若為正面,則這隻寶可夢不會受到那個傷害。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "能量羽毛" + }, + + effect: { + 'zh-tw': "造成這隻寶可夢身上附加的能量的數量×30點傷害。" + }, + + damage: "30×", + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/109.ts b/data-asia/SV/SV6/109.ts new file mode 100644 index 000000000..16ed0782a --- /dev/null +++ b/data-asia/SV/SV6/109.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "搬運小匠" + }, + + illustrator: "Yuriko Akase", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + 'zh-tw': "會亂揮木材來戰鬥。如果可以 不費勁地搬起沉重的木材, 就代表牠即將要進化了。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "全力拳" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。" + }, + + damage: 40, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/110.ts b/data-asia/SV/SV6/110.ts new file mode 100644 index 000000000..1ad3c24e7 --- /dev/null +++ b/data-asia/SV/SV6/110.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "夠讚狗" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + 'zh-tw': "動不動就會怒火沖天的 粗暴傢伙。會揮甩脖子的鎖鏈 一股腦兒地擊碎東西。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "腎上腺力量" + }, + + effect: { + 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則這隻寶可夢的最大HP「+100」,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+100」點。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "好拳" + }, + + damage: 70, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/111.ts b/data-asia/SV/SV6/111.ts new file mode 100644 index 000000000..3db611371 --- /dev/null +++ b/data-asia/SV/SV6/111.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "可多拉" + }, + + illustrator: "Dsuke", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + description: { + 'zh-tw': "可多拉棲息的山區有 豐富的泉水和鐵礦石, 因此常會與人類起紛爭。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "鋼鐵衝撞" + }, + + effect: { + 'zh-tw': "這隻寶可夢也受到20點傷害。" + }, + + damage: 40, + cost: ["Metal"] + }, { + name: { + 'zh-tw': "金屬爪" + }, + + damage: 60, + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/112.ts b/data-asia/SV/SV6/112.ts new file mode 100644 index 000000000..126411b28 --- /dev/null +++ b/data-asia/SV/SV6/112.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "米立龍" + }, + + illustrator: "osare", + category: "Pokemon", + hp: 70, + types: ["Dragon"], + + description: { + 'zh-tw': "極為奸詐狡猾的寶可夢。 會假裝虛弱來吸引獵物接近, 接著讓同夥的寶可夢發動攻擊。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "集客" + }, + + effect: { + 'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。查看自己的牌庫上方6張卡,從其中選擇1張支援者卡,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "衝浪" + }, + + damage: 50, + cost: ["Fire", "Water"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/113.ts b/data-asia/SV/SV6/113.ts new file mode 100644 index 000000000..f70d0af67 --- /dev/null +++ b/data-asia/SV/SV6/113.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "吉利蛋" + }, + + illustrator: "Toshinao Aoki", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + + description: { + 'zh-tw': "為了避免蛋被打破, 走起路來小心謹慎。 然而逃跑速度卻是快之無比。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "幸運貼附" + }, + + effect: { + 'zh-tw': "從自己的手牌選擇1張基本能量卡,附於自己的寶可夢身上。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "潛力" + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。" + }, + + damage: 80, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/114.ts b/data-asia/SV/SV6/114.ts new file mode 100644 index 000000000..4db91d51a --- /dev/null +++ b/data-asia/SV/SV6/114.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "厄鬼椪 碧草面具ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "碧綠之舞" + }, + + effect: { + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於這隻寶可夢身上。然後,從自己的牌庫抽出1張卡。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "萬葉陣雨" + }, + + effect: { + 'zh-tw': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。" + }, + + damage: "30+", + cost: ["Grass", "Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/115.ts b/data-asia/SV/SV6/115.ts new file mode 100644 index 000000000..245cd2a8f --- /dev/null +++ b/data-asia/SV/SV6/115.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "厄鬼椪 火灶面具ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "憤怒之窯" + }, + + effect: { + 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。" + }, + + damage: "20×", + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "極限火焰" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢為進化寶可夢,則增加140點傷害。這個情況下,將這隻寶可夢身上附加的能量卡全部丟棄。" + }, + + damage: "140+", + cost: ["Fire", "Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/116.ts b/data-asia/SV/SV6/116.ts new file mode 100644 index 000000000..cf2e2c650 --- /dev/null +++ b/data-asia/SV/SV6/116.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "海豚俠ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 340, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "全能靈魂" + }, + + effect: { + 'zh-tw': "這張卡只可依據「海豚俠」的特性「全能變身」的效果放置於場上。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "終極衝擊" + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。" + }, + + damage: 250, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/117.ts b/data-asia/SV/SV6/117.ts new file mode 100644 index 000000000..016903702 --- /dev/null +++ b/data-asia/SV/SV6/117.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "厄鬼椪 水井面具ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "啜泣" + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + }, + + damage: 20, + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "激流水泵" + }, + + effect: { + 'zh-tw': "若希望,選擇3個這隻寶可夢身上附加的能量,放回牌庫並重洗。這個情況下,對手的1隻備戰寶可夢也受到120點傷害。[在備戰區不計算弱點・抵抗力。]" + }, + + damage: 100, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/118.ts b/data-asia/SV/SV6/118.ts new file mode 100644 index 000000000..6f72f31a8 --- /dev/null +++ b/data-asia/SV/SV6/118.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "倫琴貓ex" + }, + + illustrator: "PLANETA Yamashita", + category: "Pokemon", + hp: 310, + types: ["Lightning"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "突刺目光" + }, + + effect: { + 'zh-tw': "查看對手的手牌,從其中選擇1張卡,將其丟棄。" + }, + + damage: 120, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "伏特強襲" + }, + + effect: { + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。" + }, + + damage: 250, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/119.ts b/data-asia/SV/SV6/119.ts new file mode 100644 index 000000000..89a6664d3 --- /dev/null +++ b/data-asia/SV/SV6/119.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "厄鬼椪 礎石面具ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Fighting"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "礎石之勢" + }, + + effect: { + 'zh-tw': "這隻寶可夢不會受到對手的擁有特性的寶可夢招式的傷害。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "打爆" + }, + + effect: { + 'zh-tw': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。" + }, + + damage: 140, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/120.ts b/data-asia/SV/SV6/120.ts new file mode 100644 index 000000000..0e5c3f849 --- /dev/null +++ b/data-asia/SV/SV6/120.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "多龍巴魯托ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 320, + types: ["Dragon"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "噴射頭擊" + }, + + damage: 70, + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "幻影奇襲" + }, + + effect: { + 'zh-tw': "將6個傷害指示物以任意方式放置於對手的備戰寶可夢身上。" + }, + + damage: 200, + cost: ["Fire", "Psychic"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/121.ts b/data-asia/SV/SV6/121.ts new file mode 100644 index 000000000..385fe2f32 --- /dev/null +++ b/data-asia/SV/SV6/121.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "幸福蛋ex" + }, + + illustrator: "PLANETA Tsuji", + category: "Pokemon", + hp: 300, + types: ["Colorless"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "幸福切換" + }, + + effect: { + 'zh-tw': "在自己的回合時可使用1次。選擇1個自己的場上寶可夢身上附加的基本能量,改附於自己的其他寶可夢身上。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "報恩" + }, + + effect: { + 'zh-tw': "若希望,從牌庫抽卡直到自己的手牌滿6張為止。" + }, + + damage: 180, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/122.ts b/data-asia/SV/SV6/122.ts new file mode 100644 index 000000000..721a34651 --- /dev/null +++ b/data-asia/SV/SV6/122.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "烏栗" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡從2種效果中選擇1種使用。 ◆將自己的戰鬥寶可夢與備戰寶可夢互換。 ◆在這個回合,自己的寶可夢使用的招式,對對手的戰鬥場的「寶可夢【ex】・【V】」造成的傷害「+30」點。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/123.ts b/data-asia/SV/SV6/123.ts new file mode 100644 index 000000000..cfe7dffae --- /dev/null +++ b/data-asia/SV/SV6/123.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "丹瑜" + }, + + illustrator: "kantaro", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡可在先攻玩家的最初回合使用。 將自己的手牌全部丟棄,從牌庫抽出5張卡。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/124.ts b/data-asia/SV/SV6/124.ts new file mode 100644 index 000000000..9966639a2 --- /dev/null +++ b/data-asia/SV/SV6/124.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "八朔" + }, + + illustrator: "GOSSAN", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡必須在上個對手的回合自己的寶可夢【昏厥】了才可使用。 查看自己的牌庫上方8張卡,從其中選擇最多3張卡加入手牌。將剩餘卡放回牌庫並重洗。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/125.ts b/data-asia/SV/SV6/125.ts new file mode 100644 index 000000000..d4b0c44f5 --- /dev/null +++ b/data-asia/SV/SV6/125.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "厄鬼椪 碧草面具ex" + }, + + illustrator: "Yano Keiji", + category: "Pokemon", + hp: 210, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "碧綠之舞" + }, + + effect: { + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於這隻寶可夢身上。然後,從自己的牌庫抽出1張卡。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "萬葉陣雨" + }, + + effect: { + 'zh-tw': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。" + }, + + damage: "30+", + cost: ["Grass", "Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/126.ts b/data-asia/SV/SV6/126.ts new file mode 100644 index 000000000..de81eb0d6 --- /dev/null +++ b/data-asia/SV/SV6/126.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "厄鬼椪 火灶面具ex" + }, + + illustrator: "Yano Keiji", + category: "Pokemon", + hp: 210, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "憤怒之窯" + }, + + effect: { + 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。" + }, + + damage: "20×", + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "極限火焰" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢為進化寶可夢,則增加140點傷害。這個情況下,將這隻寶可夢身上附加的能量卡全部丟棄。" + }, + + damage: "140+", + cost: ["Fire", "Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/127.ts b/data-asia/SV/SV6/127.ts new file mode 100644 index 000000000..e9fc6a0ba --- /dev/null +++ b/data-asia/SV/SV6/127.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "厄鬼椪 水井面具ex" + }, + + illustrator: "Yano Keiji", + category: "Pokemon", + hp: 210, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "啜泣" + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + }, + + damage: 20, + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "激流水泵" + }, + + effect: { + 'zh-tw': "若希望,選擇3個這隻寶可夢身上附加的能量,放回牌庫並重洗。這個情況下,對手的1隻備戰寶可夢也受到120點傷害。[在備戰區不計算弱點・抵抗力。]" + }, + + damage: 100, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/128.ts b/data-asia/SV/SV6/128.ts new file mode 100644 index 000000000..114f76ff7 --- /dev/null +++ b/data-asia/SV/SV6/128.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "厄鬼椪 礎石面具ex" + }, + + illustrator: "Yano Keiji", + category: "Pokemon", + hp: 210, + types: ["Fighting"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "礎石之勢" + }, + + effect: { + 'zh-tw': "這隻寶可夢不會受到對手的擁有特性的寶可夢招式的傷害。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "打爆" + }, + + effect: { + 'zh-tw': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。" + }, + + damage: 140, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/129.ts b/data-asia/SV/SV6/129.ts new file mode 100644 index 000000000..5c0d3b6f5 --- /dev/null +++ b/data-asia/SV/SV6/129.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "烏栗" + }, + + illustrator: "Teeziro", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡從2種效果中選擇1種使用。 ◆將自己的戰鬥寶可夢與備戰寶可夢互換。 ◆在這個回合,自己的寶可夢使用的招式,對對手的戰鬥場的「寶可夢【ex】・【V】」造成的傷害「+30」點。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6/130.ts b/data-asia/SV/SV6/130.ts new file mode 100644 index 000000000..2f1e82248 --- /dev/null +++ b/data-asia/SV/SV6/130.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "丹瑜" + }, + + illustrator: "En Morikura", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡可在先攻玩家的最初回合使用。 將自己的手牌全部丟棄,從牌庫抽出5張卡。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a.ts b/data-asia/SV/SV6a.ts index d0bde83b2..81002c3ac 100644 --- a/data-asia/SV/SV6a.ts +++ b/data-asia/SV/SV6a.ts @@ -4,16 +4,18 @@ import serie from '../SV' const set: Set = { id: 'SV6a', name: { - ja: 'ナイトワンダラー' + ja: 'ナイトワンダラー', + 'zh-tw': '黑夜漫遊者', }, serie: serie, cardCount: { - official: 101 // TODO: fill out when the set is out + official: 64 }, releaseDate: { - ja: '2024-06-07' + ja: '2024-06-07', + 'zh-tw': '2024-06-21' } } diff --git a/data-asia/SV/SV6a/001.ts b/data-asia/SV/SV6a/001.ts new file mode 100644 index 000000000..b16c3f8f6 --- /dev/null +++ b/data-asia/SV/SV6a/001.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電電蟲" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 40, + types: ["Grass"], + + description: { + 'zh-tw': "會附在寶可夢的身上 吸收靜電。自身並沒有 製造電的能力。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "躍起閃避" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。" + }, + + damage: 10, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/002.ts b/data-asia/SV/SV6a/002.ts new file mode 100644 index 000000000..e1cea23d0 --- /dev/null +++ b/data-asia/SV/SV6a/002.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電蜘蛛" + }, + + illustrator: "mashu", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + 'zh-tw': "發射腹部帶電的毛來攻擊。 要是被牠的毛刺中, 就會全身麻痺三天三夜。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "‌[特性]複眼" + }, + + effect: { + 'zh-tw': "這隻寶可夢使用的招式,對對手的戰鬥場的擁有特性的寶可夢造成的傷害「+50」點。" + } + }, { + name: { + 'zh-tw': "麻麻羅網" + }, + + effect: { + 'zh-tw': "若這隻寶可夢身上附有【雷】能量卡,則增加80點傷害。" + }, + + damage: "50+", + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/003.ts b/data-asia/SV/SV6a/003.ts new file mode 100644 index 000000000..d7c42cdc9 --- /dev/null +++ b/data-asia/SV/SV6a/003.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "木木梟" + }, + + illustrator: "Yoshimi Miyoshi", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + 'zh-tw': "一邊飛行一邊射出 刀刃般銳利的羽毛, 距離近時會使出猛烈的踢擊。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "叼" + }, + + effect: { + 'zh-tw': "從自己的牌庫抽出1張卡。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "樹葉" + }, + + damage: 10, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/004.ts b/data-asia/SV/SV6a/004.ts new file mode 100644 index 000000000..03e943115 --- /dev/null +++ b/data-asia/SV/SV6a/004.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "投羽梟" + }, + + illustrator: "Tetsu Kayama", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + 'zh-tw': "連續投出被稱為是 刃羽的刀般銳利羽毛, 能精準地貫穿敵人要害。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "團結之翼" + }, + + effect: { + 'zh-tw': "造成自己的棄牌區的,持有「團結之翼」招式的寶可夢卡的張數×20點傷害。" + }, + + damage: "20×", + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "利刃之風" + }, + + damage: 30, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/005.ts b/data-asia/SV/SV6a/005.ts new file mode 100644 index 000000000..b04b6c24d --- /dev/null +++ b/data-asia/SV/SV6a/005.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "狙射樹梟" + }, + + illustrator: "DOM", + category: "Pokemon", + hp: 150, + types: ["Grass"], + + description: { + 'zh-tw': "會像射箭那樣射出 藏在自己翅膀裡的箭羽。 只要瞄準目標就絕不會射偏。" + }, + + stage: "Stage2", + + attacks: [{ + name: { + 'zh-tw': "羽毛庫存" + }, + + effect: { + 'zh-tw': "從牌庫抽卡直到自己的手牌滿7張為止。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "強力射擊" + }, + + effect: { + 'zh-tw': "從自己的手牌將1張「基本【草】能量」卡丟棄。若無法丟棄,則這個招式失敗。" + }, + + damage: 170, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/006.ts b/data-asia/SV/SV6a/006.ts new file mode 100644 index 000000000..1eacdc946 --- /dev/null +++ b/data-asia/SV/SV6a/006.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "卡璞・哞哞" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + description: { + 'zh-tw': "拔出巨大的樹木,轟轟地來回揮舞。 會讓草木茂盛生長,再吸收其中的能量。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "木槌" + }, + + effect: { + 'zh-tw': "這隻寶可夢也受到30點傷害。" + }, + + damage: 220, + cost: ["Grass", "Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/007.ts b/data-asia/SV/SV6a/007.ts new file mode 100644 index 000000000..2683bbf93 --- /dev/null +++ b/data-asia/SV/SV6a/007.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "戴魯比" + }, + + illustrator: "REND", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + 'zh-tw': "聯絡夥伴和追趕獵物 的時候,會分別發出 不同種類的叫聲。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "咬" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "後踢" + }, + + damage: 50, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/008.ts b/data-asia/SV/SV6a/008.ts new file mode 100644 index 000000000..936d4895b --- /dev/null +++ b/data-asia/SV/SV6a/008.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "黑魯加" + }, + + illustrator: "burari", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + description: { + 'zh-tw': "聽見牠恐怖長嚎的 寶可夢會渾身發抖, 一溜煙地回到自己的巢裡。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "咬住" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "大聲咆哮" + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-100」點。" + }, + + damage: 100, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/009.ts b/data-asia/SV/SV6a/009.ts new file mode 100644 index 000000000..c7972e8ee --- /dev/null +++ b/data-asia/SV/SV6a/009.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鐵毒蛾" + }, + + illustrator: "Shinji Kanda", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + description: { + 'zh-tw': "無捕獲紀錄。資料不足。 其特徵與古書裡 所記載的物體一致。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "吸納" + }, + + effect: { + 'zh-tw': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "瘋狂拒絕" + }, + + effect: { + 'zh-tw': "在下個對手的回合,這隻寶可夢不會受到「古代」寶可夢招式的傷害。" + }, + + damage: 120, + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/010.ts b/data-asia/SV/SV6a/010.ts new file mode 100644 index 000000000..6bbdc2cba --- /dev/null +++ b/data-asia/SV/SV6a/010.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "墨海馬" + }, + + illustrator: "Shimaris Yukichi", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + 'zh-tw': "棲息在海流平穩的海域。 被襲擊時會吐出漆黑的 墨汁,然後趁機逃走。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "紋絲不動" + }, + + effect: { + 'zh-tw': "將這隻寶可夢恢復「30」HP。" + }, + + cost: ["Water"] + }, { + name: { + 'zh-tw': "鰭快刀" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/011.ts b/data-asia/SV/SV6a/011.ts new file mode 100644 index 000000000..170857b92 --- /dev/null +++ b/data-asia/SV/SV6a/011.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "海刺龍" + }, + + illustrator: "Yuya Oka", + category: "Pokemon", + hp: 90, + types: ["Water"], + + description: { + 'zh-tw': "是由雄性來養育孩子。 在育兒時,背上刺的 毒素會變得更強更濃。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "援軍" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇最多3張寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + cost: ["Water"] + }, { + name: { + 'zh-tw': "銳利鰭" + }, + + damage: 40, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/012.ts b/data-asia/SV/SV6a/012.ts new file mode 100644 index 000000000..d2763dd34 --- /dev/null +++ b/data-asia/SV/SV6a/012.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "刺龍王ex" + }, + + illustrator: "toriyufu", + category: "Pokemon", + hp: 310, + types: ["Water"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "王之號召" + }, + + effect: { + 'zh-tw': "從自己的棄牌區選擇最多3張【水】寶可夢卡,放置於備戰區。" + }, + + cost: ["Water"] + }, { + name: { + 'zh-tw': "水炮" + }, + + effect: { + 'zh-tw': "增加這隻寶可夢身上附加的【水】能量的數量×50點傷害。" + }, + + damage: "50+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/013.ts b/data-asia/SV/SV6a/013.ts new file mode 100644 index 000000000..ee9db505b --- /dev/null +++ b/data-asia/SV/SV6a/013.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "狃拉" + }, + + illustrator: "Krgc", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + 'zh-tw': "會透過團隊合作,一隻負責 引開雙親的注意,一隻負責 偷走蛋,非常地狡猾奸詐。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "居合斬" + }, + + damage: 10, + cost: ["Water"] + }, { + name: { + 'zh-tw': "逼近" + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + }, + + damage: 30, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/014.ts b/data-asia/SV/SV6a/014.ts new file mode 100644 index 000000000..2ba104c07 --- /dev/null +++ b/data-asia/SV/SV6a/014.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "瑪狃拉" + }, + + illustrator: "aspara", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + 'zh-tw': "4~5隻一組行動。 在岩石和樹木上留下記號, 以團隊合作捕殺獵物。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "劈開" + }, + + damage: 40, + cost: ["Water"] + }, { + name: { + 'zh-tw': "冰雹爪" + }, + + effect: { + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄,將對手的戰鬥寶可夢【麻痺】。" + }, + + damage: 70, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/015.ts b/data-asia/SV/SV6a/015.ts new file mode 100644 index 000000000..a08327c66 --- /dev/null +++ b/data-asia/SV/SV6a/015.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "普隆隆姆ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 280, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "暴衝閃光" + }, + + effect: { + 'zh-tw': "在這個回合,若從備戰區將這隻寶可夢放置於戰鬥場,則增加120點傷害。" + }, + + damage: "20+", + cost: ["Metal"] + }, { + name: { + 'zh-tw': "高速破壞" + }, + + effect: { + 'zh-tw': "將這隻寶可夢與附加的卡全部丟棄。" + }, + + damage: 250, + cost: ["Metal", "Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/016.ts b/data-asia/SV/SV6a/016.ts new file mode 100644 index 000000000..72961c294 --- /dev/null +++ b/data-asia/SV/SV6a/016.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "催眠貘" + }, + + illustrator: "OKUBO", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + 'zh-tw': "據說當牠抽動凸出的鼻子, 無論是誰在哪裡做著什麼夢, 都會被牠知道得一清二楚。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "不祥視線" + }, + + effect: { + 'zh-tw': "查看對手的手牌。" + }, + + damage: 10, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/017.ts b/data-asia/SV/SV6a/017.ts new file mode 100644 index 000000000..80c54de0e --- /dev/null +++ b/data-asia/SV/SV6a/017.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "引夢貘人" + }, + + illustrator: "Masako Tomii", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + 'zh-tw': "會以固定的節奏擺動著 形影不離的鐘擺。一靠近牠 就會不由自主地昏昏欲睡。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "白日夢" + }, + + effect: { + 'zh-tw': "在下個對手的回合,若對手從手牌將能量卡附於受到這個招式的寶可夢身上,則對手的回合結束。" + }, + + damage: 80, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/018.ts b/data-asia/SV/SV6a/018.ts new file mode 100644 index 000000000..4e6216a1c --- /dev/null +++ b/data-asia/SV/SV6a/018.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "夜巡靈" + }, + + illustrator: "IKEDA Saki", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + 'zh-tw': "遭到牠鮮紅的獨眼瞪視 並且被吸取生物能量時, 會受到嚴重的寒氣侵襲。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "前往渡魂" + }, + + effect: { + 'zh-tw': "從自己的棄牌區選擇最多3張「夜巡靈」,放置於備戰區。" + }, + + cost: ["Psychic"] + }, { + name: { + 'zh-tw': "囈語" + }, + + damage: 30, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/019.ts b/data-asia/SV/SV6a/019.ts new file mode 100644 index 000000000..b8ab5ef79 --- /dev/null +++ b/data-asia/SV/SV6a/019.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "彷徨夜靈" + }, + + illustrator: "Aya Kusube", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + 'zh-tw': "據說在體內燃燒著的鮮紅獨眼 是彷徨夜靈的本體, 但沒有人親眼見過。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "‌[特性]咒詛炸彈" + }, + + effect: { + 'zh-tw': "在自己的回合時可使用1次,若使用,則將這隻寶可夢【昏厥】。在對手的1隻寶可夢身上放置5個傷害指示物。" + } + }, { + name: { + 'zh-tw': "鬼火" + }, + + damage: 50, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/020.ts b/data-asia/SV/SV6a/020.ts new file mode 100644 index 000000000..8a8cbf017 --- /dev/null +++ b/data-asia/SV/SV6a/020.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "黑夜魔靈" + }, + + illustrator: "danciao", + category: "Pokemon", + hp: 160, + types: ["Psychic"], + + description: { + 'zh-tw': "在這個世界與另一個世界間往返。 據說會吸入並帶走遊蕩的靈魂, 因此遭到人們畏懼。" + }, + + stage: "Stage2", + + attacks: [{ + name: { + 'zh-tw': "‌[特性]咒詛炸彈" + }, + + effect: { + 'zh-tw': "在自己的回合時可使用1次,若使用,則將這隻寶可夢【昏厥】。在對手的1隻寶可夢身上放置13個傷害指示物。" + } + }, { + name: { + 'zh-tw': "影子束縛" + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + }, + + damage: 150, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/021.ts b/data-asia/SV/SV6a/021.ts new file mode 100644 index 000000000..42f284d9c --- /dev/null +++ b/data-asia/SV/SV6a/021.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "克雷色利亞" + }, + + illustrator: "matazo", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + 'zh-tw': "飛行時,會從薄紗般的翅膀 發出閃亮的粒子。 被稱為新月的化身。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "治癒之舞" + }, + + effect: { + 'zh-tw': "將自己的所有寶可夢各恢復「20」HP。" + }, + + cost: ["Psychic"] + }, { + name: { + 'zh-tw': "弦月光芒" + }, + + effect: { + 'zh-tw': "若希望,選擇1張自己的反面朝上的獎賞卡,翻到正面。這個情況下,增加80點傷害。(在對戰結束前,那張獎賞卡維持正面朝上。)" + }, + + damage: "80+", + cost: ["Psychic", "Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/022.ts b/data-asia/SV/SV6a/022.ts new file mode 100644 index 000000000..e141af8bb --- /dev/null +++ b/data-asia/SV/SV6a/022.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "仙子伊布" + }, + + illustrator: "Kuroimori", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + 'zh-tw': "搖曳著觸角跳著輕快 舞蹈的樣子相當優雅, 但招式卻會直搗對手要害。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "奧密迴旋" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則選擇1隻對手的備戰寶可夢,將那隻寶可夢與附加的卡全部放回對手的牌庫並重洗。" + }, + + cost: ["Psychic"] + }, { + name: { + 'zh-tw': "魅惑之聲" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。" + }, + + damage: 90, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/023.ts b/data-asia/SV/SV6a/023.ts new file mode 100644 index 000000000..06ffd9df3 --- /dev/null +++ b/data-asia/SV/SV6a/023.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "不良蛙" + }, + + illustrator: "Aliya Chen", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + 'zh-tw': "很少會堂堂正正地戰鬥, 但那都是為了要生存下去。 作為吉祥物非常受歡迎。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "打擊" + }, + + damage: 10, + cost: ["Fighting"] + }, { + name: { + 'zh-tw': "蛙跳" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則增加20點傷害。" + }, + + damage: "20+", + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/024.ts b/data-asia/SV/SV6a/024.ts new file mode 100644 index 000000000..be8996fe3 --- /dev/null +++ b/data-asia/SV/SV6a/024.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "毒骷蛙" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + 'zh-tw': "喉嚨處有著毒囊。 從喉嚨發出鳴叫時, 積存的毒素就會被煉製得更加強勁。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "推擊" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "俐落一擊" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢為進化寶可夢,則增加90點傷害。" + }, + + damage: "90+", + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/025.ts b/data-asia/SV/SV6a/025.ts new file mode 100644 index 000000000..ec19df81d --- /dev/null +++ b/data-asia/SV/SV6a/025.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "月月熊 赫月" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + description: { + 'zh-tw': "會用堅硬如鐵的泥巴保護身體, 且擁有能夠看穿黑暗的左眼。 是特別的月月熊。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "經驗法則" + }, + + effect: { + 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。從自己的手牌選擇最多2張「基本【鬥】能量」卡,附於這隻寶可夢身上。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "瘋狂啃咬" + }, + + effect: { + 'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×30點傷害。" + }, + + damage: "100+", + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "H", + rarity: "Rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/026.ts b/data-asia/SV/SV6a/026.ts new file mode 100644 index 000000000..4607a2cc6 --- /dev/null +++ b/data-asia/SV/SV6a/026.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "爬地翅" + }, + + illustrator: "Shinji Kanda", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + + description: { + 'zh-tw': "與古老書籍裡介紹的一種 叫做爬地翅的生物有著 相似點的神秘寶可夢。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "鐵碎" + }, + + effect: { + 'zh-tw': "若對手的場上有「未來」寶可夢,則增加120點傷害。" + }, + + damage: "20+", + cost: ["Fighting", "Colorless"] + }, { + name: { + 'zh-tw': "粉碎之翼" + }, + + effect: { + 'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。" + }, + + damage: 130, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/027.ts b/data-asia/SV/SV6a/027.ts new file mode 100644 index 000000000..11acf28c3 --- /dev/null +++ b/data-asia/SV/SV6a/027.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "超音蝠" + }, + + illustrator: "osare", + category: "Pokemon", + hp: 50, + types: ["Darkness"], + + description: { + 'zh-tw': "會利用從口中發出的超音波 探查周圍的狀況。在狹窄的 洞窟裡也能靈巧地飛來飛去。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "引路" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇1張支援者卡,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + cost: ["Darkness"] + }, { + name: { + 'zh-tw': "暗之牙" + }, + + damage: 10, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/028.ts b/data-asia/SV/SV6a/028.ts new file mode 100644 index 000000000..427ab34e8 --- /dev/null +++ b/data-asia/SV/SV6a/028.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "大嘴蝠" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + + description: { + 'zh-tw': "喜歡吸食生物的血液。 據說還會將吸來的血 分給空腹的夥伴。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "高速飛行" + }, + + damage: 30, + cost: ["Darkness"] + }, { + name: { + 'zh-tw': "漆黑利刃" + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。" + }, + + damage: 80, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/029.ts b/data-asia/SV/SV6a/029.ts new file mode 100644 index 000000000..d64d3c1e1 --- /dev/null +++ b/data-asia/SV/SV6a/029.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "叉字蝠" + }, + + illustrator: "Nisota Niso", + category: "Pokemon", + hp: 130, + types: ["Darkness"], + + description: { + 'zh-tw': "雙腳變成了翅膀。 能夠無聲無息地高速飛行, 用獠牙咬住獵物的後頸。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "怨影使者" + }, + + effect: { + 'zh-tw': "在這個回合,若從手牌使出了「‌阿杏的秘招」,則在自己的回合時可使用1次。從牌庫抽卡直到自己的手牌滿8張為止。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "劇毒牙" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。因這個【中毒】而放置的傷害指示物的數量改為2個。" + }, + + damage: 120, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 0, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/030.ts b/data-asia/SV/SV6a/030.ts new file mode 100644 index 000000000..8ebc6f29a --- /dev/null +++ b/data-asia/SV/SV6a/030.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "阿勃梭魯" + }, + + illustrator: "rika", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + + description: { + 'zh-tw': "如風般地奔馳在山野中。 形狀如弓的角能夠敏銳 感應到自然災害的預兆。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "惡棍墜落" + }, + + effect: { + 'zh-tw': "若自己的場上的【惡】能量有3個以上,則增加50點傷害。" + }, + + damage: "20+", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/031.ts b/data-asia/SV/SV6a/031.ts new file mode 100644 index 000000000..6e92fd378 --- /dev/null +++ b/data-asia/SV/SV6a/031.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "索羅亞" + }, + + illustrator: "Yuu Nishida", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + 'zh-tw': "會化為人類或其他的寶可夢。 透過隱藏自己原本的面貌, 保護自己不遇危險。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "踩" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "雙重抓" + }, + + effect: { + 'zh-tw': "擲2次硬幣,造成正面出現的次數×20點傷害。" + }, + + damage: "20×", + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/032.ts b/data-asia/SV/SV6a/032.ts new file mode 100644 index 000000000..10015379a --- /dev/null +++ b/data-asia/SV/SV6a/032.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "索羅亞克" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 120, + types: ["Darkness"], + + description: { + 'zh-tw': "有著一口氣迷惑許多人的力量。 會讓人看見虛幻的景色, 以保護自己的居所。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "幻影劫持" + }, + + effect: { + 'zh-tw': "造成對手的場上的「寶可夢【ex】・【V】」的數量×60點傷害。" + }, + + damage: "60×", + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "利爪劈擊" + }, + + damage: 110, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/033.ts b/data-asia/SV/SV6a/033.ts new file mode 100644 index 000000000..d8d6c1c0f --- /dev/null +++ b/data-asia/SV/SV6a/033.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "好啦魷" + }, + + illustrator: "Mori Yuu", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + 'zh-tw': "旋轉著閃爍自己的發光體。 透過改變閃爍的方式 來和其他夥伴交流。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "惡作劇觸手" + }, + + effect: { + 'zh-tw': "查看對手的牌庫上方1張卡,回復原樣。若希望,重洗那個牌庫。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "啄" + }, + + damage: 10, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/034.ts b/data-asia/SV/SV6a/034.ts new file mode 100644 index 000000000..b07570910 --- /dev/null +++ b/data-asia/SV/SV6a/034.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "烏賊王" + }, + + illustrator: "akagi", + category: "Pokemon", + hp: 120, + types: ["Darkness"], + + description: { + 'zh-tw': "要是盯著牠的發光體看, 就會馬上陷入催眠狀態, 並且受到牠的控制。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "勾結觸手" + }, + + effect: { + 'zh-tw': "選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。然後,新上場的寶可夢受到120點傷害。在這個回合,若沒有從手牌使出「‌‌庫瑟洛斯奇的企圖」,則這個招式失敗。" + }, + + cost: ["Darkness"] + }, { + name: { + 'zh-tw': "迴轉攻擊" + }, + + damage: 90, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/035.ts b/data-asia/SV/SV6a/035.ts new file mode 100644 index 000000000..873cf0b0d --- /dev/null +++ b/data-asia/SV/SV6a/035.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "伊裴爾塔爾" + }, + + illustrator: "SIE NANAHARA", + category: "Pokemon", + hp: 120, + types: ["Darkness"], + + description: { + 'zh-tw': "傳說的寶可夢。據說當牠 展開的翅膀與尾羽閃耀紅色光芒時, 就會吸走生物的生命。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "侵蝕之風" + }, + + effect: { + 'zh-tw': "在對手的身上放置有傷害指示物的所有寶可夢身上,各放置2個傷害指示物。" + }, + + cost: ["Darkness"] + }, { + name: { + 'zh-tw': "破壞光束" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。" + }, + + damage: 100, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/036.ts b/data-asia/SV/SV6a/036.ts new file mode 100644 index 000000000..6c827d509 --- /dev/null +++ b/data-asia/SV/SV6a/036.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "夠讚狗ex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 250, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "猛毒筋力" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇最多2張「基本【惡】能量」卡,附於這隻寶可夢身上。並且重洗牌庫。附上卡的情況下,將這隻寶可夢【中毒】。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "瘋狂連鎖" + }, + + effect: { + 'zh-tw': "若這隻寶可夢【中毒】,則增加130點傷害。" + }, + + damage: "130+", + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/037.ts b/data-asia/SV/SV6a/037.ts new file mode 100644 index 000000000..a6696f786 --- /dev/null +++ b/data-asia/SV/SV6a/037.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "願增猿ex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "‌[特性]鬆口氣" + }, + + effect: { + 'zh-tw': "這隻寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,若自己的場上有「桃歹郎ex」,則被獲得的獎賞卡減少1張。" + } + }, { + name: { + 'zh-tw': "惡劣頭擊" + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「惡劣頭擊」。" + }, + + damage: 190, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/038.ts b/data-asia/SV/SV6a/038.ts new file mode 100644 index 000000000..7d8d2e5e0 --- /dev/null +++ b/data-asia/SV/SV6a/038.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "吉雉雞ex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "‌‌[特性]扭轉乾坤" + }, + + effect: { + 'zh-tw': "在上個對手的回合,若自己的寶可夢【昏厥】了,則在自己的回合時可使用1次。從自己的牌庫抽出3張卡。在這個回合,若已經使出了其他的「扭轉乾坤」,則這個特性無法使用。" + } + }, { + name: { + 'zh-tw': "殘酷箭" + }, + + effect: { + 'zh-tw': "對手的1隻寶可夢受到100點傷害。[在備戰區不計算弱點・抵抗力。]" + }, + + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/039.ts b/data-asia/SV/SV6a/039.ts new file mode 100644 index 000000000..f9ac86249 --- /dev/null +++ b/data-asia/SV/SV6a/039.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "桃歹郎ex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 190, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "‌‌[特性]支配鎖鏈" + }, + + effect: { + 'zh-tw': "在自己的回合時可使用1次。選擇1隻自己的備戰區的【惡】寶可夢(「桃歹郎ex」除外),與戰鬥寶可夢互換。然後,將新的戰鬥寶可夢【中毒】。在這個回合,若已經使出了其他的「支配鎖鏈」,則這個特性無法使用。" + } + }, { + name: { + 'zh-tw': "煩煩爆炸" + }, + + effect: { + 'zh-tw': "造成對手已經獲得的獎賞卡的張數×60點傷害。" + }, + + damage: "60×", + cost: ["Darkness", "Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/040.ts b/data-asia/SV/SV6a/040.ts new file mode 100644 index 000000000..8502551cd --- /dev/null +++ b/data-asia/SV/SV6a/040.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "蓋諾賽克特" + }, + + illustrator: "Kazumasa Yasukuni", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + description: { + 'zh-tw': "被等離子隊改造過的 古代的蟲寶可夢。 背上的大砲力量得到了提升。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "‌‌[特性]ACE消弭" + }, + + effect: { + 'zh-tw': "若這隻寶可夢附有「寶可夢道具」卡,則對手無法從手牌使出「【ACE SPEC】」卡。" + } + }, { + name: { + 'zh-tw': "磁力爆破" + }, + + damage: 100, + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/041.ts b/data-asia/SV/SV6a/041.ts new file mode 100644 index 000000000..4d647f533 --- /dev/null +++ b/data-asia/SV/SV6a/041.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "銅象" + }, + + illustrator: "Shinya Mizuno", + category: "Pokemon", + hp: 100, + types: ["Metal"], + + description: { + 'zh-tw': "能夠舉起重達5噸的貨物。 天一亮就會成群結隊 前往洞窟找礦石來吃。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "撞擊" + }, + + damage: 30, + cost: ["Metal", "Colorless"] + }, { + name: { + 'zh-tw': "正面對決" + }, + + damage: 70, + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/042.ts b/data-asia/SV/SV6a/042.ts new file mode 100644 index 000000000..b7b7516d6 --- /dev/null +++ b/data-asia/SV/SV6a/042.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "大王銅象" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 200, + types: ["Metal"], + + description: { + 'zh-tw': "自尊心強,脾氣刁鑽。 皮膚的綠色越是鮮豔, 就越受到同伴的尊敬。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "‌‌[特性]爆大身軀" + }, + + effect: { + 'zh-tw': "只要這隻寶可夢在戰鬥場上,對手無法從手牌使出競技場卡。" + } + }, { + name: { + 'zh-tw': "鼻之金勾臂" + }, + + effect: { + 'zh-tw': "若希望,增加100點傷害。這個情況下,在下個自己的回合,這隻寶可夢無法使用招式。" + }, + + damage: "130+", + cost: ["Metal", "Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 4, + regulationMark: "H", + rarity: "Rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/043.ts b/data-asia/SV/SV6a/043.ts new file mode 100644 index 000000000..b313ce1a3 --- /dev/null +++ b/data-asia/SV/SV6a/043.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "噗隆隆" + }, + + illustrator: "HAGIYA Kaoru", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + 'zh-tw': "鋼鐵身軀才是本體。 會貼在岩石上將其成分 轉換成活動用的能量。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "硬化" + }, + + effect: { + 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。" + }, + + cost: ["Metal"] + }, { + name: { + 'zh-tw': "魯莽頭擊" + }, + + damage: 20, + cost: ["Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/044.ts b/data-asia/SV/SV6a/044.ts new file mode 100644 index 000000000..6a20fe491 --- /dev/null +++ b/data-asia/SV/SV6a/044.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "牙牙" + }, + + illustrator: "Orca", + category: "Pokemon", + hp: 70, + types: ["Dragon"], + + description: { + 'zh-tw': "如果在岩石或樹木上 發現了獨特的齒痕, 附近一定棲息著牙牙。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "抓" + }, + + damage: 10, + cost: ["Fighting"] + }, { + name: { + 'zh-tw': "銳利之牙" + }, + + damage: 30, + cost: ["Fighting", "Metal"] + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/045.ts b/data-asia/SV/SV6a/045.ts new file mode 100644 index 000000000..89672fdcd --- /dev/null +++ b/data-asia/SV/SV6a/045.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "斧牙龍" + }, + + illustrator: "Uninori", + category: "Pokemon", + hp: 100, + types: ["Dragon"], + + description: { + 'zh-tw': "會使用粗壯的牙齒俐落地 分解獵物,然後把當下 要吃的份與存糧的份分開。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "緊張感" + }, + + effect: { + 'zh-tw': "對手從手牌使出物品卡或者支援者卡時,這隻寶可夢不會受到那個效果的影響。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "龍之波動" + }, + + effect: { + 'zh-tw': "將自己的牌庫上方1張卡丟棄。" + }, + + damage: 80, + cost: ["Fighting", "Metal"] + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/046.ts b/data-asia/SV/SV6a/046.ts new file mode 100644 index 000000000..f2182bbca --- /dev/null +++ b/data-asia/SV/SV6a/046.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "雙斧戰龍" + }, + + illustrator: "Tsuyoshi Nagano", + category: "Pokemon", + hp: 170, + types: ["Dragon"], + + description: { + 'zh-tw': "會以自傲的牙齒壓制敵人。 牙齒的鋒利程度無與倫比, 就連鐵塔都能夠一斬而斷。" + }, + + stage: "Stage2", + + attacks: [{ + name: { + 'zh-tw': "斧擊在地" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢身上附有特殊能量卡,則將那隻寶可夢【昏厥】。" + }, + + cost: ["Fighting"] + }, { + name: { + 'zh-tw': "龍之波動" + }, + + effect: { + 'zh-tw': "將自己的牌庫上方3張卡丟棄。" + }, + + damage: 230, + cost: ["Fighting", "Metal"] + }], + + retreat: 2, + regulationMark: "H", + rarity: "Rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/047.ts b/data-asia/SV/SV6a/047.ts new file mode 100644 index 000000000..3b0478126 --- /dev/null +++ b/data-asia/SV/SV6a/047.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "酋雷姆" + }, + + illustrator: "Shiburingaru", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + + description: { + 'zh-tw': "雖然擁有凌駕於萊希拉姆和 捷克羅姆之上的力量,但是那 力量已被極低溫冷氣封住了。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "‌‌[特性]反等離子" + }, + + effect: { + 'zh-tw': "若對手的棄牌區有‌名稱中有「‌阿克羅瑪」的卡,則這隻寶可夢使用「‌三重冰霜」所需的能量,改為1個【無】能量。" + } + }, { + name: { + 'zh-tw': "三重冰霜" + }, + + effect: { + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄,對手的3隻寶可夢各受到110點傷害。[在備戰區不計算弱點・抵抗力。]" + }, + + cost: ["Water", "Water", "Metal", "Metal", "Colorless"] + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/048.ts b/data-asia/SV/SV6a/048.ts new file mode 100644 index 000000000..5305aec9c --- /dev/null +++ b/data-asia/SV/SV6a/048.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "喵喵" + }, + + illustrator: "sui", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + 'zh-tw': "非常喜歡耀眼的發光物。 找到發光物時,不知為何 額頭的金幣也會跟著發光。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "亂抓" + }, + + effect: { + 'zh-tw': "擲3次硬幣,造成正面出現的次數×20點傷害。" + }, + + damage: "20×", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/049.ts b/data-asia/SV/SV6a/049.ts new file mode 100644 index 000000000..c6b8632ee --- /dev/null +++ b/data-asia/SV/SV6a/049.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "貓老大" + }, + + illustrator: "NC Empire", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + description: { + 'zh-tw': "性情凶暴,豎起尾巴時 要多加小心。那是牠將 飛撲過來咬你的前兆。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "亂抓" + }, + + effect: { + 'zh-tw': "擲3次硬幣,造成正面出現的次數×50點傷害。" + }, + + damage: "50×", + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "利爪揮砍" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/050.ts b/data-asia/SV/SV6a/050.ts new file mode 100644 index 000000000..5ac101e7a --- /dev/null +++ b/data-asia/SV/SV6a/050.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "伊布" + }, + + illustrator: "Susumu Maeya", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + 'zh-tw': "有著不規則的基因。 石頭散發出的放射線, 會使牠的身體發生突變。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "鮮豔捕捉" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇最多3張各不同屬性的基本能量卡,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "頭錘" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/051.ts b/data-asia/SV/SV6a/051.ts new file mode 100644 index 000000000..5ad93666b --- /dev/null +++ b/data-asia/SV/SV6a/051.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "多麗米亞" + }, + + illustrator: "Shinya Komatsu", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + description: { + 'zh-tw': "修整好蓬亂的體毛後, 不只是模樣變得美麗, 就連身體也會變得更敏捷。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "能量支援" + }, + + effect: { + 'zh-tw': "從自己的棄牌區選擇1張基本能量卡,附於備戰寶可夢身上。" + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/052.ts b/data-asia/SV/SV6a/052.ts new file mode 100644 index 000000000..744a6abbb --- /dev/null +++ b/data-asia/SV/SV6a/052.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "童偶熊" + }, + + illustrator: "ryoma uratsuka", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + 'zh-tw': "毛茸茸的毛皮摸起來觸感超群, 但粗心大意地向牠伸出手的人 基本上都會遭到牠的劇烈反擊。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "猛撞" + }, + + effect: { + 'zh-tw': "這隻寶可夢也受到10點傷害。" + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/053.ts b/data-asia/SV/SV6a/053.ts new file mode 100644 index 000000000..6ab79df52 --- /dev/null +++ b/data-asia/SV/SV6a/053.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "穿著熊" + }, + + illustrator: "Takeshi Nakamura", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + description: { + 'zh-tw': "如果牠認定你是牠的夥伴, 便會試著擁抱你來表示喜愛。 但這會弄碎你的骨頭,非常危險。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "力量充能" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇1張基本能量卡,附於這隻寶可夢身上。並且重洗牌庫。" + }, + + damage: 30, + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "頭突" + }, + + damage: 130, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/054.ts b/data-asia/SV/SV6a/054.ts new file mode 100644 index 000000000..8d1afbad4 --- /dev/null +++ b/data-asia/SV/SV6a/054.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "危險光線" + }, + + illustrator: "inose yukie", + category: "Trainer", + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【灼傷】與【混亂】。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "ACE SPEC Rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/055.ts b/data-asia/SV/SV6a/055.ts new file mode 100644 index 000000000..a28730823 --- /dev/null +++ b/data-asia/SV/SV6a/055.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "寶可生機劑A" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + 'zh-tw': "將自己的1隻寶可夢恢復「150」HP。 這張卡只要在棄牌區,無法加入手牌,無法放回牌庫。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "ACE SPEC Rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/056.ts b/data-asia/SV/SV6a/056.ts new file mode 100644 index 000000000..277820d0c --- /dev/null +++ b/data-asia/SV/SV6a/056.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "夜間擔架" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + 'zh-tw': "從自己的棄牌區選擇1張寶可夢卡或者基本能量卡,在給對手看過後加入手牌。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/057.ts b/data-asia/SV/SV6a/057.ts new file mode 100644 index 000000000..7ff92e0db --- /dev/null +++ b/data-asia/SV/SV6a/057.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鎖鏈糬" + }, + + illustrator: "5ban Graphics", + category: "Trainer", + + effect: { + 'zh-tw': "附有這張卡的【中毒】的寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+40」點。" + }, + + trainerType: "Tool", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/058.ts b/data-asia/SV/SV6a/058.ts new file mode 100644 index 000000000..4d1707f02 --- /dev/null +++ b/data-asia/SV/SV6a/058.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "力之沙漏" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + 'zh-tw': "在自己的回合結束時,若附有這張卡的寶可夢在戰鬥場上,則可從自己的棄牌區選擇1張基本能量卡,附於那隻寶可夢身上。" + }, + + trainerType: "Tool", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/059.ts b/data-asia/SV/SV6a/059.ts new file mode 100644 index 000000000..d3f19a464 --- /dev/null +++ b/data-asia/SV/SV6a/059.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "阿克羅瑪的執著" + }, + + illustrator: "hncl", + category: "Trainer", + + effect: { + 'zh-tw': "從自己的牌庫選擇競技場卡與能量卡各1張,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/060.ts b/data-asia/SV/SV6a/060.ts new file mode 100644 index 000000000..fcf1c8d07 --- /dev/null +++ b/data-asia/SV/SV6a/060.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "阿杏的秘招" + }, + + illustrator: "Taira Akitsu", + category: "Trainer", + + effect: { + 'zh-tw': "選擇最多2隻自己的【惡】寶可夢,從自己的牌庫附給那些寶可夢各1張「基本【惡】能量」卡。並且重洗牌庫。附於戰鬥寶可夢身上的情況下,將那隻寶可夢【中毒】。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/061.ts b/data-asia/SV/SV6a/061.ts new file mode 100644 index 000000000..31304480e --- /dev/null +++ b/data-asia/SV/SV6a/061.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "仙后" + }, + + illustrator: "Atsushi Furusawa", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡只有在自己的手牌只有這1張時才可使用。 從自己的牌庫任意選擇最多2張卡加入手牌。並且重洗牌庫。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/062.ts b/data-asia/SV/SV6a/062.ts new file mode 100644 index 000000000..fbd836a91 --- /dev/null +++ b/data-asia/SV/SV6a/062.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "庫瑟洛斯奇的企圖" + }, + + illustrator: "GOSSAN", + category: "Trainer", + + effect: { + 'zh-tw': "對手將對手自己的手牌丟棄直到變為3張為止。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/063.ts b/data-asia/SV/SV6a/063.ts new file mode 100644 index 000000000..4ab1de367 --- /dev/null +++ b/data-asia/SV/SV6a/063.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "中立中心" + }, + + illustrator: "imoniii", + category: "Trainer", + + effect: { + 'zh-tw': "雙方的所有寶可夢(「擁有規則的寶可夢」除外),不會受到對手的「寶可夢【ex】・【V】」招式的傷害。 這張卡只要在棄牌區,無法加入手牌,無法放回牌庫。" + }, + + trainerType: "Stadium", + regulationMark: "H", + rarity: "ACE SPEC Rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6a/064.ts b/data-asia/SV/SV6a/064.ts new file mode 100644 index 000000000..919d7ec55 --- /dev/null +++ b/data-asia/SV/SV6a/064.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "夜間學院" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + 'zh-tw': "雙方玩家在每個自己的回合時,可使用1次,可選擇1張自己的手牌,放回牌庫上方。" + }, + + trainerType: "Stadium", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s.ts b/data-asia/SV/SV6s.ts new file mode 100644 index 000000000..9ac3c0f37 --- /dev/null +++ b/data-asia/SV/SV6s.ts @@ -0,0 +1,20 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SV6s', + name: { + id: 'Topeng Transfigurasi' + }, + + serie: serie, + + cardCount: { + official: 167 + }, + releaseDate: { + id: '2024-05-31' + } +} + +export default set diff --git a/data-asia/SV/SV6s/001.ts b/data-asia/SV/SV6s/001.ts new file mode 100644 index 000000000..b136cd733 --- /dev/null +++ b/data-asia/SV/SV6s/001.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Tangela" + }, + rarity: 'Common', + + illustrator: "Yoriyuki Ikegami", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + description: { + id: "Hingga saat ini, wujud asli Tangela di balik jalar yang terus tumbuh tanpa batas walau dicabut ini masih belum terungkap." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menepuk" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + id: "Pukulan Sulur" + }, + + damage: 30, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card diff --git a/data-asia/SV/SV6s/002.ts b/data-asia/SV/SV6s/002.ts new file mode 100644 index 000000000..bcdc1bdda --- /dev/null +++ b/data-asia/SV/SV6s/002.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Tangrowth" + }, + + illustrator: "LINNE", + category: "Pokemon", + hp: 150, + types: ["Grass"], + + description: { + id: "Hasil penelitian terbaru menunjukkan bahwa 2 lengan Tangrowth yang dapat dipanjangkan dengan sesukanya ini sebenarnya kumpulan jalar yang disatukan." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Tubuh Hutan" + }, + + effect: { + id: "Kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30." + } + }], + + attacks: [{ + name: { + id: "Menyelungkupi" + }, + + effect: { + id: "Kerusakan akibat serangan ini berkurang sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini." + }, + + damage: "150-", + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/003.ts b/data-asia/SV/SV6s/003.ts new file mode 100644 index 000000000..d3ba87c74 --- /dev/null +++ b/data-asia/SV/SV6s/003.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Pinsir" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + description: { + id: "Pokémon ini saling menilai menggunakan tanduknya. Makin tebal dan mengesankan tanduk yang dimilikinya, Pinsir tersebut makin populer dan menarik perhatian lawan jenisnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Slow Crunch" + }, + + effect: { + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash. Pada akhir giliran lawan berikutnya, Pokémon yang menerima serangan ini KO." + }, + + cost: ["Grass", "Colorless"] + }, { + name: { + id: "Tanduk Tenaga Super" + }, + + damage: 100, + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/004.ts b/data-asia/SV/SV6s/004.ts new file mode 100644 index 000000000..c91b9ee9f --- /dev/null +++ b/data-asia/SV/SV6s/004.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Spinarak" + }, + + illustrator: "Saya Tsuruta", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + id: "Ada juga nelayan yang menyulam benang kuat Pokémon ini untuk membuat jaring guna menangkap Pokémon ikan." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Gigitan Serangga" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/005.ts b/data-asia/SV/SV6s/005.ts new file mode 100644 index 000000000..059a3c852 --- /dev/null +++ b/data-asia/SV/SV6s/005.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ariados" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + id: "Pokémon yang tidak membuat sarangnya di tempat tertentu. Ia akan berkeliaran mencari makanannya setelah lingkungan sekitar menjadi gelap." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Big Net" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena, Energi yang dibutuhkan oleh Pokémon Evolusi di Arena Bertarung lawan untuk Mundur bertambah 1." + } + }], + + attacks: [{ + name: { + id: "Belitan Benang" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dibutuhkan oleh Pokémon Bertarung lawan untuk Mundur." + }, + + damage: "10+", + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/006.ts b/data-asia/SV/SV6s/006.ts new file mode 100644 index 000000000..ad6d08ff5 --- /dev/null +++ b/data-asia/SV/SV6s/006.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Sunkern" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 40, + types: ["Grass"], + + description: { + id: "Pokémon ini sangat lemah. Meskipun diserang, Sunkern baru dapat mengusir musuhnya setelah bersusah payah memutar daunnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Peluru Biji" + }, + + effect: { + id: "Lempar koin 4 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "10×", + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/007.ts b/data-asia/SV/SV6s/007.ts new file mode 100644 index 000000000..b7b5d76a6 --- /dev/null +++ b/data-asia/SV/SV6s/007.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Sunflora" + }, + + illustrator: "Ounishi", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + id: "Untuk mengubah cahaya matahari menjadi energi, Sunflora selalu menghadap ke arah matahari selama siang hari." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Serangan Balik Pancaran Matahari" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 60 untuk tiap Energi {Api} yang dikenakan pada semua Pokémon lawan." + }, + + damage: "60×", + cost: ["Grass"] + }, { + name: { + id: "Mega Drain" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 30." + }, + + damage: 50, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/008.ts b/data-asia/SV/SV6s/008.ts new file mode 100644 index 000000000..36a76813c --- /dev/null +++ b/data-asia/SV/SV6s/008.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Heracross" + }, + + illustrator: "Toshinao Aoki", + category: "Pokemon", + hp: 120, + types: ["Grass"], + + description: { + id: "Pokémon yang memiliki tenaga super. Heracross dapat membanting benda yang lebih berat 100 kali lipat dari berat badannya dengan mudah." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menindih" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh." + }, + + damage: 60, + cost: ["Grass", "Colorless", "Colorless"] + }, { + name: { + id: "Bantingan Keras" + }, + + damage: 130, + cost: ["Grass", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/009.ts b/data-asia/SV/SV6s/009.ts new file mode 100644 index 000000000..9e74e97bf --- /dev/null +++ b/data-asia/SV/SV6s/009.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Volbeat" + }, + + illustrator: "Orca", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + id: "Volbeat mengedipkan cahaya di posteriornya untuk berkomunikasi dengan sesamanya. Ia sangat menyukai aroma manis yang dikeluarkan Illumise." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Fast Sign" + }, + + effect: { + id: "Serangan ini juga dapat digunakan pada giliran pertama Pemain Pertama. Pilih paling banyak 2 lembar Pokémon Basic dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Serangan Kerja Sama" + }, + + effect: { + id: "Jika ada Illumise di Cadangan sendiri, kerusakan yang diberikan bertambah sejumlah 60." + }, + + damage: "20+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/010.ts b/data-asia/SV/SV6s/010.ts new file mode 100644 index 000000000..bcacd8747 --- /dev/null +++ b/data-asia/SV/SV6s/010.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Illumise" + }, + + illustrator: "Orca", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + id: "Illumise mengarahkan Volbeat untuk menggambar tanda di langit malam. Ada juga cendekiawan yang meneliti arti tanda tersebut." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Slow Perfume" + }, + + effect: { + id: "Serangan ini hanya dapat digunakan pada giliran pertama Pemain Kedua. Pilih 1 Pokémon Cadangan lawan, lalu kocok kembali Pokémon tersebut dan semua kartu yang dikenakannya ke Deck lawan." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Melayang Rendah" + }, + + damage: 30, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/011.ts b/data-asia/SV/SV6s/011.ts new file mode 100644 index 000000000..785da8112 --- /dev/null +++ b/data-asia/SV/SV6s/011.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Leafeon" + }, + + illustrator: "Kuroimori", + category: "Pokemon", + hp: 120, + types: ["Grass"], + + description: { + id: "Makin muda Leafeon, makin kuat aroma daun mudanya. Seiring dengan pertambahan umur, aroma Pokémon ini menjadi seperti bau daun gugur." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Berkah Daun Muda" + }, + + effect: { + id: "Pilih 1 lembar Energi Dasar {Daun} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon Cadangan. Setelah itu, pulihkan HP Pokémon yang telah dikenakan Energi sepenuhnya." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Solar Beam" + }, + + damage: 70, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/012.ts b/data-asia/SV/SV6s/012.ts new file mode 100644 index 000000000..575cb08fb --- /dev/null +++ b/data-asia/SV/SV6s/012.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Phantump" + }, + + illustrator: "Katsunori Sato", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + id: "Pokémon yang merupakan roh anak kecil yang meninggal, lalu bersemayam di tunggul pohon. Ia berkeliaran di hutan dan mencari kawan." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Bibit Parasit" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 20." + }, + + damage: 20, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/013.ts b/data-asia/SV/SV6s/013.ts new file mode 100644 index 000000000..1ec62b001 --- /dev/null +++ b/data-asia/SV/SV6s/013.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Trevenant" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + hp: 120, + types: ["Grass"], + + description: { + id: "Ia sangat baik terhadap Pokémon yang tinggal di hutan. Ia tidak peduli meskipun belukar di kepalanya dijadikan tempat tinggal." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Giga Drain" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah kerusakan yang diberikan kepada Pokémon Bertarung lawan." + }, + + damage: 50, + cost: ["Grass", "Colorless"] + }, { + name: { + id: "Forest Dump" + }, + + damage: 130, + cost: ["Grass", "Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/014.ts b/data-asia/SV/SV6s/014.ts new file mode 100644 index 000000000..1f226c9e2 --- /dev/null +++ b/data-asia/SV/SV6s/014.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Grookey" + }, + + illustrator: "Tomomi Ozaki", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + id: "Ketika Grookey mengetuk irama dengan stik spesialnya, kekuatan yang membuat tumbuhan sehat akan menjadi gelombang suara dan meluas." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tendangan Penghempas" + }, + + damage: 10, + cost: ["Grass"] + }, { + name: { + id: "Tusukan Ranting" + }, + + damage: 30, + cost: ["Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/015.ts b/data-asia/SV/SV6s/015.ts new file mode 100644 index 000000000..973bb6e24 --- /dev/null +++ b/data-asia/SV/SV6s/015.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Thwackey" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + id: "Thwackey yang dapat mengetukkan irama menggunakan dua buah stiknya dengan kencanglah yang makin dihormati kawanannya." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Gendang Dung Dung Dung" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon Bertarung sendiri adalah Pokémon yang memiliki Ability Orkes Festival. Pilih 1 kartu sesukanya dari Deck sendiri, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + } + }], + + attacks: [{ + name: { + id: "Menghantam" + }, + + damage: 50, + cost: ["Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/016.ts b/data-asia/SV/SV6s/016.ts new file mode 100644 index 000000000..707f8df3a --- /dev/null +++ b/data-asia/SV/SV6s/016.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Rillaboom" + }, + + illustrator: "toriyufu", + category: "Pokemon", + hp: 180, + types: ["Grass"], + + description: { + id: "Rillaboom mengontrol kekuatan tunggul pohon spesial dengan menabuhnya bagai drum. Pokémon ini bertarung dengan mengendalikan akar tumbuhan." + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Drum Beating" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Energi yang dibutuhkan oleh Pokémon yang menerima serangan ini untuk menggunakan serangan dan Mundur masing-masing bertambah 1 Energi {Bening}." + }, + + damage: 60, + cost: ["Grass"] + }, { + name: { + id: "Wood Hammer" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 50." + }, + + damage: 180, + cost: ["Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/017.ts b/data-asia/SV/SV6s/017.ts new file mode 100644 index 000000000..edc00f0df --- /dev/null +++ b/data-asia/SV/SV6s/017.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Applin" + }, + + illustrator: "OKUBO", + category: "Pokemon", + hp: 40, + types: ["Grass"], + + description: { + id: "Applin hidup di dalam buah apel. Jika apelnya habis, Pokémon ini akan melemah karena kehilangan cairan tubuhnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Rolling Attack" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 20." + }, + + damage: "10+", + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/018.ts b/data-asia/SV/SV6s/018.ts new file mode 100644 index 000000000..05cb4a798 --- /dev/null +++ b/data-asia/SV/SV6s/018.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Dipplin" + }, + + illustrator: "Saboteri", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + description: { + id: "Boah luar yang mengeluarkan kepala dan Boah dalam yang mengeluarkan ekor saling membantu dan tinggal bersama di dalam apel." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Orkes Festival" + }, + + effect: { + id: "Jika ada Lokasi Festival di Arena, Pokémon ini dapat menggunakan serangan yang dimiliki 2 kali berturut-turut. (Jika Pokémon Bertarung lawan KO akibat serangan pertama, gunakan serangan kedua setelah Pokémon Bertarung berikutnya masuk.)" + } + }], + + attacks: [{ + name: { + id: "Lingkaran Teman" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Pokémon Cadangan sendiri." + }, + + damage: "20×", + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/019.ts b/data-asia/SV/SV6s/019.ts new file mode 100644 index 000000000..8d3a802f7 --- /dev/null +++ b/data-asia/SV/SV6s/019.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Iron Leaves" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 120, + types: ["Grass"], + + description: { + id: "Menurut kesaksian yang sedikit, Pokémon ini dikabarkan memotong tipis pohon besar atau bebatuan besar dengan pedang berkilaunya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Recover Net" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Pokémon dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan." + }, + + cost: ["Grass"] + }, { + name: { + id: "Avenge Edge" + }, + + effect: { + id: "Jika pada giliran lawan sebelumnya, ada Pokémon sendiri yang KO karena kerusakan akibat serangan, kerusakan yang diberikan bertambah sejumlah 60." + }, + + damage: "100+", + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/020.ts b/data-asia/SV/SV6s/020.ts new file mode 100644 index 000000000..f83c0c30c --- /dev/null +++ b/data-asia/SV/SV6s/020.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Poltchageist" + }, + + illustrator: "MINAMINAMI Take", + category: "Pokemon", + hp: 30, + types: ["Grass"], + + description: { + id: "Poltchageist terlihat seperti varian daerah dari Sinistea, tetapi belakangan ini ditemukan bahwa mereka merupakan Pokémon yang tidak ada keterkaitannya sama sekali." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Gudang Persembunyian" + }, + + effect: { + id: "Selama Pokémon ini ada di Cadangan, Pokémon ini tidak menerima kerusakan dan efek akibat serangan dari Pokémon lawan." + } + }], + + attacks: [{ + name: { + id: "Mengait" + }, + + damage: 10, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/021.ts b/data-asia/SV/SV6s/021.ts new file mode 100644 index 000000000..97ffc8ae1 --- /dev/null +++ b/data-asia/SV/SV6s/021.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Poltchageist" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 40, + types: ["Grass"], + + description: { + id: "Poltchageist terlihat seperti varian daerah dari Sinistea, tetapi belakangan ini ditemukan bahwa mereka merupakan Pokémon yang tidak ada keterkaitannya sama sekali." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menyediakan Teh" + }, + + effect: { + id: "Pilih 1 lembar Energi Dasar {Daun} dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan." + }, + + cost: ["Grass"] + }, { + name: { + id: "Serangan Kejutan" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi belakang, serangan ini gagal." + }, + + damage: 30, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/022.ts b/data-asia/SV/SV6s/022.ts new file mode 100644 index 000000000..6ee820346 --- /dev/null +++ b/data-asia/SV/SV6s/022.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Sinistcha" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + id: "Pokémon yang menyukai tempat gelap dan dingin seperti di bawah lantai rumah, di dalam rak, atau lainnya. Ia berkeliaran mencari mangsanya setelah matahari terbenam." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Tetesan Kutukan" + }, + + effect: { + id: "Letakkan sejumlah 4 Token Kerusakan pada Pokémon lawan sesukanya." + }, + + cost: ["Grass"] + }, { + name: { + id: "Menghamburkan Teh" + }, + + effect: { + id: "Buang paling banyak 3 lembar Energi {Daun} yang dikenakan pada Pokémon di Arena sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 70 untuk tiap lembarnya." + }, + + damage: "70×", + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/023.ts b/data-asia/SV/SV6s/023.ts new file mode 100644 index 000000000..aab9f1dfc --- /dev/null +++ b/data-asia/SV/SV6s/023.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Sinistcha ex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 240, + types: ["Grass"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + id: "Menyeduh Balik" + }, + + effect: { + id: "Perlihatkan semua Energi Dasar {Daun} yang ada di Trash sendiri ke lawan, letakkan 2 Token Kerusakan untuk tiap lembarnya pada 1 Pokémon lawan. Setelah itu, kocok kembali Energi yang telah diperlihatkan ke Deck." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Matcha Splash" + }, + + effect: { + id: "Pulihkan HP semua Pokémon sendiri masing-masing sejumlah 30." + }, + + damage: 120, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/024.ts b/data-asia/SV/SV6s/024.ts new file mode 100644 index 000000000..9c0dde935 --- /dev/null +++ b/data-asia/SV/SV6s/024.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ogerpon Topeng Teal" + }, + + illustrator: "Sanosuke Sakuma", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + description: { + id: "Pokémon yang suka jahil dan penuh rasa ingin tahu. Ia bertarung dengan menarik keluar energi tipe yang terkandung dalam topeng." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Jalan-jalan Gunung" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Serangan Balik Oni" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 20 untuk tiap Pokémon Cadangan lawan." + }, + + damage: "20+", + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/025.ts b/data-asia/SV/SV6s/025.ts new file mode 100644 index 000000000..9f5db9cb5 --- /dev/null +++ b/data-asia/SV/SV6s/025.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ogerpon Topeng Teal ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Tarian Teal" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 lembar Energi Dasar {Daun} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon ini. Setelah itu, ambil 1 kartu dari atas Deck sendiri." + } + }], + + attacks: [{ + name: { + id: "Hujan Ribuan Daun" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon Bertarung kedua pemain." + }, + + damage: "30+", + cost: ["Grass", "Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/026.ts b/data-asia/SV/SV6s/026.ts new file mode 100644 index 000000000..ecbb3b609 --- /dev/null +++ b/data-asia/SV/SV6s/026.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Vulpix" + }, + + illustrator: "sowsow", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + id: "Enam ekornya yang hangat menjadi makin indah dan bulunya makin bagus seiring dengan pertumbuhan tubuhnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Nyala Api" + }, + + damage: 40, + cost: ["Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/027.ts b/data-asia/SV/SV6s/027.ts new file mode 100644 index 000000000..4b5a16aa1 --- /dev/null +++ b/data-asia/SV/SV6s/027.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ninetales" + }, + + illustrator: "KEIICHIRO ITO", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + description: { + id: "Ia memiliki bulu yang berkilau keemasan dan 9 ekor yang panjang. Dikatakan bahwa ia hidup selama 1000 tahun." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Cahaya Api Membingungkan" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar dan Pusing." + }, + + damage: 90, + cost: ["Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/028.ts b/data-asia/SV/SV6s/028.ts new file mode 100644 index 000000000..35758d631 --- /dev/null +++ b/data-asia/SV/SV6s/028.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Slugma" + }, + + illustrator: "Gapao", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + description: { + id: "Konon lebih banyak Slugma yang hidup di dunia primitif saat gunung berapi lebih aktif daripada sekarang." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Magma Panas" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar." + }, + + damage: 20, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/029.ts b/data-asia/SV/SV6s/029.ts new file mode 100644 index 000000000..00f8b4d3c --- /dev/null +++ b/data-asia/SV/SV6s/029.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Magcargo ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 270, + types: ["Fire"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + id: "Magma Panas" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar." + }, + + damage: 70, + cost: ["Fire", "Colorless"] + }, { + name: { + id: "Ground Burn" + }, + + effect: { + id: "Buang kartu masing-masing 1 lembar dari atas Deck kedua pemain ke Trash, kerusakan yang diberikan bertambah sejumlah 140 untuk tiap lembar Energi yang ada di antaranya." + }, + + damage: "140+", + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/030.ts b/data-asia/SV/SV6s/030.ts new file mode 100644 index 000000000..1e3ce69ff --- /dev/null +++ b/data-asia/SV/SV6s/030.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Torkoal" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + id: "Batu bara adalah sumber energi Pokémon ini. Terdapat banyak batu bara yang terpendam di gunung tempat tinggal Torkoal." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Serudukan Tempurung" + }, + + effect: { + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30." + }, + + damage: 30, + cost: ["Fire", "Colorless"] + }, { + name: { + id: "Pusaran Api" + }, + + effect: { + id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 110, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/031.ts b/data-asia/SV/SV6s/031.ts new file mode 100644 index 000000000..e73fac092 --- /dev/null +++ b/data-asia/SV/SV6s/031.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Chimchar" + }, + + illustrator: "Jerky", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + id: "Api di bagian belakang Chimchar menggunakan bahan bakar gas yang dibuat di dalam perutnya. Meskipun kehujanan, api tersebut tidak akan padam." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Meniupkan Api" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 20." + }, + + damage: "20+", + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/032.ts b/data-asia/SV/SV6s/032.ts new file mode 100644 index 000000000..8811ac8bd --- /dev/null +++ b/data-asia/SV/SV6s/032.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Monferno" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + description: { + id: "Monferno bertarung dengan mengontrol intensitas api di ekornya secara terampil untuk menjaga musuhnya tetap berada di jarak yang ideal." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Chop" + }, + + damage: 40, + cost: ["Fire", "Colorless"] + }, { + name: { + id: "Heat Blow" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 80, + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/033.ts b/data-asia/SV/SV6s/033.ts new file mode 100644 index 000000000..6a394f5a2 --- /dev/null +++ b/data-asia/SV/SV6s/033.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Infernape" + }, + + illustrator: "Takumi Wada", + category: "Pokemon", + hp: 140, + types: ["Fire"], + + description: { + id: "Pokémon yang memiliki sifat kasar bagaikan api yang berkobar di kepalanya. Infernape tidak terkalahkan dalam hal kecepatan." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + id: "Tarian Lidah Api" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih Energi Dasar {Api} dan Energi Dasar {Petarung} masing-masing paling banyak 1 lembar dari Kartu Pegangan sendiri, lalu kenakan sesukanya pada Pokémon sendiri." + } + }], + + attacks: [{ + name: { + id: "Burn Out" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 200, + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/034.ts b/data-asia/SV/SV6s/034.ts new file mode 100644 index 000000000..5626ce832 --- /dev/null +++ b/data-asia/SV/SV6s/034.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Darumaka" + }, + + illustrator: "osare", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + description: { + id: "Api yang membara di dalam tubuhnya menjadi sumber kekuatan Darumaka. Jika apinya mengecil, Pokémon ini jadi mengantuk." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tenaga Super" + }, + + damage: 10, + cost: ["Fire"] + }, { + name: { + id: "Serudukan Api" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 20." + }, + + damage: 50, + cost: ["Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/035.ts b/data-asia/SV/SV6s/035.ts new file mode 100644 index 000000000..358f1c98c --- /dev/null +++ b/data-asia/SV/SV6s/035.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Darmanitan" + }, + + illustrator: "OKUBO", + category: "Pokemon", + hp: 140, + types: ["Fire"], + + description: { + id: "Pokémon yang cepat naik darah. Pukulan yang diluncurkan oleh lengan Darmanitan yang besar dapat menghancurkan truk jungkit hingga berkeping-keping." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Tubrukan Menggelinding" + }, + + damage: 60, + cost: ["Fire", "Fire"] + }, { + name: { + id: "Terjangan Kobar Api" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 70." + }, + + damage: 210, + cost: ["Fire", "Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/036.ts b/data-asia/SV/SV6s/036.ts new file mode 100644 index 000000000..1e063aa2e --- /dev/null +++ b/data-asia/SV/SV6s/036.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Litwick" + }, + + illustrator: "Saya Tsuruta", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + id: "Litwick mengisap vitalitas sambil menyala sebagai penerangan dan berpura-pura memandu jalan." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Memanggil Teman" + }, + + effect: { + id: "Pilih 1 lembar Pokémon Basic dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck." + }, + + cost: ["Fire"] + }, { + name: { + id: "Nyala Api" + }, + + damage: 20, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/037.ts b/data-asia/SV/SV6s/037.ts new file mode 100644 index 000000000..34811bc88 --- /dev/null +++ b/data-asia/SV/SV6s/037.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Lampent" + }, + + illustrator: "Rond", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + description: { + id: "Lampent mengisap roh dan menyalakan apinya. Pokémon ini menjadi berkeliaran di sekitar rumah sakit untuk menunggu ajal manusia." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Nyala Api" + }, + + damage: 20, + cost: ["Fire"] + }, { + name: { + id: "Berkobar Habis" + }, + + effect: { + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash." + }, + + damage: 60, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/038.ts b/data-asia/SV/SV6s/038.ts new file mode 100644 index 000000000..2bd4444ff --- /dev/null +++ b/data-asia/SV/SV6s/038.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Chandelure" + }, + + illustrator: "saino misaki", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + id: "Chandelure mengisap roh dan membakarnya. Ia mengayunkan api di lengannya dan membuat lawannya terhipnotis." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + id: "Penerangan Penjerat" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri. Kedua pemain masing-masing mengambil 1 kartu dari atas Deck." + } + }], + + attacks: [{ + name: { + id: "Mind Ruler" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 30 untuk tiap lembar Kartu Pegangan lawan." + }, + + damage: "30×", + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/039.ts b/data-asia/SV/SV6s/039.ts new file mode 100644 index 000000000..2059beed3 --- /dev/null +++ b/data-asia/SV/SV6s/039.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Chi-Yu" + }, + + illustrator: "Oku", + category: "Pokemon", + hp: 110, + types: ["Fire"], + + description: { + id: "Chi-Yu adalah perasaan iri dan dengki yang berkumpul ke magatama yang menjadi api pemicu banyaknya permusuhan. Ia menyelimuti dirinya dengan api, lalu berubah menjadi Pokémon." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mengambil" + }, + + effect: { + id: "Ambil 2 kartu dari atas Deck sendiri." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Ground Melt" + }, + + effect: { + id: "Jika ada Stadium di Arena, kerusakan yang diberikan bertambah sejumlah 60. Setelah itu, buang Stadium tersebut ke Trash." + }, + + damage: "60+", + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/040.ts b/data-asia/SV/SV6s/040.ts new file mode 100644 index 000000000..94e61ee32 --- /dev/null +++ b/data-asia/SV/SV6s/040.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ogerpon Topeng Tungku ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + id: "Tungku Kemarahan" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang dimiliki Pokémon ini." + }, + + damage: "20×", + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + id: "Dynamic Blaze" + }, + + effect: { + id: "Jika Pokémon Bertarung lawan adalah Pokémon Evolusi, kerusakan yang diberikan bertambah sejumlah 140. Pada kondisi tersebut, buang semua Energi yang dikenakan pada Pokémon ini ke Trash." + }, + + damage: "140+", + cost: ["Fire", "Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/041.ts b/data-asia/SV/SV6s/041.ts new file mode 100644 index 000000000..3170767c0 --- /dev/null +++ b/data-asia/SV/SV6s/041.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Poliwag" + }, + + illustrator: "Kedamahadaitai Yawarakai", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + id: "Kakinya baru saja tumbuh sehingga ia tidak pandai berjalan. Tampaknya ia lebih suka berenang di dalam air." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menginjak" + }, + + damage: 10, + cost: ["Water"] + }, { + name: { + id: "Tamparan Ekor" + }, + + effect: { + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "20×", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/042.ts b/data-asia/SV/SV6s/042.ts new file mode 100644 index 000000000..b3bf8d8fc --- /dev/null +++ b/data-asia/SV/SV6s/042.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Poliwhirl" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + id: "Kulit seluruh tubuhnya lembap, tetapi bagian pusaran pada perutnya terasa licin." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Hipnotis" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur." + }, + + cost: ["Water"] + }, { + name: { + id: "Tamparan Ganda" + }, + + effect: { + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 30 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "30×", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/043.ts b/data-asia/SV/SV6s/043.ts new file mode 100644 index 000000000..ca5caa40f --- /dev/null +++ b/data-asia/SV/SV6s/043.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Poliwrath" + }, + + illustrator: "Nisota Niso", + category: "Pokemon", + hp: 170, + types: ["Water"], + + description: { + id: "Jika hanya untuk sesaat, ia dapat berlari di atas air menggunakan tangan dan kakinya yang sudah berkembang." + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Hipnotis" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur." + }, + + cost: ["Water"] + }, { + name: { + id: "Jumping Uppercut" + }, + + effect: { + id: "Pemain dapat membuat kerusakan yang diberikan bertambah sejumlah 120. Jika dilakukan, kocok kembali Pokémon ini dan semua kartu yang dikenakannya ke Deck sendiri." + }, + + damage: "120+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/044.ts b/data-asia/SV/SV6s/044.ts new file mode 100644 index 000000000..a19286015 --- /dev/null +++ b/data-asia/SV/SV6s/044.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Goldeen" + }, + + illustrator: "saino misaki", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + id: "Goldeen dikenal sebagai Penari Air karena sirip punggung, sirip dada, dan sirip ekornya berayun dengan anggun." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Orkes Festival" + }, + + effect: { + id: "Jika ada Lokasi Festival di Arena, Pokémon ini dapat menggunakan serangan yang dimiliki 2 kali berturut-turut. (Jika Pokémon Bertarung lawan KO akibat serangan pertama, gunakan serangan kedua setelah Pokémon Bertarung berikutnya masuk.)" + } + }], + + attacks: [{ + name: { + id: "Pusaran Air" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash." + }, + + damage: 10, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/045.ts b/data-asia/SV/SV6s/045.ts new file mode 100644 index 000000000..39c111644 --- /dev/null +++ b/data-asia/SV/SV6s/045.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Seaking" + }, + + illustrator: "Gemi", + category: "Pokemon", + hp: 90, + types: ["Water"], + + description: { + id: "Saat musim gugur, tubuh Seaking makin berlemak dan warnanya berubah menjadi sangat indah karena Pokémon ini bersiap untuk melamar pasangannya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Mematuk Jatuh" + }, + + effect: { + id: "Sebelum memberikan kerusakan, buang Pokémon Tool yang dikenakan pada Pokémon Bertarung lawan ke Trash." + }, + + damage: 50, + cost: ["Water"] + }, { + name: { + id: "Bor Tanduk" + }, + + damage: 90, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/046.ts b/data-asia/SV/SV6s/046.ts new file mode 100644 index 000000000..6bdb17cc6 --- /dev/null +++ b/data-asia/SV/SV6s/046.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Jynx" + }, + + illustrator: "Gapao", + category: "Pokemon", + hp: 90, + types: ["Water"], + + description: { + id: "Pada suatu kawasan di Galar, Jynx dikenal sebagai Ratu Es serta disembah dan ditakuti." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Ciuman Mengundang" + }, + + effect: { + id: "Pilih 1 lembar Pokémon Basic dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck. Setelah itu, pilih 1 Energi yang dikenakan pada Pokémon ini, lalu pindahkan ke Pokémon yang baru dimasukkan." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Snow Ice" + }, + + damage: 30, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/047.ts b/data-asia/SV/SV6s/047.ts new file mode 100644 index 000000000..0c40b2c82 --- /dev/null +++ b/data-asia/SV/SV6s/047.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Corphish" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 80, + types: ["Water"], + + description: { + id: "Pokémon ini tetap baik-baik saja meskipun kualitas air habitatnya buruk. Populasinya terus bertambah karena tidak perlu berebut makanan dengan Pokémon air lainnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Capitan Keras" + }, + + damage: 60, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/048.ts b/data-asia/SV/SV6s/048.ts new file mode 100644 index 000000000..8e2c895df --- /dev/null +++ b/data-asia/SV/SV6s/048.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Crawdaunt" + }, + + illustrator: "Kurata So", + category: "Pokemon", + hp: 130, + types: ["Water"], + + description: { + id: "Pokémon pengamuk yang mengayun-ayunkan capit raksasanya. Konon ia merupakan Pokémon yang sulit sekali dipelihara." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Gunting Gunting" + }, + + effect: { + id: "Lempar koin 2 kali. Buang kartu dari atas Deck lawan ke Trash untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: 40, + cost: ["Water", "Colorless"] + }, { + name: { + id: "Palu Mengamuk" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 180, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/049.ts b/data-asia/SV/SV6s/049.ts new file mode 100644 index 000000000..5e9e1e25b --- /dev/null +++ b/data-asia/SV/SV6s/049.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Feebas" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 30, + types: ["Water"], + + description: { + id: "Pokémon yang paling lusuh. Feebas berkumpul dalam jumlah besar dan tinggal di dasar sungai yang banyak tanaman airnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Berontak" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini." + }, + + damage: "10×", + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/050.ts b/data-asia/SV/SV6s/050.ts new file mode 100644 index 000000000..14215a51b --- /dev/null +++ b/data-asia/SV/SV6s/050.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Milotic" + }, + + illustrator: "Taira Akitsu", + category: "Pokemon", + hp: 120, + types: ["Water"], + + description: { + id: "Pokémon yang tinggal di dasar danau yang jernih. Ia akan muncul pada saat peperangan terjadi untuk menyembuhkan hati orang-orang." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Kondisi Kalem" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena, Pokémon di Arena lawan dan semua kartu yang dikenakan Pokémon tersebut tidak dapat dikembalikan ke Kartu Pegangan." + } + }], + + attacks: [{ + name: { + id: "Hydro Splash" + }, + + damage: 100, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/051.ts b/data-asia/SV/SV6s/051.ts new file mode 100644 index 000000000..e9e57c110 --- /dev/null +++ b/data-asia/SV/SV6s/051.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Snorunt" + }, + + illustrator: "Mékayu", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + id: "Dikatakan bahwa rumah yang dikunjungi Snorunt akan menjadi makmur. Suhu -100 ºC tidak masalah bagi Pokémon ini." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mengejutkan" + }, + + effect: { + id: "Pilih 1 kartu dari Kartu Pegangan lawan tanpa melihat sisi depan, lihat sisi depan kartu tersebut, lalu kocok kembali ke Deck lawan." + }, + + damage: 20, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/052.ts b/data-asia/SV/SV6s/052.ts new file mode 100644 index 000000000..fd4846059 --- /dev/null +++ b/data-asia/SV/SV6s/052.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Glalie" + }, + + illustrator: "Oku", + category: "Pokemon", + hp: 120, + types: ["Water"], + + description: { + id: "Glalie membekukan unsur air yang ada di udara dalam sekejap agar mangsanya tidak dapat melarikan diri." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Damage Beat" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang dimiliki Pokémon Bertarung lawan." + }, + + damage: "20×", + cost: ["Water"] + }, { + name: { + id: "Crazy Head" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 140, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/053.ts b/data-asia/SV/SV6s/053.ts new file mode 100644 index 000000000..af8447062 --- /dev/null +++ b/data-asia/SV/SV6s/053.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Froslass" + }, + + illustrator: "Makura Tami", + category: "Pokemon", + hp: 90, + types: ["Water"], + + description: { + id: "Dikatakan bahwa Froslass menghias tempat rahasianya dengan mangsanya yang dibekukan menggunakan embusan napas bersuhu -50 ºC." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Tudung Pembeku" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena, tiap kali Pokémon Check, letakkan masing-masing sejumlah 1 Token Kerusakan pada semua Pokémon kedua pemain yang memiliki Ability (selain Froslass)." + } + }], + + attacks: [{ + name: { + id: "Frost Smash" + }, + + damage: 60, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/054.ts b/data-asia/SV/SV6s/054.ts new file mode 100644 index 000000000..6f194d443 --- /dev/null +++ b/data-asia/SV/SV6s/054.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Glaceon" + }, + + illustrator: "rika", + category: "Pokemon", + hp: 120, + types: ["Water"], + + description: { + id: "Dengan menurunkan suhu tubuhnya, Glaceon membekukan bulu badannya menjadi seperti jarum yang lancip dan tajam lalu menerbangkannya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Hawa Dingin Meresap" + }, + + effect: { + id: "Pada akhir giliran lawan berikutnya, letakkan 9 Token Kerusakan pada Pokémon yang menerima serangan ini." + }, + + damage: 30, + cost: ["Water"] + }, { + name: { + id: "Misil Pilar Es" + }, + + damage: 70, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/055.ts b/data-asia/SV/SV6s/055.ts new file mode 100644 index 000000000..265bba7f6 --- /dev/null +++ b/data-asia/SV/SV6s/055.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Phione" + }, + + illustrator: "aspara", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + id: "Ketika suhu air laut naik, Phione menggelembungkan kantong apung di kepalanya dan mengapung dalam kelompok di permukaan laut." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Memanggil Mendekat" + }, + + effect: { + id: "Pilih 1 lembar Supporter dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Tekanan Energi" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Energi yang dikenakan pada Pokémon Bertarung lawan." + }, + + damage: "20×", + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/056.ts b/data-asia/SV/SV6s/056.ts new file mode 100644 index 000000000..7efa5a6ee --- /dev/null +++ b/data-asia/SV/SV6s/056.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Froakie" + }, + + illustrator: "Yuka Morii", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + id: "Froakie mengeluarkan gelembung dari dada dan punggungnya. Pokémon ini menerima serangan menggunakan gelembungnya yang elastis dan mengurangi kerusakan." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menggerombol" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Froakie dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck." + }, + + cost: ["Water"] + }, { + name: { + id: "Melompat Berkeliling" + }, + + damage: 10, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/057.ts b/data-asia/SV/SV6s/057.ts new file mode 100644 index 000000000..e68c5ca65 --- /dev/null +++ b/data-asia/SV/SV6s/057.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Frogadier" + }, + + illustrator: "Hitoshi Ariga", + category: "Pokemon", + hp: 90, + types: ["Water"], + + description: { + id: "Frogadier menggunakan serangan dengan melemparkan batu kecil berlapis gelembung. Memiliki kontrol yang akurat sehingga dapat mengenai kaleng kosong dari jarak 30 m." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Air Pelumpuh" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh." + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/058.ts b/data-asia/SV/SV6s/058.ts new file mode 100644 index 000000000..96af06da9 --- /dev/null +++ b/data-asia/SV/SV6s/058.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Cramorant" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 110, + types: ["Water"], + + description: { + id: "Pokémon yang sama sekali tidak pandai. Energi yang akan dipakai otaknya dibatasi sesedikit mungkin dan sisanya dialihkan untuk bertarung." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Pistol Air" + }, + + damage: 20, + cost: ["Water"] + }, { + name: { + id: "Spit Shoot" + }, + + effect: { + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash, serangan ini memberikan kerusakan sejumlah 120 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/059.ts b/data-asia/SV/SV6s/059.ts new file mode 100644 index 000000000..28a96f26b --- /dev/null +++ b/data-asia/SV/SV6s/059.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Finizen" + }, + + illustrator: "Narumi Sato", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + id: "Ring air Finizen terbentuk dari campuran air laut dan cairan perekat yang dikeluarkan dari lubang di kepalanya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Aqua Slash" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 30, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/060.ts b/data-asia/SV/SV6s/060.ts new file mode 100644 index 000000000..0bbc47ed5 --- /dev/null +++ b/data-asia/SV/SV6s/060.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Palafin" + }, + + illustrator: "Ligton", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + id: "Kemampuan fisiknya tidak jauh berbeda dari Finizen, tetapi Palafin akan berubah wujud dan meningkatkan kekuatannya ketika kawannya berada dalam bahaya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "‌[Ability] Menjadi Perkasa" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat Pokémon ini kembali dari Arena Bertarung ke Cadangan. Pilih 1 lembar Palafin {ex} dari Deck sendiri, lalu tukar dengan kartu ini (Semua kartu yang dikenakan, Token Kerusakan, Kondisi Khusus, efek yang dialami, dan lainnya diteruskan ke Pokémon tersebut). Jika ditukar, kembalikan kartu ini ke Deck. Kemudian, kocok Deck." + } + }, { + name: { + id: "Splash" + }, + + damage: 30, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/061.ts b/data-asia/SV/SV6s/061.ts new file mode 100644 index 000000000..97a19e892 --- /dev/null +++ b/data-asia/SV/SV6s/061.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Palafin ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 340, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + id: "‌[Ability] Jiwa Perkasa" + }, + + effect: { + id: "Kartu ini hanya dapat dimasukkan ke Arena menggunakan efek dari Ability Menjadi Perkasa Palafin." + } + }, { + name: { + id: "Giga Impact" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 250, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/062.ts b/data-asia/SV/SV6s/062.ts new file mode 100644 index 000000000..13a54401f --- /dev/null +++ b/data-asia/SV/SV6s/062.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Iron Bundle" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 90, + types: ["Water"], + + description: { + id: "Pokémon yang mirip dengan objek misterius yang terdaftar dalam sebuah buku kuno. Hanya terdapat 2 laporan kesaksian atas Pokémon ini." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Interjet" + }, + + effect: { + id: "Tukar Pokémon ini dengan Pokémon Cadangan. Setelah itu, lawan menukar Pokémon Bertarungnya dengan Pokémon Cadangan." + }, + + damage: 60, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/063.ts b/data-asia/SV/SV6s/063.ts new file mode 100644 index 000000000..329a5357d --- /dev/null +++ b/data-asia/SV/SV6s/063.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Walking Wake" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 130, + types: ["Water"], + + description: { + id: "Makhluk hidup yang buas dan penuh misteri. Ia diberi nama dari monster air yang tertera pada jurnal ekspedisi kuno." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Aurora Gain" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 20." + }, + + damage: 20, + cost: ["Water"] + }, { + name: { + id: "Merobek Mengombak" + }, + + effect: { + id: "Letakkan paling banyak 9 Token Kerusakan pada Pokémon ini, serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang diletakkan." + }, + + damage: "20×", + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/064.ts b/data-asia/SV/SV6s/064.ts new file mode 100644 index 000000000..96da49805 --- /dev/null +++ b/data-asia/SV/SV6s/064.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ogerpon Topeng Sumur ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + id: "Menangis Sesenggukan" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + damage: 20, + cost: ["Colorless"] + }, { + name: { + id: "Pompa Arus Deras" + }, + + effect: { + id: "Pemain dapat memilih 3 Energi yang dikenakan pada Pokémon ini, lalu mengocoknya kembali ke Deck. Jika dilakukan, serangan ini juga memberikan kerusakan sejumlah 120 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + damage: 100, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/065.ts b/data-asia/SV/SV6s/065.ts new file mode 100644 index 000000000..4d1e9bf9a --- /dev/null +++ b/data-asia/SV/SV6s/065.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Zapdos" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + id: "Zapdos mampu mengendalikan listrik sesukanya. Ada kisah yang menyampaikan bahwa sarangnya ada di dalam awan guntur gelap." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Gelombang Elektromagnetik" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh." + }, + + cost: ["Lightning"] + }, { + name: { + id: "Ledakan Listrik" + }, + + effect: { + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash." + }, + + damage: 190, + cost: ["Lightning", "Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/066.ts b/data-asia/SV/SV6s/066.ts new file mode 100644 index 000000000..9036a5898 --- /dev/null +++ b/data-asia/SV/SV6s/066.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Shinx" + }, + + illustrator: "Yuu Nishida", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + id: "Shinx menghasilkan listrik dengan kontraksi dan regangan ototnya. Ketika terdesak, bulu Pokémon ini bercahaya menyilaukan." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Rasa Ingin Tahu" + }, + + effect: { + id: "Lihat Kartu Pegangan lawan." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Berpijar-pijar" + }, + + damage: 30, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/067.ts b/data-asia/SV/SV6s/067.ts new file mode 100644 index 000000000..309066ecb --- /dev/null +++ b/data-asia/SV/SV6s/067.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Luxio" + }, + + illustrator: "Takumi Wada", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + description: { + id: "Dengan menghubungkan ekornya ke ekor sesamanya, Luxio dapat mengeluarkan serangan listrik yang lebih kuat dari cakarnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Menggerogoti Erat-erat" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + damage: 60, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/068.ts b/data-asia/SV/SV6s/068.ts new file mode 100644 index 000000000..f32e09e9b --- /dev/null +++ b/data-asia/SV/SV6s/068.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Luxray ex" + }, + + illustrator: "PLANETA Yamashita", + category: "Pokemon", + hp: 310, + types: ["Lightning"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + id: "Mata Bersinar Menusuk" + }, + + effect: { + id: "Lihat Kartu Pegangan lawan, pilih 1 kartu di antaranya, lalu buang ke Trash." + }, + + damage: 120, + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Bolt Strike" + }, + + effect: { + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash." + }, + + damage: 250, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/069.ts b/data-asia/SV/SV6s/069.ts new file mode 100644 index 000000000..085be94d4 --- /dev/null +++ b/data-asia/SV/SV6s/069.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Emolga" + }, + + illustrator: "Shimaris Yukichi", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + id: "Emolga terbang bagaikan menari di langit sambil memancarkan listrik. Imut, tetapi merepotkan." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Sky Wave" + }, + + effect: { + id: "Serangan ini juga memberikan kerusakan masing-masing sejumlah 10 kepada semua Pokémon Cadangan kedua pemain. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/070.ts b/data-asia/SV/SV6s/070.ts new file mode 100644 index 000000000..c80257640 --- /dev/null +++ b/data-asia/SV/SV6s/070.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Helioptile" + }, + + illustrator: "Taiga Kayama", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + id: "Helioptile membuat listrik tenaga surya dengan melebarkan jumbai di kepalanya dan menggunakannya untuk mengeluarkan jurus listrik yang kuat." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mengumpulkan" + }, + + effect: { + id: "Ambil 1 kartu dari atas Deck sendiri." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Berpijar-pijar" + }, + + damage: 10, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/071.ts b/data-asia/SV/SV6s/071.ts new file mode 100644 index 000000000..8cee82620 --- /dev/null +++ b/data-asia/SV/SV6s/071.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Heliolisk" + }, + + illustrator: "Atsuya Uki", + category: "Pokemon", + hp: 100, + types: ["Lightning"], + + description: { + id: "Dahulu kala, Heliolisk menjadi Pokémon kesayangan di negara padang pasir yang telah musnah. Mereka datang ke Daerah Galar bersama dengan harta pusaka." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Wild Volt" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 20." + }, + + damage: 70, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/072.ts b/data-asia/SV/SV6s/072.ts new file mode 100644 index 000000000..a1a38d758 --- /dev/null +++ b/data-asia/SV/SV6s/072.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Morpeko" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + id: "Karena kantong lambungnya kecil, Pokémon ini akan segera merasa lapar jika tidak selalu memakan biji yang dimasukkan di kantongnya." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Mencari Kudapan" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri. Lihat 1 kartu dari atas Deck sendiri, lalu kembalikan ke posisi semula. Pemain dapat membuang kartu tersebut ke Trash." + } + }], + + attacks: [{ + name: { + id: "Memungut dan Mengenakan" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Energi Dasar dari Trash sendiri, lalu kenakan sesukanya pada Pokémon sendiri." + }, + + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/073.ts b/data-asia/SV/SV6s/073.ts new file mode 100644 index 000000000..9401e5563 --- /dev/null +++ b/data-asia/SV/SV6s/073.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Tadbulb" + }, + + illustrator: "nisimono", + category: "Pokemon", + hp: 50, + types: ["Lightning"], + + description: { + id: "Tadbulb mengambang menggunakan listrik yang tersimpan di tubuhnya. Pokémon ini mengambang lebih tinggi dibandingkan biasanya saat bercuaca awan petir." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Serudukan" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + id: "Electro Ball" + }, + + damage: 20, + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/074.ts b/data-asia/SV/SV6s/074.ts new file mode 100644 index 000000000..ce92ad25e --- /dev/null +++ b/data-asia/SV/SV6s/074.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Bellibolt" + }, + + illustrator: "Mina Nakai", + category: "Pokemon", + hp: 140, + types: ["Lightning"], + + description: { + id: "Meskipun terlihat seperti bola mata, sebenarnya itu adalah organ pelepasan listrik Bellibolt yang digunakan untuk menembakkan listrik yang dihasilkan dari pusar dinamo di perutnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Sengatan Listrik" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh." + }, + + damage: 50, + cost: ["Lightning", "Colorless"] + }, { + name: { + id: "Lightning Ball" + }, + + damage: 130, + cost: ["Lightning", "Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/075.ts b/data-asia/SV/SV6s/075.ts new file mode 100644 index 000000000..f9e314c73 --- /dev/null +++ b/data-asia/SV/SV6s/075.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Wattrel" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + id: "Wattrel membuat sarangnya pada tebing di pesisir pantai. Sarang Pokémon ini populer dengan tekstur dan rasanya yang renyah nan unik." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Sengatan Listrik" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh." + }, + + damage: 10, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/076.ts b/data-asia/SV/SV6s/076.ts new file mode 100644 index 000000000..f93b4a94c --- /dev/null +++ b/data-asia/SV/SV6s/076.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Kilowattrel" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + id: "Kilowattrel menyimpan listrik yang dibuat menggunakan sayapnya di kantong tenggorokannya. Pokémon ini tidak pandai berenang karena kandungan minyak pada bulunya sangat sedikit." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Muatan Tenaga Angin" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, kerusakan akibat serangan yang digunakan oleh Pokémon ini kepada Pokémon Bertarung lawan bertambah sejumlah 120." + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + id: "Strong Volt" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 100, + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/077.ts b/data-asia/SV/SV6s/077.ts new file mode 100644 index 000000000..fe7055036 --- /dev/null +++ b/data-asia/SV/SV6s/077.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Iron Thorns ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 230, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Initialize" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena Bertarung, Pokémon yang memiliki Peraturan (selain Pokémon Futur) di Arena kedua pemain menjadi tidak memiliki Ability." + } + }], + + attacks: [{ + name: { + id: "Bolt Cyclone" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu pindahkan ke Pokémon Cadangan." + }, + + damage: 140, + cost: ["Lightning", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/078.ts b/data-asia/SV/SV6s/078.ts new file mode 100644 index 000000000..0dc24332d --- /dev/null +++ b/data-asia/SV/SV6s/078.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Clefairy" + }, + + illustrator: "Sanosuke Sakuma", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + id: "Clefairy berkumpul dan menari bersama kawanannya saat malam bulan purnama. Daerah sekitarnya diselimuti medan magnet yang aneh." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Moon Kick" + }, + + damage: 40, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/079.ts b/data-asia/SV/SV6s/079.ts new file mode 100644 index 000000000..2d18d548a --- /dev/null +++ b/data-asia/SV/SV6s/079.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Clefable" + }, + + illustrator: "satoma", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + id: "Pendengarannya bagus. Ia dapat membedakan dengan baik bunyi jarum yang jatuh pada tempat berjarak 1 km jauhnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Goyang Jari" + }, + + effect: { + id: "Pilih 1 serangan yang dimiliki Pokémon Bertarung lawan, lalu gunakan sebagai serangan ini." + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Magical Shot" + }, + + damage: 100, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/080.ts b/data-asia/SV/SV6s/080.ts new file mode 100644 index 000000000..dd94b8822 --- /dev/null +++ b/data-asia/SV/SV6s/080.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Abra" + }, + + illustrator: "Kariya", + category: "Pokemon", + hp: 40, + types: ["Psychic"], + + description: { + id: "Abra menggunakan kekuatan psikokinesisnya sambil tidur. Isi mimpinya dipengaruhi oleh kekuatan yang digunakan oleh Pokémon ini." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Teleporter" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini ada di Arena Bertarung. Kocok kembali Pokémon ini dan semua kartu yang dikenakannya ke Deck sendiri." + } + }], + + attacks: [{ + name: { + id: "Beam" + }, + + damage: 10, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/081.ts b/data-asia/SV/SV6s/081.ts new file mode 100644 index 000000000..5c72c7517 --- /dev/null +++ b/data-asia/SV/SV6s/081.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Kadabra" + }, + + illustrator: "Uninori", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + description: { + id: "Kadabra tidur dalam kondisi tetap mengambang di udara menggunakan kekuatan psikokinesis. Pokémon ini menggunakan ekornya yang membal sebagai bantal." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Psikis" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon Bertarung lawan." + }, + + damage: "10+", + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/082.ts b/data-asia/SV/SV6s/082.ts new file mode 100644 index 000000000..0710250c4 --- /dev/null +++ b/data-asia/SV/SV6s/082.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Alakazam" + }, + + illustrator: "Masako Tomii", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + description: { + id: "Alakazam memiliki kecerdasan yang sangat tinggi. Ada yang mengatakan bahwa Pokémon ini ingat segala kejadian yang terjadi sejak lahir hingga mati." + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Strange Hack" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing. Pilih sesukanya Token Kerusakan yang dimiliki Pokémon di Arena lawan, lalu pindahkan sesukanya ke Pokémon di Arena lawan." + }, + + cost: ["Psychic"] + }, { + name: { + id: "Psikis" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 50 untuk tiap Energi yang dikenakan pada Pokémon Bertarung lawan." + }, + + damage: "10+", + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/083.ts b/data-asia/SV/SV6s/083.ts new file mode 100644 index 000000000..c06343ad2 --- /dev/null +++ b/data-asia/SV/SV6s/083.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Girafarig" + }, + + illustrator: "Shinji Kanda", + category: "Pokemon", + hp: 100, + types: ["Psychic"], + + description: { + id: "Terdapat kepala kecil di ekor Girafarig. Bagian ini memiliki insting untuk menggigit musuh yang mendekat dari belakang." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Yang Mana Pun Kepala" + }, + + effect: { + id: "Serangan ini juga memberikan kerusakan sejumlah 10 kepada 1 Pokémon Cadangan sendiri. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/084.ts b/data-asia/SV/SV6s/084.ts new file mode 100644 index 000000000..b9be89942 --- /dev/null +++ b/data-asia/SV/SV6s/084.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Farigiraf" + }, + + illustrator: "Dsuke", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + description: { + id: "Sambil melindungi kepala utamanya menggunakan kepala ekornya yang keras, Farigiraf memutar-mutar lehernya dan menyeruduk." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Midrumble" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 40 untuk tiap Pokémon Stage 1 di Arena sendiri." + }, + + damage: "40×", + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Telepati Menyeramkan" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing." + }, + + damage: 80, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/085.ts b/data-asia/SV/SV6s/085.ts new file mode 100644 index 000000000..91db4ea37 --- /dev/null +++ b/data-asia/SV/SV6s/085.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Chimecho" + }, + + illustrator: "Mousho", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + id: "Suara Pokémon ini menggema di rongga tubuhnya dan menghasilkan warna nada yang indah untuk mengejutkan dan mengusir musuh." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Hyper Voice" + }, + + damage: 20, + cost: ["Psychic"] + }, { + name: { + id: "Bunyi Lonceng Pulang" + }, + + effect: { + id: "Pilih 1 Pokémon Cadangan sendiri, lalu kocok kembali Pokémon tersebut dan semua kartu yang dikenakannya ke Deck." + }, + + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/086.ts b/data-asia/SV/SV6s/086.ts new file mode 100644 index 000000000..55de00fbf --- /dev/null +++ b/data-asia/SV/SV6s/086.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Flabébé" + }, + + illustrator: "Yukiko Baba", + category: "Pokemon", + hp: 40, + types: ["Psychic"], + + description: { + id: "Flabébé yang menunggangi bunga merah. Begitu lahir, ia langsung terbang berkeliling untuk mencari bunga favoritnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Memulihkan Luka" + }, + + effect: { + id: "Pulihkan HP 1 Pokémon sendiri sejumlah 30." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Angin Peri" + }, + + damage: 10, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/087.ts b/data-asia/SV/SV6s/087.ts new file mode 100644 index 000000000..c77d415c6 --- /dev/null +++ b/data-asia/SV/SV6s/087.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Floette" + }, + + illustrator: "mingo", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + id: "Floette mengirimkan energi yang dinaikkan ke gelombang merah kepada bunga dan menarik potensinya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Tugas Kecil" + }, + + effect: { + id: "Pilih paling banyak 3 lembar Energi Dasar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Serangan Berputar" + }, + + damage: 40, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/088.ts b/data-asia/SV/SV6s/088.ts new file mode 100644 index 000000000..6e1e5afa6 --- /dev/null +++ b/data-asia/SV/SV6s/088.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Florges" + }, + + illustrator: "Ligton", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + description: { + id: "Dikabarkan taman bunga buatan Florges tanpa henti mengalirkan kekuatan penenang jiwa dan raga." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + id: "Jeratan Menggoda" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri. Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, ubah kondisi Pokémon Bertarung yang baru menjadi Pusing." + } + }], + + attacks: [{ + name: { + id: "Magical Shot" + }, + + damage: 120, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/089.ts b/data-asia/SV/SV6s/089.ts new file mode 100644 index 000000000..c671805ef --- /dev/null +++ b/data-asia/SV/SV6s/089.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Swirlix" + }, + + illustrator: "Akira Komayama", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + + description: { + id: "Dalam sehari, Swirlix memakan gula seberat berat badannya. Jika kekurangan gula, Pokémon ini akan menjadi sangat cemberut." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Orkes Festival" + }, + + effect: { + id: "Jika ada Lokasi Festival di Arena, Pokémon ini dapat menggunakan serangan yang dimiliki 2 kali berturut-turut. (Jika Pokémon Bertarung lawan KO akibat serangan pertama, gunakan serangan kedua setelah Pokémon Bertarung berikutnya masuk.)" + } + }], + + attacks: [{ + name: { + id: "Letakkan Diam-diam" + }, + + effect: { + id: "Letakkan 2 Token Kerusakan pada 1 Pokémon lawan." + }, + + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/090.ts b/data-asia/SV/SV6s/090.ts new file mode 100644 index 000000000..046dc4c1b --- /dev/null +++ b/data-asia/SV/SV6s/090.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Slurpuff" + }, + + illustrator: "mingo", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + id: "Slurpuff membaui bau badan untuk mengetahui kondisi fisik dan mental. Diharapkan kemampuan ini dapat diaplikasikan di bidang medis." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Jilat-jilat" + }, + + effect: { + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 90 untuk tiap lemparan dengan hasil sisi depan. Jika semuanya sisi belakang, ubah kondisi Pokémon Bertarung lawan menjadi Pusing." + }, + + damage: "90×", + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/091.ts b/data-asia/SV/SV6s/091.ts new file mode 100644 index 000000000..4ba86a296 --- /dev/null +++ b/data-asia/SV/SV6s/091.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Sandygast" + }, + + illustrator: "Asako Ito", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + id: "Sandygast membutakan mangsanya dengan pasir dan hendak mendekatinya pada kesempatan itu, tetapi mangsa tersebut melarikan diri karena pergerakan Pokémon ini lambat." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Semprotan Pasir" + }, + + effect: { + id: "Pada giliran lawan berikutnya, saat Pokémon yang menerima serangan ini menggunakan serangan, lawan melempar koin 1 kali. Jika hasilnya sisi belakang, serangan tersebut gagal." + }, + + damage: 10, + cost: ["Psychic"] + }, { + name: { + id: "Hollow Shot" + }, + + damage: 30, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/092.ts b/data-asia/SV/SV6s/092.ts new file mode 100644 index 000000000..9656c6d8d --- /dev/null +++ b/data-asia/SV/SV6s/092.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Palossand" + }, + + illustrator: "Uta", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + + description: { + id: "Palossand melontarkan tulang makhluk hidup yang telah diisap habis energi kehidupannya dari ceruk di lengannya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Semprotan Pasir" + }, + + effect: { + id: "Pada giliran lawan berikutnya, saat Pokémon yang menerima serangan ini menggunakan serangan, lawan melempar koin 1 kali. Jika hasilnya sisi belakang, serangan tersebut gagal." + }, + + damage: 60, + cost: ["Psychic", "Colorless", "Colorless"] + }, { + name: { + id: "Sand Hollow" + }, + + damage: 150, + cost: ["Psychic", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/093.ts b/data-asia/SV/SV6s/093.ts new file mode 100644 index 000000000..25de92db5 --- /dev/null +++ b/data-asia/SV/SV6s/093.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Enamorus" + }, + + illustrator: "DOM", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + id: "Jika Enamorus datang terbang melampaui laut, artinya musim dingin yang ganas telah berakhir. Ada kisah tentang cinta kasih yang memekarkan hidup baru di Daerah Hisui." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Heart Sign" + }, + + damage: 30, + cost: ["Colorless"] + }, { + name: { + id: "Love Resonance" + }, + + effect: { + id: "Jika di Arena sendiri ada Pokémon yang memiliki tipe yang sama dengan Pokémon di Arena lawan, kerusakan yang diberikan bertambah sejumlah 120." + }, + + damage: "80+", + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/094.ts b/data-asia/SV/SV6s/094.ts new file mode 100644 index 000000000..feea8d735 --- /dev/null +++ b/data-asia/SV/SV6s/094.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Scream Tail ex" + }, + + illustrator: "akagi", + category: "Pokemon", + hp: 190, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + id: "Jeritan" + }, + + effect: { + id: "Serangan ini hanya dapat digunakan pada giliran pertama Pemain Kedua. Pada giliran lawan berikutnya, lawan tidak dapat memainkan Supporter dari Kartu Pegangan." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Mengunyah" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash." + }, + + damage: 120, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/095.ts b/data-asia/SV/SV6s/095.ts new file mode 100644 index 000000000..9813d82ff --- /dev/null +++ b/data-asia/SV/SV6s/095.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Munkidori" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + id: "Ia memancarkan kekuatan psikokinesisnya yang menyebabkan pusing akut dan mempermainkan musuhnya sesuka hati dari tempat yang aman." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Adrenaline Brain" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini mengenakan Energi {Kegelapan}. Pilih paling banyak 3 Token Kerusakan yang dimiliki 1 Pokémon di Arena sendiri, lalu pindahkan ke 1 Pokémon di Arena lawan." + } + }], + + attacks: [{ + name: { + id: "Psychotrip" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing." + }, + + damage: 60, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/096.ts b/data-asia/SV/SV6s/096.ts new file mode 100644 index 000000000..bc29aa854 --- /dev/null +++ b/data-asia/SV/SV6s/096.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Fezandipiti" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + id: "Ia merebut hati dan memikat manusia serta Pokémon dengan mengepakkan sayapnya yang ayu dan menebarkan feromon." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Adrenaline Pheromone" + }, + + effect: { + id: "Jika Pokémon ini mengenakan Energi {Kegelapan}, saat Pokémon ini menerima kerusakan akibat serangan, pemain melempar koin 1 kali. Jika hasilnya sisi depan, Pokémon ini tidak menerima kerusakan tersebut." + } + }], + + attacks: [{ + name: { + id: "Energy Feather" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon ini." + }, + + damage: "30×", + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/097.ts b/data-asia/SV/SV6s/097.ts new file mode 100644 index 000000000..d24519d80 --- /dev/null +++ b/data-asia/SV/SV6s/097.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Sandshrew" + }, + + illustrator: "Tetsu Kayama", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + id: "Meski terjatuh dari tempat setinggi apa pun, ia dapat memantul dan terselamatkan dengan membulatkan tubuhnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menggelinding" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + id: "Cakaran Ganda" + }, + + effect: { + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "20×", + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/098.ts b/data-asia/SV/SV6s/098.ts new file mode 100644 index 000000000..03384002b --- /dev/null +++ b/data-asia/SV/SV6s/098.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Sandslash" + }, + + illustrator: "Nisota Niso", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + + description: { + id: "Durinya adalah kulitnya yang mengeras. Ia membulatkan tubuhnya dan menyerang dengan menusuk lawannya menggunakan duri-durinya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Memasang Cakar" + }, + + damage: 30, + cost: ["Colorless"] + }, { + name: { + id: "Gempa" + }, + + effect: { + id: "Serangan ini juga memberikan kerusakan masing-masing sejumlah 10 kepada semua Pokémon Cadangan sendiri. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + damage: 120, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/099.ts b/data-asia/SV/SV6s/099.ts new file mode 100644 index 000000000..2487802e9 --- /dev/null +++ b/data-asia/SV/SV6s/099.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Hisuian Growlithe" + }, + + illustrator: "Whisker", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + id: "Growlithe berpatroli secara berpasangan di wilayah teritorialnya. Diduga bahwa bercampurnya unsur batuan beku vulkanis di bulunya terjadi karena aktivitas gunung berapi." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Bakar Bulat-bulat" + }, + + effect: { + id: "Buang Stadium yang ada di Arena ke Trash." + } + }, { + name: { + id: "Menerjang" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 10." + }, + + damage: 40, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/100.ts b/data-asia/SV/SV6s/100.ts new file mode 100644 index 000000000..8f9584e6d --- /dev/null +++ b/data-asia/SV/SV6s/100.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Hisuian Arcanine" + }, + + illustrator: "SIE NANAHARA", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + id: "Arcanine mengenakan api membara di taringnya dan menerkam. Walau tubuhnya besar, Pokémon ini melakukan gerak tipu dengan cemerlang. Wujudnya saat mempermainkan musuh bagaikan peragaan tari." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Pride Fang" + }, + + effect: { + id: "Jika Pokémon Cadangan sendiri memiliki Token Kerusakan, kerusakan yang diberikan bertambah sejumlah 90." + }, + + damage: "30+" + }, { + name: { + id: "Kobaran Api Penghangus" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar." + }, + + damage: 90, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/101.ts b/data-asia/SV/SV6s/101.ts new file mode 100644 index 000000000..dc3130aa4 --- /dev/null +++ b/data-asia/SV/SV6s/101.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Nosepass" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + id: "Ketika terpojok, adakalanya ia melindungi dirinya dengan meningkatkan kekuatan magnetnya dan menarik bongkahan besi yang ada di sekitarnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Power Rush" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi belakang, pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 60, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/102.ts b/data-asia/SV/SV6s/102.ts new file mode 100644 index 000000000..35ea1908e --- /dev/null +++ b/data-asia/SV/SV6s/102.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Probopass" + }, + + illustrator: "OKUBO", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + + description: { + id: "Dikarenakan ia mengeluarkan daya magnet yang kuat, barang elektronik yang ada di dekatnya menjadi tidak bisa digunakan." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Assault Laser" + }, + + effect: { + id: "Jika Pokémon Bertarung lawan mengenakan Pokémon Tool, kerusakan yang diberikan bertambah sejumlah 80." + }, + + damage: "80+", + cost: ["Colorless", "Colorless", "Colorless"] + }, { + name: { + id: "Land Crush" + }, + + damage: 120, + cost: ["Fighting", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/103.ts b/data-asia/SV/SV6s/103.ts new file mode 100644 index 000000000..f77726371 --- /dev/null +++ b/data-asia/SV/SV6s/103.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Timburr" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + id: "Timburr bertarung dengan mengayun-ayunkan balok kayu. Jika ia dapat mengangkat balok kayu yang berat tanpa kesulitan, itu pertanda evolusinya sudah dekat." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Pukulan Sekuat Tenaga" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi belakang, serangan ini gagal." + }, + + damage: 40, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/104.ts b/data-asia/SV/SV6s/104.ts new file mode 100644 index 000000000..b4de63652 --- /dev/null +++ b/data-asia/SV/SV6s/104.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Gurdurr" + }, + + illustrator: "Aya Kusube", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + description: { + id: "Tubuh Gurdurr yang memiliki otot terlatih tidak akan tergerak sedikit pun meskipun sekelompok pegulat profesional bersatu dan menyerangnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Kepalan Tinju" + }, + + damage: 20, + cost: ["Fighting"] + }, { + name: { + id: "Kekuatan Super" + }, + + effect: { + id: "Pemain dapat membuat kerusakan yang diberikan bertambah sejumlah 30. Jika dilakukan, Pokémon ini juga menerima kerusakan sejumlah 30." + }, + + damage: "50+", + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/105.ts b/data-asia/SV/SV6s/105.ts new file mode 100644 index 000000000..1397bee22 --- /dev/null +++ b/data-asia/SV/SV6s/105.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Conkeldurr" + }, + + illustrator: "Takeshi Nakamura", + category: "Pokemon", + hp: 180, + types: ["Fighting"], + + description: { + id: "Conkeldurr menguasai teknik mengayun-ayunkan beton tanpa mengandalkan tenaga dengan memanfaatkan kekuatan sentrifugal secara mahir." + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Mengamuk" + }, + + effect: { + id: "Ubah kondisi Pokémon ini menjadi Pusing." + }, + + damage: 80, + cost: ["Fighting"] + }, { + name: { + id: "Guts Swing" + }, + + effect: { + id: "Jika Pokémon ini mengalami Kondisi Khusus, serangan ini dapat digunakan meskipun Pokémon ini tidak mengenakan Energi yang dibutuhkan untuk menggunakan serangan ini." + }, + + damage: 250, + cost: ["Fighting", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/106.ts b/data-asia/SV/SV6s/106.ts new file mode 100644 index 000000000..a23afb1e7 --- /dev/null +++ b/data-asia/SV/SV6s/106.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Greninja ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 310, + types: ["Fighting"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + id: "Pisau Shinobi" + }, + + effect: { + id: "Pemain dapat memilih 1 kartu sesukanya dari Deck sendiri, lalu menambahkannya ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + damage: 170, + cost: ["Water"] + }, { + name: { + id: "Pukulan Beruntun Mengganda" + }, + + effect: { + id: "Buang 2 Energi yang dikenakan pada Pokémon ini ke Trash, serangan ini memberikan kerusakan masing-masing sejumlah 120 kepada 2 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/107.ts b/data-asia/SV/SV6s/107.ts new file mode 100644 index 000000000..1c0bcde83 --- /dev/null +++ b/data-asia/SV/SV6s/107.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Hawlucha" + }, + + illustrator: "Shigenori Negishi", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + id: "Hawlucha hidup tenang tanpa membentuk kelompok. Primeape yang membuat kegaduhan dengan gerombolannya adalah musuh alami Pokémon ini sehingga selalu terjadi perselisihan." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Side Counter" + }, + + effect: { + id: "Jika sisa Kartu Point sendiri lebih banyak dari sisa Kartu Point lawan, kerusakan yang diberikan bertambah sejumlah 90." + }, + + damage: "50+", + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/108.ts b/data-asia/SV/SV6s/108.ts new file mode 100644 index 000000000..128a7a324 --- /dev/null +++ b/data-asia/SV/SV6s/108.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Glimmet" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + id: "Kristal zat racun Glimmet terlihat seperti kelopak bunga. Pokémon ini melindungi diri dengan menyebarkan racun layaknya serbuk bunga." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Rock Shot" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/109.ts b/data-asia/SV/SV6s/109.ts new file mode 100644 index 000000000..813eb2eb1 --- /dev/null +++ b/data-asia/SV/SV6s/109.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Glimmora" + }, + + illustrator: "Kazumasa Yasukuni", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + id: "Belakangan ini diketahui bahwa kelopak bunga energi racun Glimmora yang mengkristal mirip dengan Permata Terastal." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Racun Syaraf" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Racun dan Lumpuh." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Venoshock" + }, + + effect: { + id: "Jika Pokémon Bertarung lawan mengalami kondisi Racun, kerusakan yang diberikan bertambah sejumlah 100." + }, + + damage: "30+", + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/110.ts b/data-asia/SV/SV6s/110.ts new file mode 100644 index 000000000..eb39960a8 --- /dev/null +++ b/data-asia/SV/SV6s/110.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ting-Lu" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + + description: { + id: "Ting-Lu menurunkan kepalanya yang sangat berat secara perlahan sehingga menyebabkan retakan tanah yang besar sedalam 50 m." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Ground Crack" + }, + + effect: { + id: "Jika ada Stadium di Arena, serangan ini juga memberikan kerusakan masing-masing sejumlah 30 kepada semua Pokémon Cadangan lawan, lalu buang Stadium tersebut ke Trash. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + damage: 30, + cost: ["Fighting"] + }, { + name: { + id: "Hantaman Penuh Tenaga" + }, + + damage: 110, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/111.ts b/data-asia/SV/SV6s/111.ts new file mode 100644 index 000000000..e9c3189eb --- /dev/null +++ b/data-asia/SV/SV6s/111.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Okidogi" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + id: "Pokémon yang kasar dan mudah marah. Ia memukul habis segalanya dengan mengayunkan rantai di lehernya." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Adrenaline Power" + }, + + effect: { + id: "Jika Pokémon ini mengenakan Energi {Kegelapan}, HP maksimal Pokémon ini bertambah sejumlah 100 dan kerusakan akibat serangan yang digunakan oleh Pokémon ini kepada Pokémon Bertarung lawan bertambah sejumlah 100." + } + }], + + attacks: [{ + name: { + id: "Good Punch" + }, + + damage: 70, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/112.ts b/data-asia/SV/SV6s/112.ts new file mode 100644 index 000000000..b9ff521fe --- /dev/null +++ b/data-asia/SV/SV6s/112.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ogerpon Topeng Fondasi ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Fighting"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Kuda-kuda Fondasi" + }, + + effect: { + id: "Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon lawan yang memiliki Ability." + } + }], + + attacks: [{ + name: { + id: "Memecah Penuh Tenaga" + }, + + effect: { + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan, Resistansi, dan efek yang sedang dialami Pokémon Bertarung lawan." + }, + + damage: 140, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/113.ts b/data-asia/SV/SV6s/113.ts new file mode 100644 index 000000000..4fc802044 --- /dev/null +++ b/data-asia/SV/SV6s/113.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Poochyena" + }, + + illustrator: "Shibuzoh.", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + id: "Poochyena mengejar-ngejar mangsa bersama gerombolannya. Mereka menghabisi mangsa tersebut ketika telah lelah, tetapi terkadang mereka kabur karena dilawan balik." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Step Beruntun" + }, + + effect: { + id: "Lempar koin hingga hasilnya sisi belakang. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "10×", + cost: ["Darkness"] + }, { + name: { + id: "Taring Kegelapan" + }, + + damage: 20, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/114.ts b/data-asia/SV/SV6s/114.ts new file mode 100644 index 000000000..525bb9d47 --- /dev/null +++ b/data-asia/SV/SV6s/114.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Mightyena" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 120, + types: ["Darkness"], + + description: { + id: "Ketika bau mangsa yang berada di kejauhan tercium, gerombolan Pokémon ini akan mulai bergerak secara serentak sesuai perintah pemimpinnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Berburu Menggerombol" + }, + + effect: { + id: "Jika ada Mightyena di Cadangan sendiri, kerusakan yang diberikan bertambah sejumlah 90." + }, + + damage: "30+", + cost: ["Darkness"] + }, { + name: { + id: "Memojokkan" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + damage: 60, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/115.ts b/data-asia/SV/SV6s/115.ts new file mode 100644 index 000000000..758f080fd --- /dev/null +++ b/data-asia/SV/SV6s/115.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Venipede" + }, + + illustrator: "Tomokazu Komiya", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + + description: { + id: "Venipede adalah kerabat dekat Sizzlipede, tetapi jika keduanya bertemu, akan terjadi pertengkaran hebat." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Cairan Racun" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun." + }, + + cost: ["Darkness"] + }, { + name: { + id: "Serangan Berputar" + }, + + damage: 40, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/116.ts b/data-asia/SV/SV6s/116.ts new file mode 100644 index 000000000..4f4121bb5 --- /dev/null +++ b/data-asia/SV/SV6s/116.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Whirlipede" + }, + + illustrator: "Krgc", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + + description: { + id: "Whirlipede berputar dengan kecepatan tinggi dan menabrakkan dirinya kepada lawannya. Kecepatan maksimal Pokémon ini mencapai sekitar 100 km/jam." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Poison Circle" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun. Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + cost: ["Darkness"] + }, { + name: { + id: "Serangan Berputar" + }, + + damage: 60, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/117.ts b/data-asia/SV/SV6s/117.ts new file mode 100644 index 000000000..a1133dcb2 --- /dev/null +++ b/data-asia/SV/SV6s/117.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Scolipede" + }, + + illustrator: "Shiburingaru", + category: "Pokemon", + hp: 170, + types: ["Darkness"], + + description: { + id: "Scolipede menangkap mangsa menggunakan cakar di lehernya, lalu menghantamkan mereka ke permukaan tanah begitu saja, dan menusukkan duri beracunnya." + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Satu Tikaman Kejam" + }, + + effect: { + id: "Letakkan Token Kerusakan hingga sisa HP Pokémon Bertarung lawan menjadi sejumlah 10." + }, + + cost: ["Darkness", "Colorless"] + }, { + name: { + id: "Bom Limbah" + }, + + damage: 160, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/118.ts b/data-asia/SV/SV6s/118.ts new file mode 100644 index 000000000..732b073a8 --- /dev/null +++ b/data-asia/SV/SV6s/118.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Brute Bonnet" + }, + + illustrator: "danciao", + category: "Pokemon", + hp: 120, + types: ["Darkness"], + + description: { + id: "Terdapat kemungkinan bahwa Pokémon ini merupakan makhluk hidup yang tertera sebagai Brute Bonnet dalam suatu buku." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menyemprotkan Racun" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun." + }, + + cost: ["Darkness"] + }, { + name: { + id: "Memukul Tanpa Henti" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 50 untuk tiap Token Kerusakan yang dimiliki Pokémon Bertarung lawan." + }, + + damage: "50+", + cost: ["Darkness", "Darkness", "Darkness"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/119.ts b/data-asia/SV/SV6s/119.ts new file mode 100644 index 000000000..8da6a476e --- /dev/null +++ b/data-asia/SV/SV6s/119.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Skarmory" + }, + + illustrator: "toi8", + category: "Pokemon", + hp: 120, + types: ["Metal"], + + description: { + id: "Bulu rontok Skarmory dapat dibuat menjadi pedang sehingga Pokémon ini populer sebagai desain lambang kebesaran." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Cutter Wind" + }, + + damage: 30, + cost: ["Metal"] + }, { + name: { + id: "Badai Besar" + }, + + effect: { + id: "Buang Stadium yang ada di Arena ke Trash." + }, + + damage: 90, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/120.ts b/data-asia/SV/SV6s/120.ts new file mode 100644 index 000000000..a5f79da62 --- /dev/null +++ b/data-asia/SV/SV6s/120.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Aron" + }, + + illustrator: "Gapao", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + id: "Zirah baja yang melindungi tubuh Aron terbentuk berkat memakan bijih besi dan kadang rel kereta." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Serudukan Nekat" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 10." + }, + + damage: 20, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/121.ts b/data-asia/SV/SV6s/121.ts new file mode 100644 index 000000000..1b144623e --- /dev/null +++ b/data-asia/SV/SV6s/121.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Lairon" + }, + + illustrator: "takashi shiraishi", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + description: { + id: "Gunung yang ditinggali Lairon kaya dengan mata air dan bijih besi sehingga sering terjadi perselisihan dengan manusia." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Serudukan Baja" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 20." + }, + + damage: 40, + cost: ["Metal"] + }, { + name: { + id: "Metal Claw" + }, + + damage: 60, + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/122.ts b/data-asia/SV/SV6s/122.ts new file mode 100644 index 000000000..7b18ac90c --- /dev/null +++ b/data-asia/SV/SV6s/122.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Aggron" + }, + + illustrator: "Dsuke", + category: "Pokemon", + hp: 180, + types: ["Metal"], + + description: { + id: "Aggron menghabisi musuhnya dengan menabrakkan tubuhnya sambil menyarangkan tanduk tajam yang dapat menembus papan besi yang sangat tebal sekalipun." + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Angry Slam" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 50 untuk tiap Pokémon yang memiliki Token Kerusakan di Arena sendiri." + }, + + damage: "50×", + cost: ["Metal"] + }, { + name: { + id: "Guard Claw" + }, + + effect: { + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 50." + }, + + damage: 120, + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/123.ts b/data-asia/SV/SV6s/123.ts new file mode 100644 index 000000000..c6a7c99b5 --- /dev/null +++ b/data-asia/SV/SV6s/123.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Heatran" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 140, + types: ["Metal"], + + description: { + id: "Heatran hidup di gua vulkanis. Pokémon ini menanamkan cakarnya yang berbentuk X dan merayap di dinding dan langit-langit." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Tubuh Berpijar" + }, + + effect: { + id: "Saat Pokémon ini ada di Arena Bertarung dan menerima kerusakan akibat serangan dari Pokémon lawan, ubah kondisi Pokémon yang telah menggunakan serangan menjadi Luka Bakar." + } + }], + + attacks: [{ + name: { + id: "Steel Burst" + }, + + effect: { + id: "Buang semua Energi {Logam} yang dikenakan pada Pokémon ini ke Trash, serangan ini memberikan kerusakan sejumlah 50 untuk tiap lembarnya." + }, + + damage: "50×", + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/124.ts b/data-asia/SV/SV6s/124.ts new file mode 100644 index 000000000..70438c766 --- /dev/null +++ b/data-asia/SV/SV6s/124.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Varoom" + }, + + illustrator: "Shigenori Negishi", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + id: "Tubuh baja Varoom adalah tubuh aslinya. Pokémon ini menempel di batu, mengubah kandungan batu tersebut menjadi energinya, lalu beraktivitas." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Metal Coating" + }, + + effect: { + id: "Pilih 1 lembar Energi Dasar {Logam} dari Trash sendiri, lalu kenakan pada Pokémon ini." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Menyeruduk" + }, + + damage: 50, + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/125.ts b/data-asia/SV/SV6s/125.ts new file mode 100644 index 000000000..8550b3037 --- /dev/null +++ b/data-asia/SV/SV6s/125.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Revavroom" + }, + + illustrator: "Hasuno", + category: "Pokemon", + hp: 140, + types: ["Metal"], + + description: { + id: "Revavroom mengintimidasi lawan dengan suara knalpot. Pokémon ini mengeluarkan lidah dari mulut silindernya dan menyebarkan cairan beracun." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Unggul Kembali" + }, + + effect: { + id: "Jika pada giliran lawan sebelumnya, ada Pokémon sendiri yang KO karena kerusakan akibat serangan, kerusakan yang diberikan bertambah sejumlah 90." + }, + + damage: "30+", + cost: ["Colorless"] + }, { + name: { + id: "Berlari" + }, + + effect: { + id: "Lempar koin hingga hasilnya sisi belakang. Serangan ini memberikan kerusakan sejumlah 100 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "100×", + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/126.ts b/data-asia/SV/SV6s/126.ts new file mode 100644 index 000000000..0e0792059 --- /dev/null +++ b/data-asia/SV/SV6s/126.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Applin" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 40, + types: ["Dragon"], + + description: { + id: "Applin hidup di dalam buah apel. Jika apelnya habis, Pokémon ini akan melemah karena kehilangan cairan tubuhnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mencari Teman" + }, + + effect: { + id: "Pilih 1 lembar Pokémon dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Tubrukan Menggelinding" + }, + + damage: 30, + cost: ["Grass", "Fire"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/127.ts b/data-asia/SV/SV6s/127.ts new file mode 100644 index 000000000..745830729 --- /dev/null +++ b/data-asia/SV/SV6s/127.ts @@ -0,0 +1,38 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Dipplin" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 80, + types: ["Dragon"], + + description: { + id: "Boah luar yang mengeluarkan kepala dan Boah dalam yang mengeluarkan ekor saling membantu dan tinggal bersama di dalam apel." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Sirop Nektar Penangkap" + }, + + effect: { + id: "Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, berikan kerusakan sejumlah 70 kepada Pokémon Bertarung yang baru." + }, + + cost: ["Grass", "Fire"] + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/128.ts b/data-asia/SV/SV6s/128.ts new file mode 100644 index 000000000..cc5747b8a --- /dev/null +++ b/data-asia/SV/SV6s/128.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Dreepy" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 70, + types: ["Dragon"], + + description: { + id: "Dikatakan bahwa alasan Dreepy menggigit erat Clauncher meskipun ia tidak memakannya adalah perilaku bawaan ketika ia masih hidup." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mendendam Sedikit" + }, + + damage: 10, + cost: ["Psychic"] + }, { + name: { + id: "Menggigit" + }, + + damage: 40, + cost: ["Fire", "Psychic"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/129.ts b/data-asia/SV/SV6s/129.ts new file mode 100644 index 000000000..db7ef79b5 --- /dev/null +++ b/data-asia/SV/SV6s/129.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Drakloak" + }, + + illustrator: "cochi8i", + category: "Pokemon", + hp: 90, + types: ["Dragon"], + + description: { + id: "Drakloak mengumpulkan energi di paru-parunya lalu menembakkannya. Ia merawat dan bertarung bersama Dreepy hingga Dreepy itu tumbuh dengan baik." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Perintah Rekonaisans" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri. Lihat 2 kartu dari atas Deck sendiri, pilih salah satu, lalu tambahkan ke Kartu Pegangan. Kembalikan sisa kartu ke bawah Deck." + } + }], + + attacks: [{ + name: { + id: "Sundulan Naga" + }, + + damage: 70, + cost: ["Fire", "Psychic"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/130.ts b/data-asia/SV/SV6s/130.ts new file mode 100644 index 000000000..2de6554bd --- /dev/null +++ b/data-asia/SV/SV6s/130.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Dragapult ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 320, + types: ["Dragon"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + id: "Jet Head" + }, + + damage: 70, + cost: ["Colorless"] + }, { + name: { + id: "Phantom Dive" + }, + + effect: { + id: "Letakkan sejumlah 6 Token Kerusakan pada Pokémon Cadangan lawan sesukanya." + }, + + damage: 200, + cost: ["Fire", "Psychic"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/131.ts b/data-asia/SV/SV6s/131.ts new file mode 100644 index 000000000..4b284b40d --- /dev/null +++ b/data-asia/SV/SV6s/131.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Tatsugiri" + }, + + illustrator: "Jerky", + category: "Pokemon", + hp: 70, + types: ["Dragon"], + + description: { + id: "Pokémon yang sangat licik. Tatsugiri pura-pura melemah untuk memancing mangsanya, lalu memerintah Pokémon rekannya untuk menyerang mangsa tersebut." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Memanggil Pelanggan" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini ada di Arena Bertarung. Lihat 6 kartu dari atas Deck sendiri, pilih 1 lembar Supporter di antaranya, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck." + } + }], + + attacks: [{ + name: { + id: "Berselancar" + }, + + damage: 50, + cost: ["Fire", "Water"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/132.ts b/data-asia/SV/SV6s/132.ts new file mode 100644 index 000000000..51d45456a --- /dev/null +++ b/data-asia/SV/SV6s/132.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Farfetch'd" + }, + + illustrator: "miki kudo", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + id: "Farfetch'd memegang batang tumbuhan dengan sayap dan menggunakannya bagaikan pedang untuk membelah musuhnya. Di saat kritis, senjatanya ini juga dapat dijadikan makanan." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Memanggul Masuk Spontan" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Pilih 1 lembar Pokémon Tool dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck." + } + }], + + attacks: [{ + name: { + id: "Sabetan Berkecepatan Suara" + }, + + effect: { + id: "Pilih 1 Energi Spesial yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash." + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/133.ts b/data-asia/SV/SV6s/133.ts new file mode 100644 index 000000000..5f01b407e --- /dev/null +++ b/data-asia/SV/SV6s/133.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Chansey" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + + description: { + id: "Chansey selalu berjalan dengan hati-hati agar telur yang dibawanya tidak pecah. Namun Pokémon ini melarikan diri dengan cepat." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Lucky Attach" + }, + + effect: { + id: "Pilih 1 lembar Energi Dasar dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon sendiri." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Kekuatan Laten" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 80, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/134.ts b/data-asia/SV/SV6s/134.ts new file mode 100644 index 000000000..1273a2276 --- /dev/null +++ b/data-asia/SV/SV6s/134.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Blissey ex" + }, + + illustrator: "Iwamoto05", + category: "Pokemon", + hp: 300, + types: ["Colorless"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Happy Switch" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 Energi Dasar yang dikenakan pada Pokémon di Arena sendiri, lalu pindahkan ke Pokémon sendiri lainnya." + } + }], + + attacks: [{ + name: { + id: "Membalas Budi" + }, + + effect: { + id: "Pemain dapat mengambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 6 lembar." + }, + + damage: 180, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/135.ts b/data-asia/SV/SV6s/135.ts new file mode 100644 index 000000000..b11300b29 --- /dev/null +++ b/data-asia/SV/SV6s/135.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Eevee" + }, + + illustrator: "satoma", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + id: "Eevee memiliki susunan genetik yang tidak teratur. Tubuhnya akan bermutasi ketika terkena radiasi yang dikeluarkan batu elemen." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Kebangkitan" + }, + + effect: { + id: "Pilih 1 kartu dari Deck sendiri yang merupakan evolusi dari Pokémon ini, lalu letakkan pada Pokémon ini untuk melakukan evolusi. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Serangan Cepat" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 20." + }, + + damage: "20+", + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/136.ts b/data-asia/SV/SV6s/136.ts new file mode 100644 index 000000000..bd11f0e7d --- /dev/null +++ b/data-asia/SV/SV6s/136.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Snorlax" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + + description: { + id: "Cairan pencerna lambungnya dapat mencerna racun apa pun. Memakan sesuatu yang terjatuh di tanah pun bukanlah masalah bagi Pokémon ini." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mengisi Perut" + }, + + effect: { + id: "Pilih 1 lembar Energi dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon ini. Setelah itu, pulihkan HP Pokémon ini sejumlah 60." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Heavy Impact" + }, + + damage: 160, + cost: ["Colorless", "Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/137.ts b/data-asia/SV/SV6s/137.ts new file mode 100644 index 000000000..ec434141c --- /dev/null +++ b/data-asia/SV/SV6s/137.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Aipom" + }, + + illustrator: "Mugi Hamada", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + id: "Ia tinggal di atas pohon yang tinggi sambil mengendalikan ekornya yang bergerak lebih bebas daripada tangannya dengan mahir." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Bergantung" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + id: "Tendangan Nakal" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/138.ts b/data-asia/SV/SV6s/138.ts new file mode 100644 index 000000000..0bdfa0312 --- /dev/null +++ b/data-asia/SV/SV6s/138.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ambipom" + }, + + illustrator: "KEIICHIRO ITO", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + description: { + id: "Karena ekornya yang terbagi 2 dapat terampil dalam melakukan berbagai macam hal, tangannya menjadi hampir tidak pernah digunakan." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Ekor Tega" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Lempar koin 2 kali. Pilih kartu dari Kartu Pegangan lawan tanpa melihat sisi depan untuk tiap lemparan dengan hasil sisi depan, lihat sisi depan kartu tersebut, lalu kocok kembali ke Deck lawan." + } + }], + + attacks: [{ + name: { + id: "Menepuk" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/139.ts b/data-asia/SV/SV6s/139.ts new file mode 100644 index 000000000..9ad283d37 --- /dev/null +++ b/data-asia/SV/SV6s/139.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ducklett" + }, + + illustrator: "Shibuzoh.", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + id: "Ia melatih tubuhnya sambil berenang mengelilingi tempat yang dalam di kolam untuk mencari lumut air makanannya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Double Draw" + }, + + effect: { + id: "Ambil 2 kartu dari atas Deck sendiri." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Bulu Tajam" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/140.ts b/data-asia/SV/SV6s/140.ts new file mode 100644 index 000000000..6ca46187d --- /dev/null +++ b/data-asia/SV/SV6s/140.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Swanna" + }, + + illustrator: "Susumu Maeya", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + description: { + id: "Konon banyak seniman yang mendapatkan inspirasi dari tarian elok yang ditarikan Pokémon ini di saat langit temaram." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Sayap Semangat Petarung" + }, + + effect: { + id: "Jika Pokémon Bertarung lawan adalah Pokémon {ex}/{V}, kerusakan yang diberikan bertambah sejumlah 90." + }, + + damage: "20+", + cost: ["Colorless"] + }, { + name: { + id: "Embusan Angin" + }, + + damage: 70, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/141.ts b/data-asia/SV/SV6s/141.ts new file mode 100644 index 000000000..bf75bbea2 --- /dev/null +++ b/data-asia/SV/SV6s/141.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Ursaluna Bulan Merah ex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 260, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Jurus Terlatih" + }, + + effect: { + id: "Energi {Bening} yang dibutuhkan oleh Pokémon ini untuk menggunakan Bulan Darah berkurang untuk tiap lembar Kartu Point yang telah diambil lawan." + } + }], + + attacks: [{ + name: { + id: "Bulan Darah" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 240, + cost: ["Colorless", "Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/142.ts b/data-asia/SV/SV6s/142.ts new file mode 100644 index 000000000..a7391f279 --- /dev/null +++ b/data-asia/SV/SV6s/142.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Unfair Stamp" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Kartu ini dapat digunakan jika pada giliran lawan sebelumnya, ada Pokémon sendiri yang KO. Kedua pemain masing-masing mengocok kembali semua Kartu Pegangan ke Deck. Setelah itu, pemain mengambil 5 kartu, sedangkan lawan mengambil 2 kartu dari atas Deck." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/143.ts b/data-asia/SV/SV6s/143.ts new file mode 100644 index 000000000..d010b3c78 --- /dev/null +++ b/data-asia/SV/SV6s/143.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Topeng Oni" + }, + + illustrator: "5ban Graphics", + category: "Trainer", + + effect: { + id: "Pilih 1 lembar Pokémon {ex} yang pada namanya terdapat kata Ogerpon dari Trash sendiri, lalu tukar dengan 1 Pokémon {ex} yang pada namanya terdapat kata Ogerpon di Arena sendiri (Semua kartu yang dikenakan, Token Kerusakan, Kondisi Khusus, efek yang dialami, dan lainnya diteruskan ke Pokémon tersebut). Pokémon yang ditukar dibuang ke Trash." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/144.ts b/data-asia/SV/SV6s/144.ts new file mode 100644 index 000000000..2adfcdc00 --- /dev/null +++ b/data-asia/SV/SV6s/144.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Seruling Musik Tradisional" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + id: "Balikkan 5 kartu dari atas Deck lawan sehingga sisi depannya menjadi menghadap ke atas, pilih sesukanya Pokémon Basic di antaranya, lalu masukkan ke Cadangan lawan. Kocok kembali sisa kartu ke Deck." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/145.ts b/data-asia/SV/SV6s/145.ts new file mode 100644 index 000000000..674863af8 --- /dev/null +++ b/data-asia/SV/SV6s/145.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Palu Luar Biasa" + }, + + illustrator: "Eske Yoshinob", + category: "Trainer", + + effect: { + id: "Pilih 1 Energi Spesial yang dikenakan pada Pokémon di Arena lawan, lalu buang ke Trash." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/146.ts b/data-asia/SV/SV6s/146.ts new file mode 100644 index 000000000..cf8c86b29 --- /dev/null +++ b/data-asia/SV/SV6s/146.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Kotak Rahasia" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Kartu ini dapat digunakan jika pemain membuang 3 lembar Kartu Pegangan sendiri ke Trash. Pilih Item, Pokémon Tool, Supporter, dan Stadium masing-masing 1 lembar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/147.ts b/data-asia/SV/SV6s/147.ts new file mode 100644 index 000000000..cec3ea3e4 --- /dev/null +++ b/data-asia/SV/SV6s/147.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Aroma Hiper" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Pilih paling banyak 3 lembar Pokémon Stage 1 dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/148.ts b/data-asia/SV/SV6s/148.ts new file mode 100644 index 000000000..32e4279ff --- /dev/null +++ b/data-asia/SV/SV6s/148.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Tukar Pokémon" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + id: "Tukar Pokémon Bertarung sendiri dengan Pokémon Cadangan." + }, + + trainerType: "Item", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/149.ts b/data-asia/SV/SV6s/149.ts new file mode 100644 index 000000000..224d3ca34 --- /dev/null +++ b/data-asia/SV/SV6s/149.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Siklon Pengangkat Pokémon" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Pilih 1 Pokémon di Arena sendiri, lalu kembalikan Pokémon tersebut dan semua kartu yang dikenakannya ke Kartu Pegangan." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/150.ts b/data-asia/SV/SV6s/150.ts new file mode 100644 index 000000000..0cb3c340b --- /dev/null +++ b/data-asia/SV/SV6s/150.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Pokémon Catcher" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung." + }, + + trainerType: "Item", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/151.ts b/data-asia/SV/SV6s/151.ts new file mode 100644 index 000000000..4b68d86dd --- /dev/null +++ b/data-asia/SV/SV6s/151.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Set Penangkap Serangga" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + id: "Lihat 7 kartu dari atas Deck sendiri, pilih paling banyak total 2 lembar Pokémon {Daun} dan Energi Dasar {Daun} di antaranya, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/152.ts b/data-asia/SV/SV6s/152.ts new file mode 100644 index 000000000..3a9819548 --- /dev/null +++ b/data-asia/SV/SV6s/152.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Bola Love" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + id: "Pilih 1 lembar Pokémon yang memiliki nama yang sama dengan Pokémon di Arena lawan dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/153.ts b/data-asia/SV/SV6s/153.ts new file mode 100644 index 000000000..42d1fe549 --- /dev/null +++ b/data-asia/SV/SV6s/153.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Penyokong Bertahan Hidup" + }, + + illustrator: "inose yukie", + category: "Trainer", + + effect: { + id: "Saat Pokémon yang mengenakan kartu ini KO karena menerima kerusakan akibat serangan dari Pokémon lawan ketika HP masih penuh, Pokémon tersebut tidak KO dan tetap berada di Arena dengan kondisi sisa HP sejumlah 10. Setelah itu, buang kartu ini ke Trash." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/154.ts b/data-asia/SV/SV6s/154.ts new file mode 100644 index 000000000..4267b33cf --- /dev/null +++ b/data-asia/SV/SV6s/154.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Handy Circulator" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Saat Pokémon yang mengenakan kartu ini ada di Arena Bertarung dan menerima kerusakan akibat serangan dari Pokémon lawan, pilih 1 Energi yang dikenakan pada Pokémon yang telah menggunakan serangan, lalu pindahkan ke Pokémon Cadangan lawan." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/155.ts b/data-asia/SV/SV6s/155.ts new file mode 100644 index 000000000..1c3371335 --- /dev/null +++ b/data-asia/SV/SV6s/155.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Helm Keberuntungan" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + id: "Saat Pokémon yang mengenakan kartu ini ada di Arena Bertarung dan menerima kerusakan akibat serangan dari Pokémon lawan, ambil 2 kartu dari atas Deck sendiri." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/156.ts b/data-asia/SV/SV6s/156.ts new file mode 100644 index 000000000..d27dc4017 --- /dev/null +++ b/data-asia/SV/SV6s/156.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Pengurus" + }, + + illustrator: "Akira Komayama", + category: "Trainer", + + effect: { + id: "Ambil 2 kartu dari atas Deck sendiri. Setelah itu, jika ada Balai Kota di Arena, Pengurus ini tidak dibuang ke Trash, tapi dikocok kembali ke Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/157.ts b/data-asia/SV/SV6s/157.ts new file mode 100644 index 000000000..7527b6cf8 --- /dev/null +++ b/data-asia/SV/SV6s/157.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Lucian" + }, + + illustrator: "hncl", + category: "Trainer", + + effect: { + id: "Kedua pemain masing-masing mengocok semua Kartu Pegangan sendiri dengan sisi depan menghadap ke bawah, lalu mengembalikannya ke bawah Deck. Setelah itu, kedua pemain masing-masing melempar koin 1 kali. Jika hasilnya sisi depan, ambil 6 kartu, jika hasilnya sisi belakang, ambil 3 kartu dari atas Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/158.ts b/data-asia/SV/SV6s/158.ts new file mode 100644 index 000000000..c8768abe7 --- /dev/null +++ b/data-asia/SV/SV6s/158.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Gravel" + }, + + illustrator: "Naoki Saito", + category: "Trainer", + + effect: { + id: "Pilih paling banyak 2 lembar Pokémon dari Kartu Pegangan sendiri, perlihatkan ke lawan, lalu kembalikan ke Deck. Setelah itu, pilih Pokémon dari Deck sendiri paling banyak sejumlah kartu yang telah dikembalikan, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/159.ts b/data-asia/SV/SV6s/159.ts new file mode 100644 index 000000000..b11351fa2 --- /dev/null +++ b/data-asia/SV/SV6s/159.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Pelayanan Lana" + }, + + illustrator: "Atsushi Furusawa", + category: "Trainer", + + effect: { + id: "Pilih paling banyak total 3 lembar Pokémon (selain Pokémon yang memiliki Peraturan) dan Energi Dasar dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/160.ts b/data-asia/SV/SV6s/160.ts new file mode 100644 index 000000000..df6780e9a --- /dev/null +++ b/data-asia/SV/SV6s/160.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Suguri" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + id: "Kartu ini digunakan dengan memilih salah satu dari dua efek berikut. ◆ Tukar Pokémon Bertarung sendiri dengan Pokémon Cadangan. ◆ Pada giliran ini, kerusakan akibat serangan yang digunakan oleh Pokémon sendiri kepada Pokémon {ex}/{V} di Arena Bertarung lawan bertambah sejumlah 30." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/161.ts b/data-asia/SV/SV6s/161.ts new file mode 100644 index 000000000..6388c72cc --- /dev/null +++ b/data-asia/SV/SV6s/161.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Seile" + }, + + illustrator: "kantaro", + category: "Trainer", + + effect: { + id: "Kartu ini juga dapat digunakan pada giliran pertama Pemain Pertama. Buang semua Kartu Pegangan sendiri ke Trash, lalu ambil 5 kartu dari atas Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/162.ts b/data-asia/SV/SV6s/162.ts new file mode 100644 index 000000000..4adb8af8b --- /dev/null +++ b/data-asia/SV/SV6s/162.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Haskev" + }, + + illustrator: "GOSSAN", + category: "Trainer", + + effect: { + id: "Kartu ini dapat digunakan jika pada giliran lawan sebelumnya, ada Pokémon sendiri yang KO. Lihat 8 kartu dari atas Deck sendiri, pilih paling banyak 3 kartu di antaranya, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/163.ts b/data-asia/SV/SV6s/163.ts new file mode 100644 index 000000000..e6252b10e --- /dev/null +++ b/data-asia/SV/SV6s/163.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Lokasi Festival" + }, + + illustrator: "MARINA Chikazawa", + category: "Trainer", + + effect: { + id: "Semua Pokémon kedua pemain yang mengenakan Energi tidak akan menjadi Kondisi Khusus dan jika ada yang sedang mengalami Kondisi Khusus, pulihkan semua Kondisi Khusus yang dialami Pokémon tersebut." + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/164.ts b/data-asia/SV/SV6s/164.ts new file mode 100644 index 000000000..bd2d29d2c --- /dev/null +++ b/data-asia/SV/SV6s/164.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Balai Kota" + }, + + illustrator: "MARINA Chikazawa", + category: "Trainer", + + effect: { + id: "Pemain yang pada giliran ini telah memainkan Supporter dari Kartu Pegangan 1 kali pada tiap gilirannya sendiri dapat memulihkan HP semua Pokémon sendiri masing-masing sejumlah 10." + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/165.ts b/data-asia/SV/SV6s/165.ts new file mode 100644 index 000000000..fac809f06 --- /dev/null +++ b/data-asia/SV/SV6s/165.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Menara Pengacak" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + id: "Semua Pokémon Tool yang dikenakan pada semua Pokémon kedua pemain menjadi tidak memiliki efek." + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/166.ts b/data-asia/SV/SV6s/166.ts new file mode 100644 index 000000000..602b94e9e --- /dev/null +++ b/data-asia/SV/SV6s/166.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Energi Bumerang" + }, + + illustrator: "5ban Graphics", + category: "Energy", + + effect: { + id: "Kartu ini berlaku sebagai 1 Energi {Bening} selama dikenakan pada Pokémon. Jika kartu ini dibuang ke Trash akibat efek serangan yang digunakan oleh Pokémon yang mengenakan kartu ini, setelah kerusakan dan efek akibat serangan, kenakan kembali kartu ini pada Pokémon semula." + }, + + energyType: "Special", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV6s/167.ts b/data-asia/SV/SV6s/167.ts new file mode 100644 index 000000000..491130dde --- /dev/null +++ b/data-asia/SV/SV6s/167.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV6s" + +const card: Card = { + set: Set, + + name: { + id: "Energi Legasi" + }, + + illustrator: "5ban Graphics", + category: "Energy", + + effect: { + id: "Kartu ini berlaku sebagai 1 Energi semua tipe selama dikenakan pada Pokémon. Saat Pokémon yang mengenakan kartu ini KO karena menerima kerusakan akibat serangan dari Pokémon lawan, Kartu Point yang diambil lawan berkurang 1 lembar. Efek ini yang berjalan berkat Energi Legasi sendiri hanya berjalan 1 kali dalam sebuah permainan." + }, + + energyType: "Special", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7.ts b/data-asia/SV/SV7.ts new file mode 100644 index 000000000..4f9075b61 --- /dev/null +++ b/data-asia/SV/SV7.ts @@ -0,0 +1,24 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SV7', + name: { + ja: 'ステラミラクル', + 'zh-tw': '星晶奇跡', + 'zh-cn': '星晶奇跡' + }, + + serie: serie, + + cardCount: { + official: 102 + }, + releaseDate: { + ja: '2024-07-19', + 'zh-tw': '2024-08-02', + 'zh-cn': '2024-08-02' + } +} + +export default set diff --git a/data-asia/SV/SV7/001.ts b/data-asia/SV/SV7/001.ts new file mode 100644 index 000000000..b39c4dd34 --- /dev/null +++ b/data-asia/SV/SV7/001.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "芭瓢蟲", + 'zh-cn': "芭瓢蟲", + ja: "レディバ" + }, + + illustrator: "Whisker", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + 'zh-tw': "天氣變冷時,大量的芭瓢蟲 會從各處聚集起來, 互相靠在一起取暖。", + 'zh-cn': "天氣變冷時,大量的芭瓢蟲 會從各處聚集起來, 互相靠在一起取暖。", + ja: "寒くなると あちこちから レディバが たくさん 集まって 寄り添いあい 温め合う。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "魯莽頭擊", + 'zh-cn': "魯莽頭擊", + ja: "とびだしヘッド" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [165] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/002.ts b/data-asia/SV/SV7/002.ts new file mode 100644 index 000000000..07f3bbc95 --- /dev/null +++ b/data-asia/SV/SV7/002.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "安瓢蟲", + 'zh-cn': "安瓢蟲", + ja: "レディアン" + }, + + illustrator: "Masako Tomii", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + 'zh-tw': "夜空中星光閃爍時, 牠會一邊灑著閃亮的粉末, 一邊翩翩飛過。", + 'zh-cn': "夜空中星光閃爍時, 牠會一邊灑著閃亮的粉末, 一邊翩翩飛過。", + ja: "夜空に 星が 瞬くとき 輝く 粉を 振りまきながら ひらひらと 飛んでいく。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "高速星星", + 'zh-cn': "高速星星", + ja: 'スピードスター' + }, + + effect: { + 'zh-tw': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。", + ja: 'このワザのダメージは、弱点・抵抗力と、相手のバトルポケモンにかかっている効果を計算しない。' + }, + + damage: 70, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 0, + regulationMark: "H", + rarity: "Rare", + dexId: [166], + + abilities: [{ + type: "Ability", + + name: { + ja: "きらぼしもよう", + 'zh-tw': "‌[特性]繁星花紋", + 'zh-cn': "‌[特性]繁星花紋", + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。相手のベンチの残りHPが「90」以下のポケモンを1匹選び、バトルポケモンと入れ替える。", + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。選擇1隻對手備戰區剩餘HP為「90」以下的寶可夢,與戰鬥寶可夢互換。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。選擇1隻對手備戰區剩餘HP為「90」以下的寶可夢,與戰鬥寶可夢互換。", + } + }] +} + +export default card diff --git a/data-asia/SV/SV7/003.ts b/data-asia/SV/SV7/003.ts new file mode 100644 index 000000000..068afa08f --- /dev/null +++ b/data-asia/SV/SV7/003.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "觸手百合", + 'zh-cn': "觸手百合", + ja: "リリーラ" + }, + + illustrator: "Ounishi", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + 'zh-tw': "從化石復原而來的寶可夢。 曾經棲息在大約1億年前 的溫暖大海裡。", + 'zh-cn': "從化石復原而來的寶可夢。 曾經棲息在大約1億年前 的溫暖大海裡。", + ja: "化石から 復元した ポケモン。 およそ 1億年前の 温かい 海に 生息していた。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "束縛", + 'zh-cn': "束縛", + ja: "しばりつける" + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。" + }, + + damage: 50, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [345] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/004.ts b/data-asia/SV/SV7/004.ts new file mode 100644 index 000000000..796064bec --- /dev/null +++ b/data-asia/SV/SV7/004.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "搖籃百合", + 'zh-cn': "搖籃百合", + ja: "ユレイドル" + }, + + illustrator: "miki kudo", + category: "Pokemon", + hp: 150, + types: ["Grass"], + + description: { + 'zh-tw': "雖然腳短且走得慢,但 脖子和觸手能伸長3倍 去捕捉在遠處的獵物。", + 'zh-cn': "雖然腳短且走得慢,但 脖子和觸手能伸長3倍 去捕捉在遠處的獵物。", + ja: "脚が 短く 歩みは 遅いが 首と 触手が 3倍 伸びて 遠くにいる 獲物を 捕まえる。" + }, + + stage: "Stage2", + + attacks: [{ + name: { + 'zh-tw': "瘴氣之風", + 'zh-cn': "瘴氣之風", + ja: 'しょうきのかぜ' + }, + + effect: { + 'zh-tw': "造成對手的戰鬥寶可夢處於特殊狀態的數量×100點傷害。", + 'zh-cn': "造成對手的戰鬥寶可夢處於特殊狀態的數量×100點傷害。", + ja: '相手のバトルポケモンが受けている特殊状態の数×100ダメージ。' + }, + + damage: "100×", + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [346], + + abilities: [{ + type: "Ability", + + name: { + ja: "よりどりねんえき", + 'zh-tw': "‌[特性]任選黏液", + 'zh-cn': "‌[特性]任選黏液", + }, + + effect: { + ja: "自分の番に1回使える。コインを1回投げオモテなら、どく・やけど・こんらんの中から1つ選び、相手のバトルポケモンをその状態にする。", + 'zh-tw': "在自己的回合時可使用1次。擲1次硬幣若為正面,則從【中毒】・【灼傷】・【混亂】中選擇1種,將對手的戰鬥寶可夢處於那個狀態。", + 'zh-cn': "在自己的回合時可使用1次。擲1次硬幣若為正面,則從【中毒】・【灼傷】・【混亂】中選擇1種,將對手的戰鬥寶可夢處於那個狀態。" + } + }] +} + +export default card diff --git a/data-asia/SV/SV7/005.ts b/data-asia/SV/SV7/005.ts new file mode 100644 index 000000000..ac8e483d0 --- /dev/null +++ b/data-asia/SV/SV7/005.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "尖牙籠", + 'zh-cn': "尖牙籠", + ja: "マスキッパ" + }, + + illustrator: "Mousho", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + description: { + 'zh-tw': "以散發甜甜香氣的唾液吸引獵物, 再用大顎一口咬住。 會花上一整天吃掉獵物。", + 'zh-cn': "以散發甜甜香氣的唾液吸引獵物, 再用大顎一口咬住。 會花上一整天吃掉獵物。", + ja: "甘い においの だえきで 獲物を おびき寄せ おおあごで がぶり。 1日 かけて 獲物を 食べる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "偷食", + 'zh-cn': "偷食", + ja: "つまみぐい" + }, + + effect: { + 'zh-tw': "將這隻寶可夢恢復「40」HP。", + 'zh-cn': "將這隻寶可夢恢復「40」HP。", + ja: "このポケモンのHPを「40」回復する。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "覆蓋", + 'zh-cn': "覆蓋", + ja: "おおいかぶさる" + }, + + effect: { + 'zh-tw': "減少這隻寶可夢身上放置的傷害指示物的數量×10點傷害。", + 'zh-cn': "減少這隻寶可夢身上放置的傷害指示物的數量×10點傷害。", + ja: "このポケモンにのっているダメカンの数×10ダメージぶん、このワザのダメージは小さくなる。" + }, + + damage: "130-", + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [455] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/006.ts b/data-asia/SV/SV7/006.ts new file mode 100644 index 000000000..667531cab --- /dev/null +++ b/data-asia/SV/SV7/006.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "切割洛托姆", + 'zh-cn': "切割洛托姆", + ja: "カットロトム" + }, + + illustrator: "Amelicart", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + 'zh-tw': "鑽進了割草機的樣子。 砍倒花草後會耀武揚威, 一副自信滿滿的樣子。", + 'zh-cn': "鑽進了割草機的樣子。 砍倒花草後會耀武揚威, 一副自信滿滿的樣子。", + ja: "芝刈り機に 入った 姿。 花や 草を なぎ払うと 自信満々に 威張っている。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "割除衝刺", + 'zh-cn': "割除衝刺", + ja: "かりとりダッシュ" + }, + + effect: { + 'zh-tw': "在造成傷害前,將對手的戰鬥寶可夢身上附加的「寶可夢道具」卡與「特殊能量」卡全部丟棄。", + 'zh-cn': "在造成傷害前,將對手的戰鬥寶可夢身上附加的「寶可夢道具」卡與「特殊能量」卡全部丟棄。", + ja: "ダメージを与える前に、相手のバトルポケモンについている「ポケモンのどうぐ」と「特殊エネルギー」を、すべてトラッシュする。" + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [479] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/007.ts b/data-asia/SV/SV7/007.ts new file mode 100644 index 000000000..a6e42b39c --- /dev/null +++ b/data-asia/SV/SV7/007.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "強顎雞母蟲", + 'zh-cn': "強顎雞母蟲", + ja: "アゴジムシ" + }, + + illustrator: "Jerky", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + 'zh-tw': "會吐出黏糊糊的絲纏住樹枝 並猶如擺錘般地晃動身體, 藉此在樹木之間輕巧地移動。", + 'zh-cn': "會吐出黏糊糊的絲纏住樹枝 並猶如擺錘般地晃動身體, 藉此在樹木之間輕巧地移動。", + ja: "ネバネバの 糸を 吐いて 枝に 巻きつけ 振り子の 動きで 木から 木へと 身軽に 飛び移る。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "伏擊", + 'zh-cn': "伏擊", + ja: "おそいかかる" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則增加30點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加30點傷害。", + ja: "コインを1回投げオモテなら、30ダメージ追加。" + }, + + damage: "10+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [736] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/008.ts b/data-asia/SV/SV7/008.ts new file mode 100644 index 000000000..078573983 --- /dev/null +++ b/data-asia/SV/SV7/008.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "幼棉棉", + 'zh-cn': "幼棉棉", + ja: "ヒメンカ" + }, + + illustrator: "Heisuke Kitazawa", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + 'zh-tw': "當牠把單腳紮進地面裡, 並且沐浴充分的陽光, 花瓣就會染上鮮豔的顏色。", + 'zh-cn': "當牠把單腳紮進地面裡, 並且沐浴充分的陽光, 花瓣就會染上鮮豔的顏色。", + ja: "一本足を 地面に 刺して 陽の光を たっぷり 浴びると 花びらが 鮮やかに 色づく。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "雙重旋轉", + 'zh-cn': "雙重旋轉", + ja: "ダブルスピン" + }, + + effect: { + 'zh-tw': "擲2次硬幣,造成正面出現的次數×10點傷害。", + 'zh-cn': "擲2次硬幣,造成正面出現的次數×10點傷害。", + ja: "コインを2回投げ、オモテの数×10ダメージ。" + }, + + damage: "10×", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [829] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/009.ts b/data-asia/SV/SV7/009.ts new file mode 100644 index 000000000..fb0371de1 --- /dev/null +++ b/data-asia/SV/SV7/009.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "白蓬蓬", + 'zh-cn': "白蓬蓬", + ja: "ワタシラガ" + }, + + illustrator: "Yuka Tanaka", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + 'zh-tw': "棉絮的種子營養豐富。 牠會藉由風散播種子, 讓草木和寶可夢變得活力十足。", + 'zh-cn': "棉絮的種子營養豐富。 牠會藉由風散播種子, 讓草木和寶可夢變得活力十足。", + ja: "綿毛の 種は 栄養満点。 風に 乗せて 飛ばして 草木や ポケモンたちを 元気にさせる。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "微風之禮", + 'zh-cn': "微風之禮", + ja: "そよかぜギフト" + }, + + effect: { + 'zh-tw': "將這隻寶可夢與附加的卡,全部放回自己的牌庫。然後,從牌庫任意選擇最多3張卡加入手牌。並且重洗牌庫。", + 'zh-cn': "將這隻寶可夢與附加的卡,全部放回自己的牌庫。然後,從牌庫任意選擇最多3張卡加入手牌。並且重洗牌庫。", + ja: "このポケモンと、ついているすべてのカードを、自分の山札にもどす。その後、山札から好きなカードを3枚まで選び、手札に加える。そして山札を切る。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "樹葉", + 'zh-cn': "樹葉", + ja: "このは" + }, + + damage: 50, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [830] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/010.ts b/data-asia/SV/SV7/010.ts new file mode 100644 index 000000000..b4270de43 --- /dev/null +++ b/data-asia/SV/SV7/010.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "啃果蟲", + 'zh-cn': "啃果蟲", + ja: "カジッチュ" + }, + + illustrator: "Yoriyuki Ikegami", + category: "Pokemon", + hp: 40, + types: ["Grass"], + + description: { + 'zh-tw': "平時都在蘋果中生活。 如果失去了蘋果,身體的 水分就會流失而變得虛弱。", + 'zh-cn': "平時都在蘋果中生活。 如果失去了蘋果,身體的 水分就會流失而變得虛弱。", + ja: "りんごの 中で 暮らしている。 りんごが なくなると 体の 水分が 抜けて 弱ってしまう。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "噴汁", + 'zh-cn': "噴汁", + ja: "しるをとばす" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [840] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/011.ts b/data-asia/SV/SV7/011.ts new file mode 100644 index 000000000..09904289e --- /dev/null +++ b/data-asia/SV/SV7/011.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "裹蜜蟲", + 'zh-cn': "裹蜜蟲", + ja: "カミッチュ" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + 'zh-tw': "由露出了頭部的外頭蟲與 露出了尾巴的裡頭蟲相扶相持, 一起在蘋果裡面生活。", + 'zh-cn': "由露出了頭部的外頭蟲與 露出了尾巴的裡頭蟲相扶相持, 一起在蘋果裡面生活。", + ja: "頭を 出している そとッチュと 尻尾を 出している なかッチュが 助け合い りんごのなかで 暮らす。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "塗層攻擊", + 'zh-cn': "塗層攻擊", + ja: "コーティングアタック" + }, + + effect: { + 'zh-tw': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢招式的傷害。", + 'zh-cn': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢招式的傷害。", + ja: "次の相手の番、このポケモンはたねポケモンからワザのダメージを受けない。" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common", + dexId: [1011] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/012.ts b/data-asia/SV/SV7/012.ts new file mode 100644 index 000000000..4b5222864 --- /dev/null +++ b/data-asia/SV/SV7/012.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "蜜集大蛇ex", + 'zh-cn': "蜜集大蛇ex", + ja: "カミツオロチex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "蜜糖風暴", + 'zh-cn': "蜜糖風暴", + ja: 'みつあめストーム' + }, + + effect: { + 'zh-tw': "增加自己的所有寶可夢身上附加的【草】能量的數量×30點傷害。", + 'zh-cn': "增加自己的所有寶可夢身上附加的【草】能量的數量×30點傷害。", + ja: '自分のポケモン全員についているエネルギーの数×30ダメージ追加。' + }, + + damage: "30+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Double rare", + + abilities: [{ + type: "Ability", + + name: { + ja: "じゅくせいチャージ", + 'zh-tw': "‌[特性]熟成充能", + 'zh-cn': "‌[特性]熟成充能" + }, + + effect: { + ja: "自分の番に1回使える。自分の手札から「基本エネルギー」を1枚選び、自分のポケモンにつける。その後、つけたポケモンのHPを「30」回復する。", + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於自己的寶可夢身上。然後,將附上那張卡的寶可夢恢復「30」HP。", + 'zh-cn': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於自己的寶可夢身上。然後,將附上那張卡的寶可夢恢復「30」HP。" + } + }] +} + +export default card diff --git a/data-asia/SV/SV7/013.ts b/data-asia/SV/SV7/013.ts new file mode 100644 index 000000000..fd779b2f0 --- /dev/null +++ b/data-asia/SV/SV7/013.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "夜盜火蜥", + 'zh-cn': "夜盜火蜥", + ja: "ヤトウモリ" + }, + + illustrator: "Felicia Chen", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + 'zh-tw': "唯有雌性製造的氣體會釋放 費洛蒙。被迷得神魂顛倒的 雄性會對雌性唯命是從。", + 'zh-cn': "唯有雌性製造的氣體會釋放 費洛蒙。被迷得神魂顛倒的 雄性會對雌性唯命是從。", + ja: "メスのみが フェロモンを 発する ガスを 作れる。 骨抜きにされた オスは メスの 言いなりになるぞ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "火花", + 'zh-cn': "火花", + ja: "ひのこ" + }, + + effect: { + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。", + ja: "このポケモンについているエネルギーを1個選び、トラッシュする。" + }, + + damage: 30, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [757] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/014.ts b/data-asia/SV/SV7/014.ts new file mode 100644 index 000000000..43fb2c452 --- /dev/null +++ b/data-asia/SV/SV7/014.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "焰后蜥", + 'zh-cn': "焰后蜥", + ja: "エンニュート" + }, + + illustrator: "Taiga Kasai", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + description: { + 'zh-tw': "焰后蜥的群體之間 一旦碰上彼此,就會使用 費洛蒙氣體展開雄性爭奪戰。", + 'zh-cn': "焰后蜥的群體之間 一旦碰上彼此,就會使用 費洛蒙氣體展開雄性爭奪戰。", + ja: "エンニュートの 群れ同士が 鉢合わせると フェロモンガスで オスを 奪い合う 争いになる。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "突然炙烤", + 'zh-cn': "突然炙烤", + ja: "いきなりあぶる" + }, + + effect: { + 'zh-tw': "對手選擇對手自己的1張手牌,將其丟棄。在這個回合,若這隻寶可夢從「夜盜火蜥」進化,則再丟棄2張。", + 'zh-cn': "對手選擇對手自己的1張手牌,將其丟棄。在這個回合,若這隻寶可夢從「夜盜火蜥」進化,則再丟棄2張。", + ja: "相手は相手自身の手札を1枚選び、トラッシュする。この番、このポケモンが「ヤトウモリ」から進化していたなら、さらに2枚トラッシュする。" + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "噴射火焰", + 'zh-cn': "噴射火焰", + ja: "かえんほうしゃ" + }, + + effect: { + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。", + ja: "このポケモンについているエネルギーを1個選び、トラッシュする。" + }, + + damage: 130, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [758] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/015.ts b/data-asia/SV/SV7/015.ts new file mode 100644 index 000000000..f29d2c720 --- /dev/null +++ b/data-asia/SV/SV7/015.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "爆焰龜獸", + 'zh-cn': "爆焰龜獸", + ja: "バクガメス" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + 'zh-tw': "背上的甲殼上敷了炸藥。 會用大爆炸去回擊 來攻擊自己的敵人。", + 'zh-cn': "背上的甲殼上敷了炸藥。 會用大爆炸去回擊 來攻擊自己的敵人。", + ja: "爆薬で コーティングされた 甲羅を 背負う。 攻撃してきた 敵を 大爆発で 返り討ち。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "火焰陣", + 'zh-cn': "火焰陣", + ja: "フレイムサークル" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【灼傷】。在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "將對手的戰鬥寶可夢【灼傷】。在下個對手的回合,受到這個招式的寶可夢無法撤退。", + ja: "相手のバトルポケモンをやけどにする。次の相手の番、このワザを受けたポケモンは、にげられない。" + }, + + damage: 50, + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "猛火猛撞", + 'zh-cn': "猛火猛撞", + ja: "もうかのとっしん" + }, + + effect: { + 'zh-tw': "這隻寶可夢也受到60點傷害。", + 'zh-cn': "這隻寶可夢也受到60點傷害。", + ja: "このポケモンにも60ダメージ。" + }, + + damage: 180, + cost: ["Fire", "Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common", + dexId: [776] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/016.ts b/data-asia/SV/SV7/016.ts new file mode 100644 index 000000000..5fd697217 --- /dev/null +++ b/data-asia/SV/SV7/016.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "炎兔兒", + 'zh-cn': "炎兔兒", + ja: "ヒバニー" + }, + + illustrator: "Cona Nitanda", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + 'zh-tw': "聚集了火之能量的 腳底肉球會升至高溫, 帶給對手巨大的傷害。", + 'zh-cn': "聚集了火之能量的 腳底肉球會升至高溫, 帶給對手巨大的傷害。", + ja: "炎エネルギーが 集まる 足の 肉球は 高温になり 相手に 大ダメージを 与える。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "電光一閃", + 'zh-cn': "電光一閃", + ja: "でんこうせっか" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則增加10點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加10點傷害。", + ja: "コインを1回投げオモテなら、10ダメージ追加。" + }, + + damage: "10+", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [813] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/017.ts b/data-asia/SV/SV7/017.ts new file mode 100644 index 000000000..c1d08fa0e --- /dev/null +++ b/data-asia/SV/SV7/017.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "騰蹴小將", + 'zh-cn': "騰蹴小將", + ja: "ラビフット" + }, + + illustrator: "aspara", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + description: { + 'zh-tw': "以自己多彩多姿的踢技為傲, 但利用因火焰而變熱的額頭 使出的頭錘也十分強勁。", + 'zh-cn': "以自己多彩多姿的踢技為傲, 但利用因火焰而變熱的額頭 使出的頭錘也十分強勁。", + ja: "多彩な キック技が 自慢だが 炎で 熱くなった 額で 繰り出す 頭突きも 強力。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "下盤踢", + 'zh-cn': "下盤踢", + ja: "ローキック" + }, + + damage: 30, + cost: ["Fire"] + }, { + name: { + 'zh-tw': "烈焰", + 'zh-cn': "烈焰", + ja: "かえん" + }, + + damage: 60, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [814] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/018.ts b/data-asia/SV/SV7/018.ts new file mode 100644 index 000000000..54bdcb2d8 --- /dev/null +++ b/data-asia/SV/SV7/018.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "閃焰王牌ex", + 'zh-cn': "閃焰王牌ex", + ja: "エースバーンex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 320, + types: ["Fire"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "閃焰強襲", + 'zh-cn': "閃焰強襲", + ja: "フレアストライク" + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「閃焰強襲」。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「閃焰強襲」。", + ja: "次の自分の番、このポケモンは「フレアストライク」が使えない。" + }, + + damage: 280, + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "石榴石截擊", + 'zh-cn': "石榴石截擊", + ja: "ガーネットボレー" + }, + + effect: { + 'zh-tw': "對手的1隻寶可夢受到180點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻寶可夢受到180點傷害。[在備戰區不計算弱點・抵抗力。]", + ja: "相手のポケモン1匹に、180ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + }, + + cost: ["Fire", "Fighting", "Darkness"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 0, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/019.ts b/data-asia/SV/SV7/019.ts new file mode 100644 index 000000000..4fb6cce0a --- /dev/null +++ b/data-asia/SV/SV7/019.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "拉普拉斯ex", + 'zh-cn': "拉普拉斯ex", + ja: "ラプラスex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "力量飛濺", + 'zh-cn': "力量飛濺", + ja: "パワースプラッシュ" + }, + + effect: { + 'zh-tw': "造成這隻寶可夢身上附加的能量的數量×40點傷害。", + 'zh-cn': "造成這隻寶可夢身上附加的能量的數量×40點傷害。", + ja: "このポケモンについているエネルギーの数×40ダメージ。" + }, + + damage: "40×", + cost: ["Water"] + }, { + name: { + 'zh-tw': "海紋石之雨", + 'zh-cn': "海紋石之雨", + ja: "ラリマーレイン" + }, + + effect: { + 'zh-tw': "查看自己的牌庫上方20張卡,從其中選擇任意數量的能量卡,以任意方式附於自己的寶可夢身上。將剩餘卡放回牌庫並重洗。", + 'zh-cn': "查看自己的牌庫上方20張卡,從其中選擇任意數量的能量卡,以任意方式附於自己的寶可夢身上。將剩餘卡放回牌庫並重洗。", + ja: "自分の山札を上から20枚見て、その中からエネルギーを好きなだけ選び、自分のポケモンに好きなようにつける。残りのカードは山札にもどして切る。" + }, + + cost: ["Water", "Psychic", "Metal"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/020.ts b/data-asia/SV/SV7/020.ts new file mode 100644 index 000000000..866d3176d --- /dev/null +++ b/data-asia/SV/SV7/020.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "螢光魚", + 'zh-cn': "螢光魚", + ja: "ケイコウオ" + }, + + illustrator: "Yukiko Baba", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + 'zh-tw': "粉紅色的皮膚部分 會儲存太陽光發光。 聽說是用來做保護色的。", + 'zh-cn': "粉紅色的皮膚部分 會儲存太陽光發光。 聽說是用來做保護色的。", + ja: "ピンク色の 皮の 部分は 太陽光を 溜めて 光る。 カモフラージュのためと いわれる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "潑灑清水", + 'zh-cn': "潑灑清水", + ja: "うちみず" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [456] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/021.ts b/data-asia/SV/SV7/021.ts new file mode 100644 index 000000000..144ff0e2f --- /dev/null +++ b/data-asia/SV/SV7/021.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "霓虹魚", + 'zh-cn': "霓虹魚", + ja: "ネオラント" + }, + + illustrator: "Shigenori Negishi", + category: "Pokemon", + hp: 110, + types: ["Water"], + + description: { + 'zh-tw': "在深海的海底發光的霓虹魚 看起來就像是夜空中 閃閃發亮的星星。", + 'zh-cn': "在深海的海底發光的霓虹魚 看起來就像是夜空中 閃閃發亮的星星。", + ja: "深い 海の 底で 光る ネオラントは まるで 夜空に 輝く 星のように 見える。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "報恩", + 'zh-cn': "報恩", + ja: "おんがえし" + }, + + effect: { + 'zh-tw': "若希望,從牌庫抽卡直到自己的手牌滿6張為止。", + 'zh-cn': "若希望,從牌庫抽卡直到自己的手牌滿6張為止。", + ja: "のぞむなら、自分の手札が6枚になるように、山札を引く。" + }, + + damage: 20, + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "鰭快刀", + 'zh-cn': "鰭快刀", + ja: "ひれカッター" + }, + + damage: 70, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [457] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/022.ts b/data-asia/SV/SV7/022.ts new file mode 100644 index 000000000..f5b7483a1 --- /dev/null +++ b/data-asia/SV/SV7/022.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "原蓋海龜", + 'zh-cn': "原蓋海龜", + ja: "プロトーガ" + }, + + illustrator: "takashi shiraishi", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + 'zh-tw': "曾經棲息在古代的海洋裡。 雖然只能爬行,但是為了 尋找獵物也會到陸地上來。", + 'zh-cn': "曾經棲息在古代的海洋裡。 雖然只能爬行,但是為了 尋找獵物也會到陸地上來。", + ja: "古代の 海に 棲んでいた。 這いずることしか できないが 獲物のために 陸にも 上がる。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "飛濺迴轉", + 'zh-cn': "飛濺迴轉", + ja: "スプラッシュターン" + }, + + effect: { + 'zh-tw': "將這隻寶可夢與備戰寶可夢互換。", + 'zh-cn': "將這隻寶可夢與備戰寶可夢互換。", + ja: "このポケモンをベンチポケモンと入れ替える。" + }, + + damage: 70, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common", + dexId: [564] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/023.ts b/data-asia/SV/SV7/023.ts new file mode 100644 index 000000000..a455cecf3 --- /dev/null +++ b/data-asia/SV/SV7/023.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "肋骨海龜", + 'zh-cn': "肋骨海龜", + ja: "アバゴーラ" + }, + + illustrator: "LINNE", + category: "Pokemon", + hp: 160, + types: ["Water"], + + description: { + 'zh-tw': "由於會將獵物的硬殼和骨頭 也都吃得乾乾淨淨一點不剩, 所以牠的甲殼長得又厚又堅硬。", + 'zh-cn': "由於會將獵物的硬殼和骨頭 也都吃得乾乾淨淨一點不剩, 所以牠的甲殼長得又厚又堅硬。", + ja: "獲物の 殻や骨も 残さず きれいに たいらげるので 甲羅は ぶ厚く 硬く 成長する。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "原始心得", + 'zh-cn': "原始心得", + ja: "げんしのこころえ" + }, + + effect: { + 'zh-tw': "只要這隻寶可夢在場上,自己的寶可夢使用的招式,對對手的戰鬥場的進化寶可夢造成的傷害「+30」點。", + 'zh-cn': "只要這隻寶可夢在場上,自己的寶可夢使用的招式,對對手的戰鬥場的進化寶可夢造成的傷害「+30」點。", + ja: "このポケモンがいるかぎり、自分のポケモンが使うワザの、相手のバトル場の進化ポケモンへのダメージは「+30」される。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "水炮粉碎", + 'zh-cn': "水炮粉碎", + ja: "ハイドロクラッシュ" + }, + + damage: 150, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [565] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/024.ts b/data-asia/SV/SV7/024.ts new file mode 100644 index 000000000..2ceba501b --- /dev/null +++ b/data-asia/SV/SV7/024.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "好勝毛蟹", + 'zh-cn': "好勝毛蟹", + ja: "ケケンカニ" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 160, + types: ["Water"], + + description: { + 'zh-tw': "拳擊雖強,動作卻慢。 會從口裡噴出結冰的泡沫 來封住對手的行動。", + 'zh-cn': "拳擊雖強,動作卻慢。 會從口裡噴出結冰的泡沫 來封住對手的行動。", + ja: "パンチは 強力だが 動きが 遅い。 口から 氷の 泡を 吹いて 相手の 動きを 止める。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "揮大拳", + 'zh-cn': "揮大拳", + ja: 'おおぶりパンチ' + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「揮大拳」。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「揮大拳」。", + ja: '次の自分の番、このポケモンは「おおぶりパンチ」が使えない。' + }, + + damage: 250, + cost: ["Water", "Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [740], + + abilities: [{ + type: "Ability", + + name: { + ja: "したごしらえ", + 'zh-tw': "‌[特性]事先準備", + 'zh-cn': "‌[特性]事先準備" + }, + + effect: { + ja: "自分のトラッシュにある「ハイダイ」の枚数ぶん、このポケモンがワザを使うためのエネルギーは少なくなる。", + 'zh-tw': "這隻寶可夢使用招式所需的【無】能量,減少自己的棄牌區的「海岱」的張數。", + 'zh-cn': "這隻寶可夢使用招式所需的【無】能量,減少自己的棄牌區的「海岱」的張數。" + } + }] +} + +export default card diff --git a/data-asia/SV/SV7/025.ts b/data-asia/SV/SV7/025.ts new file mode 100644 index 000000000..93fc13656 --- /dev/null +++ b/data-asia/SV/SV7/025.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "咬咬龜", + 'zh-cn': "咬咬龜", + ja: "カムカメ" + }, + + illustrator: "Yuka Morii", + category: "Pokemon", + hp: 80, + types: ["Water"], + + description: { + 'zh-tw': "拿起咬咬龜咬著的樹枝, 比賽誰的能咬住不放最久, 是種在孩童間很流行的遊戲。", + 'zh-cn': "拿起咬咬龜咬著的樹枝, 比賽誰的能咬住不放最久, 是種在孩童間很流行的遊戲。", + ja: "カムカメが 噛みついた 枝を 持ち上げ 食いついている 時間を 競う 遊びが 子どもに 人気。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "頭錘", + 'zh-cn': "頭錘", + ja: "ずつき" + }, + + damage: 60, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [833] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/026.ts b/data-asia/SV/SV7/026.ts new file mode 100644 index 000000000..f1dad4b13 --- /dev/null +++ b/data-asia/SV/SV7/026.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "暴噬龜", + 'zh-cn': "暴噬龜", + ja: "カジリガメ" + }, + + illustrator: "Dsuke", + category: "Pokemon", + hp: 140, + types: ["Water"], + + description: { + 'zh-tw': "這種寶可夢會潛伏在岸邊, 趁獵物來喝水時伸長脖子, 將其一口緊緊咬住。", + 'zh-cn': "這種寶可夢會潛伏在岸邊, 趁獵物來喝水時伸長脖子, 將其一口緊緊咬住。", + ja: "岸辺に 潜み 獲物が 水を 飲みに 来たところを 首を 長く 伸ばして がぶりと 噛みつく。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "鐵壁硬殼", + 'zh-cn': "鐵壁硬殼", + ja: "てっぺきシェル" + }, + + effect: { + 'zh-tw': "這隻寶可夢不會受到對手的寶可夢「200」以上的招式的傷害。", + 'zh-cn': "這隻寶可夢不會受到對手的寶可夢「200」以上的招式的傷害。", + ja: "このポケモンは、相手のポケモンから「200」以上のワザのダメージを受けない。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "堅硬嚼碎", + 'zh-cn': "堅硬嚼碎", + ja: "ハードクランチ" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢身上放置有傷害指示物,則增加80點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢身上放置有傷害指示物,則增加80點傷害。", + ja: "相手のバトルポケモンにダメカンがのっているなら、80ダメージ追加。" + }, + + damage: "80+", + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Rare", + dexId: [834] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/027.ts b/data-asia/SV/SV7/027.ts new file mode 100644 index 000000000..85d5a1fe1 --- /dev/null +++ b/data-asia/SV/SV7/027.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "輕身鱈", + 'zh-cn': "輕身鱈", + ja: "ミガルーサ" + }, + + illustrator: "GOTO minori", + category: "Pokemon", + hp: 130, + types: ["Water"], + + description: { + 'zh-tw': "擁有強大的再生能力。 會丟棄身上的贅肉讓自己 變得輕盈後突擊獵物。", + 'zh-cn': "擁有強大的再生能力。 會丟棄身上的贅肉讓自己 變得輕盈後突擊獵物。", + ja: "高い 再生能力を 持つ。 体の 贅肉を 捨てて 身軽になり 獲物に 突撃。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "音波刀鋒", + 'zh-cn': "音波刀鋒", + ja: 'ソニックエッジ' + }, + + effect: { + ja: 'このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。', + 'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。" + }, + + damage: 110, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon", + dexId: [976], + + abilities: [{ + type: "Ability", + name: { + 'zh-tw': "‌[特性]事先準備", + 'zh-cn': "‌[特性]事先準備", + ja: "したごしらえ" + }, + + effect: { + 'zh-tw': "這隻寶可夢使用招式所需的【無】能量,減少自己的棄牌區的「海岱」的張數。", + 'zh-cn': "這隻寶可夢使用招式所需的【無】能量,減少自己的棄牌區的「海岱」的張數。", + ja: "自分のトラッシュにある「ハイダイ」の枚数ぶん、このポケモンがワザを使うためのエネルギーは少なくなる。" + } + }] +} + +export default card diff --git a/data-asia/SV/SV7/028.ts b/data-asia/SV/SV7/028.ts new file mode 100644 index 000000000..0f9553a9b --- /dev/null +++ b/data-asia/SV/SV7/028.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電擊獸", + 'zh-cn': "電擊獸", + ja: "エレブー" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + description: { + 'zh-tw': "人們正在研究如何把雷電 儲存到電擊獸的體內, 以便隨時使用。", + 'zh-cn': "人們正在研究如何把雷電 儲存到電擊獸的體內, 以便隨時使用。", + ja: "エレブーに 雷を 溜めこませ いつでも 使えるようにする 研究が 進められている。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "呼喚", + 'zh-cn': "呼喚", + ja: "もってくる" + }, + + effect: { + 'zh-tw': "從自己的牌庫抽出1張卡。", + 'zh-cn': "從自己的牌庫抽出1張卡。", + ja: "自分の山札を1枚引く。" + }, + + cost: ["Lightning"] + }, { + name: { + 'zh-tw': "增量拳", + 'zh-cn': "增量拳", + ja: "マグナムパンチ" + }, + + damage: 40, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [125] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/029.ts b/data-asia/SV/SV7/029.ts new file mode 100644 index 000000000..5d2dabf9c --- /dev/null +++ b/data-asia/SV/SV7/029.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電擊魔獸", + 'zh-cn': "電擊魔獸", + ja: "エレキブル" + }, + + illustrator: "chibi", + category: "Pokemon", + hp: 150, + types: ["Lightning"], + + description: { + 'zh-tw': "會用尾巴前端抵住對手, 然後在一瞬間注入 超過2萬伏特的電流。", + 'zh-cn': "會用尾巴前端抵住對手, 然後在一瞬間注入 超過2萬伏特的電流。", + ja: "相手に 尻尾の先を 押しつけ 瞬時に 2万ボルト 以上の 高圧 電流を 送りこむ。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "電氣猛擊", + 'zh-cn': "電氣猛擊", + ja: "エレキスラッグ" + }, + + damage: 40, + cost: ["Lightning"] + }, { + name: { + 'zh-tw': "雷電在地", + 'zh-cn': "雷電在地", + ja: "ライトニングダウン" + }, + + effect: { + 'zh-tw': "在下個自己的回合,自己的所有寶可夢無法使用招式。(包含新上場的寶可夢。)", + 'zh-cn': "在下個自己的回合,自己的所有寶可夢無法使用招式。(包含新上場的寶可夢。)", + ja: "次の自分の番、自分のポケモン全員は、ワザが使えない。(新しく場に出したポケモンもふくむ。)" + }, + + damage: 220, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [466] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/030.ts b/data-asia/SV/SV7/030.ts new file mode 100644 index 000000000..06335897f --- /dev/null +++ b/data-asia/SV/SV7/030.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "燈籠魚", + 'zh-cn': "燈籠魚", + ja: "チョンチー" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + 'zh-tw': "會從2根觸手的前端 釋放正負電流來麻痺對手。", + 'zh-cn': "會從2根觸手的前端 釋放正負電流來麻痺對手。", + ja: "2つの 触手の 先から プラスと マイナスの 電気を 流して 相手を しびれさせる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "雙重伏特", + 'zh-cn': "雙重伏特", + ja: "ダブルボルト" + }, + + effect: { + 'zh-tw': "擲2次硬幣,造成正面出現的次數×20點傷害。", + 'zh-cn': "擲2次硬幣,造成正面出現的次數×20點傷害。", + ja: "コインを2回投げ、オモテの数×20ダメージ。" + }, + + damage: "20×", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [170] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/031.ts b/data-asia/SV/SV7/031.ts new file mode 100644 index 000000000..1e3c4e23b --- /dev/null +++ b/data-asia/SV/SV7/031.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電燈怪", + 'zh-cn': "電燈怪", + ja: "ランターン" + }, + + illustrator: "Akira Komayama", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + 'zh-tw': "會放出刺眼的亮光 讓對手看不見東西。 然後趁對手無法動彈時一口吞下。", + 'zh-cn': "會放出刺眼的亮光 讓對手看不見東西。 然後趁對手無法動彈時一口吞下。", + ja: "眩しい 光を 放って 相手の 目を くらませ 動けない あいだに 丸飲みに してしまう。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "錯亂閃光", + 'zh-cn': "錯亂閃光", + ja: "さくらんフラッシュ" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。因這個【混亂】而放置的傷害指示物的數量改為8個。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。因這個【混亂】而放置的傷害指示物的數量改為8個。", + ja: "相手のバトルポケモンをこんらんにする。このこんらんでのせるダメカンの数は8個になる。" + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "閃電伏特", + 'zh-cn': "閃電伏特", + ja: "サンダーボルト" + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。", + ja: "次の自分の番、このポケモンはワザが使えない。" + }, + + damage: 140, + cost: ["Lightning", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon", + dexId: [171] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/032.ts b/data-asia/SV/SV7/032.ts new file mode 100644 index 000000000..66d035330 --- /dev/null +++ b/data-asia/SV/SV7/032.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電電蟲", + 'zh-cn': "電電蟲", + ja: "バチュル" + }, + + illustrator: "Nisota Niso", + category: "Pokemon", + hp: 30, + types: ["Lightning"], + + description: { + 'zh-tw': "自己無法製造電力, 會附在其他大型寶可夢身上 吸取靜電。", + 'zh-cn': "自己無法製造電力, 會附在其他大型寶可夢身上 吸取靜電。", + ja: "自分では 電気を つくれないので ほかの 大きな ポケモンに とりつき 静電気を 吸いとる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "電電充能", + 'zh-cn': "電電充能", + ja: "バチュチャージ" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇「基本【草】能量」卡與「基本【雷】能量」卡最多各2張,以任意方式附於自己的寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇「基本【草】能量」卡與「基本【雷】能量」卡最多各2張,以任意方式附於自己的寶可夢身上。並且重洗牌庫。", + ja: "自分の山札から「基本エネルギー」と「基本エネルギー」をそれぞれ2枚まで選び、自分のポケモンに好きなようにつける。そして山札を切る。" + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [595] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/033.ts b/data-asia/SV/SV7/033.ts new file mode 100644 index 000000000..c07df8ced --- /dev/null +++ b/data-asia/SV/SV7/033.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電蜘蛛ex", + 'zh-cn': "電蜘蛛ex", + ja: "デンチュラex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "衝天之線", + 'zh-cn': "衝天之線", + ja: "アッパースレッド" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加110點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加110點傷害。", + ja: "相手のバトルポケモンが「ポケモンex・V」なら、110ダメージ追加。" + }, + + damage: "110+", + cost: ["Lightning", "Colorless"] + }, { + name: { + 'zh-tw': "雷擊石", + 'zh-cn': "雷擊石", + ja: "フルグライト" + }, + + effect: { + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。在下個對手的回合,對手無法從手牌使出物品卡。", + 'zh-cn': "將這隻寶可夢身上附加的能量卡全部丟棄。在下個對手的回合,對手無法從手牌使出物品卡。", + ja: "このポケモンについているエネルギーを、すべてトラッシュする。次の相手の番、相手は手札からグッズを出して使えない。" + }, + + damage: 180, + cost: ["Grass", "Lightning", "Fighting"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/034.ts b/data-asia/SV/SV7/034.ts new file mode 100644 index 000000000..8996d49e7 --- /dev/null +++ b/data-asia/SV/SV7/034.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "蟲電寶", + 'zh-cn': "蟲電寶", + ja: "デンヂムシ" + }, + + illustrator: "Makura Tami", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + + description: { + 'zh-tw': "蟲電寶消化吃掉的落葉時 會產生電能,並將其存下。 會從顎部尖端放出電流。", + 'zh-cn': "蟲電寶消化吃掉的落葉時 會產生電能,並將其存下。 會從顎部尖端放出電流。", + ja: "食べた 落ち葉を 消化するとき 発電して 電気を 溜めこむ。 あごの 先端から 放電する。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "並排", + 'zh-cn': "並排", + ja: "へいれつにならぶ" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇最多3張「蟲電寶」,放置於備戰區。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多3張「蟲電寶」,放置於備戰區。並且重洗牌庫。", + ja: "自分の山札から「デンヂムシ」を3枚まで選び、ベンチに出す。そして山札を切る。" + }, + + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [737] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/035.ts b/data-asia/SV/SV7/035.ts new file mode 100644 index 000000000..da6e10a5e --- /dev/null +++ b/data-asia/SV/SV7/035.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鍬農炮蟲", + 'zh-cn': "鍬農炮蟲", + ja: "クワガノン" + }, + + illustrator: "Shiburingaru", + category: "Pokemon", + hp: 160, + types: ["Lightning"], + + description: { + 'zh-tw': "會抱住蟲電寶獲取電能, 然後從自己的大顎 連續發射強力的電磁光束。", + 'zh-cn': "會抱住蟲電寶獲取電能, 然後從自己的大顎 連續發射強力的電磁光束。", + ja: "デンヂムシを 抱えて 電気を もらい 大あごから 強力な 電磁ビームを 連射する。" + }, + + stage: "Stage2", + + attacks: [{ + name: { + 'zh-tw': "伏特替換", + 'zh-cn': "伏特替換", + ja: "ボルトチェンジ" + }, + + effect: { + 'zh-tw': "將這隻寶可夢與備戰區的【雷】寶可夢互換。", + 'zh-cn': "將這隻寶可夢與備戰區的【雷】寶可夢互換。", + ja: "このポケモンをベンチのポケモンと入れ替える。" + }, + + damage: 90, + cost: ["Lightning"] + }, { + name: { + 'zh-tw': "閃雷攻擊", + 'zh-cn': "閃雷攻擊", + ja: "スパーキングアタック" + }, + + damage: 240, + cost: ["Lightning", "Lightning", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [738] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/036.ts b/data-asia/SV/SV7/036.ts new file mode 100644 index 000000000..9fec0edca --- /dev/null +++ b/data-asia/SV/SV7/036.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "托戈德瑪爾", + 'zh-cn': "托戈德瑪爾", + ja: "トゲデマル" + }, + + illustrator: "Rianti Hidayat", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + + description: { + 'zh-tw': "用背上的長毛來接收 閃電和電氣寶可夢釋放的電擊, 然後將之儲存在電囊中。", + 'zh-cn': "用背上的長毛來接收 閃電和電氣寶可夢釋放的電擊, 然後將之儲存在電囊中。", + ja: "背中の 長い 毛で 雷や でんきポケモンの 電撃を 受けて 電気袋に 充電する。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "麻麻時機", + 'zh-cn': "麻麻時機", + ja: "ビリビリチャンス" + }, + + effect: { + 'zh-tw': "若自己剩餘獎賞卡的張數為1張,則將對手的戰鬥寶可夢【麻痺】。", + 'zh-cn': "若自己剩餘獎賞卡的張數為1張,則將對手的戰鬥寶可夢【麻痺】。", + ja: "自分のサイドの残り枚数が1枚なら、相手のバトルポケモンをマヒにする。" + }, + + damage: 30, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [777] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/037.ts b/data-asia/SV/SV7/037.ts new file mode 100644 index 000000000..cd8a92d81 --- /dev/null +++ b/data-asia/SV/SV7/037.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "捷拉奧拉", + 'zh-cn': "捷拉奧拉", + ja: "ゼラオラ" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + 'zh-tw': "以媲美閃電的速度奔跑, 用能釋放高壓電的爪子 將敵人撕得粉碎。", + 'zh-cn': "以媲美閃電的速度奔跑, 用能釋放高壓電的爪子 將敵人撕得粉碎。", + ja: "雷に 匹敵する スピードで 走り 大電圧を 発する ツメで 敵を 八つ裂きにする。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "鬥戰雷電", + 'zh-cn': "鬥戰雷電", + ja: "コンバットサンダー" + }, + + effect: { + 'zh-tw': "增加對手的備戰寶可夢的數量×20點傷害。", + 'zh-cn': "增加對手的備戰寶可夢的數量×20點傷害。", + ja: "相手のベンチポケモンの数×20ダメージ追加。" + }, + + damage: "20+", + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Rare", + dexId: [807] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/038.ts b/data-asia/SV/SV7/038.ts new file mode 100644 index 000000000..07ced7ef9 --- /dev/null +++ b/data-asia/SV/SV7/038.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "呆呆獸", + 'zh-cn': "呆呆獸", + ja: "ヤドン" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + description: { + 'zh-tw': "總是一副在發呆的樣子, 不知道在想些什麼。 擅長用尾巴來釣食物。", + 'zh-cn': "總是一副在發呆的樣子, 不知道在想些什麼。 擅長用尾巴來釣食物。", + ja: "いつも ボーッとしていて なにを 考えているか わからない。 尻尾で エサを 釣るのが 得意。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "垂尾巴", + 'zh-cn': "垂尾巴", + ja: "しっぽをたらす" + }, + + effect: { + 'zh-tw': "從自己的棄牌區選擇1張寶可夢卡,在給對手看過後加入手牌。", + 'zh-cn': "從自己的棄牌區選擇1張寶可夢卡,在給對手看過後加入手牌。", + ja: "自分のトラッシュからポケモンを1枚選び、相手に見せて、手札に加える。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "撞擊", + 'zh-cn': "撞擊", + ja: "たいあたり" + }, + + damage: 30, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [79] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/039.ts b/data-asia/SV/SV7/039.ts new file mode 100644 index 000000000..582a25e4d --- /dev/null +++ b/data-asia/SV/SV7/039.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "呆呆王", + 'zh-cn': "呆呆王", + ja: "ヤドキング" + }, + + illustrator: "Tetsu Kayama", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + 'zh-tw': "有著非凡的智慧和靈感。 不論何時都不慌不忙, 一副悠然自得的樣子。", + 'zh-cn': "有著非凡的智慧和靈感。 不論何時都不慌不忙, 一副悠然自得的樣子。", + ja: "すごい 知性と ひらめきを 持っている。 どんなときも あわてず 騒がず のんびりとしている。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "耀閃挑戰", + 'zh-cn': "耀閃挑戰", + ja: "ひらめきチャレンジ" + }, + + effect: { + 'zh-tw': "將自己的牌庫上方1張卡丟棄,若那張卡為寶可夢卡(「擁有規則的寶可夢」除外),則選擇1個那隻寶可夢持有的招式,作為這個招式使用。", + 'zh-cn': "將自己的牌庫上方1張卡丟棄,若那張卡為寶可夢卡(「擁有規則的寶可夢」除外),則選擇1個那隻寶可夢持有的招式,作為這個招式使用。", + ja: "自分の山札を上から1枚トラッシュし、そのカードがポケモン(「ルールを持つポケモン」をのぞく)なら、そのポケモンが持っているワザを1つ選び、このワザとして使う。" + }, + + cost: ["Psychic", "Colorless"] + }, { + name: { + 'zh-tw': "超念力", + 'zh-cn': "超念力", + ja: "ちょうねんりき" + }, + + damage: 120, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [199] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/040.ts b/data-asia/SV/SV7/040.ts new file mode 100644 index 000000000..4c2752a04 --- /dev/null +++ b/data-asia/SV/SV7/040.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "飄飄球", + 'zh-cn': "飄飄球", + ja: "フワンテ" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + 'zh-tw': "漫無目的浮在空中的樣子, 使牠在某些民間故事裡 被相傳為迷途靈魂的路標。", + 'zh-cn': "漫無目的浮在空中的樣子, 使牠在某些民間故事裡 被相傳為迷途靈魂的路標。", + ja: "あてもなく 浮かぶ 様子から 迷える 魂の道しるべ と 伝える 昔話も ある。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "膨脹", + 'zh-cn': "膨脹", + ja: "ふくらむ" + }, + + effect: { + 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-10」點。", + 'zh-cn': "在下個對手的回合,這隻寶可夢受到招式的傷害「-10」點。", + ja: "次の相手の番、このポケモンが受けるワザのダメージは「-10」される。" + }, + + damage: 10, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [425] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/041.ts b/data-asia/SV/SV7/041.ts new file mode 100644 index 000000000..a686785e9 --- /dev/null +++ b/data-asia/SV/SV7/041.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "隨風球", + 'zh-cn': "隨風球", + ja: "フワライド" + }, + + illustrator: "sowsow", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + + description: { + 'zh-tw': "會搬運人和寶可夢。 但由於牠只能隨風漂流, 因此無法自行決定目的地。", + 'zh-cn': "會搬運人和寶可夢。 但由於牠只能隨風漂流, 因此無法自行決定目的地。", + ja: "人や ポケモンを 運ぶ。 ただし 風に 流されてしまうので 行き先を 決められない。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "一同爆炸", + 'zh-cn': "一同爆炸", + ja: "みんなでばくはつ" + }, + + effect: { + 'zh-tw': "造成自己的場上的「飄飄球」與「隨風球」的數量×50點傷害。自己的場上的所有「飄飄球」與「隨風球」也各受到30點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "造成自己的場上的「飄飄球」與「隨風球」的數量×50點傷害。自己的場上的所有「飄飄球」與「隨風球」也各受到30點傷害。[在備戰區不計算弱點・抵抗力。]", + ja: "自分の場の「フワンテ」と「フワライド」の数×50ダメージ。自分の場の「フワンテ」と「フワライド」全員にも、それぞれ30ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + }, + + damage: "50×", + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon", + dexId: [426] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/042.ts b/data-asia/SV/SV7/042.ts new file mode 100644 index 000000000..1272f065f --- /dev/null +++ b/data-asia/SV/SV7/042.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "花療環環", + 'zh-cn': "花療環環", + ja: "キュワワー" + }, + + illustrator: "saino misaki", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + 'zh-tw': "如果身上黏著花就會很開心, 並且發揮出治癒的效果。 喜歡有很多花的地方。", + 'zh-cn': "如果身上黏著花就會很開心, 並且發揮出治癒的效果。 喜歡有很多花的地方。", + ja: "花を つけていると 嬉しくなって 癒しの 効果を 発揮する。 花が 多い 土地を 好む。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "花流浴", + 'zh-cn': "花流浴", + ja: "フラワーシャワー" + }, + + effect: { + 'zh-tw': "雙方玩家各從牌庫抽出3張卡。", + 'zh-cn': "雙方玩家各從牌庫抽出3張卡。", + ja: "おたがいのプレイヤーは、それぞれ山札を3枚引く。" + }, + + cost: ["Psychic"] + }, { + name: { + 'zh-tw': "嬉鬧", + 'zh-cn': "嬉鬧", + ja: "じゃれつく" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則增加20點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加20點傷害。", + ja: "コインを1回投げオモテなら、20ダメージ追加。" + }, + + damage: "20+", + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [764] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/043.ts b/data-asia/SV/SV7/043.ts new file mode 100644 index 000000000..569e3dd47 --- /dev/null +++ b/data-asia/SV/SV7/043.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "小仙奶", + 'zh-cn': "小仙奶", + ja: "マホミル" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + 'zh-tw': "遭到襲擊時,會全身撞向對手, 趁著對方沾滿鮮奶油而看不見前方, 或因奶油的美味而愣住時迅速逃跑。", + 'zh-cn': "遭到襲擊時,會全身撞向對手, 趁著對方沾滿鮮奶油而看不見前方, 或因奶油的美味而愣住時迅速逃跑。", + ja: "敵に 襲われたら たいあたり。 クリームまみれにして みえなくするか おいしさに 驚かせて 逃げだす。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "囈語", + 'zh-cn': "囈語", + ja: "つぶやく" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [868] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/044.ts b/data-asia/SV/SV7/044.ts new file mode 100644 index 000000000..ef49fbd4e --- /dev/null +++ b/data-asia/SV/SV7/044.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "霜奶仙", + 'zh-cn': "霜奶仙", + ja: "マホイップ" + }, + + illustrator: "Natsumi Yoshida", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + 'zh-tw': "備受疼愛的霜奶仙 做出的鮮奶油美味至極, 令訓練家都會溫柔地培育牠。", + 'zh-cn': "備受疼愛的霜奶仙 做出的鮮奶油美味至極, 令訓練家都會溫柔地培育牠。", + ja: "大事にされた マホイップが だす クリームは 絶品のため 優しく 育てる トレーナーばかりだ。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "彩色甜點", + 'zh-cn': "彩色甜點", + ja: "いろどりスイーツ" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇與這隻寶可夢身上附加的基本能量卡相同屬性的寶可夢卡合計最多5張,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇與這隻寶可夢身上附加的基本能量卡相同屬性的寶可夢卡合計最多5張,在給對手看過後加入手牌。並且重洗牌庫。", + ja: "自分の山札から、このポケモンについている基本エネルギーと同じタイプのポケモンを合計5枚まで選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "魔法射擊", + 'zh-cn': "魔法射擊", + ja: "マジカルショット" + }, + + damage: 60, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [869] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/045.ts b/data-asia/SV/SV7/045.ts new file mode 100644 index 000000000..14c864c9b --- /dev/null +++ b/data-asia/SV/SV7/045.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "狗仔包", + 'zh-cn': "狗仔包", + ja: "パピモッチ" + }, + + illustrator: "Narumi Sato", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + 'zh-tw': "吐出的氣息中含有酵母, 能在製作料理時派上用場, 因此自古以來就受到人們保護。", + 'zh-cn': "吐出的氣息中含有酵母, 能在製作料理時派上用場, 因此自古以來就受到人們保護。", + ja: "吐息に 含まれている 酵母が 料理を 作るのに 役立つため 古くから 人に 保護されてきた。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "香味", + 'zh-cn': "香味", + ja: "いいにおい" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "踩", + 'zh-cn': "踩", + ja: "ふむ" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [926] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/046.ts b/data-asia/SV/SV7/046.ts new file mode 100644 index 000000000..fb428ed2f --- /dev/null +++ b/data-asia/SV/SV7/046.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "麻花犬ex", + 'zh-cn': "麻花犬ex", + ja: "バウッツェルex" + }, + + illustrator: "You Iribi", + category: "Pokemon", + hp: 250, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "奇跡閃耀", + 'zh-cn': "奇跡閃耀", + ja: 'ワンダーシャイン' + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。", + ja: '相手のバトルポケモンをこんらんにする。' + }, + + damage: 130, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Double rare", + + abilities: [{ + type: "Ability", + + name: { + ja: "まんぷくタイム", + 'zh-tw': "‌[特性]飽腹時間", + 'zh-cn': "‌[特性]飽腹時間", + }, + + effect: { + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。將自己的所有進化寶可夢的HP全部恢復。然後,將恢復的寶可夢身上附加的能量全部丟棄。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。將自己的所有進化寶可夢的HP全部恢復。然後,將恢復的寶可夢身上附加的能量全部丟棄。", + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分の進化ポケモン全員のHPを、すべて回復する。その後、回復したポケモンについているエネルギーを、すべてトラッシュする。" + } + }] +} + +export default card diff --git a/data-asia/SV/SV7/047.ts b/data-asia/SV/SV7/047.ts new file mode 100644 index 000000000..60308c65e --- /dev/null +++ b/data-asia/SV/SV7/047.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鐵磐岩", + 'zh-cn': "鐵磐岩", + ja: "テツノイワオ" + }, + + illustrator: "GIDORA", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + description: { + 'zh-tw': "身體似乎是由金屬構成。 牠的名字來自記載於 古老書籍裡的神秘物體。", + 'zh-cn': "身體似乎是由金屬構成。 牠的名字來自記載於 古老書籍裡的神秘物體。", + ja: "金属質の ボディらしい。 名前は 古い 本に 記された 謎の 物体から つけられた。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "調整角擊", + 'zh-cn': "調整角擊", + ja: "アジャストホーン" + }, + + effect: { + 'zh-tw': "若自己的手牌與對手的手牌不是相同張數,則這個招式失敗。", + 'zh-cn': "若自己的手牌與對手的手牌不是相同張數,則這個招式失敗。", + ja: "自分の手札と相手の手札が同じ枚数でないなら、このワザは失敗。" + }, + + damage: 170, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Rare", + dexId: [1022] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/048.ts b/data-asia/SV/SV7/048.ts new file mode 100644 index 000000000..eb4365d0c --- /dev/null +++ b/data-asia/SV/SV7/048.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "卡拉卡拉", + 'zh-cn': "卡拉卡拉", + ja: "カラカラ" + }, + + illustrator: "svlt", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + 'zh-tw': "當牠想起與自己死別的 母親而哭泣時,哭聲就會在 頭上戴的骨頭中哀傷地迴盪。", + 'zh-cn': "當牠想起與自己死別的 母親而哭泣時,哭聲就會在 頭上戴的骨頭中哀傷地迴盪。", + ja: "死に別れた 母親を 思い出し 泣くと 頭に 被った 骨の 中で 物悲しく 響くのだ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "突擊", + 'zh-cn': "突擊", + ja: "とつげき" + }, + + effect: { + 'zh-tw': "這隻寶可夢也受到10點傷害。", + 'zh-cn': "這隻寶可夢也受到10點傷害。", + ja: "このポケモンにも10ダメージ。" + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [104] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/049.ts b/data-asia/SV/SV7/049.ts new file mode 100644 index 000000000..8ad90352a --- /dev/null +++ b/data-asia/SV/SV7/049.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "嘎啦嘎啦", + 'zh-cn': "嘎啦嘎啦", + ja: "ガラガラ" + }, + + illustrator: "cochi8i", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + + description: { + 'zh-tw': "克服了傷痛後進化得 更強更壯。會把骨頭當作 武器,勇敢地與敵人交鋒。", + 'zh-cn': "克服了傷痛後進化得 更強更壯。會把骨頭當作 武器,勇敢地與敵人交鋒。", + ja: "悲しみを 乗りこえて たくましく 進化した。 骨を 武器にして 勇敢に 敵と 渡り合う。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "叫聲", + 'zh-cn': "叫聲", + ja: "なきごえ" + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-40」點。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-40」點。", + ja: "次の相手の番、このワザを受けたポケモンが使うワザのダメージは「-40」される。" + }, + + cost: ["Fighting"] + }, { + name: { + 'zh-tw': "骨之復仇", + 'zh-cn': "骨之復仇", + ja: "ほねリベンジ" + }, + + effect: { + 'zh-tw': "若自己的備戰區的「卡拉卡拉」身上放置有傷害指示物,則增加120點傷害。", + 'zh-cn': "若自己的備戰區的「卡拉卡拉」身上放置有傷害指示物,則增加120點傷害。", + ja: "自分のベンチの「カラカラ」にダメカンがのっているなら、120ダメージ追加。" + }, + + damage: "60+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon", + dexId: [105] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/050.ts b/data-asia/SV/SV7/050.ts new file mode 100644 index 000000000..fed19d3a7 --- /dev/null +++ b/data-asia/SV/SV7/050.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "獨角犀牛", + 'zh-cn': "獨角犀牛", + ja: "サイホーン" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + description: { + 'zh-tw': "一旦開始奔跑,即使撞上了 大岩石也不會停下來。這性情 使牠的棲息地變得越來越廣。", + 'zh-cn': "一旦開始奔跑,即使撞上了 大岩石也不會停下來。這性情 使牠的棲息地變得越來越廣。", + ja: "走りだすと 大岩に 衝突しても 止まらない 性質のため 生息地が 広がっていったのだ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "角撞", + 'zh-cn': "角撞", + ja: "つのでつく" + }, + + damage: 50, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common", + dexId: [111] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/051.ts b/data-asia/SV/SV7/051.ts new file mode 100644 index 000000000..0e44b007a --- /dev/null +++ b/data-asia/SV/SV7/051.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鑽角犀獸", + 'zh-cn': "鑽角犀獸", + ja: "サイドン" + }, + + illustrator: "Ryuta Fuse", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + + description: { + 'zh-tw': "進化後變得可以只用 後腳步行,因此將棲息地 拓展到了險峻的山地。", + 'zh-cn': "進化後變得可以只用 後腳步行,因此將棲息地 拓展到了險峻的山地。", + ja: "後ろ脚だけで 歩けるように 進化したので 険しい 山にも 生息地を 広げられたのだ。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "破壞之角", + 'zh-cn': "破壞之角", + ja: "はかいのつの" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。", + ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。" + }, + + damage: 80, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "H", + rarity: "Common", + dexId: [112] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/052.ts b/data-asia/SV/SV7/052.ts new file mode 100644 index 000000000..480c17ac7 --- /dev/null +++ b/data-asia/SV/SV7/052.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "超甲狂犀", + 'zh-cn': "超甲狂犀", + ja: "ドサイドン" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 200, + types: ["Fighting"], + + description: { + 'zh-tw': "雖然大腦比鑽角犀獸還小, 但可以把因而多出的能量 全用在戰鬥上,所以非常強。", + 'zh-cn': "雖然大腦比鑽角犀獸還小, 但可以把因而多出的能量 全用在戰鬥上,所以非常強。", + ja: "脳は サイドンよりも 小さいが そのぶんの エネルギーを すべて 戦いに 使うので 強いのだ。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "廣域堡壘", + 'zh-cn': "廣域堡壘", + ja: "ワイドウォール" + }, + + effect: { + 'zh-tw': "只要這隻寶可夢在戰鬥場上,對手從手牌使出支援者卡時,自己的所有寶可夢不會受到那個效果的影響。", + 'zh-cn': "只要這隻寶可夢在戰鬥場上,對手從手牌使出支援者卡時,自己的所有寶可夢不會受到那個效果的影響。", + ja: "このポケモンがバトル場にいるかぎり、自分のポケモン全員は、相手が手札からサポートを出して使ったとき、その効果を受けない。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "直衝鑽", + 'zh-cn': "直衝鑽", + ja: "ドリルライナー" + }, + + effect: { + 'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。", + ja: "相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。" + }, + + damage: 180, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "H", + rarity: "Rare", + dexId: [464] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/053.ts b/data-asia/SV/SV7/053.ts new file mode 100644 index 000000000..49888ab97 --- /dev/null +++ b/data-asia/SV/SV7/053.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "瑪沙那", + 'zh-cn': "瑪沙那", + ja: "アサナン" + }, + + illustrator: "Yuu Nishida", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + 'zh-tw': "用冥想提高精神能量後, 就可以浮在空中。 1天會吃下1個樹果。", + 'zh-cn': "用冥想提高精神能量後, 就可以浮在空中。 1天會吃下1個樹果。", + ja: "瞑想で 精神エネルギーを 高めて 空中に 浮かぶ。 1日に 1個 木の実を 食べる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "冥想", + 'zh-cn': "冥想", + ja: "めいそう" + }, + + effect: { + 'zh-tw': "將這隻寶可夢恢復「20」HP。", + 'zh-cn': "將這隻寶可夢恢復「20」HP。", + ja: "このポケモンのHPを「20」回復する。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "劈打", + 'zh-cn': "劈打", + ja: "チョップ" + }, + + damage: 50, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [307] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/054.ts b/data-asia/SV/SV7/054.ts new file mode 100644 index 000000000..db724d0b7 --- /dev/null +++ b/data-asia/SV/SV7/054.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "恰雷姆ex", + 'zh-cn': "恰雷姆ex", + ja: "チャーレムex" + }, + + illustrator: "PLANETA Yamashita", + category: "Pokemon", + hp: 260, + types: ["Fighting"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "氣功指壓", + 'zh-cn': "氣功指壓", + ja: "きこうあつ" + }, + + effect: { + 'zh-tw': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「50」為止。", + 'zh-cn': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「50」為止。", + ja: "相手のバトルポケモンの残りHPが「50」になるように、ダメカンをのせる。" + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "瑜伽踢", + 'zh-cn': "瑜伽踢", + ja: "ヨガキック" + }, + + effect: { + 'zh-tw': "這個招式的傷害不計算弱點・抵抗力。", + 'zh-cn': "這個招式的傷害不計算弱點・抵抗力。", + ja: "このワザのダメージは弱点・抵抗力を計算しない。" + }, + + damage: 190, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/055.ts b/data-asia/SV/SV7/055.ts new file mode 100644 index 000000000..08dcafc70 --- /dev/null +++ b/data-asia/SV/SV7/055.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "功夫鼬", + 'zh-cn': "功夫鼬", + ja: "コジョフー" + }, + + illustrator: "Kariya", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + 'zh-tw': "與群體的夥伴們一起在深山裡 閉關修行。不同的群體有著不同的 踢腿和手刀技法。", + 'zh-cn': "與群體的夥伴們一起在深山裡 閉關修行。不同的群體有著不同的 踢腿和手刀技法。", + ja: "山奥に こもり 群れの 仲間と 修行に 励む。 群れによって キックや チョップの型が 違う。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "拍落", + 'zh-cn': "拍落", + ja: "はたきおとす" + }, + + effect: { + 'zh-tw': "在不看正面的情況下,從對手的手牌選擇1張,將其丟棄。", + 'zh-cn': "在不看正面的情況下,從對手的手牌選擇1張,將其丟棄。", + ja: "相手の手札からオモテを見ないで1枚選び、トラッシュする。" + }, + + damage: 10, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [619] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/056.ts b/data-asia/SV/SV7/056.ts new file mode 100644 index 000000000..7cffa4eb1 --- /dev/null +++ b/data-asia/SV/SV7/056.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "師父鼬", + 'zh-cn': "師父鼬", + ja: "コジョンド" + }, + + illustrator: "MINAMINAMI Take", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + + description: { + 'zh-tw': "將雙臂的毛如鞭子般靈活使用。 一旦開始連續攻擊,誰也無法阻止。", + 'zh-cn': "將雙臂的毛如鞭子般靈活使用。 一旦開始連續攻擊,誰也無法阻止。", + ja: "両手の 体毛を ムチのように 使いこなし 連続攻撃を はじめると だれにも 止められない。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "疾風迴旋", + 'zh-cn': "疾風迴旋", + ja: "はやてまわし" + }, + + effect: { + 'zh-tw': "若對手的手牌為5張以下,則增加60點傷害。", + 'zh-cn': "若對手的手牌為5張以下,則增加60點傷害。", + ja: "相手の手札が5枚以下なら、60ダメージ追加。" + }, + + damage: "30+", + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [620] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/057.ts b/data-asia/SV/SV7/057.ts new file mode 100644 index 000000000..98711b83a --- /dev/null +++ b/data-asia/SV/SV7/057.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "頑皮熊貓", + 'zh-cn': "頑皮熊貓", + ja: "ヤンチャム" + }, + + illustrator: "Tomomi Ozaki", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + 'zh-tw': "會模仿自己敬為頭領的 流氓熊貓,向牠學習戰鬥 及捕捉獵物的方法。", + 'zh-cn': "會模仿自己敬為頭領的 流氓熊貓,向牠學習戰鬥 及捕捉獵物的方法。", + ja: "親分と 慕う ゴロンダの 真似を する ことで 戦い方や 獲物の 捕まえ方を 学ぶ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "瞪眼", + 'zh-cn': "瞪眼", + ja: "にらみつける" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。", + 'zh-cn': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。", + ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "踢倒", + 'zh-cn': "踢倒", + ja: "けたぐり" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [674] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/058.ts b/data-asia/SV/SV7/058.ts new file mode 100644 index 000000000..d96dd7dbd --- /dev/null +++ b/data-asia/SV/SV7/058.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "蒂安希", + 'zh-cn': "蒂安希", + ja: "ディアンシー" + }, + + illustrator: "Jiro Sasumo", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + + description: { + 'zh-tw': "小碎鑽的突變種。 散發著粉紅光輝的身體 被譽為世界第一美麗。", + 'zh-cn': "小碎鑽的突變種。 散發著粉紅光輝的身體 被譽為世界第一美麗。", + ja: "メレシーの 突然変異。 ピンク色に 輝く 体は 世界一 美しいと 言われる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "漫反射", + 'zh-cn': "漫反射", + ja: "らんはんしゃ" + }, + + effect: { + 'zh-tw': "造成對手的所有寶可夢身上附加的特殊能量卡的張數×40點傷害。", + 'zh-cn': "造成對手的所有寶可夢身上附加的特殊能量卡的張數×40點傷害。", + ja: "相手のポケモン全員についている特殊エネルギーの枚数×40ダメージ。" + }, + + damage: "40×", + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "力量寶石", + 'zh-cn': "力量寶石", + ja: "パワージェム" + }, + + damage: 60, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [719] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/059.ts b/data-asia/SV/SV7/059.ts new file mode 100644 index 000000000..340110b53 --- /dev/null +++ b/data-asia/SV/SV7/059.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "好勝蟹", + 'zh-cn': "好勝蟹", + ja: "マケンカニ" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + + description: { + 'zh-tw': "鉗子就算脫落也會馬上長回來。 其外殼可以萃取出美味的高湯, 是很有人氣的海鮮燉飯材料。", + 'zh-cn': "鉗子就算脫落也會馬上長回來。 其外殼可以萃取出美味的高湯, 是很有人氣的海鮮燉飯材料。", + ja: "ハサミは もげても すぐに 生える。 カラから 良い 出汁が でるので パエリアの 具材として 人気。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "夾住", + 'zh-cn': "夾住", + ja: "はさむ" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "蟹鉗錘", + 'zh-cn': "蟹鉗錘", + ja: "クラブハンマー" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common", + dexId: [739] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/060.ts b/data-asia/SV/SV7/060.ts new file mode 100644 index 000000000..daf238508 --- /dev/null +++ b/data-asia/SV/SV7/060.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "列陣兵", + 'zh-cn': "列陣兵", + ja: "タイレーツ" + }, + + illustrator: "Gapao", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + + description: { + 'zh-tw': "被稱為頭頭的隊長 會用可伸縮的角 做出變換陣形的指令。", + 'zh-cn': "被稱為頭頭的隊長 會用可伸縮的角 做出變換陣形的指令。", + ja: "伸縮する ツノで ヘイチョーと 呼ばれる リーダーが 陣形を 組み替える 指示を 出しているぞ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "組成陣形", + 'zh-cn': "組成陣形", + ja: "じんけいをくむ" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + ja: "自分の山札からたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "一併攻擊", + 'zh-cn': "一併攻擊", + ja: "いっせいこうげき" + }, + + effect: { + 'zh-tw': "在上個自己的回合,若這隻寶可夢使用了「‌組成陣形」,則增加90點傷害。", + 'zh-cn': "在上個自己的回合,若這隻寶可夢使用了「‌組成陣形」,則增加90點傷害。", + ja: "前の自分の番、このポケモンが「じんけいをくむ」を使っていたなら、90ダメージ追加。" + }, + + damage: "30+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [870] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/061.ts b/data-asia/SV/SV7/061.ts new file mode 100644 index 000000000..987e57852 --- /dev/null +++ b/data-asia/SV/SV7/061.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "溶食獸", + 'zh-cn': "溶食獸", + ja: "ゴクリン" + }, + + illustrator: "Shimaris Yukichi", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + 'zh-tw': "心臟和大腦都很小, 身體的大部分是胃。 會分泌出什麼都能溶解的胃液。", + 'zh-cn': "心臟和大腦都很小, 身體的大部分是胃。 會分泌出什麼都能溶解的胃液。", + ja: "心臓や 脳みそは 小さく 体の 大部分が 胃袋。 なんでも 溶かす 胃液を 出す。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "口水", + 'zh-cn': "口水", + ja: "よだれ" + }, + + damage: 10, + cost: ["Darkness"] + }, { + name: { + 'zh-tw': "毒之氣息", + 'zh-cn': "毒之氣息", + ja: "どくのいき" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。", + 'zh-cn': "將對手的戰鬥寶可夢【中毒】。", + ja: "相手のバトルポケモンをどくにする。" + }, + + damage: 30, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [316] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/062.ts b/data-asia/SV/SV7/062.ts new file mode 100644 index 000000000..bf3fcaa1a --- /dev/null +++ b/data-asia/SV/SV7/062.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "吞食獸", + 'zh-cn': "吞食獸", + ja: "マルノーム" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 130, + types: ["Darkness"], + + description: { + 'zh-tw': "就連輪胎都是整個吞掉。 會從身上的毛孔分泌出 帶有劇毒的體液。", + 'zh-cn': "就連輪胎都是整個吞掉。 會從身上的毛孔分泌出 帶有劇毒的體液。", + ja: "タイヤも ひと口で 丸呑み。 体の 毛穴から 猛毒の 体液を 分泌する。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "張大嘴", + 'zh-cn': "張大嘴", + ja: "パックンマウス" + }, + + effect: { + 'zh-tw': "若這隻寶可夢身上附加的能量的數量,比對手的戰鬥寶可夢身上附加的能量的數量多,則增加160點傷害。", + 'zh-cn': "若這隻寶可夢身上附加的能量的數量,比對手的戰鬥寶可夢身上附加的能量的數量多,則增加160點傷害。", + ja: "このポケモンについているエネルギーの数が、相手のバトルポケモンについているエネルギーの数より多いなら、160ダメージ追加。" + }, + + damage: "10+", + cost: ["Darkness"] + }, { + name: { + 'zh-tw': "毒液一擊", + 'zh-cn': "毒液一擊", + ja: "ベノムヒット" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。", + 'zh-cn': "將對手的戰鬥寶可夢【中毒】。", + ja: "相手のバトルポケモンをどくにする。" + }, + + damage: 100, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [317] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/063.ts b/data-asia/SV/SV7/063.ts new file mode 100644 index 000000000..ca389f12e --- /dev/null +++ b/data-asia/SV/SV7/063.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "流氓熊貓", + 'zh-cn': "流氓熊貓", + ja: "ゴロンダ" + }, + + illustrator: "KEIICHIRO ITO", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + + description: { + 'zh-tw': "性情暴躁,靠力氣解決問題。 為與堵攔熊一對一比拼 而燃燒自己的鬥志。", + 'zh-cn': "性情暴躁,靠力氣解決問題。 為與堵攔熊一對一比拼 而燃燒自己的鬥志。", + ja: "気性が 荒く 腕力で 黙らせる。 タチフサグマとの 一騎打ちに 闘志を 燃やす。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "拉扯", + 'zh-cn': "拉扯", + ja: "ひっぱる" + }, + + effect: { + 'zh-tw': "選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。", + 'zh-cn': "選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。", + ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。" + }, + + cost: ["Darkness"] + }, { + name: { + 'zh-tw': "暴走", + 'zh-cn': "暴走", + ja: "あばれまわる" + }, + + effect: { + 'zh-tw': "將這隻寶可夢【混亂】。", + 'zh-cn': "將這隻寶可夢【混亂】。", + ja: "このポケモンをこんらんにする。" + }, + + damage: 160, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [675] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/064.ts b/data-asia/SV/SV7/064.ts new file mode 100644 index 000000000..335ba4d13 --- /dev/null +++ b/data-asia/SV/SV7/064.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "搗蛋小妖", + 'zh-cn': "搗蛋小妖", + ja: "ベロバー" + }, + + illustrator: "Tomokazu Komiya", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + 'zh-tw': "會成群住在一起,並透過 惡搞對方和彼此找碴 來磨練製造麻煩的身手。", + 'zh-cn': "會成群住在一起,並透過 惡搞對方和彼此找碴 來磨練製造麻煩的身手。", + ja: "群れを 作って 暮らし おたがいに 悪戯や 嫌がらせを 仕掛けて その腕を 磨いているぞ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "掌擊", + 'zh-cn': "掌擊", + ja: "ひらてうち" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "利爪劈擊", + 'zh-cn': "利爪劈擊", + ja: "ツメできりさく" + }, + + damage: 40, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [859] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/065.ts b/data-asia/SV/SV7/065.ts new file mode 100644 index 000000000..a2ab3324b --- /dev/null +++ b/data-asia/SV/SV7/065.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "詐唬魔", + 'zh-cn': "詐唬魔", + ja: "ギモー" + }, + + illustrator: "Mékayu", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + + description: { + 'zh-tw': "吸收負面情緒來轉化成 自身能量的寶可夢。 深受有負面思考習慣的人歡迎。", + 'zh-cn': "吸收負面情緒來轉化成 自身能量的寶可夢。 深受有負面思考習慣的人歡迎。", + ja: "負の 感情を 吸い取って エネルギーにしている ポケモン。 マイナス思考の 人に 人気。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "重摑", + 'zh-cn': "重摑", + ja: "ひっぱたく" + }, + + damage: 40, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "暗之牙", + 'zh-cn': "暗之牙", + ja: "やみのキバ" + }, + + damage: 70, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [860] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/066.ts b/data-asia/SV/SV7/066.ts new file mode 100644 index 000000000..19fa6098b --- /dev/null +++ b/data-asia/SV/SV7/066.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "長毛巨魔", + 'zh-cn': "長毛巨魔", + ja: "オーロンゲ" + }, + + illustrator: "Kazumasa Yasukuni", + category: "Pokemon", + hp: 170, + types: ["Darkness"], + + description: { + 'zh-tw': "生活在森林深處。即使因進化 而變得強壯挺拔,也改不掉做 無謂的壞事和惡作劇的習慣。", + 'zh-cn': "生活在森林深處。即使因進化 而變得強壯挺拔,也改不掉做 無謂的壞事和惡作劇的習慣。", + ja: "森の 奥深くに 暮らしている。 立派に 進化しても くだらない 悪さと 悪戯は やめないのだ。" + }, + + stage: "Stage2", + + attacks: [{ + name: { + 'zh-tw': "挑釁抓擊", + 'zh-cn': "挑釁抓擊", + ja: "ちょうはつクラッチ" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢與備戰寶可夢互換(由對手選擇放置於戰鬥場的寶可夢)。然後,新上場的寶可夢受到160點傷害。", + 'zh-cn': "將對手的戰鬥寶可夢與備戰寶可夢互換(由對手選擇放置於戰鬥場的寶可夢)。然後,新上場的寶可夢受到160點傷害。", + ja: "相手のバトルポケモンをベンチポケモンと入れ替える(バトル場に出すポケモンは相手が選ぶ)。その後、新しく出てきたポケモンに160ダメージ。" + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "擊拳", + 'zh-cn': "擊拳", + ja: "グーパンチ" + }, + + effect: { + 'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。", + ja: "このポケモンについているエネルギーを2個選び、トラッシュする。" + }, + + damage: 160, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [861] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/067.ts b/data-asia/SV/SV7/067.ts new file mode 100644 index 000000000..4649de443 --- /dev/null +++ b/data-asia/SV/SV7/067.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "齒輪兒", + 'zh-cn': "齒輪兒", + ja: "ギアル" + }, + + illustrator: "osare", + category: "Pokemon", + hp: 60, + types: ["Metal"], + + description: { + 'zh-tw': "2個身體比雙胞胎還要親近。 要是換成別的齒輪兒, 就沒有辦法好好咬合。", + 'zh-cn': "2個身體比雙胞胎還要親近。 要是換成別的齒輪兒, 就沒有辦法好好咬合。", + ja: "2つの 体は 双子よりも 近い。 べつの 体同士だと いまいち うまく 噛み合わない。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "吸引", + 'zh-cn': "吸引", + ja: "ひきつける" + }, + + effect: { + 'zh-tw': "從自己的牌庫抽出1張卡。", + 'zh-cn': "從自己的牌庫抽出1張卡。", + ja: "自分の山札を1枚引く。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "光束", + 'zh-cn': "光束", + ja: "ビーム" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [599] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/068.ts b/data-asia/SV/SV7/068.ts new file mode 100644 index 000000000..45dc95f0f --- /dev/null +++ b/data-asia/SV/SV7/068.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "齒輪組", + 'zh-cn': "齒輪組", + ja: "ギギアル" + }, + + illustrator: "Mina Nakai", + category: "Pokemon", + hp: 90, + types: ["Metal"], + + description: { + 'zh-tw': "如果認真起來,大齒輪外圈的 齒輪會和小齒輪完全接合。 此時轉速將會大幅提升。", + 'zh-cn': "如果認真起來,大齒輪外圈的 齒輪會和小齒輪完全接合。 此時轉速將會大幅提升。", + ja: "本気の ときは でかギアの 外の 歯車と ちびギアが 合致。 回転速度が 飛躍 するのだ。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "鐵之衝撞", + 'zh-cn': "鐵之衝撞", + ja: "アイアンタックル" + }, + + effect: { + 'zh-tw': "這隻寶可夢也受到20點傷害。", + 'zh-cn': "這隻寶可夢也受到20點傷害。", + ja: "このポケモンにも20ダメージ。" + }, + + damage: 60, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common", + dexId: [600] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/069.ts b/data-asia/SV/SV7/069.ts new file mode 100644 index 000000000..4e688e46d --- /dev/null +++ b/data-asia/SV/SV7/069.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "齒輪怪", + 'zh-cn': "齒輪怪", + ja: "ギギギアル" + }, + + illustrator: "Tonji Matsuno", + category: "Pokemon", + hp: 140, + types: ["Metal"], + + description: { + 'zh-tw': "會從尖刺的前端發出強力 電擊。紅色核心裡填充著 非常多的能量。", + 'zh-cn': "會從尖刺的前端發出強力 電擊。紅色核心裡填充著 非常多的能量。", + ja: "棘の 先から 強い 電撃を 発射。 赤いコアに たくさんの エネルギーを 蓄えている。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "緊急迴轉", + 'zh-cn': "緊急迴轉", + ja: "きんきゅうかいてん" + }, + + effect: { + 'zh-tw': "在自己的回合,若手牌有這張卡,且對手的場上有【2階進化】寶可夢,則可使用1次。將這張卡放置於備戰區。", + 'zh-cn': "在自己的回合,若手牌有這張卡,且對手的場上有【2階進化】寶可夢,則可使用1次。將這張卡放置於備戰區。", + ja: "自分の番に、このカードが手札にあり、相手の場に2進化ポケモンがいるなら、1回使える。このカードをベンチに出す。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "高級光束", + 'zh-cn': "高級光束", + ja: "ハイパービーム" + }, + + effect: { + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。", + 'zh-cn': "將這隻寶可夢身上附加的能量卡全部丟棄。", + ja: "このポケモンについているエネルギーを、すべてトラッシュする。" + }, + + damage: 130, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Rare", + dexId: [601] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/070.ts b/data-asia/SV/SV7/070.ts new file mode 100644 index 000000000..71798b5f3 --- /dev/null +++ b/data-asia/SV/SV7/070.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "美錄坦", + 'zh-cn': "美錄坦", + ja: "メルタン" + }, + + illustrator: "Apios", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + 'zh-tw': "會溶解金屬然後吃掉。 透過讓液體金屬在體內 循環來製造能量。", + 'zh-cn': "會溶解金屬然後吃掉。 透過讓液體金屬在體內 循環來製造能量。", + ja: "金属を 溶かして 食べてしまう。 液体金属を 循環させて 体内で エネルギーを つくる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "搬運破爛", + 'zh-cn': "搬運破爛", + ja: "ガラクタはこび" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇1張「寶可夢道具」卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇1張「寶可夢道具」卡,在給對手看過後加入手牌。並且重洗牌庫。", + ja: "自分の山札から「ポケモンのどうぐ」を1枚選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + cost: ["Metal"] + }, { + name: { + 'zh-tw': "衝撞", + 'zh-cn': "衝撞", + ja: "ぶつかる" + }, + + damage: 30, + cost: ["Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [808] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/071.ts b/data-asia/SV/SV7/071.ts new file mode 100644 index 000000000..2c0327bf9 --- /dev/null +++ b/data-asia/SV/SV7/071.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "美錄梅塔", + 'zh-cn': "美錄梅塔", + ja: "メルメタル" + }, + + illustrator: "Takumi Wada", + category: "Pokemon", + hp: 160, + types: ["Metal"], + + description: { + 'zh-tw': "壽命快到盡頭的時候, 身體就會生鏽解體。到最後 細小的碎片會復活為美錄坦。", + 'zh-cn': "壽命快到盡頭的時候, 身體就會生鏽解體。到最後 細小的碎片會復活為美錄坦。", + ja: "寿命が 尽きると 体が 錆びて 崩れる。 やがて 小さな 破片が メルタンに 復活する。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "砸碎", + 'zh-cn': "砸碎", + ja: "たたきつぶす" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "重塑斧", + 'zh-cn': "重塑斧", + ja: "リモデルアックス" + }, + + effect: { + 'zh-tw': "在造成傷害前,將這隻寶可夢身上附加的「寶可夢道具」卡丟棄。若無法丟棄,則這個招式失敗。", + 'zh-cn': "在造成傷害前,將這隻寶可夢身上附加的「寶可夢道具」卡丟棄。若無法丟棄,則這個招式失敗。", + ja: "ダメージを与える前に、このポケモンについている「ポケモンのどうぐ」をトラッシュする。トラッシュできないなら、このワザは失敗。" + }, + + damage: 250, + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [809] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/072.ts b/data-asia/SV/SV7/072.ts new file mode 100644 index 000000000..ec87b0b07 --- /dev/null +++ b/data-asia/SV/SV7/072.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鋁鋼龍", + 'zh-cn': "鋁鋼龍", + ja: "ジュラルドン" + }, + + illustrator: "Takeshi Nakamura", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + description: { + 'zh-tw': "金屬構成的身體雖然堅固 但無法散熱,因此牠會從 尾巴上的縫隙排出熱氣。", + 'zh-cn': "金屬構成的身體雖然堅固 但無法散熱,因此牠會從 尾巴上的縫隙排出熱氣。", + ja: "金属の ボディは 頑丈だが 熱が こもってしまうので 尻尾の スリットから 放熱している。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "頭突", + 'zh-cn': "頭突", + ja: "ぶちかます" + }, + + damage: 30, + cost: ["Metal"] + }, { + name: { + 'zh-tw': "激怒之錘", + 'zh-cn': "激怒之錘", + ja: "レイジングハンマー" + }, + + effect: { + 'zh-tw': "增加這隻寶可夢身上放置的傷害指示物的數量×10點傷害。", + 'zh-cn': "增加這隻寶可夢身上放置的傷害指示物的數量×10點傷害。", + ja: "このポケモンにのっているダメカンの数×10ダメージ追加。" + }, + + damage: "80+", + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [884] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/073.ts b/data-asia/SV/SV7/073.ts new file mode 100644 index 000000000..5f2813f69 --- /dev/null +++ b/data-asia/SV/SV7/073.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鋁鋼橋龍", + 'zh-cn': "鋁鋼橋龍", + ja: "ブリジュラス" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + hp: 180, + types: ["Metal"], + + description: { + 'zh-tw': "會在山裡挖洞來尋找食物。 身體非常堅硬,即使遇到 洞穴坍塌也絲毫不會在意。", + 'zh-cn': "會在山裡挖洞來尋找食物。 身體非常堅硬,即使遇到 洞穴坍塌也絲毫不會在意。", + ja: "山中で 穴を 掘り エサを 探す。 落盤に 巻きこまれても へっちゃらなくらい 頑丈。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "鋼之橋", + 'zh-cn': "鋼之橋", + ja: "はがねのかけはし" + }, + + effect: { + 'zh-tw': "只要這隻寶可夢在場上,自己的所有身上附有【鋼】能量的寶可夢【撤退】所需的能量全部消除。", + 'zh-cn': "只要這隻寶可夢在場上,自己的所有身上附有【鋼】能量的寶可夢【撤退】所需的能量全部消除。", + ja: "このポケモンがいるかぎり、エネルギーがついている自分のポケモン全員のにげるためのエネルギーは、すべてなくなる。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "鐵之引爆", + 'zh-cn': "鐵之引爆", + ja: "アイアンブラスター" + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。", + ja: "次の自分の番、このポケモンはワザが使えない。" + }, + + damage: 160, + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Rare", + dexId: [1018] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/074.ts b/data-asia/SV/SV7/074.ts new file mode 100644 index 000000000..9635bb88d --- /dev/null +++ b/data-asia/SV/SV7/074.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "拖拖蚓ex", + 'zh-cn': "拖拖蚓ex", + ja: "ミミズズex" + }, + + illustrator: "PLANETA Yamashita", + category: "Pokemon", + hp: 220, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "岩石封鎖", + 'zh-cn': "岩石封鎖", + ja: 'がんせきふうじ' + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + ja: '次の相手の番、このワザを受けたポケモンは、にげられない。' + }, + + damage: 150, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 4, + regulationMark: "H", + rarity: "Double rare", + + abilities: [{ + type: "Ability", + + name: { + ja: "ボコスカがえし", + 'zh-tw': "‌[特性]快掃拳返", + 'zh-cn': "‌[特性]快掃拳返", + }, + + effect: { + 'zh-tw': "這隻寶可夢受到對手的寶可夢招式的傷害時,將與這隻寶可夢身上附加的【鋼】能量的數量×2個的相同數量的傷害指示物,放置於使用招式的寶可夢身上。", + 'zh-cn': "這隻寶可夢受到對手的寶可夢招式的傷害時,將與這隻寶可夢身上附加的【鋼】能量的數量×2個的相同數量的傷害指示物,放置於使用招式的寶可夢身上。", + ja: "このポケモンが、相手のポケモンからワザのダメージを受けたとき、このポケモンについているエネルギーの数×2個ぶんのダメカンを、ワザを使ったポケモンにのせる。", + } + }] +} + +export default card diff --git a/data-asia/SV/SV7/075.ts b/data-asia/SV/SV7/075.ts new file mode 100644 index 000000000..c2a225209 --- /dev/null +++ b/data-asia/SV/SV7/075.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "猛雷鼓", + 'zh-cn': "猛雷鼓", + ja: "タケルライコ" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + + description: { + 'zh-tw': "據說會從體毛釋放出 雷電將周圍燒成焦土。 具體詳情不明。", + 'zh-cn': "據說會從體毛釋放出 雷電將周圍燒成焦土。 具體詳情不明。", + ja: "体毛から 放つ 雷で あたりを 焼きつくすと いわれる。 詳しいことは わかっていない。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "落雷風暴", + 'zh-cn': "落雷風暴", + ja: "らくらいあらし" + }, + + effect: { + 'zh-tw': "對手的1隻寶可夢受到這隻寶可夢身上附加的能量的數量×30點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻寶可夢受到這隻寶可夢身上附加的能量的數量×30點傷害。[在備戰區不計算弱點・抵抗力。]", + ja: "相手のポケモン1匹に、このポケモンについているエネルギーの数×30ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + }, + + cost: ["Lightning", "Fighting"] + }, { + name: { + 'zh-tw': "龍之頭擊", + 'zh-cn': "龍之頭擊", + ja: "リューズヘッド" + }, + + damage: 130, + cost: ["Lightning", "Fighting", "Colorless"] + }], + + retreat: 3, + regulationMark: "H", + rarity: "Rare", + dexId: [1021] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/076.ts b/data-asia/SV/SV7/076.ts new file mode 100644 index 000000000..e4612ae4f --- /dev/null +++ b/data-asia/SV/SV7/076.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "咕咕", + 'zh-cn': "咕咕", + ja: "ホーホー" + }, + + illustrator: "Yukihiro Tada", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + 'zh-tw': "由於能準確地報時, 因此在某些國家被視為是 明白世間一切事理的智慧之神。", + 'zh-cn': "由於能準確地報時, 因此在某些國家被視為是 明白世間一切事理的智慧之神。", + ja: "正確に 時を 告げることから 世界の ことわりを わきまえた 知恵の神様 とする 国もある。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "三次撞", + 'zh-cn': "三次撞", + ja: "さんどづき" + }, + + effect: { + 'zh-tw': "擲3次硬幣,造成正面出現的次數×10點傷害。", + 'zh-cn': "擲3次硬幣,造成正面出現的次數×10點傷害。", + ja: "コインを3回投げ、オモテの数×10ダメージ。" + }, + + damage: "10×", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [163] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/077.ts b/data-asia/SV/SV7/077.ts new file mode 100644 index 000000000..56ca418c3 --- /dev/null +++ b/data-asia/SV/SV7/077.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "貓頭夜鷹", + 'zh-cn': "貓頭夜鷹", + ja: "ヨルノズク" + }, + + illustrator: "matazo", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + description: { + 'zh-tw': "極為柔軟的翅膀讓牠在 飛行時不發一絲聲響, 因此可以悄悄地接近獵物。", + 'zh-cn': "極為柔軟的翅膀讓牠在 飛行時不發一絲聲響, 因此可以悄悄地接近獵物。", + ja: "非常に 柔らかい 羽は 飛ぶとき 音を 出さないので こっそり 獲物に 近づける。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "搜尋寶石", + 'zh-cn': "搜尋寶石", + ja: "ほうせきさがし" + }, + + effect: { + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,若自己的場上有「太晶」寶可夢,則可使用1次。從自己的牌庫選擇最多2張訓練家卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,若自己的場上有「太晶」寶可夢,則可使用1次。從自己的牌庫選擇最多2張訓練家卡,在給對手看過後加入手牌。並且重洗牌庫。", + ja: "自分の番に、このカードを手札から出して進化させたとき、自分の場に「テラスタル」のポケモンがいるなら、1回使える。自分の山札からトレーナーズを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "高速之翼", + 'zh-cn': "高速之翼", + ja: "スピードウイング" + }, + + damage: 60, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Rare", + dexId: [164] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/078.ts b/data-asia/SV/SV7/078.ts new file mode 100644 index 000000000..3e609cc8f --- /dev/null +++ b/data-asia/SV/SV7/078.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "魅力喵", + 'zh-cn': "魅力喵", + ja: "ニャルマー" + }, + + illustrator: "Yuriko Akase", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + 'zh-tw': "一不高興就會豎起爪子。 但有時也會從喉嚨發出聲響來撒嬌。 這樣的性格很受部分人的喜愛。", + 'zh-cn': "一不高興就會豎起爪子。 但有時也會從喉嚨發出聲響來撒嬌。 這樣的性格很受部分人的喜愛。", + ja: "気に入らないと ツメを 立てるが たまに のどを 鳴らして 甘える 性格が 一部に 大人気だ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "鉤住", + 'zh-cn': "鉤住", + ja: "ひっかける" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [431] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/079.ts b/data-asia/SV/SV7/079.ts new file mode 100644 index 000000000..df837b68b --- /dev/null +++ b/data-asia/SV/SV7/079.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "東施喵", + 'zh-cn': "東施喵", + ja: "ブニャット" + }, + + illustrator: "Saboteri", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + + description: { + 'zh-tw': "即使是其他寶可夢的住所, 如果感覺很舒服的話, 就會當成自己的住所賴著不走。", + 'zh-cn': "即使是其他寶可夢的住所, 如果感覺很舒服的話, 就會當成自己的住所賴著不走。", + ja: "ほかの ポケモンの 住処でも 居心地が 良ければ 居座って 自分の 住処に してしまう。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "喵打滾", + 'zh-cn': "喵打滾", + ja: "ごろにゃん" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。", + 'zh-cn': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。", + ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージや効果を受けない。" + }, + + damage: 80, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [432] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/080.ts b/data-asia/SV/SV7/080.ts new file mode 100644 index 000000000..831854b13 --- /dev/null +++ b/data-asia/SV/SV7/080.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "旋轉洛托姆", + 'zh-cn': "旋轉洛托姆", + ja: "スピンロトム" + }, + + illustrator: "Toshinao Aoki", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + 'zh-tw': "雖然能讓洛托姆鑽進去的 家電用品有好幾種, 但最先被研發出的是電風扇。", + 'zh-cn': "雖然能讓洛托姆鑽進去的 家電用品有好幾種, 但最先被研發出的是電風扇。", + ja: "ロトムが 入れる 家電製品は いくつか あるが いちばん 初めに 開発されたのは 扇風機だ。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "風扇呼喚", + 'zh-cn': "風扇呼喚", + ja: "ファンコール" + }, + + effect: { + 'zh-tw': "只有在自己的最初回合可使用1次。從自己的牌庫選擇最多3張HP為「100」以下的【無】寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。在這個回合,若已經使出了其他的「風扇呼喚」,則這個特性無法使用。", + 'zh-cn': "只有在自己的最初回合可使用1次。從自己的牌庫選擇最多3張HP為「100」以下的【無】寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。在這個回合,若已經使出了其他的「風扇呼喚」,則這個特性無法使用。", + ja: "最初の自分の番にだけ1回使える。自分の山札から、HPが「100」以下のポケモンを3枚まで選び、相手に見せて、手札に加える。そして山札を切る。この番、すでに別の「ファンコール」を使っていたなら、この特性は使えない。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "突擊著地", + 'zh-cn': "突擊著地", + ja: "とつげきランディング" + }, + + effect: { + 'zh-tw': "若場上沒有競技場卡,則這個招式失敗。", + 'zh-cn': "若場上沒有競技場卡,則這個招式失敗。", + ja: "場にスタジアムが出ていないなら、このワザは失敗。" + }, + + damage: 70, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [479] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/081.ts b/data-asia/SV/SV7/081.ts new file mode 100644 index 000000000..fed0e528c --- /dev/null +++ b/data-asia/SV/SV7/081.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "爆炸頭水牛", + 'zh-cn': "爆炸頭水牛", + ja: "バッフロン" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + description: { + 'zh-tw': "只用頭錘就能壓扁汽車。 頭部的那團毛越大一團, 在群體裡的地位就會越高。", + 'zh-cn': "只用頭錘就能壓扁汽車。 頭部的那團毛越大一團, 在群體裡的地位就會越高。", + ja: "頭突きだけで 車を 潰す。 頭の 毛が 大きいほど 群れでの 地位が 上がるのだ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "潛力", + 'zh-cn': "潛力", + ja: "そこぢから" + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。", + ja: "次の自分の番、このポケモンはワザが使えない。" + }, + + damage: 130, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon", + dexId: [626], + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "‌[特性]捲牆", + 'zh-cn': "‌[特性]捲牆", + ja: "カーリーウォール" + }, + + effect: { + 'zh-tw': "只要這隻寶可夢與自己的其他「‌爆炸頭水牛」在場上,自己的所有【無】屬性的【基礎】寶可夢受到對手的寶可夢招式的傷害「-60」點。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。", + 'zh-cn': "只要這隻寶可夢與自己的其他「‌爆炸頭水牛」在場上,自己的所有【無】屬性的【基礎】寶可夢受到對手的寶可夢招式的傷害「-60」點。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。", + ja: "このポケモンと、自分の別の「バッフロン」がいるかぎり、自分のタイプのたねポケモン全員が、相手のポケモンから受けるワザのダメージは「-60」される。この効果は、この特性を持つポケモンが何匹いても、重ならない。" + } + }] +} + +export default card diff --git a/data-asia/SV/SV7/082.ts b/data-asia/SV/SV7/082.ts new file mode 100644 index 000000000..b57b6d857 --- /dev/null +++ b/data-asia/SV/SV7/082.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "龍捲雲", + 'zh-cn': "龍捲雲", + ja: "トルネロス" + }, + + illustrator: "Uninori", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + description: { + 'zh-tw': "下半身被雲一般的能量包裹著。 能以時速300公里的速度 在空中飛行。", + 'zh-cn': "下半身被雲一般的能量包裹著。 能以時速300公里的速度 在空中飛行。", + ja: "雲のような エネルギー体に 下半身が 包まれている。 時速300キロで 空を 飛ぶ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "拳骨", + 'zh-cn': "拳骨", + ja: "げんこつ" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "暴風障壁", + 'zh-cn': "暴風障壁", + ja: "ぼうふうしょうへき" + }, + + effect: { + 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-50」點。", + 'zh-cn': "在下個對手的回合,這隻寶可夢受到招式的傷害「-50」點。", + ja: "次の相手の番、このポケモンが受けるワザのダメージは「-50」される。" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [641] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/083.ts b/data-asia/SV/SV7/083.ts new file mode 100644 index 000000000..a5c3bf94a --- /dev/null +++ b/data-asia/SV/SV7/083.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "小箭雀", + 'zh-cn': "小箭雀", + ja: "ヤヤコマ" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + 'zh-tw': "在山野中和街上生活。 曾為了與怒鸚哥爭地盤, 而在街上展開了大混戰。", + 'zh-cn': "在山野中和街上生活。 曾為了與怒鸚哥爭地盤, 而在街上展開了大混戰。", + ja: "野山や 街中で 生活する。 イキリンコと 縄張りを 争い 街中で 大乱闘になった。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "送回", + 'zh-cn': "送回", + ja: "つきかえす" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]", + 'zh-cn': "將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]", + ja: "相手のバトルポケモンをベンチポケモンと入れ替える。[バトル場に出すポケモンは相手が選ぶ。]" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [661] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/084.ts b/data-asia/SV/SV7/084.ts new file mode 100644 index 000000000..5436a3ed0 --- /dev/null +++ b/data-asia/SV/SV7/084.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "火箭雀", + 'zh-cn': "火箭雀", + ja: "ヒノヤコマ" + }, + + illustrator: "Julie Hang", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + description: { + 'zh-tw': "擁有半徑2~3公里的地盤。 絕不會輕饒任何進到 地盤裡的鳥寶可夢。", + 'zh-cn': "擁有半徑2~3公里的地盤。 絕不會輕饒任何進到 地盤裡的鳥寶可夢。", + ja: "半径 2~3キロの 縄張りを 持つ。 縄張りに 入ってきた 鳥ポケモンは 容赦しない。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "高速飛行", + 'zh-cn': "高速飛行", + ja: "スピードひこう" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [662] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/085.ts b/data-asia/SV/SV7/085.ts new file mode 100644 index 000000000..9cf10e1db --- /dev/null +++ b/data-asia/SV/SV7/085.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "烈箭鷹", + 'zh-cn': "烈箭鷹", + ja: "ファイアロー" + }, + + illustrator: "Nurikabe", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + + description: { + 'zh-tw': "一旦興奮就會從羽毛間 噴出火花。不會燒焦的 羽毛會被當成防火材利用。", + 'zh-cn': "一旦興奮就會從羽毛間 噴出火花。不會燒焦的 羽毛會被當成防火材利用。", + ja: "興奮すると 羽毛の 隙間から 火の粉を 吹く。 焦げない 羽毛は 防火素材として 利用される。" + }, + + stage: "Stage2", + + attacks: [{ + name: { + 'zh-tw': "氣旋競爭", + 'zh-cn': "氣旋競爭", + ja: "エアロチェイス" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢【撤退】所需的能量為2個以上,則增加110點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢【撤退】所需的能量為2個以上,則增加110點傷害。", + ja: "相手のバトルポケモンのにげるためのエネルギーが2個以上なら、110ダメージ追加。" + }, + + damage: "110+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 0, + regulationMark: "H", + rarity: "Uncommon", + dexId: [663] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/086.ts b/data-asia/SV/SV7/086.ts new file mode 100644 index 000000000..b2e3a32e3 --- /dev/null +++ b/data-asia/SV/SV7/086.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "毛辮羊", + 'zh-cn': "毛辮羊", + ja: "ウールー" + }, + + illustrator: "Wintr Wandr", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + 'zh-tw': "捲捲的體毛彈性十足。 就算從懸崖上掉下去, 也不會受傷。", + 'zh-cn': "捲捲的體毛彈性十足。 就算從懸崖上掉下去, 也不會受傷。", + ja: "パーマの かかった 体毛は 高い クッション性が ある。 崖から 落ちても へっちゃら。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "搗碎", + 'zh-cn': "搗碎", + ja: "つきくずす" + }, + + effect: { + 'zh-tw': "若希望,將場上的競技場卡丟棄。", + 'zh-cn': "若希望,將場上的競技場卡丟棄。", + ja: "のぞむなら、場に出ているスタジアムをトラッシュする。" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [831] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/087.ts b/data-asia/SV/SV7/087.ts new file mode 100644 index 000000000..ef8b05fb0 --- /dev/null +++ b/data-asia/SV/SV7/087.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "毛毛角羊", + 'zh-cn': "毛毛角羊", + ja: "バイウールー" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + description: { + 'zh-tw': "用牠那彈力十足的毛 織成的地毯就像是彈簧墊, 可以站上去蹦蹦跳。", + 'zh-cn': "用牠那彈力十足的毛 織成的地毯就像是彈簧墊, 可以站上去蹦蹦跳。", + ja: "弾力の ある 毛で 織った カーペットは トランポリンみたいで 乗れば ピョンピョン 跳ねるのだ。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "柔軟羊毛", + 'zh-cn': "柔軟羊毛", + ja: "やわらかウール" + }, + + effect: { + 'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。", + 'zh-cn': "這隻寶可夢受到招式的傷害「-30」點。", + ja: "このポケモンが受けるワザのダメージは「-30」される。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "搗碎", + 'zh-cn': "搗碎", + ja: "つきくずす" + }, + + effect: { + 'zh-tw': "若希望,將場上的競技場卡丟棄。", + 'zh-cn': "若希望,將場上的競技場卡丟棄。", + ja: "のぞむなら、場に出ているスタジアムをトラッシュする。" + }, + + damage: 70, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon", + dexId: [832] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/088.ts b/data-asia/SV/SV7/088.ts new file mode 100644 index 000000000..a53b4db45 --- /dev/null +++ b/data-asia/SV/SV7/088.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "太樂巴戈斯ex", + 'zh-cn': "太樂巴戈斯ex", + ja: "テラパゴスex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "聯盟擊", + 'zh-cn': "聯盟擊", + ja: "ユニオンビート" + }, + + effect: { + 'zh-tw': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。", + 'zh-cn': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。", + ja: "このワザは、後攻プレイヤーの最初の番には使えない。自分のベンチポケモンの数×30ダメージ。" + }, + + damage: "30×", + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "皇冠蛋白石", + 'zh-cn': "皇冠蛋白石", + ja: "クラウンオパール" + }, + + effect: { + 'zh-tw': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。", + 'zh-cn': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。", + ja: "次の相手の番、このポケモンはたねポケモン(ポケモンをのぞく)からワザのダメージを受けない。" + }, + + damage: 180, + cost: ["Grass", "Water", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/089.ts b/data-asia/SV/SV7/089.ts new file mode 100644 index 000000000..c06cb5760 --- /dev/null +++ b/data-asia/SV/SV7/089.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "玻璃喇叭", + 'zh-cn': "玻璃喇叭", + ja: "ガラスのラッパ" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡只有在自己的場上有「太晶」寶可夢時才可使用。 選擇最多2隻自己的備戰區的【無】寶可夢,從棄牌區附給那些寶可夢各1張基本能量卡。", + 'zh-cn': "這張卡只有在自己的場上有「太晶」寶可夢時才可使用。 選擇最多2隻自己的備戰區的【無】寶可夢,從棄牌區附給那些寶可夢各1張基本能量卡。", + ja: "このカードは、自分の場に「テラスタル」のポケモンがいるときにしか使えない。\n\n自分のベンチのポケモンを2匹まで選び、トラッシュから基本エネルギーを1枚ずつつける。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/090.ts b/data-asia/SV/SV7/090.ts new file mode 100644 index 000000000..75ed641f9 --- /dev/null +++ b/data-asia/SV/SV7/090.ts @@ -0,0 +1,28 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "陳舊的根狀化石", + 'zh-cn': "陳舊的根狀化石", + ja: "古びたねっこの化石" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡可作為HP60的【無】屬性的【基礎】寶可夢放置於場上。這張卡不會陷入特殊狀態,無法撤退。 若在自己的回合中,則可將場上的這張卡丟棄。", + 'zh-cn': "這張卡可作為HP60的【無】屬性的【基礎】寶可夢放置於場上。這張卡不會陷入特殊狀態,無法撤退。 若在自己的回合中,則可將場上的這張卡丟棄。", + ja: "このカードは、HP60のタイプのたねポケモンとして、場に出せる。このカードは、特殊状態にならず、にげられない。\n自分の番の中でなら、場に出ているこのカードをトラッシュできる。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "Common", + hp: 60 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/091.ts b/data-asia/SV/SV7/091.ts new file mode 100644 index 000000000..9abd92e0a --- /dev/null +++ b/data-asia/SV/SV7/091.ts @@ -0,0 +1,28 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "陳舊的背蓋化石", + 'zh-cn': "陳舊的背蓋化石", + ja: "古びたふたの化石" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡可作為HP60的【無】屬性的【基礎】寶可夢放置於場上。這張卡不會陷入特殊狀態,無法撤退。 若在自己的回合中,則可將場上的這張卡丟棄。", + 'zh-cn': "這張卡可作為HP60的【無】屬性的【基礎】寶可夢放置於場上。這張卡不會陷入特殊狀態,無法撤退。 若在自己的回合中,則可將場上的這張卡丟棄。", + ja: "このカードは、HP60のタイプのたねポケモンとして、場に出せる。このカードは、特殊状態にならず、にげられない。\n自分の番の中でなら、場に出ているこのカードをトラッシュできる。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "Common", + hp: 60 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/092.ts b/data-asia/SV/SV7/092.ts new file mode 100644 index 000000000..3c55507ee --- /dev/null +++ b/data-asia/SV/SV7/092.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "福祿果", + 'zh-cn': "福祿果", + ja: "ウタンのみ" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + 'zh-tw': "附有這張卡的寶可夢受到對手的【超】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。", + 'zh-cn': "附有這張卡的寶可夢受到對手的【超】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。", + ja: "このカードをつけているポケモンが、相手のポケモンからワザのダメージを受けるとき、そのダメージは「-60」され、このカードをトラッシュする。" + }, + + trainerType: "Tool", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/093.ts b/data-asia/SV/SV7/093.ts new file mode 100644 index 000000000..0620c9f86 --- /dev/null +++ b/data-asia/SV/SV7/093.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "巧可果", + 'zh-cn': "巧可果", + ja: "オッカのみ" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + 'zh-tw': "‌附有這張卡的寶可夢受到對手的【火】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。", + 'zh-cn': "‌附有這張卡的寶可夢受到對手的【火】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。", + ja: "このカードをつけているポケモンが、相手のポケモンからワザのダメージを受けるとき、そのダメージは「-60」され、このカードをトラッシュする。" + }, + + trainerType: "Tool", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/094.ts b/data-asia/SV/SV7/094.ts new file mode 100644 index 000000000..a13ba94df --- /dev/null +++ b/data-asia/SV/SV7/094.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "璀璨結晶", + 'zh-cn': "璀璨結晶", + ja: "きらめく結晶" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + 'zh-tw': "附有這張卡的「太晶」寶可夢使用招式時,使用那個招式所需的能量減少1個。(減少的能量任何屬性皆可。)", + 'zh-cn': "附有這張卡的「太晶」寶可夢使用招式時,使用那個招式所需的能量減少1個。(減少的能量任何屬性皆可。)", + ja: "このカードをつけている「テラスタル」のポケモンがワザを使うとき、そのワザを使うためのエネルギーは、1個ぶん少なくなる。(少なくなるのは、どのタイプのエネルギーでもよい。)" + }, + + trainerType: "Tool", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/095.ts b/data-asia/SV/SV7/095.ts new file mode 100644 index 000000000..554f5fd6e --- /dev/null +++ b/data-asia/SV/SV7/095.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "重力之玉", + 'zh-cn': "重力之玉", + ja: "重力玉" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + 'zh-tw': "只要附有這張卡的寶可夢在戰鬥場上,雙方的戰鬥寶可夢【撤退】所需的能量各增加1個。", + 'zh-cn': "只要附有這張卡的寶可夢在戰鬥場上,雙方的戰鬥寶可夢【撤退】所需的能量各增加1個。", + ja: "このカードをつけているポケモンがバトル場にいるかぎり、おたがいのバトルポケモンのにげるためのエネルギーは、それぞれ1個ぶん多くなる。" + }, + + trainerType: "Tool", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/096.ts b/data-asia/SV/SV7/096.ts new file mode 100644 index 000000000..7aef58835 --- /dev/null +++ b/data-asia/SV/SV7/096.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "奢華炸彈", + 'zh-cn': "奢華炸彈", + ja: "デラックスボム" + }, + + illustrator: "inose yukie", + category: "Trainer", + + effect: { + 'zh-tw': "附有這張卡的寶可夢在戰鬥場受到對手的寶可夢招式的傷害時,在使用招式的寶可夢身上放置12個傷害指示物。然後,將這張卡丟棄。", + 'zh-cn': "附有這張卡的寶可夢在戰鬥場受到對手的寶可夢招式的傷害時,在使用招式的寶可夢身上放置12個傷害指示物。然後,將這張卡丟棄。", + ja: "このカードをつけているポケモンが、バトル場で相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンにダメカンを12個のせる。その後、このカードをトラッシュする。" + }, + + trainerType: "Tool", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/097.ts b/data-asia/SV/SV7/097.ts new file mode 100644 index 000000000..27325939a --- /dev/null +++ b/data-asia/SV/SV7/097.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "赤松", + 'zh-cn': "赤松", + ja: "アカマツ" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + 'zh-tw': "從自己的牌庫選擇最多2張各不同屬性的基本能量卡,在給對手看過後,其中1張加入手牌,剩餘的能量卡附於自己的寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張各不同屬性的基本能量卡,在給對手看過後,其中1張加入手牌,剩餘的能量卡附於自己的寶可夢身上。並且重洗牌庫。", + ja: "自分の山札から、それぞれちがうタイプの基本エネルギーを2枚まで選び、相手に見せて、どちらか1枚を手札に加え、残りのエネルギーを自分のポケモンにつける。そして山札を切る。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/098.ts b/data-asia/SV/SV7/098.ts new file mode 100644 index 000000000..7216736b8 --- /dev/null +++ b/data-asia/SV/SV7/098.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "紫竽", + 'zh-cn': "紫竽", + ja: "タロ" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + 'zh-tw': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出4張卡。若對手剩餘獎賞卡的張數為3張以下,則改爲抽出8張卡。", + 'zh-cn': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出4張卡。若對手剩餘獎賞卡的張數為3張以下,則改爲抽出8張卡。", + ja: "自分の手札をすべて山札にもどして切る。その後、山札を4枚引く。相手のサイドの残り枚数が3枚以下なら、引く枚数は8枚になる。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/099.ts b/data-asia/SV/SV7/099.ts new file mode 100644 index 000000000..3fffeacbb --- /dev/null +++ b/data-asia/SV/SV7/099.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "海岱", + 'zh-cn': "海岱", + ja: "ハイダイ" + }, + + illustrator: "Hideki Ishikawa", + category: "Trainer", + + effect: { + 'zh-tw': "選擇2張自己的手牌,以任意順序排列,放回牌庫下方。然後,從牌庫抽出4張卡。(若無法放回2張自己的手牌,則無法使用這張卡。)", + 'zh-cn': "選擇2張自己的手牌,以任意順序排列,放回牌庫下方。然後,從牌庫抽出4張卡。(若無法放回2張自己的手牌,則無法使用這張卡。)", + ja: "自分の手札を2枚選び、好きな順番に入れ替えて、山札の下にもどす。その後、山札を4枚引く。(自分の手札を2枚もどせないなら、このカードは使えない。)" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/100.ts b/data-asia/SV/SV7/100.ts new file mode 100644 index 000000000..6ba2ad917 --- /dev/null +++ b/data-asia/SV/SV7/100.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "白蕾雅", + 'zh-cn': "白蕾雅", + ja: "ブライア" + }, + + illustrator: "Naoki Saito", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡只有在對手剩餘獎賞卡的張數為2張時才可使用。 在這個回合,若對手的戰鬥寶可夢因自己的「太晶」寶可夢使用的招式的傷害而【昏厥】了,則多獲得1張獎賞卡。", + 'zh-cn': "這張卡只有在對手剩餘獎賞卡的張數為2張時才可使用。 在這個回合,若對手的戰鬥寶可夢因自己的「太晶」寶可夢使用的招式的傷害而【昏厥】了,則多獲得1張獎賞卡。", + ja: "このカードは、相手のサイドの残り枚数が2枚のときにしか使えない。\n\nこの番、自分の「テラスタル」のポケモンが使うワザのダメージで、相手のバトルポケモンがきぜつしたなら、サイドを1枚多くとる。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/101.ts b/data-asia/SV/SV7/101.ts new file mode 100644 index 000000000..63262b967 --- /dev/null +++ b/data-asia/SV/SV7/101.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "壯偉碩木", + 'zh-cn': "壯偉碩木", + ja: "偉大な大樹" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + 'zh-tw': "雙方玩家在每個自己的回合時,可使用1次,可從自己的牌庫選擇1張從自己的場上的1隻【基礎】寶可夢進化而來的【1階進化】寶可夢卡,放置於那隻寶可夢身上完成進化。若進化了,則可繼續選擇1張【2階進化】寶可夢卡,完成進化。並且重洗牌庫。(自己的最初回合或剛使出的【基礎】寶可夢無法完成進化。)", + 'zh-cn': "雙方玩家在每個自己的回合時,可使用1次,可從自己的牌庫選擇1張從自己的場上的1隻【基礎】寶可夢進化而來的【1階進化】寶可夢卡,放置於那隻寶可夢身上完成進化。若進化了,則可繼續選擇1張【2階進化】寶可夢卡,完成進化。並且重洗牌庫。(自己的最初回合或剛使出的【基礎】寶可夢無法完成進化。)", + ja: "おたがいのプレイヤーは、自分の番ごとに1回、自分の場のたねポケモン1匹から進化する1進化ポケモンを、自分の山札から1枚選び、そのポケモンにのせて進化させてよい。進化したなら、続けて2進化ポケモンを1枚選び、進化させてよい。そして山札を切る。(最初の自分の番や、出したばかりのたねポケモンは進化させられない。)" + }, + + trainerType: "Stadium", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/102.ts b/data-asia/SV/SV7/102.ts new file mode 100644 index 000000000..7f61d80b2 --- /dev/null +++ b/data-asia/SV/SV7/102.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "零之大空洞", + 'zh-cn': "零之大空洞", + ja: "ゼロの大空洞" + }, + + illustrator: "MARINA Chikazawa", + category: "Trainer", + + effect: { + 'zh-tw': "自己的場上有「太晶」寶可夢的玩家的可放置於備戰區的寶可夢數量改為8隻。 (這張卡被丟棄時,或‌自己的場上沒有了「太晶」寶可夢時,將備戰區的寶可夢丟棄直到變為5隻為止。若雙方都要丟棄,則這張卡的持有人先丟棄。)", + 'zh-cn': "自己的場上有「太晶」寶可夢的玩家的可放置於備戰區的寶可夢數量改為8隻。 (這張卡被丟棄時,或‌自己的場上沒有了「太晶」寶可夢時,將備戰區的寶可夢丟棄直到變為5隻為止。若雙方都要丟棄,則這張卡的持有人先丟棄。)", + ja: "自分の場に「テラスタル」のポケモンがいるプレイヤーが、ベンチに出せるポケモンの数は8匹になる。\n\n(このカードがトラッシュされたときか、自分の場に「テラスタル」のポケモンがいなくなったとき、ベンチが5匹になるまでトラッシュする。おたがいにトラッシュするなら、このカードの持ち主から行う。)" + }, + + trainerType: "Stadium", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/103.ts b/data-asia/SV/SV7/103.ts new file mode 100644 index 000000000..dc9cfcf0a --- /dev/null +++ b/data-asia/SV/SV7/103.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "安瓢蟲", + 'zh-cn': "安瓢蟲", + ja: "レディアン" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + 'zh-tw': "夜空中星光閃爍時, 牠會一邊灑著閃亮的粉末, 一邊翩翩飛過。", + 'zh-cn': "夜空中星光閃爍時, 牠會一邊灑著閃亮的粉末, 一邊翩翩飛過。", + ja: "夜空に 星が 瞬くとき 輝く 粉を 振りまきながら ひらひらと 飛んでいく。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "高速星星", + 'zh-cn': "高速星星", + ja: 'スピードスター' + }, + + effect: { + 'zh-tw': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。", + ja: 'このワザのダメージは、弱点・抵抗力と、相手のバトルポケモンにかかっている効果を計算しない。' + }, + + damage: 70, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 0, + regulationMark: "H", + dexId: [166], + + abilities: [{ + type: "Ability", + + name: { + ja: "きらぼしもよう", + 'zh-tw': "‌[特性]繁星花紋", + 'zh-cn': "‌[特性]繁星花紋" + }, + + effect: { + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。選擇1隻對手備戰區剩餘HP為「90」以下的寶可夢,與戰鬥寶可夢互換。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。選擇1隻對手備戰區剩餘HP為「90」以下的寶可夢,與戰鬥寶可夢互換。", + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。相手のベンチの残りHPが「90」以下のポケモンを1匹選び、バトルポケモンと入れ替える。" + } + }], + + rarity: "None" +} + +export default card diff --git a/data-asia/SV/SV7/104.ts b/data-asia/SV/SV7/104.ts new file mode 100644 index 000000000..eb984c87e --- /dev/null +++ b/data-asia/SV/SV7/104.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "觸手百合", + 'zh-cn': "觸手百合", + ja: "リリーラ" + }, + + illustrator: "Mori Yuu", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + 'zh-tw': "從化石復原而來的寶可夢。 曾經棲息在大約1億年前 的溫暖大海裡。", + 'zh-cn': "從化石復原而來的寶可夢。 曾經棲息在大約1億年前 的溫暖大海裡。", + ja: "化石から 復元した ポケモン。 およそ 1億年前の 温かい 海に 生息していた。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "束縛", + 'zh-cn': "束縛", + ja: "しばりつける" + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。" + }, + + damage: 50, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + dexId: [345], + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/105.ts b/data-asia/SV/SV7/105.ts new file mode 100644 index 000000000..b4985cd16 --- /dev/null +++ b/data-asia/SV/SV7/105.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "爆焰龜獸", + 'zh-cn': "爆焰龜獸", + ja: "バクガメス" + }, + + illustrator: "Yukihiro Tada", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + 'zh-tw': "背上的甲殼上敷了炸藥。 會用大爆炸去回擊 來攻擊自己的敵人。", + 'zh-cn': "背上的甲殼上敷了炸藥。 會用大爆炸去回擊 來攻擊自己的敵人。", + ja: "爆薬で コーティングされた 甲羅を 背負う。 攻撃してきた 敵を 大爆発で 返り討ち。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "火焰陣", + 'zh-cn': "火焰陣", + ja: "フレイムサークル" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【灼傷】。在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "將對手的戰鬥寶可夢【灼傷】。在下個對手的回合,受到這個招式的寶可夢無法撤退。", + ja: "相手のバトルポケモンをやけどにする。次の相手の番、このワザを受けたポケモンは、にげられない。" + }, + + damage: 50, + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "猛火猛撞", + 'zh-cn': "猛火猛撞", + ja: "もうかのとっしん" + }, + + effect: { + 'zh-tw': "這隻寶可夢也受到60點傷害。", + 'zh-cn': "這隻寶可夢也受到60點傷害。", + ja: "このポケモンにも60ダメージ。" + }, + + damage: 180, + cost: ["Fire", "Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + dexId: [776], + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/106.ts b/data-asia/SV/SV7/106.ts new file mode 100644 index 000000000..913601c0c --- /dev/null +++ b/data-asia/SV/SV7/106.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "騰蹴小將", + 'zh-cn': "騰蹴小將", + ja: "ラビフット" + }, + + illustrator: "rika", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + description: { + 'zh-tw': "以自己多彩多姿的踢技為傲, 但利用因火焰而變熱的額頭 使出的頭錘也十分強勁。", + 'zh-cn': "以自己多彩多姿的踢技為傲, 但利用因火焰而變熱的額頭 使出的頭錘也十分強勁。", + ja: "多彩な キック技が 自慢だが 炎で 熱くなった 額で 繰り出す 頭突きも 強力。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "下盤踢", + 'zh-cn': "下盤踢", + ja: "ローキック" + }, + + damage: 30, + cost: ["Fire"] + }, { + name: { + 'zh-tw': "烈焰", + 'zh-cn': "烈焰", + ja: "かえん" + }, + + damage: 60, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + dexId: [814], + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/107.ts b/data-asia/SV/SV7/107.ts new file mode 100644 index 000000000..a6cd4f298 --- /dev/null +++ b/data-asia/SV/SV7/107.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "好勝毛蟹", + 'zh-cn': "好勝毛蟹", + ja: "ケケンカニ" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 160, + types: ["Water"], + + description: { + 'zh-tw': "拳擊雖強,動作卻慢。 會從口裡噴出結冰的泡沫 來封住對手的行動。", + 'zh-cn': "拳擊雖強,動作卻慢。 會從口裡噴出結冰的泡沫 來封住對手的行動。", + ja: "パンチは 強力だが 動きが 遅い。 口から 氷の 泡を 吹いて 相手の 動きを 止める。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "揮大拳", + 'zh-cn': "揮大拳", + ja: 'おおぶりパンチ' + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「揮大拳」。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「揮大拳」。", + ja: '次の自分の番、このポケモンは「おおぶりパンチ」が使えない。' + }, + + damage: 250, + cost: ["Water", "Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + dexId: [740], + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "‌[特性]事先準備", + 'zh-cn': "‌[特性]事先準備", + ja: "したごしらえ" + }, + + effect: { + 'zh-tw': "這隻寶可夢使用招式所需的【無】能量,減少自己的棄牌區的「海岱」的張數。", + 'zh-cn': "這隻寶可夢使用招式所需的【無】能量,減少自己的棄牌區的「海岱」的張數。", + ja: "自分のトラッシュにある「ハイダイ」の枚数ぶん、このポケモンがワザを使うためのエネルギーは少なくなる。" + } + }], + + rarity: "None" +} + +export default card diff --git a/data-asia/SV/SV7/108.ts b/data-asia/SV/SV7/108.ts new file mode 100644 index 000000000..b78e0a65a --- /dev/null +++ b/data-asia/SV/SV7/108.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電電蟲", + 'zh-cn': "電電蟲", + ja: "バチュル" + }, + + illustrator: "MARINA Chikazawa", + category: "Pokemon", + hp: 30, + types: ["Lightning"], + + description: { + 'zh-tw': "自己無法製造電力, 會附在其他大型寶可夢身上 吸取靜電。", + 'zh-cn': "自己無法製造電力, 會附在其他大型寶可夢身上 吸取靜電。", + ja: "自分では 電気を つくれないので ほかの 大きな ポケモンに とりつき 静電気を 吸いとる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "電電充能", + 'zh-cn': "電電充能", + ja: "バチュチャージ" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇「基本【草】能量」卡與「基本【雷】能量」卡最多各2張,以任意方式附於自己的寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇「基本【草】能量」卡與「基本【雷】能量」卡最多各2張,以任意方式附於自己的寶可夢身上。並且重洗牌庫。", + ja: "自分の山札から「基本エネルギー」と「基本エネルギー」をそれぞれ2枚まで選び、自分のポケモンに好きなようにつける。そして山札を切る。" + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + dexId: [595], + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/109.ts b/data-asia/SV/SV7/109.ts new file mode 100644 index 000000000..de704aafd --- /dev/null +++ b/data-asia/SV/SV7/109.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "捷拉奧拉", + 'zh-cn': "捷拉奧拉", + ja: "ゼラオラ" + }, + + illustrator: "Kazumasa Yasukuni", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + 'zh-tw': "以媲美閃電的速度奔跑, 用能釋放高壓電的爪子 將敵人撕得粉碎。", + 'zh-cn': "以媲美閃電的速度奔跑, 用能釋放高壓電的爪子 將敵人撕得粉碎。", + ja: "雷に 匹敵する スピードで 走り 大電圧を 発する ツメで 敵を 八つ裂きにする。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "鬥戰雷電", + 'zh-cn': "鬥戰雷電", + ja: "コンバットサンダー" + }, + + effect: { + 'zh-tw': "增加對手的備戰寶可夢的數量×20點傷害。", + 'zh-cn': "增加對手的備戰寶可夢的數量×20點傷害。", + ja: "相手のベンチポケモンの数×20ダメージ追加。" + }, + + damage: "20+", + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + dexId: [807], + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/110.ts b/data-asia/SV/SV7/110.ts new file mode 100644 index 000000000..c2e39b34c --- /dev/null +++ b/data-asia/SV/SV7/110.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "小仙奶", + 'zh-cn': "小仙奶", + ja: "マホミル" + }, + + illustrator: "Dsuke", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + 'zh-tw': "遭到襲擊時,會全身撞向對手, 趁著對方沾滿鮮奶油而看不見前方, 或因奶油的美味而愣住時迅速逃跑。", + 'zh-cn': "遭到襲擊時,會全身撞向對手, 趁著對方沾滿鮮奶油而看不見前方, 或因奶油的美味而愣住時迅速逃跑。", + ja: "敵に 襲われたら たいあたり。 クリームまみれにして みえなくするか おいしさに 驚かせて 逃げだす。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "囈語", + 'zh-cn': "囈語", + ja: "つぶやく" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + dexId: [868], + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/111.ts b/data-asia/SV/SV7/111.ts new file mode 100644 index 000000000..abbda7a3e --- /dev/null +++ b/data-asia/SV/SV7/111.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "瑪沙那", + 'zh-cn': "瑪沙那", + ja: "アサナン" + }, + + illustrator: "Yuriko Akase", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + 'zh-tw': "用冥想提高精神能量後, 就可以浮在空中。 1天會吃下1個樹果。", + 'zh-cn': "用冥想提高精神能量後, 就可以浮在空中。 1天會吃下1個樹果。", + ja: "瞑想で 精神エネルギーを 高めて 空中に 浮かぶ。 1日に 1個 木の実を 食べる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "冥想", + 'zh-cn': "冥想", + ja: "めいそう" + }, + + effect: { + 'zh-tw': "將這隻寶可夢恢復「20」HP。", + 'zh-cn': "將這隻寶可夢恢復「20」HP。", + ja: "このポケモンのHPを「20」回復する。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "劈打", + 'zh-cn': "劈打", + ja: "チョップ" + }, + + damage: 50, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + dexId: [307], + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/112.ts b/data-asia/SV/SV7/112.ts new file mode 100644 index 000000000..e024dc4b0 --- /dev/null +++ b/data-asia/SV/SV7/112.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "溶食獸", + 'zh-cn': "溶食獸", + ja: "ゴクリン" + }, + + illustrator: "Jerky", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + 'zh-tw': "心臟和大腦都很小, 身體的大部分是胃。 會分泌出什麼都能溶解的胃液。", + 'zh-cn': "心臟和大腦都很小, 身體的大部分是胃。 會分泌出什麼都能溶解的胃液。", + ja: "心臓や 脳みそは 小さく 体の 大部分が 胃袋。 なんでも 溶かす 胃液を 出す。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "口水", + 'zh-cn': "口水", + ja: "よだれ" + }, + + damage: 10, + cost: ["Darkness"] + }, { + name: { + 'zh-tw': "毒之氣息", + 'zh-cn': "毒之氣息", + ja: "どくのいき" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。", + 'zh-cn': "將對手的戰鬥寶可夢【中毒】。", + ja: "相手のバトルポケモンをどくにする。" + }, + + damage: 30, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + dexId: [316], + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/113.ts b/data-asia/SV/SV7/113.ts new file mode 100644 index 000000000..789abf1a9 --- /dev/null +++ b/data-asia/SV/SV7/113.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鋁鋼橋龍", + 'zh-cn': "鋁鋼橋龍", + ja: "ブリジュラス" + }, + + illustrator: "Toshinao Aoki", + category: "Pokemon", + hp: 180, + types: ["Metal"], + + description: { + 'zh-tw': "會在山裡挖洞來尋找食物。 身體非常堅硬,即使遇到 洞穴坍塌也絲毫不會在意。", + 'zh-cn': "會在山裡挖洞來尋找食物。 身體非常堅硬,即使遇到 洞穴坍塌也絲毫不會在意。", + ja: "山中で 穴を 掘り エサを 探す。 落盤に 巻きこまれても へっちゃらなくらい 頑丈。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "鋼之橋", + 'zh-cn': "鋼之橋", + ja: "はがねのかけはし" + }, + + effect: { + 'zh-tw': "只要這隻寶可夢在場上,自己的所有身上附有【鋼】能量的寶可夢【撤退】所需的能量全部消除。", + 'zh-cn': "只要這隻寶可夢在場上,自己的所有身上附有【鋼】能量的寶可夢【撤退】所需的能量全部消除。", + ja: "このポケモンがいるかぎり、エネルギーがついている自分のポケモン全員のにげるためのエネルギーは、すべてなくなる。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "鐵之引爆", + 'zh-cn': "鐵之引爆", + ja: "アイアンブラスター" + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。", + ja: "次の自分の番、このポケモンはワザが使えない。" + }, + + damage: 160, + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + dexId: [1018], + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/114.ts b/data-asia/SV/SV7/114.ts new file mode 100644 index 000000000..ac907127d --- /dev/null +++ b/data-asia/SV/SV7/114.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "貓頭夜鷹", + 'zh-cn': "貓頭夜鷹", + ja: "ヨルノズク" + }, + + illustrator: "Tetsu Kayama", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + description: { + 'zh-tw': "極為柔軟的翅膀讓牠在 飛行時不發一絲聲響, 因此可以悄悄地接近獵物。", + 'zh-cn': "極為柔軟的翅膀讓牠在 飛行時不發一絲聲響, 因此可以悄悄地接近獵物。", + ja: "非常に 柔らかい 羽は 飛ぶとき 音を 出さないので こっそり 獲物に 近づける。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "搜尋寶石", + 'zh-cn': "搜尋寶石", + ja: "ほうせきさがし" + }, + + effect: { + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,若自己的場上有「太晶」寶可夢,則可使用1次。從自己的牌庫選擇最多2張訓練家卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,若自己的場上有「太晶」寶可夢,則可使用1次。從自己的牌庫選擇最多2張訓練家卡,在給對手看過後加入手牌。並且重洗牌庫。", + ja: "自分の番に、このカードを手札から出して進化させたとき、自分の場に「テラスタル」のポケモンがいるなら、1回使える。自分の山札からトレーナーズを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "高速之翼", + 'zh-cn': "高速之翼", + ja: "スピードウイング" + }, + + damage: 60, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + dexId: [164], + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/115.ts b/data-asia/SV/SV7/115.ts new file mode 100644 index 000000000..150dd269a --- /dev/null +++ b/data-asia/SV/SV7/115.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "蜜集大蛇ex", + 'zh-cn': "蜜集大蛇ex", + ja: "カミツオロチex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "蜜糖風暴", + 'zh-cn': "蜜糖風暴", + ja: 'みつあめストーム' + }, + + effect: { + 'zh-tw': "增加自己的所有寶可夢身上附加的【草】能量的數量×30點傷害。", + 'zh-cn': "增加自己的所有寶可夢身上附加的【草】能量的數量×30點傷害。", + ja: '自分のポケモン全員についているエネルギーの数×30ダメージ追加。' + }, + + damage: "30+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + + abilities: [{ + type: "Ability", + + name: { + ja: "じゅくせいチャージ", + 'zh-tw': "‌[特性]熟成充能", + 'zh-cn': "‌[特性]熟成充能", + }, + + effect: { + ja: "自分の番に1回使える。自分の手札から「基本エネルギー」を1枚選び、自分のポケモンにつける。その後、つけたポケモンのHPを「30」回復する。", + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於自己的寶可夢身上。然後,將附上那張卡的寶可夢恢復「30」HP。", + 'zh-cn': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於自己的寶可夢身上。然後,將附上那張卡的寶可夢恢復「30」HP。" + } + }], + + rarity: "None" +} + +export default card diff --git a/data-asia/SV/SV7/116.ts b/data-asia/SV/SV7/116.ts new file mode 100644 index 000000000..080e35d6c --- /dev/null +++ b/data-asia/SV/SV7/116.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "閃焰王牌ex", + 'zh-cn': "閃焰王牌ex", + ja: "エースバーンex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 320, + types: ["Fire"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "閃焰強襲", + 'zh-cn': "閃焰強襲", + ja: "フレアストライク" + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「閃焰強襲」。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「閃焰強襲」。", + ja: "次の自分の番、このポケモンは「フレアストライク」が使えない。" + }, + + damage: 280, + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "石榴石截擊", + 'zh-cn': "石榴石截擊", + ja: "ガーネットボレー" + }, + + effect: { + 'zh-tw': "對手的1隻寶可夢受到180點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻寶可夢受到180點傷害。[在備戰區不計算弱點・抵抗力。]", + ja: "相手のポケモン1匹に、180ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + }, + + cost: ["Fire", "Fighting", "Darkness"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 0, + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/117.ts b/data-asia/SV/SV7/117.ts new file mode 100644 index 000000000..19f4d126d --- /dev/null +++ b/data-asia/SV/SV7/117.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "拉普拉斯ex", + 'zh-cn': "拉普拉斯ex", + ja: "ラプラスex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "力量飛濺", + 'zh-cn': "力量飛濺", + ja: "パワースプラッシュ" + }, + + effect: { + 'zh-tw': "造成這隻寶可夢身上附加的能量的數量×40點傷害。", + 'zh-cn': "造成這隻寶可夢身上附加的能量的數量×40點傷害。", + ja: "このポケモンについているエネルギーの数×40ダメージ。" + }, + + damage: "40×", + cost: ["Water"] + }, { + name: { + 'zh-tw': "海紋石之雨", + 'zh-cn': "海紋石之雨", + ja: "ラリマーレイン" + }, + + effect: { + 'zh-tw': "查看自己的牌庫上方20張卡,從其中選擇任意數量的能量卡,以任意方式附於自己的寶可夢身上。將剩餘卡放回牌庫並重洗。", + 'zh-cn': "查看自己的牌庫上方20張卡,從其中選擇任意數量的能量卡,以任意方式附於自己的寶可夢身上。將剩餘卡放回牌庫並重洗。", + ja: "自分の山札を上から20枚見て、その中からエネルギーを好きなだけ選び、自分のポケモンに好きなようにつける。残りのカードは山札にもどして切る。" + }, + + cost: ["Water", "Psychic", "Metal"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/118.ts b/data-asia/SV/SV7/118.ts new file mode 100644 index 000000000..6db0bd727 --- /dev/null +++ b/data-asia/SV/SV7/118.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電蜘蛛ex", + 'zh-cn': "電蜘蛛ex", + ja: "デンチュラex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "衝天之線", + 'zh-cn': "衝天之線", + ja: "アッパースレッド" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加110點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加110點傷害。", + ja: "相手のバトルポケモンが「ポケモンex・V」なら、110ダメージ追加。" + }, + + damage: "110+", + cost: ["Lightning", "Colorless"] + }, { + name: { + 'zh-tw': "雷擊石", + 'zh-cn': "雷擊石", + ja: "フルグライト" + }, + + effect: { + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。在下個對手的回合,對手無法從手牌使出物品卡。", + 'zh-cn': "將這隻寶可夢身上附加的能量卡全部丟棄。在下個對手的回合,對手無法從手牌使出物品卡。", + ja: "このポケモンについているエネルギーを、すべてトラッシュする。次の相手の番、相手は手札からグッズを出して使えない。" + }, + + damage: 180, + cost: ["Grass", "Lightning", "Fighting"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/119.ts b/data-asia/SV/SV7/119.ts new file mode 100644 index 000000000..c767f1192 --- /dev/null +++ b/data-asia/SV/SV7/119.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "麻花犬ex", + 'zh-cn': "麻花犬ex", + ja: "バウッツェルex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 250, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "奇跡閃耀", + 'zh-cn': "奇跡閃耀", + ja: 'ワンダーシャイン' + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。", + ja: '相手のバトルポケモンをこんらんにする。' + }, + + damage: 130, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + + abilities: [{ + type: "Ability", + + name: { + ja: "まんぷくタイム", + 'zh-tw': "‌[特性]飽腹時間", + 'zh-cn': "‌[特性]飽腹時間" + }, + + effect: { + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。將自己的所有進化寶可夢的HP全部恢復。然後,將恢復的寶可夢身上附加的能量全部丟棄。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。將自己的所有進化寶可夢的HP全部恢復。然後,將恢復的寶可夢身上附加的能量全部丟棄。", + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分の進化ポケモン全員のHPを、すべて回復する。その後、回復したポケモンについているエネルギーを、すべてトラッシュする。" + } + }], + + rarity: "None" +} + +export default card diff --git a/data-asia/SV/SV7/120.ts b/data-asia/SV/SV7/120.ts new file mode 100644 index 000000000..60e580b13 --- /dev/null +++ b/data-asia/SV/SV7/120.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "恰雷姆ex", + 'zh-cn': "恰雷姆ex", + ja: "チャーレムex" + }, + + illustrator: "PLANETA Yamashita", + category: "Pokemon", + hp: 260, + types: ["Fighting"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "氣功指壓", + 'zh-cn': "氣功指壓", + ja: "きこうあつ" + }, + + effect: { + 'zh-tw': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「50」為止。", + 'zh-cn': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「50」為止。", + ja: "相手のバトルポケモンの残りHPが「50」になるように、ダメカンをのせる。" + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "瑜伽踢", + 'zh-cn': "瑜伽踢", + ja: "ヨガキック" + }, + + effect: { + 'zh-tw': "這個招式的傷害不計算弱點・抵抗力。", + 'zh-cn': "這個招式的傷害不計算弱點・抵抗力。", + ja: "このワザのダメージは弱点・抵抗力を計算しない。" + }, + + damage: 190, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/121.ts b/data-asia/SV/SV7/121.ts new file mode 100644 index 000000000..215cb0126 --- /dev/null +++ b/data-asia/SV/SV7/121.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "拖拖蚓ex", + 'zh-cn': "拖拖蚓ex", + ja: "ミミズズex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 220, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "岩石封鎖", + 'zh-cn': "岩石封鎖", + ja: 'がんせきふうじ' + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + ja: '次の相手の番、このワザを受けたポケモンは、にげられない。' + }, + + damage: 150, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 4, + regulationMark: "H", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "‌[特性]快掃拳返", + 'zh-cn': "‌[特性]快掃拳返", + ja: "ボコスカがえし" + }, + + effect: { + 'zh-tw': "這隻寶可夢受到對手的寶可夢招式的傷害時,將與這隻寶可夢身上附加的【鋼】能量的數量×2個的相同數量的傷害指示物,放置於使用招式的寶可夢身上。", + 'zh-cn': "這隻寶可夢受到對手的寶可夢招式的傷害時,將與這隻寶可夢身上附加的【鋼】能量的數量×2個的相同數量的傷害指示物,放置於使用招式的寶可夢身上。", + ja: "このポケモンが、相手のポケモンからワザのダメージを受けたとき、このポケモンについているエネルギーの数×2個ぶんのダメカンを、ワザを使ったポケモンにのせる。" + } + }], + + rarity: "None" +} + +export default card diff --git a/data-asia/SV/SV7/122.ts b/data-asia/SV/SV7/122.ts new file mode 100644 index 000000000..32b699e76 --- /dev/null +++ b/data-asia/SV/SV7/122.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "太樂巴戈斯ex", + 'zh-cn': "太樂巴戈斯ex", + ja: "テラパゴスex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "聯盟擊", + 'zh-cn': "聯盟擊", + ja: "ユニオンビート" + }, + + effect: { + 'zh-tw': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。", + 'zh-cn': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。", + ja: "このワザは、後攻プレイヤーの最初の番には使えない。自分のベンチポケモンの数×30ダメージ。" + }, + + damage: "30×", + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "皇冠蛋白石", + 'zh-cn': "皇冠蛋白石", + ja: "クラウンオパール" + }, + + effect: { + 'zh-tw': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。", + 'zh-cn': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。", + ja: "次の相手の番、このポケモンはたねポケモン(ポケモンをのぞく)からワザのダメージを受けない。" + }, + + damage: 180, + cost: ["Grass", "Water", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/123.ts b/data-asia/SV/SV7/123.ts new file mode 100644 index 000000000..00c56f163 --- /dev/null +++ b/data-asia/SV/SV7/123.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "赤松", + 'zh-cn': "赤松", + ja: "アカマツ" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + 'zh-tw': "從自己的牌庫選擇最多2張各不同屬性的基本能量卡,在給對手看過後,其中1張加入手牌,剩餘的能量卡附於自己的寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張各不同屬性的基本能量卡,在給對手看過後,其中1張加入手牌,剩餘的能量卡附於自己的寶可夢身上。並且重洗牌庫。", + ja: "自分の山札から、それぞれちがうタイプの基本エネルギーを2枚まで選び、相手に見せて、どちらか1枚を手札に加え、残りのエネルギーを自分のポケモンにつける。そして山札を切る。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/124.ts b/data-asia/SV/SV7/124.ts new file mode 100644 index 000000000..8ffe4d1df --- /dev/null +++ b/data-asia/SV/SV7/124.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "紫竽", + 'zh-cn': "紫竽", + ja: "タロ" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + 'zh-tw': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出4張卡。若對手剩餘獎賞卡的張數為3張以下,則改爲抽出8張卡。", + 'zh-cn': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出4張卡。若對手剩餘獎賞卡的張數為3張以下,則改爲抽出8張卡。", + ja: "自分の手札をすべて山札にもどして切る。その後、山札を4枚引く。相手のサイドの残り枚数が3枚以下なら、引く枚数は8枚になる。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/125.ts b/data-asia/SV/SV7/125.ts new file mode 100644 index 000000000..2e8399a6c --- /dev/null +++ b/data-asia/SV/SV7/125.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "海岱", + 'zh-cn': "海岱", + ja: "ハイダイ" + }, + + illustrator: "Hideki Ishikawa", + category: "Trainer", + + effect: { + 'zh-tw': "選擇2張自己的手牌,以任意順序排列,放回牌庫下方。然後,從牌庫抽出4張卡。(若無法放回2張自己的手牌,則無法使用這張卡。)", + 'zh-cn': "選擇2張自己的手牌,以任意順序排列,放回牌庫下方。然後,從牌庫抽出4張卡。(若無法放回2張自己的手牌,則無法使用這張卡。)", + ja: "自分の手札を2枚選び、好きな順番に入れ替えて、山札の下にもどす。その後、山札を4枚引く。(自分の手札を2枚もどせないなら、このカードは使えない。)" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/126.ts b/data-asia/SV/SV7/126.ts new file mode 100644 index 000000000..654f7027e --- /dev/null +++ b/data-asia/SV/SV7/126.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "白蕾雅", + 'zh-cn': "白蕾雅", + ja: "ブライア" + }, + + illustrator: "Naoki Saito", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡只有在對手剩餘獎賞卡的張數為2張時才可使用。 在這個回合,若對手的戰鬥寶可夢因自己的「太晶」寶可夢使用的招式的傷害而【昏厥】了,則多獲得1張獎賞卡。", + 'zh-cn': "這張卡只有在對手剩餘獎賞卡的張數為2張時才可使用。 在這個回合,若對手的戰鬥寶可夢因自己的「太晶」寶可夢使用的招式的傷害而【昏厥】了,則多獲得1張獎賞卡。", + ja: "このカードは、相手のサイドの残り枚数が2枚のときにしか使えない。\n\nこの番、自分の「テラスタル」のポケモンが使うワザのダメージで、相手のバトルポケモンがきぜつしたなら、サイドを1枚多くとる。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/127.ts b/data-asia/SV/SV7/127.ts new file mode 100644 index 000000000..42a3e1bd6 --- /dev/null +++ b/data-asia/SV/SV7/127.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "蜜集大蛇ex", + 'zh-cn': "蜜集大蛇ex", + ja: "カミツオロチex" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "蜜糖風暴", + 'zh-cn': "蜜糖風暴", + ja: 'みつあめストーム' + }, + + effect: { + 'zh-tw': "增加自己的所有寶可夢身上附加的【草】能量的數量×30點傷害。", + 'zh-cn': "增加自己的所有寶可夢身上附加的【草】能量的數量×30點傷害。", + ja: '自分のポケモン全員についているエネルギーの数×30ダメージ追加。' + }, + + damage: "30+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + + abilities: [{ + type: "Ability", + + name: { + ja: "じゅくせいチャージ", + 'zh-tw': "‌[特性]熟成充能", + 'zh-cn': "‌[特性]熟成充能" + }, + + effect: { + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於自己的寶可夢身上。然後,將附上那張卡的寶可夢恢復「30」HP。", + 'zh-cn': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於自己的寶可夢身上。然後,將附上那張卡的寶可夢恢復「30」HP。", + ja: "自分の番に1回使える。自分の手札から「基本エネルギー」を1枚選び、自分のポケモンにつける。その後、つけたポケモンのHPを「30」回復する。" + } + }], + + rarity: "None" +} + +export default card diff --git a/data-asia/SV/SV7/128.ts b/data-asia/SV/SV7/128.ts new file mode 100644 index 000000000..b57644bb8 --- /dev/null +++ b/data-asia/SV/SV7/128.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "電蜘蛛ex", + 'zh-cn': "電蜘蛛ex", + ja: "デンチュラex" + }, + + illustrator: "MARINA Chikazawa", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "衝天之線", + 'zh-cn': "衝天之線", + ja: "アッパースレッド" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加110點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加110點傷害。", + ja: "相手のバトルポケモンが「ポケモンex・V」なら、110ダメージ追加。" + }, + + damage: "110+", + cost: ["Lightning", "Colorless"] + }, { + name: { + 'zh-tw': "雷擊石", + 'zh-cn': "雷擊石", + ja: "フルグライト" + }, + + effect: { + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。在下個對手的回合,對手無法從手牌使出物品卡。", + 'zh-cn': "將這隻寶可夢身上附加的能量卡全部丟棄。在下個對手的回合,對手無法從手牌使出物品卡。", + ja: "このポケモンについているエネルギーを、すべてトラッシュする。次の相手の番、相手は手札からグッズを出して使えない。" + }, + + damage: 180, + cost: ["Grass", "Lightning", "Fighting"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/129.ts b/data-asia/SV/SV7/129.ts new file mode 100644 index 000000000..ef1f10c9a --- /dev/null +++ b/data-asia/SV/SV7/129.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "麻花犬ex", + 'zh-cn': "麻花犬ex", + ja: "バウッツェルex" + }, + + illustrator: "Yuu Nishida", + category: "Pokemon", + hp: 250, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "奇跡閃耀", + 'zh-cn': "奇跡閃耀", + ja: 'ワンダーシャイン' + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。", + ja: '相手のバトルポケモンをこんらんにする。' + }, + + damage: 130, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + + abilities: [{ + type: "Ability", + + name: { + ja: "まんぷくタイム", + 'zh-tw': "‌[特性]飽腹時間", + 'zh-cn': "‌[特性]飽腹時間" + }, + + effect: { + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。將自己的所有進化寶可夢的HP全部恢復。然後,將恢復的寶可夢身上附加的能量全部丟棄。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。將自己的所有進化寶可夢的HP全部恢復。然後,將恢復的寶可夢身上附加的能量全部丟棄。", + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分の進化ポケモン全員のHPを、すべて回復する。その後、回復したポケモンについているエネルギーを、すべてトラッシュする。" + } + }], + + rarity: "None" +} + +export default card diff --git a/data-asia/SV/SV7/130.ts b/data-asia/SV/SV7/130.ts new file mode 100644 index 000000000..fb3e3bb04 --- /dev/null +++ b/data-asia/SV/SV7/130.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "太樂巴戈斯ex", + 'zh-cn': "太樂巴戈斯ex", + ja: "テラパゴスex" + }, + + illustrator: "Saboteri", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "聯盟擊", + 'zh-cn': "聯盟擊", + ja: "ユニオンビート" + }, + + effect: { + 'zh-tw': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。", + 'zh-cn': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。", + ja: "このワザは、後攻プレイヤーの最初の番には使えない。自分のベンチポケモンの数×30ダメージ。" + }, + + damage: "30×", + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "皇冠蛋白石", + 'zh-cn': "皇冠蛋白石", + ja: "クラウンオパール" + }, + + effect: { + 'zh-tw': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。", + 'zh-cn': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。", + ja: "次の相手の番、このポケモンはたねポケモン(ポケモンをのぞく)からワザのダメージを受けない。" + }, + + damage: 180, + cost: ["Grass", "Water", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/131.ts b/data-asia/SV/SV7/131.ts new file mode 100644 index 000000000..718d77829 --- /dev/null +++ b/data-asia/SV/SV7/131.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "紫竽", + 'zh-cn': "紫竽", + ja: "タロ" + }, + + illustrator: "Souichirou Gunjima", + category: "Trainer", + + effect: { + 'zh-tw': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出4張卡。若對手剩餘獎賞卡的張數為3張以下,則改爲抽出8張卡。", + 'zh-cn': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出4張卡。若對手剩餘獎賞卡的張數為3張以下,則改爲抽出8張卡。", + ja: "自分の手札をすべて山札にもどして切る。その後、山札を4枚引く。相手のサイドの残り枚数が3枚以下なら、引く枚数は8枚になる。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/132.ts b/data-asia/SV/SV7/132.ts new file mode 100644 index 000000000..2bc1231e5 --- /dev/null +++ b/data-asia/SV/SV7/132.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "白蕾雅", + 'zh-cn': "白蕾雅", + ja: "ブライア" + }, + + illustrator: "DOM", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡只有在對手剩餘獎賞卡的張數為2張時才可使用。 在這個回合,若對手的戰鬥寶可夢因自己的「太晶」寶可夢使用的招式的傷害而【昏厥】了,則多獲得1張獎賞卡。", + 'zh-cn': "這張卡只有在對手剩餘獎賞卡的張數為2張時才可使用。 在這個回合,若對手的戰鬥寶可夢因自己的「太晶」寶可夢使用的招式的傷害而【昏厥】了,則多獲得1張獎賞卡。", + ja: "このカードは、相手のサイドの残り枚数が2枚のときにしか使えない。\n\nこの番、自分の「テラスタル」のポケモンが使うワザのダメージで、相手のバトルポケモンがきぜつしたなら、サイドを1枚多くとる。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/133.ts b/data-asia/SV/SV7/133.ts new file mode 100644 index 000000000..129ad7392 --- /dev/null +++ b/data-asia/SV/SV7/133.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + ja: "テラパゴスex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ユニオンビート" + }, + + damage: "30×", + + effect: { + ja: "このワザは、後攻プレイヤーの最初の番には使えない。自分のベンチポケモンの数×30ダメージ。" + } + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + ja: "クラウンオパール" + }, + + damage: 180, + + effect: { + ja: "次の相手の番、このポケモンはたねポケモン(ポケモンをのぞく)からワザのダメージを受けない。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/134.ts b/data-asia/SV/SV7/134.ts new file mode 100644 index 000000000..a3996fc95 --- /dev/null +++ b/data-asia/SV/SV7/134.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + ja: "勇気のおまもり" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "このカードをつけているたねポケモンの最大HPは「+50」される。" + }, + + trainerType: "Tool", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7/135.ts b/data-asia/SV/SV7/135.ts new file mode 100644 index 000000000..88b86aac7 --- /dev/null +++ b/data-asia/SV/SV7/135.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7" + +const card: Card = { + set: Set, + + name: { + ja: "ゼロの大空洞" + }, + + illustrator: "MARINA Chikazawa", + category: "Trainer", + + effect: { + ja: "自分の場に「テラスタル」のポケモンがいるプレイヤーが、ベンチに出せるポケモンの数は8匹になる。\n\n(このカードがトラッシュされたときか、自分の場に「テラスタル」のポケモンがいなくなったとき、ベンチが5匹になるまでトラッシュする。おたがいにトラッシュするなら、このカードの持ち主から行う。)" + }, + + trainerType: "Stadium", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a.ts b/data-asia/SV/SV7a.ts new file mode 100644 index 000000000..008f46025 --- /dev/null +++ b/data-asia/SV/SV7a.ts @@ -0,0 +1,25 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SV7a', + name: { + ja: '楽園ドラゴーナ', + 'zh-tw': '樂園騰龍', + 'zh-cn': '樂園騰龍' + + }, + + serie: serie, + + cardCount: { + official: 64 + }, + releaseDate: { + ja: '2024-09-13', + 'zh-tw': '2024-09-27', + 'zh-cn': '2024-09-27', + } +} + +export default set diff --git a/data-asia/SV/SV7a/001.ts b/data-asia/SV/SV7a/001.ts new file mode 100644 index 000000000..8262cfd32 --- /dev/null +++ b/data-asia/SV/SV7a/001.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "蛋蛋", + 'zh-cn': "蛋蛋", + ja: "タマタマ" + }, + + illustrator: "Tetsu Kayama", + category: "Pokemon", + hp: 30, + types: ["Grass"], + + description: { + 'zh-tw': "會發出只有蛋蛋才能收到的 心靈感應,因此不論何時 都能6隻聚集在一起。", + 'zh-cn': "會發出只有蛋蛋才能收到的 心靈感應,因此不論何時 都能6隻聚集在一起。", + ja: "タマタマだけに 伝わる テレパシーを 出し合っているので どんなときでも 6匹 集まれる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "早熟進化", + 'zh-cn': "早熟進化", + ja: "そうじゅくしんか" + }, + + effect: { + 'zh-tw': "這個招式可在先攻玩家的最初回合使用。從自己的牌庫選擇1張從這隻寶可夢進化而來的卡,放置於這隻寶可夢身上完成進化。並且重洗牌庫。", + 'zh-cn': "這個招式可在先攻玩家的最初回合使用。從自己的牌庫選擇1張從這隻寶可夢進化而來的卡,放置於這隻寶可夢身上完成進化。並且重洗牌庫。", + ja: "このワザは、先攻プレイヤーの最初の番でも使える。このポケモンから進化するカードを、自分の山札から1枚選び、このポケモンにのせて進化させる。そして山札を切る。" + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [102] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/002.ts b/data-asia/SV/SV7a/002.ts new file mode 100644 index 000000000..f7a0501ae --- /dev/null +++ b/data-asia/SV/SV7a/002.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "睡睡菇", + 'zh-cn': "睡睡菇", + ja: "ネマシュ" + }, + + illustrator: "Tomokazu Komiya", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + 'zh-tw': "頭上的蘑菇傘非常好吃, 雖然會被森林中的寶可夢吃掉, 但是過了一晚上就會再生。", + 'zh-cn': "頭上的蘑菇傘非常好吃, 雖然會被森林中的寶可夢吃掉, 但是過了一晚上就會再生。", + ja: "頭の 傘は とても 美味しい。 森の ポケモンたちに 食べられるが 一晩で 再生する。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "附著", + 'zh-cn': "附著", + ja: "くっつく" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [755] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/003.ts b/data-asia/SV/SV7a/003.ts new file mode 100644 index 000000000..b598b8cc6 --- /dev/null +++ b/data-asia/SV/SV7a/003.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "燈罩夜菇", + 'zh-cn': "燈罩夜菇", + ja: "マシェード" + }, + + illustrator: "Aya Kusube", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + description: { + 'zh-tw': "用孢子閃爍著的光 吸引獵物,讓對方睡著。 會從指尖吸收精氣。", + 'zh-cn': "用孢子閃爍著的光 吸引獵物,讓對方睡著。 會從指尖吸收精氣。", + ja: "点滅する 胞子の 光りで 獲物を おびき寄せて 眠らせる。 指先から 生気を 吸い取る。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "平靜之光", + 'zh-cn': "平靜之光", + ja: "やすらぐひかり" + }, + + effect: { + 'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將對手的戰鬥寶可夢【睡眠】。", + 'zh-cn': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將對手的戰鬥寶可夢【睡眠】。", + ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。相手のバトルポケモンをねむりにする。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "螺旋衝刺", + 'zh-cn': "螺旋衝刺", + ja: "スパイラルラッシュ" + }, + + effect: { + 'zh-tw': "擲硬幣直到出現反面,增加正面出現的次數×30點傷害。", + 'zh-cn': "擲硬幣直到出現反面,增加正面出現的次數×30點傷害。", + ja: "ウラが出るまでコインを投げ、オモテの数×30ダメージ追加。" + }, + + damage: "60+", + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon", + dexId: [756] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/004.ts b/data-asia/SV/SV7a/004.ts new file mode 100644 index 000000000..608505d42 --- /dev/null +++ b/data-asia/SV/SV7a/004.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "破破舵輪", + 'zh-cn': "破破舵輪", + ja: "ダダリン" + }, + + illustrator: "Mori Yuu", + category: "Pokemon", + hp: 130, + types: ["Grass"], + + description: { + 'zh-tw': "在海底飄蕩的海藻 吸收了沉船的零件後 轉生而成的幽靈寶可夢。", + 'zh-cn': "在海底飄蕩的海藻 吸收了沉船的零件後 轉生而成的幽靈寶可夢。", + ja: "海底を 漂う 藻屑が 沈没船の 部品を 取りこんで ゴーストポケモンに 生まれ変わった。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "救援船錨", + 'zh-cn': "救援船錨", + ja: "レスキューアンカー" + }, + + effect: { + 'zh-tw': "從自己的棄牌區選擇最多2張寶可夢卡,在給對手看過後加入手牌。", + 'zh-cn': "從自己的棄牌區選擇最多2張寶可夢卡,在給對手看過後加入手牌。", + ja: "自分のトラッシュからポケモンを2枚まで選び、相手に見せて、手札に加える。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "破壞船錨", + 'zh-cn': "破壞船錨", + ja: "はかいのイカリ" + }, + + effect: { + 'zh-tw': "在造成傷害前,將對手的戰鬥寶可夢身上附加的「寶可夢道具」卡丟棄。", + 'zh-cn': "在造成傷害前,將對手的戰鬥寶可夢身上附加的「寶可夢道具」卡丟棄。", + ja: "ダメージを与える前に、相手のバトルポケモンについている「ポケモンのどうぐ」をトラッシュする。" + }, + + damage: 80, + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common", + dexId: [781] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/005.ts b/data-asia/SV/SV7a/005.ts new file mode 100644 index 000000000..ea9113746 --- /dev/null +++ b/data-asia/SV/SV7a/005.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "薩戮德", + 'zh-cn': "薩戮德", + ja: "ザルード" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 120, + types: ["Grass"], + + description: { + 'zh-tw': "集結成群生活在密林裡。 攻擊性很強,令棲息在 森林的寶可夢們畏懼不已。", + 'zh-cn': "集結成群生活在密林裡。 攻擊性很強,令棲息在 森林的寶可夢們畏懼不已。", + ja: "群れを つくり 密林で 暮らす。 とても 攻撃的で 森にすむ ポケモンたちから 恐れられている。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "綠葉吸取", + 'zh-cn': "綠葉吸取", + ja: "リーフドレイン" + }, + + effect: { + 'zh-tw': "將這隻寶可夢恢復「20」HP。", + 'zh-cn': "將這隻寶可夢恢復「20」HP。", + ja: "このポケモンのHPを「20」回復する。" + }, + + damage: 20, + cost: ["Grass"] + }, { + name: { + 'zh-tw': "叢林鞭打", + 'zh-cn': "叢林鞭打", + ja: "ジャングルウィップ" + }, + + effect: { + 'zh-tw': "若希望,將這隻寶可夢身上附加的能量卡全部放回手牌,增加80點傷害。", + 'zh-cn': "若希望,將這隻寶可夢身上附加的能量卡全部放回手牌,增加80點傷害。", + ja: "のぞむなら、このポケモンについているエネルギーをすべて手札にもどし、80ダメージ追加。" + }, + + damage: "80+", + cost: ["Grass", "Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Rare", + dexId: [893] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/006.ts b/data-asia/SV/SV7a/006.ts new file mode 100644 index 000000000..a2eeaebc7 --- /dev/null +++ b/data-asia/SV/SV7a/006.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "飄浮泡泡 太陽的樣子", + 'zh-cn': "飄浮泡泡 太陽的樣子", + ja: "ポワルン たいようのすがた" + }, + + illustrator: "osare", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + 'zh-tw': "飄浮泡泡在天氣晴朗時的樣子。 在把牠放到暖爐前面的實驗中, 牠並沒有變成這種形態。", + 'zh-cn': "飄浮泡泡在天氣晴朗時的樣子。 在把牠放到暖爐前面的實驗中, 牠並沒有變成這種形態。", + ja: "晴れた 日の ポワルンの 姿。 ヒーターの前に 置く 実験では この 形に 変化しなかった。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "灼熱", + 'zh-cn': "灼熱", + ja: "こがす" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【灼傷】。", + 'zh-cn': "將對手的戰鬥寶可夢【灼傷】。", + ja: "相手のバトルポケモンをやけどにする。" + }, + + cost: ["Fire"] + }, { + name: { + 'zh-tw': "陽光支援", + 'zh-cn': "陽光支援", + ja: "サニーアシスト" + }, + + effect: { + 'zh-tw': "將這隻寶可夢身上附加的能量卡,全部改附於1隻備戰寶可夢身上。", + 'zh-cn': "將這隻寶可夢身上附加的能量卡,全部改附於1隻備戰寶可夢身上。", + ja: "このポケモンについているエネルギーをすべて、ベンチポケモン1匹につけ替える。" + }, + + damage: 50, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 0, + regulationMark: "H", + rarity: "Common", + dexId: [351] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/007.ts b/data-asia/SV/SV7a/007.ts new file mode 100644 index 000000000..b0601ef60 --- /dev/null +++ b/data-asia/SV/SV7a/007.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "爆香猴", + 'zh-cn': "爆香猴", + ja: "バオップ" + }, + + illustrator: "Wintr Wandr", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + 'zh-tw': "智商很高, 有把樹果烤過再吃的習性。 喜歡幫助人類。", + 'zh-cn': "智商很高, 有把樹果烤過再吃的習性。 喜歡幫助人類。", + ja: "知能が 高く 木の実は 焼いてから 食べる 習性。 人の 手伝いを 好んでいる。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "烈焰", + 'zh-cn': "烈焰", + ja: "かえん" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [513] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/008.ts b/data-asia/SV/SV7a/008.ts new file mode 100644 index 000000000..daaa25d64 --- /dev/null +++ b/data-asia/SV/SV7a/008.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "爆香猿", + 'zh-cn': "爆香猿", + ja: "バオッキー" + }, + + illustrator: "Taiga Kasai", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + description: { + 'zh-tw': "燃燒體內的火焰, 從頭部與尾巴撒出火花, 燒焦敵人。", + 'zh-cn': "燃燒體內的火焰, 從頭部與尾巴撒出火花, 燒焦敵人。", + ja: "体の 中の 炎を 燃やして 頭や 尻尾から 火の粉を まき散らせて 敵を 焦がす。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "雙重粉碎", + 'zh-cn': "雙重粉碎", + ja: "ダブルスマッシュ" + }, + + effect: { + 'zh-tw': "擲2次硬幣,造成正面出現的次數×70點傷害。", + 'zh-cn': "擲2次硬幣,造成正面出現的次數×70點傷害。", + ja: "コインを2回投げ、オモテの数×70ダメージ。" + }, + + damage: "70×", + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [514] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/009.ts b/data-asia/SV/SV7a/009.ts new file mode 100644 index 000000000..00f40d9ce --- /dev/null +++ b/data-asia/SV/SV7a/009.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "破空焰", + 'zh-cn': "破空焰", + ja: "ウガツホムラ" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + 'zh-tw': "目擊報告極為稀少。 有將牠噴出火柱大鬧的 樣子拍攝下來的短片。", + 'zh-cn': "目擊報告極為稀少。 有將牠噴出火柱大鬧的 樣子拍攝下來的短片。", + ja: "目撃報告は ごくわずか。 火柱を 噴き 暴れる 姿の 短い 映像が 存在する。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "撞倒", + 'zh-cn': "撞倒", + ja: "つきたおし" + }, + + damage: 30, + cost: ["Fire"] + }, { + name: { + 'zh-tw': "爆燃突擊", + 'zh-cn': "爆燃突擊", + ja: "えんじょうとつげき" + }, + + effect: { + 'zh-tw': "若對手剩餘獎賞卡的張數為4張以下,則增加70點傷害。", + 'zh-cn': "若對手剩餘獎賞卡的張數為4張以下,則增加70點傷害。", + ja: "相手のサイドの残り枚数が4枚以下なら、70ダメージ追加。" + }, + + damage: "100+", + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Rare", + dexId: [1020] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/010.ts b/data-asia/SV/SV7a/010.ts new file mode 100644 index 000000000..44885433e --- /dev/null +++ b/data-asia/SV/SV7a/010.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "幾何雪花", + 'zh-cn': "幾何雪花", + ja: "フリージオ" + }, + + illustrator: "sui", + category: "Pokemon", + hp: 90, + types: ["Water"], + + description: { + 'zh-tw': "會用冰製的鎖鏈 把對手勒緊之後, 就這樣一口氣凍成冰塊。", + 'zh-cn': "會用冰製的鎖鏈 把對手勒緊之後, 就這樣一口氣凍成冰塊。", + ja: "氷で できた 鎖を 使い 相手を 締め上げると そのまま 一気に 凍らせてしまうのだ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "呼喚信號", + 'zh-cn': "呼喚信號", + ja: "コールサイン" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇1張寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇1張寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。", + ja: "自分の山札からポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + cost: ["Water"] + }, { + name: { + 'zh-tw': "冰凍光束", + 'zh-cn': "冰凍光束", + ja: "れいとうビーム" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。", + 'zh-cn': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。", + ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。" + }, + + damage: 30, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [615] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/011.ts b/data-asia/SV/SV7a/011.ts new file mode 100644 index 000000000..729140330 --- /dev/null +++ b/data-asia/SV/SV7a/011.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "闇黑酋雷姆ex", + 'zh-cn': "闇黑酋雷姆ex", + ja: "ブラックキュレムex" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 230, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "冰河期", + 'zh-cn': "冰河期", + ja: "アイスエイジ" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢為【龍】寶可夢,則將那隻寶可夢【麻痺】。", + 'zh-cn': "若對手的戰鬥寶可夢為【龍】寶可夢,則將那隻寶可夢【麻痺】。", + ja: "相手のバトルポケモンがポケモンなら、そのポケモンをマヒにする。" + }, + + damage: 90, + cost: ["Colorless", "Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "闇黑冰霜", + 'zh-cn': "闇黑冰霜", + ja: "ブラックフロスト" + }, + + effect: { + 'zh-tw': "這隻寶可夢也受到30點傷害。", + 'zh-cn': "這隻寶可夢也受到30點傷害。", + ja: "このポケモンにも30ダメージ。" + }, + + damage: 250, + cost: ["Water", "Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/012.ts b/data-asia/SV/SV7a/012.ts new file mode 100644 index 000000000..00a1bf9c7 --- /dev/null +++ b/data-asia/SV/SV7a/012.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "磨牙彩皮魚", + 'zh-cn': "磨牙彩皮魚", + ja: "ハギギシリ" + }, + + illustrator: "Shibuzoh.", + category: "Pokemon", + hp: 110, + types: ["Water"], + + description: { + 'zh-tw': "磨牙時會泛起波紋。當陽光 反射在上面時,周圍的水會 閃起令人目眩神迷的亮光。", + 'zh-cn': "磨牙時會泛起波紋。當陽光 反射在上面時,周圍的水會 閃起令人目眩神迷的亮光。", + ja: "歯ぎしりで 起こる 波紋に 陽の光が 反射するとき まわりの 水は 眩いばかりに きらめく。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "反擊", + 'zh-cn': "反擊", + ja: "はんげき" + }, + + effect: { + 'zh-tw': "這隻寶可夢在戰鬥場受到對手的寶可夢招式的傷害時,在使用招式的寶可夢身上放置3個傷害指示物。", + 'zh-cn': "這隻寶可夢在戰鬥場受到對手的寶可夢招式的傷害時,在使用招式的寶可夢身上放置3個傷害指示物。", + ja: "このポケモンが、バトル場で相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンにダメカンを3個のせる。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "咬緊", + 'zh-cn': "咬緊", + ja: "かじりつく" + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。" + }, + + damage: 50, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [779] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/013.ts b/data-asia/SV/SV7a/013.ts new file mode 100644 index 000000000..4ff1d354c --- /dev/null +++ b/data-asia/SV/SV7a/013.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "潤水鴨", + 'zh-cn': "潤水鴨", + ja: "クワッス" + }, + + illustrator: "Saboteri", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + 'zh-tw': "擁有在水流湍急的河川 也能自在游動的腳力。 愛乾淨,個性不知變通。", + 'zh-cn': "擁有在水流湍急的河川 也能自在游動的腳力。 愛乾淨,個性不知變通。", + ja: "流れが 急な 川も 自由に 泳ぎまわる 脚力を 持つ。 きれい好きで 思い込みが 強い。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "燕返", + 'zh-cn': "燕返", + ja: "つばめがえし" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則增加20點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加20點傷害。", + ja: "コインを1回投げオモテなら、20ダメージ追加。" + }, + + damage: "10+", + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [912] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/014.ts b/data-asia/SV/SV7a/014.ts new file mode 100644 index 000000000..a3961c4af --- /dev/null +++ b/data-asia/SV/SV7a/014.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "湧躍鴨", + 'zh-cn': "湧躍鴨", + ja: "ウェルカモ" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + 'zh-tw': "個性勤奮,會觀察各地區的 人和寶可夢,並將其動作 融入自己的舞蹈裡。", + 'zh-cn': "個性勤奮,會觀察各地區的 人和寶可夢,並將其動作 融入自己的舞蹈裡。", + ja: "様々な 地方の ポケモンや 人の 動きを 見て 自らの 踊りに 取り入れる 努力家。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "水之刀鋒", + 'zh-cn': "水之刀鋒", + ja: "アクアエッジ" + }, + + damage: 40, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [913] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/015.ts b/data-asia/SV/SV7a/015.ts new file mode 100644 index 000000000..c72179d75 --- /dev/null +++ b/data-asia/SV/SV7a/015.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "狂歡浪舞鴨", + 'zh-cn': "狂歡浪舞鴨", + ja: "ウェーニバル" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 170, + types: ["Water"], + + description: { + 'zh-tw': "會用充滿異國情調的舞蹈 迷倒看到的對手,然後揮舞 以水構成的羽飾將其劈裂。", + 'zh-cn': "會用充滿異國情調的舞蹈 迷倒看到的對手,然後揮舞 以水構成的羽飾將其劈裂。", + ja: "異国情緒 溢れる ダンスで 見るものを 魅了し 水でできた 飾り羽根を 振りまわし 切り裂く。" + }, + + stage: "Stage2", + + attacks: [{ + name: { + 'zh-tw': "水炮濺射", + 'zh-cn': "水炮濺射", + ja: 'ハイドロスプラッシュ' + }, + + damage: 120, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon", + dexId: [914], + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "‌[特性]快節奏", + 'zh-cn': "‌[特性]快節奏", + ja: "アップテンポ" + }, + + effect: { + 'zh-tw': "在自己的回合,若將1張自己的手牌放回牌庫下方,則可使用1次。從牌庫抽卡直到自己的手牌滿5張為止。", + 'zh-cn': "在自己的回合,若將1張自己的手牌放回牌庫下方,則可使用1次。從牌庫抽卡直到自己的手牌滿5張為止。", + ja: "自分の番に、自分の手札を1枚山札の下にもどすなら、1回使える。自分の手札が5枚になるように、山札を引く。" + } + }] +} + +export default card diff --git a/data-asia/SV/SV7a/016.ts b/data-asia/SV/SV7a/016.ts new file mode 100644 index 000000000..f59711c1f --- /dev/null +++ b/data-asia/SV/SV7a/016.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "走鯨", + 'zh-cn': "走鯨", + ja: "アルクジラ" + }, + + illustrator: "Ayako Ozaki", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + 'zh-tw': "在寒冷地帶會組成 約5隻規模的群體來生活。 喜歡雪或冰所含的礦物質。", + 'zh-cn': "在寒冷地帶會組成 約5隻規模的群體來生活。 喜歡雪或冰所含的礦物質。", + ja: "寒冷地で 5匹ほどの 群れを 作って 暮らす。 雪や 氷に 含まれる ミネラルが 大好き。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "吸取鰭", + 'zh-cn': "吸取鰭", + ja: "ドレインフィン" + }, + + effect: { + 'zh-tw': "將這隻寶可夢恢復「20」HP。", + 'zh-cn': "將這隻寶可夢恢復「20」HP。", + ja: "このポケモンのHPを「20」回復する。" + }, + + damage: 20, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common", + dexId: [974] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/017.ts b/data-asia/SV/SV7a/017.ts new file mode 100644 index 000000000..f3aa48afa --- /dev/null +++ b/data-asia/SV/SV7a/017.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "浩大鯨", + 'zh-cn': "浩大鯨", + ja: "ハルクジラ" + }, + + illustrator: "Uta", + category: "Pokemon", + hp: 180, + types: ["Water"], + + description: { + 'zh-tw': "會集中冰能量使上顎的角 變得超低溫,然後將自己 附近的一切都凍成冰塊。", + 'zh-cn': "會集中冰能量使上顎的角 變得超低溫,然後將自己 附近的一切都凍成冰塊。", + ja: "氷エネルギーの 集中する 上あごの ツノが 超低温になって 周囲を 凍らせる。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "堅堅之軀", + 'zh-cn': "堅堅之軀", + ja: "がっちりボディ" + }, + + effect: { + 'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。", + 'zh-cn': "這隻寶可夢受到招式的傷害「-30」點。", + ja: "このポケモンが受けるワザのダメージは「-30」される。" + } + }], + + attacks: [{ + name: { + 'zh-tw': "危殆嘴", + 'zh-cn': "危殆嘴", + ja: "デンジャーマウス" + }, + + damage: 150, + cost: ["Water", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common", + dexId: [975] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/018.ts b/data-asia/SV/SV7a/018.ts new file mode 100644 index 000000000..6711a65da --- /dev/null +++ b/data-asia/SV/SV7a/018.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "迷唇娃", + 'zh-cn': "迷唇娃", + ja: "ムチュール" + }, + + illustrator: "Saya Tsuruta", + category: "Pokemon", + hp: 30, + types: ["Psychic"], + + description: { + 'zh-tw': "只要稍微弄髒了臉,就會 馬上去用水沖乾淨。但對於 身體的髒污似乎就不太在意。", + 'zh-cn': "只要稍微弄髒了臉,就會 馬上去用水沖乾淨。但對於 身體的髒污似乎就不太在意。", + ja: "ちょっとでも 顔が 汚れると 水浴び。 体の 汚れは あまり 気にしていないみたい。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "樂呵呵之吻", + 'zh-cn': "樂呵呵之吻", + ja: "るんるんキッス" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇最多2張「基本【超】能量」卡,附於1隻備戰寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張「基本【超】能量」卡,附於1隻備戰寶可夢身上。並且重洗牌庫。", + ja: "自分の山札から「基本エネルギー」を2枚まで選び、ベンチポケモン1匹につける。そして山札を切る。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 0, + regulationMark: "H", + rarity: "Common", + dexId: [238] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/019.ts b/data-asia/SV/SV7a/019.ts new file mode 100644 index 000000000..5330a042e --- /dev/null +++ b/data-asia/SV/SV7a/019.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "拉帝亞斯ex", + 'zh-cn': "拉帝亞斯ex", + ja: "ラティアスex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 210, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "無限之刃", + 'zh-cn': "無限之刃", + ja: 'むげんのやいば' + }, + + effect: { + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。", + ja: '次の自分の番、このポケモンはワザが使えない。' + }, + + damage: 200, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Double rare", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "‌[特性]天空徑線", + 'zh-cn': "‌[特性]天空徑線", + ja: "スカイライン" + }, + + effect: { + 'zh-tw': "只要這隻寶可夢在場上,自己的所有【基礎】寶可夢【撤退】所需的能量全部消除。", + 'zh-cn': "只要這隻寶可夢在場上,自己的所有【基礎】寶可夢【撤退】所需的能量全部消除。", + ja: "このポケモンがいるかぎり、自分のたねポケモン全員のにげるためのエネルギーは、すべてなくなる。" + } + }] +} + +export default card diff --git a/data-asia/SV/SV7a/020.ts b/data-asia/SV/SV7a/020.ts new file mode 100644 index 000000000..7f502f33e --- /dev/null +++ b/data-asia/SV/SV7a/020.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "拉帝歐斯", + 'zh-cn': "拉帝歐斯", + ja: "ラティオス" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + 'zh-tw': "擁有很高智慧的寶可夢。 折疊起前肢飛行的話, 速度足以超越噴射機。", + 'zh-cn': "擁有很高智慧的寶可夢。 折疊起前肢飛行的話, 速度足以超越噴射機。", + ja: "高い 知能を 持つ ポケモン。 腕を 折りたたんで 飛べば ジェット機を 追い越す スピードだ。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "直擊飛行", + 'zh-cn': "直擊飛行", + ja: "ちょくげきひこう" + }, + + effect: { + 'zh-tw': "對手的1隻寶可夢受到50點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻寶可夢受到50點傷害。[在備戰區不計算弱點・抵抗力。]", + ja: "相手のポケモン1匹に、50ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + }, + + cost: ["Psychic", "Colorless"] + }, { + name: { + 'zh-tw': "噴射頭擊", + 'zh-cn': "噴射頭擊", + ja: "ジェットヘッド" + }, + + damage: 110, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon", + dexId: [381] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/021.ts b/data-asia/SV/SV7a/021.ts new file mode 100644 index 000000000..4f73328cc --- /dev/null +++ b/data-asia/SV/SV7a/021.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "卡璞・蝶蝶", + 'zh-cn': "卡璞・蝶蝶", + ja: "カプ・テテフ" + }, + + illustrator: "Natsumi Yoshida", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + 'zh-tw': "四處翩翩飛舞, 撒下閃著不可思議光芒的鱗粉。 據說碰到的人眨眼間就會恢復活力。", + 'zh-cn': "四處翩翩飛舞, 撒下閃著不可思議光芒的鱗粉。 據說碰到的人眨眼間就會恢復活力。", + ja: "ヒラヒラ 飛びまわり 不思議に 光る 鱗粉を 振りまく。 触れた者は たちまち 元気を 取り戻すという。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "蠱惑", + 'zh-cn': "蠱惑", + ja: "まどわす" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。", + ja: "相手のバトルポケモンをこんらんにする。" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "心靈粉碎", + 'zh-cn': "心靈粉碎", + ja: "メンタルクラッシュ" + }, + + effect: { + 'zh-tw': "若對手的戰鬥寶可夢【混亂】,則增加90點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢【混亂】,則增加90點傷害。", + ja: "相手のバトルポケモンがこんらんなら、90ダメージ追加。" + }, + + damage: "90+", + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Rare", + dexId: [786] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/022.ts b/data-asia/SV/SV7a/022.ts new file mode 100644 index 000000000..e7a9f15ed --- /dev/null +++ b/data-asia/SV/SV7a/022.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "飄飄雛", + 'zh-cn': "飄飄雛", + ja: "ヒラヒナ" + }, + + illustrator: "buchi", + category: "Pokemon", + hp: 40, + types: ["Psychic"], + + description: { + 'zh-tw': "會在荒地跑來跑去生活。 如果最喜歡的樹果被搶走, 就會窮追不捨地展開報復。", + 'zh-cn': "會在荒地跑來跑去生活。 如果最喜歡的樹果被搶走, 就會窮追不捨地展開報復。", + ja: "荒れ地を 走りまわって 暮らす。 大好きな 木の実を 取られると 追いかけまわして 復讐する。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "躍起閃避", + 'zh-cn': "躍起閃避", + ja: "はねてかわす" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。", + 'zh-cn': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。", + ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージや効果を受けない。" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [955] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/023.ts b/data-asia/SV/SV7a/023.ts new file mode 100644 index 000000000..79745a7e7 --- /dev/null +++ b/data-asia/SV/SV7a/023.ts @@ -0,0 +1,73 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "超能豔鴕", + 'zh-cn': "超能豔鴕", + ja: "クエスパトラ" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + 'zh-tw': "會從鮮豔褶邊的縫隙間 釋放出精神力量,藉此以 時速200公里的速度狂奔。", + 'zh-cn': "會從鮮豔褶邊的縫隙間 釋放出精神力量,藉此以 時速200公里的速度狂奔。", + ja: "色とりどりの フリルの 隙間から サイコパワーを 放出して 時速200キロで 疾走する。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "奧密之眼", + 'zh-cn': "奧密之眼", + ja: "ミスティックアイ" + }, + + effect: { + 'zh-tw': "選擇1隻對手的進化寶可夢,移除1張「進化卡」使其退化。將移除的卡放回對手的手牌。", + 'zh-cn': "選擇1隻對手的進化寶可夢,移除1張「進化卡」使其退化。將移除的卡放回對手的手牌。", + ja: "相手の進化しているポケモンを1匹選び、「進化カード」を1枚はがして退化させる。はがしたカードは、相手の手札にもどす。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "螺旋吸取", + 'zh-cn': "螺旋吸取", + ja: "スパイラルドレイン" + }, + + effect: { + 'zh-tw': "‌將這隻寶可夢恢復「30」HP。", + 'zh-cn': "‌將這隻寶可夢恢復「30」HP。", + ja: "このポケモンのHPを「30」回復する。" + }, + + damage: 60, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [956] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/024.ts b/data-asia/SV/SV7a/024.ts new file mode 100644 index 000000000..e6d015af2 --- /dev/null +++ b/data-asia/SV/SV7a/024.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "索財靈", + 'zh-cn': "索財靈", + ja: "コレクレー" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + 'zh-tw': "棲息在老舊的寶箱中。有時會 因沒人注意到自己是寶可夢, 而被擱置在道具店的角落。", + 'zh-cn': "棲息在老舊的寶箱中。有時會 因沒人注意到自己是寶可夢, 而被擱置在道具店的角落。", + ja: "古びた 宝箱の中に 棲む。 ポケモンと 気づかれず 道具屋の 片隅に 置かれていることがある。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "小使者", + 'zh-cn': "小使者", + ja: "ちいさなおつかい" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇最多2張基本能量卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張基本能量卡,在給對手看過後加入手牌。並且重洗牌庫。", + ja: "自分の山札から基本エネルギーを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "撞擊", + 'zh-cn': "撞擊", + ja: "たいあたり" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [999] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/025.ts b/data-asia/SV/SV7a/025.ts new file mode 100644 index 000000000..c1b85a521 --- /dev/null +++ b/data-asia/SV/SV7a/025.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "大顎蟻", + 'zh-cn': "大顎蟻", + ja: "ナックラー" + }, + + illustrator: "Taiga Kayama", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + 'zh-tw': "一邊用大大的顎把礙事的 岩石咬碎,一邊挖沙子。 巢穴的形狀就像研磨缽一樣。", + 'zh-cn': "一邊用大大的顎把礙事的 岩石咬碎,一邊挖沙子。 巢穴的形狀就像研磨缽一樣。", + ja: "大きな あごで 邪魔な 岩を 砕きながら 砂を 掘る。 巣穴の 形は スリ鉢状。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "呼朋引伴", + 'zh-cn': "呼朋引伴", + ja: "なかまをよぶ" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + ja: "自分の山札からたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "咬住", + 'zh-cn': "咬住", + ja: "かみつく" + }, + + damage: 20, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [328] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/026.ts b/data-asia/SV/SV7a/026.ts new file mode 100644 index 000000000..03ba75ba4 --- /dev/null +++ b/data-asia/SV/SV7a/026.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "超音波幼蟲", + 'zh-cn': "超音波幼蟲", + ja: "ビブラーバ" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + + description: { + 'zh-tw': "會劇烈地振動翅膀 來產生超音波。 能用消化液來溶解昏迷的獵物。", + 'zh-cn': "會劇烈地振動翅膀 來產生超音波。 能用消化液來溶解昏迷的獵物。", + ja: "翅を 激しく 振動させて 超音波を 発生。 気絶した 獲物を 消化液で 溶かす。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "刺耳聲", + 'zh-cn': "刺耳聲", + ja: "いやなおと" + }, + + effect: { + 'zh-tw': "在下個自己的回合,受到這個招式的寶可夢受到招式的傷害「+50」點。", + 'zh-cn': "在下個自己的回合,受到這個招式的寶可夢受到招式的傷害「+50」點。", + ja: "次の自分の番、このワザを受けたポケモンが受けるワザのダメージは「+50」される。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "利刃之風", + 'zh-cn': "利刃之風", + ja: "カッターウインド" + }, + + damage: 50, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [329] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/027.ts b/data-asia/SV/SV7a/027.ts new file mode 100644 index 000000000..c3a01a0e2 --- /dev/null +++ b/data-asia/SV/SV7a/027.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "沙漠蜻蜓ex", + 'zh-cn': "沙漠蜻蜓ex", + ja: "フライゴンex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 310, + types: ["Fighting"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "風暴返", + 'zh-cn': "風暴返", + ja: "ストームバック" + }, + + effect: { + 'zh-tw': "若希望,將這隻寶可夢與備戰寶可夢互換。", + 'zh-cn': "若希望,將這隻寶可夢與備戰寶可夢互換。", + ja: "のぞむなら、このポケモンをベンチポケモンと入れ替える。" + }, + + damage: 130, + cost: ["Fighting"] + }, { + name: { + 'zh-tw': "橄欖石音波", + 'zh-cn': "橄欖石音波", + ja: "ペリドットソニック" + }, + + effect: { + 'zh-tw': "對手的所有「寶可夢【ex】・【V】」各受到100點傷害。這個招式的傷害不計算弱點・抵抗力。", + 'zh-cn': "對手的所有「寶可夢【ex】・【V】」各受到100點傷害。這個招式的傷害不計算弱點・抵抗力。", + ja: "相手の「ポケモンex・V」全員に、それぞれ100ダメージ。このワザのダメージは弱点・抵抗力を計算しない。" + }, + + cost: ["Water", "Fighting", "Metal"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/028.ts b/data-asia/SV/SV7a/028.ts new file mode 100644 index 000000000..1a86c0ac5 --- /dev/null +++ b/data-asia/SV/SV7a/028.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "螺釘地鼠", + 'zh-cn': "螺釘地鼠", + ja: "モグリュー" + }, + + illustrator: "Ounishi", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + 'zh-tw': "只要將兩手的爪子疊在一起, 並高速旋轉身體, 便能以驚人的速度在地底前進。", + 'zh-cn': "只要將兩手的爪子疊在一起, 並高速旋轉身體, 便能以驚人的速度在地底前進。", + ja: "両手の ツメを 重ね合わせて 体を 高速 回転させると 猛スピードで 地中を 進む。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "掘掘", + 'zh-cn': "掘掘", + ja: "ほるほる" + }, + + effect: { + 'zh-tw': "將對手的牌庫上方1張卡丟棄。", + 'zh-cn': "將對手的牌庫上方1張卡丟棄。", + ja: "相手の山札を上から1枚トラッシュする。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "擲泥", + 'zh-cn': "擲泥", + ja: "どろかけ" + }, + + damage: 10, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [529] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/029.ts b/data-asia/SV/SV7a/029.ts new file mode 100644 index 000000000..1cd2a5f86 --- /dev/null +++ b/data-asia/SV/SV7a/029.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "龍頭地鼠", + 'zh-cn': "龍頭地鼠", + ja: "ドリュウズ" + }, + + illustrator: "Yuya Oka", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + + description: { + 'zh-tw': "進化為鋼的鑽頭有著 能穿透鐵板的破壞力。 在隧道工程裡可幫上大忙。", + 'zh-cn': "進化為鋼的鑽頭有著 能穿透鐵板的破壞力。 在隧道工程裡可幫上大忙。", + ja: "鋼に 進化した ドリルは 鉄板を 貫く 破壊力。 トンネル工事で 大活躍する。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "挖洞爪", + 'zh-cn': "挖洞爪", + ja: "あなほりクロー" + }, + + effect: { + 'zh-tw': "將對手的牌庫上方1張卡丟棄。", + 'zh-cn': "將對手的牌庫上方1張卡丟棄。", + ja: "相手の山札を上から1枚トラッシュする。" + }, + + damage: 20, + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "鑽粉碎", + 'zh-cn': "鑽粉碎", + ja: "ドリルスマッシュ" + }, + + effect: { + 'zh-tw': "若自己的備戰區有【鋼】寶可夢,則增加80點傷害。", + 'zh-cn': "若自己的備戰區有【鋼】寶可夢,則增加80點傷害。", + ja: "自分のベンチにポケモンがいるなら、80ダメージ追加。" + }, + + damage: "60+", + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [530] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/030.ts b/data-asia/SV/SV7a/030.ts new file mode 100644 index 000000000..f6f3d3952 --- /dev/null +++ b/data-asia/SV/SV7a/030.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "土地雲", + 'zh-cn': "土地雲", + ja: "ランドロス" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + 'zh-tw': "土地雲造訪的土地上, 作物會結實纍纍, 因此被稱為農田之神。", + 'zh-cn': "土地雲造訪的土地上, 作物會結實纍纍, 因此被稱為農田之神。", + ja: "ランドロスが 訪れる 土地は 作物が たくさん 実るため 畑の神様 と 言われている。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "真氣之拳", + 'zh-cn': "真氣之拳", + ja: "きあいのこぶし" + }, + + effect: { + 'zh-tw': "從自己的棄牌區選擇1張能量卡,附於這隻寶可夢身上。", + 'zh-cn': "從自己的棄牌區選擇1張能量卡,附於這隻寶可夢身上。", + ja: "自分のトラッシュからエネルギーを1枚選び、このポケモンにつける。" + }, + + damage: 30, + cost: ["Fighting"] + }, { + name: { + 'zh-tw': "粗暴橫掃", + 'zh-cn': "粗暴橫掃", + ja: "バスタースイング" + }, + + effect: { + 'zh-tw': "這個招式的傷害不計算抵抗力。", + 'zh-cn': "這個招式的傷害不計算抵抗力。", + ja: "このワザのダメージは抵抗力を計算しない。" + }, + + damage: 130, + cost: ["Fighting", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Rare", + dexId: [645] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/031.ts b/data-asia/SV/SV7a/031.ts new file mode 100644 index 000000000..47ae5e3b6 --- /dev/null +++ b/data-asia/SV/SV7a/031.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "投擲猴", + 'zh-cn': "投擲猴", + ja: "ナゲツケサル" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + + description: { + 'zh-tw': "老大會選出10隻出外狩獵, 並把牠們帶回來的食物 平均分配給群體內的夥伴。", + 'zh-cn': "老大會選出10隻出外狩獵, 並把牠們帶回來的食物 平均分配給群體內的夥伴。", + ja: "ボスが 選んだ 10匹で 狩りに 出かけ 取ってきた エサを 群れの 仲間で 平等に 分け合う。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "聯合投擲", + 'zh-cn': "聯合投擲", + ja: "れんけいスロー" + }, + + effect: { + 'zh-tw': "造成自己的場上的【基礎】寶可夢的數量×20點傷害。", + 'zh-cn': "造成自己的場上的【基礎】寶可夢的數量×20點傷害。", + ja: "自分の場のたねポケモンの数×20ダメージ。" + }, + + damage: "20×", + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [766] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/032.ts b/data-asia/SV/SV7a/032.ts new file mode 100644 index 000000000..1059465a9 --- /dev/null +++ b/data-asia/SV/SV7a/032.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "拳拳蛸", + 'zh-cn': "拳拳蛸", + ja: "タタッコ" + }, + + illustrator: "Shimaris Yukichi", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + 'zh-tw': "會為了尋找食物而登上陸地。 擁有旺盛的好奇心,不管看到什麼, 都會先用觸手打一打再說。", + 'zh-cn': "會為了尋找食物而登上陸地。 擁有旺盛的好奇心,不管看到什麼, 都會先用觸手打一打再說。", + ja: "餌を 求め 地上に 上がる。 好奇心旺盛で 目にしたものは とりあえず 触手で 殴る。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "撞一下", + 'zh-cn': "撞一下", + ja: "ちょっとつっこむ" + }, + + effect: { + 'zh-tw': "這隻寶可夢也受到10點傷害。", + 'zh-cn': "這隻寶可夢也受到10點傷害。", + ja: "このポケモンにも10ダメージ。" + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [852] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/033.ts b/data-asia/SV/SV7a/033.ts new file mode 100644 index 000000000..45875acc1 --- /dev/null +++ b/data-asia/SV/SV7a/033.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "八爪武師", + 'zh-cn': "八爪武師", + ja: "オトスパス" + }, + + illustrator: "KEIICHIRO ITO", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + + description: { + 'zh-tw': "全身都是肌肉。 會用觸手施展絞技, 威力無與倫比。", + 'zh-cn': "全身都是肌肉。 會用觸手施展絞技, 威力無與倫比。", + ja: "全身が 筋肉の 塊。 触手を 使って 繰りだす 絞め技の 威力は 凄まじい。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "劈打", + 'zh-cn': "劈打", + ja: "チョップ" + }, + + damage: 40, + cost: ["Fighting"] + }, { + name: { + 'zh-tw': "觸手激怒", + 'zh-cn': "觸手激怒", + ja: "テンタクルレイジ" + }, + + effect: { + 'zh-tw': "若這隻寶可夢身上放置有傷害指示物,則這個招式只需要1個【鬥】能量即可使用。", + 'zh-cn': "若這隻寶可夢身上放置有傷害指示物,則這個招式只需要1個【鬥】能量即可使用。", + ja: "このワザは、このポケモンにダメカンがのっているなら、エネルギー1個で使える。" + }, + + damage: 130, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 3, + regulationMark: "H", + rarity: "Common", + dexId: [853] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/034.ts b/data-asia/SV/SV7a/034.ts new file mode 100644 index 000000000..571f44c5a --- /dev/null +++ b/data-asia/SV/SV7a/034.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "盔甲鳥", + 'zh-cn': "盔甲鳥", + ja: "エアームド" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + description: { + 'zh-tw': "由於脫落的羽毛又薄 又銳利,據說以前曾 被當成劍來使用。", + 'zh-cn': "由於脫落的羽毛又薄 又銳利,據說以前曾 被當成劍來使用。", + ja: "抜け落ちた 羽根は 薄く 鋭いので 刀として 使われていたことも あったらしい。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "鋼翼", + 'zh-cn': "鋼翼", + ja: "はがねのつばさ" + }, + + effect: { + 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。", + 'zh-cn': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。", + ja: "次の相手の番、このポケモンが受けるワザのダメージは「-30」される。" + }, + + damage: 50, + cost: ["Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [227] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/035.ts b/data-asia/SV/SV7a/035.ts new file mode 100644 index 000000000..1ac4cfec8 --- /dev/null +++ b/data-asia/SV/SV7a/035.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鑰圈兒", + 'zh-cn': "鑰圈兒", + ja: "クレッフィ" + }, + + illustrator: "mingo", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + 'zh-tw': "過去的貴族會將掌管金庫 鑰匙的鑰圈兒一代代地 傳承下去,並對其呵護備至。", + 'zh-cn': "過去的貴族會將掌管金庫 鑰匙的鑰圈兒一代代地 傳承下去,並對其呵護備至。", + ja: "昔の 貴族は 金庫の カギを 管理させる クレッフィを 代々 引き継ぎ 大切に 扱った。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "插入抽出", + 'zh-cn': "插入抽出", + ja: "さしこみドロー" + }, + + effect: { + 'zh-tw': "將自己的1張手牌丟棄。然後,從自己的牌庫抽出2張卡。", + 'zh-cn': "將自己的1張手牌丟棄。然後,從自己的牌庫抽出2張卡。", + ja: "自分の手札を1枚トラッシュする。その後、自分の山札を2枚引く。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "鉤住", + 'zh-cn': "鉤住", + ja: "ひっかける" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [707] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/036.ts b/data-asia/SV/SV7a/036.ts new file mode 100644 index 000000000..e13ae1ea6 --- /dev/null +++ b/data-asia/SV/SV7a/036.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鋁鋼龍", + 'zh-cn': "鋁鋼龍", + ja: "ジュラルドン" + }, + + illustrator: "Tonji Matsuno", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + description: { + 'zh-tw': "金屬構成的身體雖然堅固 但無法散熱,因此牠會從 尾巴上的縫隙排出熱氣。", + 'zh-cn': "金屬構成的身體雖然堅固 但無法散熱,因此牠會從 尾巴上的縫隙排出熱氣。", + ja: "金属の ボディは 頑丈だが 熱が こもってしまうので 尻尾の スリットから 放熱している。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "正面對決", + 'zh-cn': "正面對決", + ja: "がちんこ" + }, + + damage: 50, + cost: ["Metal", "Metal"] + }, { + name: { + 'zh-tw': "鋁鋼光束", + 'zh-cn': "鋁鋼光束", + ja: "ジュラルビーム" + }, + + effect: { + 'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。", + ja: "このポケモンについているエネルギーを2個選び、トラッシュする。" + }, + + damage: 130, + cost: ["Metal", "Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Common", + dexId: [884] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/037.ts b/data-asia/SV/SV7a/037.ts new file mode 100644 index 000000000..2fb551a41 --- /dev/null +++ b/data-asia/SV/SV7a/037.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鋁鋼橋龍ex", + 'zh-cn': "鋁鋼橋龍ex", + ja: "ブリジュラスex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 300, + types: ["Metal"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "金屬防禦強化", + 'zh-cn': "金屬防禦強化", + ja: 'メタルディフェンダー' + }, + + effect: { + 'zh-tw': "在下個對手的回合,這隻寶可夢的弱點全部消除。", + 'zh-cn': "在下個對手的回合,這隻寶可夢的弱點全部消除。", + ja: '次の相手の番、このポケモンの弱点は、すべてなくなる。' + }, + + damage: 220, + cost: ["Metal", "Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Double rare", + + abilities: [{ + type: "Ability", + + name: { + 'zh-tw': "‌‌[特性]合金建造", + 'zh-cn': "‌‌[特性]合金建造", + ja: "ごうきんビルド" + }, + + effect: { + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。從自己的棄牌區選擇最多2張「基本【鋼】能量」卡,以任意方式附於自己的【鋼】寶可夢身上。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。從自己的棄牌區選擇最多2張「基本【鋼】能量」卡,以任意方式附於自己的【鋼】寶可夢身上。", + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモンに好きなようにつける。" + } + }] +} + +export default card diff --git a/data-asia/SV/SV7a/038.ts b/data-asia/SV/SV7a/038.ts new file mode 100644 index 000000000..c8d1b8044 --- /dev/null +++ b/data-asia/SV/SV7a/038.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "賽富豪", + 'zh-cn': "賽富豪", + ja: "サーフゴー" + }, + + illustrator: "Dsuke", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + description: { + 'zh-tw': "堆疊硬幣而形成的身體 結實堅固。會連續發射 硬幣來壓制敵人。", + 'zh-cn': "堆疊硬幣而形成的身體 結實堅固。會連續發射 硬幣來壓制敵人。", + ja: "コインが 積みあがって 作られた 体は 頑丈。 コインを 連射して 敵を 圧倒する。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "富裕強襲", + 'zh-cn': "富裕強襲", + ja: "リッチストライク" + }, + + effect: { + 'zh-tw': "在這個回合,若這隻寶可夢從「索財靈」進化,則增加90點傷害。", + 'zh-cn': "在這個回合,若這隻寶可夢從「索財靈」進化,則增加90點傷害。", + ja: "この番、このポケモンが「コレクレー」から進化していたなら、90ダメージ追加。" + }, + + damage: "30+", + cost: ["Metal"] + }, { + name: { + 'zh-tw': "賽富迴旋", + 'zh-cn': "賽富迴旋", + ja: "サーフリターン" + }, + + effect: { + 'zh-tw': "若希望,將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。", + 'zh-cn': "若希望,將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。", + ja: "のぞむなら、このポケモンと、ついているすべてのカードを、自分の山札にもどして切る。" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Uncommon", + dexId: [1000] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/039.ts b/data-asia/SV/SV7a/039.ts new file mode 100644 index 000000000..70ac95be8 --- /dev/null +++ b/data-asia/SV/SV7a/039.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "鐵頭殼", + 'zh-cn': "鐵頭殼", + ja: "テツノカシラ" + }, + + illustrator: "akagi", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + description: { + 'zh-tw': "據說牠曾射出發光的刀刃 劈開了周遭的一切,但沒有 能得知其真面目的其他資訊。", + 'zh-cn': "據說牠曾射出發光的刀刃 劈開了周遭的一切,但沒有 能得知其真面目的其他資訊。", + ja: "光る 刃を 撃ちだし あたりの すべてを 切り裂いたらしいが ほかに 情報はなく 正体不明。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "滅絕斬", + 'zh-cn': "滅絕斬", + ja: "デリートスラッシュ" + }, + + effect: { + 'zh-tw': "若對手的備戰寶可夢的數量為3隻以上,則增加80點傷害。", + 'zh-cn': "若對手的備戰寶可夢的數量為3隻以上,則增加80點傷害。", + ja: "相手のベンチポケモンの数が3匹以上なら、80ダメージ追加。" + }, + + damage: "40+", + cost: ["Metal", "Colorless"] + }, { + name: { + 'zh-tw': "利刃切割", + 'zh-cn': "利刃切割", + ja: "スライスブレード" + }, + + damage: 100, + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H", + rarity: "Rare", + dexId: [1023] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/040.ts b/data-asia/SV/SV7a/040.ts new file mode 100644 index 000000000..d6ca7d0a2 --- /dev/null +++ b/data-asia/SV/SV7a/040.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "阿羅拉 椰蛋樹ex", + 'zh-cn': "阿羅拉 椰蛋樹ex", + ja: "アローラ ナッシーex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "熱帶狂燒", + 'zh-cn': "熱帶狂燒", + ja: "トロピカルフィーバー" + }, + + effect: { + 'zh-tw': "從自己的手牌選擇任意數量的基本能量卡,以任意方式附於自己的寶可夢身上。", + 'zh-cn': "從自己的手牌選擇任意數量的基本能量卡,以任意方式附於自己的寶可夢身上。", + ja: "自分の手札から基本エネルギーを好きなだけ選び、自分のポケモンに好きなようにつける。" + }, + + damage: 150, + cost: ["Grass", "Water"] + }, { + name: { + 'zh-tw': "嗡嗡榍石", + 'zh-cn': "嗡嗡榍石", + ja: "ブンブンスフェーン" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥場的【基礎】寶可夢【昏厥】。若為反面,則選擇1隻對手的備戰區的【基礎】寶可夢,將其【昏厥】。", + 'zh-cn': "擲1次硬幣若為正面,則將對手的戰鬥場的【基礎】寶可夢【昏厥】。若為反面,則選擇1隻對手的備戰區的【基礎】寶可夢,將其【昏厥】。", + ja: "コインを1回投げオモテなら、相手のバトル場のたねポケモンをきぜつさせる。ウラなら、相手のベンチのたねポケモンを1匹選び、きぜつさせる。" + }, + + cost: ["Grass", "Water", "Fighting"] + }], + + retreat: 3, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/041.ts b/data-asia/SV/SV7a/041.ts new file mode 100644 index 000000000..00ca489f6 --- /dev/null +++ b/data-asia/SV/SV7a/041.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "七夕青鳥", + 'zh-cn': "七夕青鳥", + ja: "チルタリス" + }, + + illustrator: "rika", + category: "Pokemon", + hp: 120, + types: ["Dragon"], + + description: { + 'zh-tw': "在晴朗的日子會混在雲朵中, 自在地在空中來回飛行。 會用美妙的高音歌唱。", + 'zh-cn': "在晴朗的日子會混在雲朵中, 自在地在空中來回飛行。 會用美妙的高音歌唱。", + ja: "晴れた日 綿雲に まぎれながら 大空を 自由に 飛びまわり 美しい ソプラノで 歌う。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "哼唱充能", + 'zh-cn': "哼唱充能", + ja: "ハミングチャージ" + }, + + effect: { + 'zh-tw': "從自己的牌庫選擇最多2張基本能量卡,以任意方式附於自己的寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張基本能量卡,以任意方式附於自己的寶可夢身上。並且重洗牌庫。", + ja: "自分の山札から基本エネルギーを2枚まで選び、自分のポケモンに好きなようにつける。そして山札を切る。" + }, + + cost: ["Water"] + }, { + name: { + 'zh-tw': "棉花之翼", + 'zh-cn': "棉花之翼", + ja: "コットンウイング" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害。", + 'zh-cn': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害。", + ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージを受けない。" + }, + + damage: 100, + cost: ["Water", "Metal"] + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [334] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/042.ts b/data-asia/SV/SV7a/042.ts new file mode 100644 index 000000000..00a57ff91 --- /dev/null +++ b/data-asia/SV/SV7a/042.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "帝牙盧卡", + 'zh-cn': "帝牙盧卡", + ja: "ディアルガ" + }, + + illustrator: "Takumi Wada", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + + description: { + 'zh-tw': "因為帝牙盧卡的誕生, 時間才得以開始流動。 是有著如此傳說的寶可夢。", + 'zh-cn': "因為帝牙盧卡的誕生, 時間才得以開始流動。 是有著如此傳說的寶可夢。", + ja: "ディアルガが 生まれたことで 時間が 動き出したという 伝説を 持つ ポケモン。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "時間掌控", + 'zh-cn': "時間掌控", + ja: "タイムコントロール" + }, + + effect: { + 'zh-tw': "從自己的牌庫任意選擇2張卡。重洗剩餘牌庫,將所選的卡以任意順序排列,放回牌庫上方。", + 'zh-cn': "從自己的牌庫任意選擇2張卡。重洗剩餘牌庫,將所選的卡以任意順序排列,放回牌庫上方。", + ja: "自分の山札から好きなカードを2枚選ぶ。残りの山札を切り、選んだカードを好きな順番に入れ替えて、山札の上にもどす。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "光炮尾", + 'zh-cn': "光炮尾", + ja: "バスターテール" + }, + + damage: 160, + cost: ["Psychic", "Metal", "Colorless"] + }], + + retreat: 2, + regulationMark: "H", + rarity: "Rare", + dexId: [483] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/043.ts b/data-asia/SV/SV7a/043.ts new file mode 100644 index 000000000..1dcf2bd11 --- /dev/null +++ b/data-asia/SV/SV7a/043.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "帕路奇亞", + 'zh-cn': "帕路奇亞", + ja: "パルキア" + }, + + illustrator: "danciao", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + + description: { + 'zh-tw': "據說住在互相平行的 空間之間的狹縫。 是在神話中登場的寶可夢。", + 'zh-cn': "據說住在互相平行的 空間之間的狹縫。 是在神話中登場的寶可夢。", + ja: "並行して 並ぶ 空間の 狭間に 住むと 言われている。 神話に 登場する ポケモン。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "空間粉碎", + 'zh-cn': "空間粉碎", + ja: "スペースクラッシュ" + }, + + effect: { + 'zh-tw': "造成這隻寶可夢身上附加的基本能量的數量×40點傷害。", + 'zh-cn': "造成這隻寶可夢身上附加的基本能量的數量×40點傷害。", + ja: "このポケモンについている基本エネルギーの数×40ダメージ。" + }, + + damage: "40×", + cost: ["Grass", "Water"] + }], + + retreat: 2, + regulationMark: "H", + rarity: "Rare", + dexId: [484] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/044.ts b/data-asia/SV/SV7a/044.ts new file mode 100644 index 000000000..87e74f8b7 --- /dev/null +++ b/data-asia/SV/SV7a/044.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "爆焰龜獸", + 'zh-cn': "爆焰龜獸", + ja: "バクガメス" + }, + + illustrator: "Rianti Hidayat", + category: "Pokemon", + hp: 120, + types: ["Dragon"], + + description: { + 'zh-tw': "背上的甲殼上敷了炸藥。 會用大爆炸去回擊 來攻擊自己的敵人。", + 'zh-cn': "背上的甲殼上敷了炸藥。 會用大爆炸去回擊 來攻擊自己的敵人。", + ja: "爆薬で コーティングされた 甲羅を 背負う。 攻撃してきた 敵を 大爆発で 返り討ち。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "灼燒盡", + 'zh-cn': "灼燒盡", + ja: "こがしつくす" + }, + + effect: { + 'zh-tw': "選擇1個對手的戰鬥場的「寶可夢【ex】」身上附加的能量,將其丟棄。", + 'zh-cn': "選擇1個對手的戰鬥場的「寶可夢【ex】」身上附加的能量,將其丟棄。", + ja: "相手のバトル場の「ポケモンex」についているエネルギーを1個選び、トラッシュする。" + }, + + cost: ["Fire"] + }, { + name: { + 'zh-tw': "爆熱踩踏", + 'zh-cn': "爆熱踩踏", + ja: "ばくねつスタンプ" + }, + + damage: 100, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [776] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/045.ts b/data-asia/SV/SV7a/045.ts new file mode 100644 index 000000000..41839b01b --- /dev/null +++ b/data-asia/SV/SV7a/045.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "啃果蟲", + 'zh-cn': "啃果蟲", + ja: "カジッチュ" + }, + + illustrator: "Yuka Morii", + category: "Pokemon", + hp: 40, + types: ["Dragon"], + + description: { + 'zh-tw': "平時都在蘋果中生活。 如果失去了蘋果,身體的 水分就會流失而變得虛弱。", + 'zh-cn': "平時都在蘋果中生活。 如果失去了蘋果,身體的 水分就會流失而變得虛弱。", + ja: "りんごの 中で 暮らしている。 りんごが なくなると 体の 水分が 抜けて 弱ってしまう。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "營養素", + 'zh-cn': "營養素", + ja: "えいようそ" + }, + + effect: { + 'zh-tw': "將自己的1隻寶可夢恢復「30」HP。", + 'zh-cn': "將自己的1隻寶可夢恢復「30」HP。", + ja: "自分のポケモン1匹のHPを「30」回復する。" + }, + + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "打滾", + 'zh-cn': "打滾", + ja: "ころばす" + }, + + effect: { + 'zh-tw': "擲1次硬幣若為正面,則增加30點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加30點傷害。", + ja: "コインを1回投げオモテなら、30ダメージ追加。" + }, + + damage: "20+", + cost: ["Grass", "Fire"] + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [840] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/046.ts b/data-asia/SV/SV7a/046.ts new file mode 100644 index 000000000..819459130 --- /dev/null +++ b/data-asia/SV/SV7a/046.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "蘋裹龍", + 'zh-cn': "蘋裹龍", + ja: "アップリュー" + }, + + illustrator: "GOTO minori", + category: "Pokemon", + hp: 80, + types: ["Dragon"], + + description: { + 'zh-tw': "會用體液修補蘋果。 身經百戰的強者, 蘋果會佈滿黏土色。", + 'zh-cn': "會用體液修補蘋果。 身經百戰的強者, 蘋果會佈滿黏土色。", + ja: "体液で りんごを 補修する。 歴戦の 強者の りんごは 全体的に 粘土色。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "酸味噴吐", + 'zh-cn': "酸味噴吐", + ja: "サワースピット" + }, + + effect: { + 'zh-tw': "造成對手的戰鬥寶可夢身上放置的傷害指示物的數量×20點傷害。", + 'zh-cn': "造成對手的戰鬥寶可夢身上放置的傷害指示物的數量×20點傷害。", + ja: "相手のバトルポケモンにのっているダメカンの数×20ダメージ。" + }, + + damage: "20×", + cost: ["Colorless"] + }, { + name: { + 'zh-tw': "高速飛行", + 'zh-cn': "高速飛行", + ja: "スピードひこう" + }, + + damage: 70, + cost: ["Grass", "Fire"] + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [841] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/047.ts b/data-asia/SV/SV7a/047.ts new file mode 100644 index 000000000..eacd739db --- /dev/null +++ b/data-asia/SV/SV7a/047.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "豐蜜龍", + 'zh-cn': "豐蜜龍", + ja: "タルップル" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + hp: 90, + types: ["Dragon"], + + description: { + 'zh-tw': "當有愛吃豚跑來舔食 自己背上的甜甜蜜時, 會吐出黏糊糊的蜜來擊退。", + 'zh-cn': "當有愛吃豚跑來舔食 自己背上的甜甜蜜時, 會吐出黏糊糊的蜜來擊退。", + ja: "背中の 甘い蜜を 舐め取りに やって来る グルトンに ベトベトの 蜜を 吐きかけ 退ける。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "甜蜜熔化", + 'zh-cn': "甜蜜熔化", + ja: "スイートメルト" + }, + + effect: { + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法使用招式。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法使用招式。", + ja: "次の相手の番、このワザを受けたポケモンは、ワザが使えない。" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "狂野衝撞", + 'zh-cn': "狂野衝撞", + ja: "ワイルドタックル" + }, + + effect: { + 'zh-tw': "這隻寶可夢也受到20點傷害。", + 'zh-cn': "這隻寶可夢也受到20點傷害。", + ja: "このポケモンにも20ダメージ。" + }, + + damage: 130, + cost: ["Grass", "Fire"] + }], + + retreat: 3, + regulationMark: "H", + rarity: "Uncommon", + dexId: [842] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/048.ts b/data-asia/SV/SV7a/048.ts new file mode 100644 index 000000000..c15e5daa0 --- /dev/null +++ b/data-asia/SV/SV7a/048.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "青綿鳥", + 'zh-cn': "青綿鳥", + ja: "チルット" + }, + + illustrator: "sowsow", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + 'zh-tw': "如果自己和周圍不乾淨, 就靜不下心來的性格。 見到髒污會用羽毛擦掉。", + 'zh-cn': "如果自己和周圍不乾淨, 就靜不下心來的性格。 見到髒污會用羽毛擦掉。", + ja: "自分も まわりも きれいでないと 落ち着かない 性格。 汚れを 見つけると 羽で ふき取る。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "魅惑之聲", + 'zh-cn': "魅惑之聲", + ja: "チャームボイス" + }, + + effect: { + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。", + ja: "相手のバトルポケモンをこんらんにする。" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [333] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/049.ts b/data-asia/SV/SV7a/049.ts new file mode 100644 index 000000000..94955add4 --- /dev/null +++ b/data-asia/SV/SV7a/049.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "毛頭小鷹", + 'zh-cn': "毛頭小鷹", + ja: "ワシボン" + }, + + illustrator: "Nakamura Ippan", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + 'zh-tw': "用尖尖的爪子刺穿獵物 後啄食。雖然也會吃樹果, 但基本上是肉食性寶可夢。", + 'zh-cn': "用尖尖的爪子刺穿獵物 後啄食。雖然也會吃樹果, 但基本上是肉食性寶可夢。", + ja: "尖ったツメを 獲物に 突き立て ついばんでいる。 木の実も 食べるが 基本的に 肉食のポケモン。" + }, + + stage: "Basic", + + attacks: [{ + name: { + 'zh-tw': "羽擊", + 'zh-cn': "羽擊", + ja: "はばたく" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Common", + dexId: [627] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/050.ts b/data-asia/SV/SV7a/050.ts new file mode 100644 index 000000000..9b2df47d8 --- /dev/null +++ b/data-asia/SV/SV7a/050.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "勇士雄鷹", + 'zh-cn': "勇士雄鷹", + ja: "ウォーグル" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + description: { + 'zh-tw': "只要是為了夥伴, 即使身受重傷也不會停止戰鬥。 是勇敢的天空戰士。", + 'zh-cn': "只要是為了夥伴, 即使身受重傷也不會停止戰鬥。 是勇敢的天空戰士。", + ja: "仲間の ためなら どれだけ 傷つこうとも 戦いを やめない 勇敢な 大空の 戦士。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + 'zh-tw': "拖出", + 'zh-cn': "拖出", + ja: "ひきずりだす" + }, + + effect: { + 'zh-tw': "選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。然後,新上場的寶可夢受到40點傷害。", + 'zh-cn': "選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。然後,新上場的寶可夢受到40點傷害。", + ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。その後、新しく出てきたポケモンに40ダメージ。" + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "爆破之風", + 'zh-cn': "爆破之風", + ja: "ブラストウインド" + }, + + damage: 120, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Uncommon", + dexId: [628] +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/051.ts b/data-asia/SV/SV7a/051.ts new file mode 100644 index 000000000..fe8f277e1 --- /dev/null +++ b/data-asia/SV/SV7a/051.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "摩托蜥ex", + 'zh-cn': "摩托蜥ex", + ja: "モトトカゲex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + 'zh-tw': "突圍", + 'zh-cn': "突圍", + ja: "ブレイクスルー" + }, + + effect: { + 'zh-tw': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]", + ja: "相手のベンチポケモン1匹にも、30ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + }, + + damage: 130, + cost: ["Colorless", "Colorless", "Colorless"] + }, { + name: { + 'zh-tw': "鋯石之路", + 'zh-cn': "鋯石之路", + ja: "ジルコンロード" + }, + + effect: { + 'zh-tw': "若希望,從自己的牌庫抽出5張卡。", + 'zh-cn': "若希望,從自己的牌庫抽出5張卡。", + ja: "のぞむなら、自分の山札を5枚引く。" + }, + + damage: 180, + cost: ["Grass", "Fire", "Psychic"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H", + rarity: "Double rare" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/052.ts b/data-asia/SV/SV7a/052.ts new file mode 100644 index 000000000..8ccdf0a26 --- /dev/null +++ b/data-asia/SV/SV7a/052.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "能量輸送PRO", + 'zh-cn': "能量輸送PRO", + ja: "エネルギー転送PRO" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + 'zh-tw': "從自己的牌庫選擇任意數量的各不同屬性的基本能量卡各1張,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇任意數量的各不同屬性的基本能量卡各1張,在給對手看過後加入手牌。並且重洗牌庫。", + ja: "自分の山札から、それぞれちがうタイプの基本エネルギーを好きなだけ選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/053.ts b/data-asia/SV/SV7a/053.ts new file mode 100644 index 000000000..87b5cc1b1 --- /dev/null +++ b/data-asia/SV/SV7a/053.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "幫忙鈴", + 'zh-cn': "幫忙鈴", + ja: "おたすけベル" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + 'zh-tw': "這張卡只可在後攻玩家的最初回合使用。 從自己的牌庫選擇1張支援者卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "這張卡只可在後攻玩家的最初回合使用。 從自己的牌庫選擇1張支援者卡,在給對手看過後加入手牌。並且重洗牌庫。", + ja: "このカードは、後攻プレイヤーの最初の番しか使えない。\n\n自分の山札からサポートを1枚選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/054.ts b/data-asia/SV/SV7a/054.ts new file mode 100644 index 000000000..de7f427d5 --- /dev/null +++ b/data-asia/SV/SV7a/054.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "黑暗球", + 'zh-cn': "黑暗球", + ja: "ダークボール" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + 'zh-tw': "查看自己的牌庫下方7張卡,從其中選擇1張寶可夢卡,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。", + 'zh-cn': "查看自己的牌庫下方7張卡,從其中選擇1張寶可夢卡,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。", + ja: "自分の山札を下から7枚見て、その中からポケモンを1枚選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/055.ts b/data-asia/SV/SV7a/055.ts new file mode 100644 index 000000000..4ffefea93 --- /dev/null +++ b/data-asia/SV/SV7a/055.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "妨害信函", + 'zh-cn': "妨害信函", + ja: "ぼうがいレター" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + 'zh-tw': "對手數過對手自己的手牌張數後,全部翻回反面並重洗,放回牌庫下方。然後,對手從牌庫抽出與放回的張數相同數量的卡。", + 'zh-cn': "對手數過對手自己的手牌張數後,全部翻回反面並重洗,放回牌庫下方。然後,對手從牌庫抽出與放回的張數相同數量的卡。", + ja: "相手は相手自身の手札を数えたあと、すべてウラにして切り、山札の下にもどす。その後、相手はもどした枚数ぶん、山札を引く。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/056.ts b/data-asia/SV/SV7a/056.ts new file mode 100644 index 000000000..909fe27e1 --- /dev/null +++ b/data-asia/SV/SV7a/056.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "百萬噸吹風機", + 'zh-cn': "百萬噸吹風機", + ja: "メガトンブロアー" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + 'zh-tw': "將對手的所有寶可夢身上附加的「寶可夢道具」卡與「特殊能量」卡,與場上的「競技場」卡,全部丟棄。", + 'zh-cn': "將對手的所有寶可夢身上附加的「寶可夢道具」卡與「特殊能量」卡,與場上的「競技場」卡,全部丟棄。", + ja: "相手のポケモン全員についている「ポケモンのどうぐ」と「特殊エネルギー」と、場に出ている「スタジアム」を、すべてトラッシュする。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/057.ts b/data-asia/SV/SV7a/057.ts new file mode 100644 index 000000000..e662e1fcc --- /dev/null +++ b/data-asia/SV/SV7a/057.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "龍之秘藥", + 'zh-cn': "龍之秘藥", + ja: "竜の秘薬" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + 'zh-tw': "將自己的戰鬥場的【龍】寶可夢恢復「60」HP。", + 'zh-cn': "將自己的戰鬥場的【龍】寶可夢恢復「60」HP。", + ja: "自分のバトル場のポケモンのHPを「60」回復する。" + }, + + trainerType: "Item", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/058.ts b/data-asia/SV/SV7a/058.ts new file mode 100644 index 000000000..018b948e7 --- /dev/null +++ b/data-asia/SV/SV7a/058.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "千香果", + 'zh-cn': "千香果", + ja: "イトケのみ" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + 'zh-tw': "‌附有這張卡的寶可夢受到對手的【水】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。", + 'zh-cn': "‌附有這張卡的寶可夢受到對手的【水】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。", + ja: "このカードをつけているポケモンが、相手のポケモンからワザのダメージを受けるとき、そのダメージは「-60」され、このカードをトラッシュする。" + }, + + trainerType: "Tool", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/059.ts b/data-asia/SV/SV7a/059.ts new file mode 100644 index 000000000..d702221f1 --- /dev/null +++ b/data-asia/SV/SV7a/059.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "反擊增幅器", + 'zh-cn': "反擊增幅器", + ja: "カウンターゲイン" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + 'zh-tw': "若自己剩餘獎賞卡的張數比對手剩餘獎賞卡的張數多,則附有這張卡的寶可夢使用招式所需的能量,減少1個【無】能量。", + 'zh-cn': "若自己剩餘獎賞卡的張數比對手剩餘獎賞卡的張數多,則附有這張卡的寶可夢使用招式所需的能量,減少1個【無】能量。", + ja: "自分のサイドの残り枚数が、相手のサイドの残り枚数より多いなら、このカードをつけているポケモンがワザを使うためのエネルギーは、エネルギー1個ぶん少なくなる。" + }, + + trainerType: "Tool", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/060.ts b/data-asia/SV/SV7a/060.ts new file mode 100644 index 000000000..a19aeaed8 --- /dev/null +++ b/data-asia/SV/SV7a/060.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "杜若", + 'zh-cn': "杜若", + ja: "カキツバタ" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + 'zh-tw': "查看自己的牌庫上方7張卡,從其中選擇寶可夢卡與訓練家卡各1張,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。", + 'zh-cn': "查看自己的牌庫上方7張卡,從其中選擇寶可夢卡與訓練家卡各1張,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。", + ja: "自分の山札を上から7枚見て、その中からポケモンとトレーナーズを1枚ずつ選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/061.ts b/data-asia/SV/SV7a/061.ts new file mode 100644 index 000000000..fc7b7e46b --- /dev/null +++ b/data-asia/SV/SV7a/061.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "衝浪手", + 'zh-cn': "衝浪手", + ja: "サーファー" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + 'zh-tw': "將自己的戰鬥寶可夢與備戰寶可夢互換。然後,從牌庫抽卡直到自己的手牌滿5張為止。", + 'zh-cn': "將自己的戰鬥寶可夢與備戰寶可夢互換。然後,從牌庫抽卡直到自己的手牌滿5張為止。", + ja: "自分のバトルポケモンをベンチポケモンと入れ替える。その後、自分の手札が5枚になるように、山札を引く。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/062.ts b/data-asia/SV/SV7a/062.ts new file mode 100644 index 000000000..fa5e6dcfd --- /dev/null +++ b/data-asia/SV/SV7a/062.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "朵拉塞娜", + 'zh-cn': "朵拉塞娜", + ja: "ドラセナ" + }, + + illustrator: "Hideki Ishikawa", + category: "Trainer", + + effect: { + 'zh-tw': "將自己的手牌全部放回牌庫並重洗。然後,擲1次硬幣,若為正面,則從牌庫抽出8張卡,若為反面,則從牌庫抽出3張卡。", + 'zh-cn': "將自己的手牌全部放回牌庫並重洗。然後,擲1次硬幣,若為正面,則從牌庫抽出8張卡,若為反面,則從牌庫抽出3張卡。", + ja: "自分の手札をすべて山札にもどして切る。その後、コインを1回投げ、オモテなら8枚、ウラなら3枚、山札を引く。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Common" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/063.ts b/data-asia/SV/SV7a/063.ts new file mode 100644 index 000000000..cc43a77b1 --- /dev/null +++ b/data-asia/SV/SV7a/063.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "琉琪亞的展示", + 'zh-cn': "琉琪亞的展示", + ja: "ルチアのアピール" + }, + + illustrator: "En Morikura", + category: "Trainer", + + effect: { + 'zh-tw': "選擇1隻對手的備戰區的【基礎】寶可夢,與戰鬥寶可夢互換。然後,將新上場的寶可夢【混亂】。", + 'zh-cn': "選擇1隻對手的備戰區的【基礎】寶可夢,與戰鬥寶可夢互換。然後,將新上場的寶可夢【混亂】。", + ja: "相手のベンチのたねポケモンを1匹選び、バトルポケモンと入れ替える。その後、新しく出てきたポケモンをこんらんにする。" + }, + + trainerType: "Supporter", + regulationMark: "H", + rarity: "Uncommon" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/064.ts b/data-asia/SV/SV7a/064.ts new file mode 100644 index 000000000..3712044a7 --- /dev/null +++ b/data-asia/SV/SV7a/064.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + 'zh-tw': "富裕能量", + 'zh-cn': "富裕能量", + ja: "リッチエネルギー" + }, + + illustrator: "5ban Graphics", + category: "Energy", + + effect: { + 'zh-tw': "只要這張卡附於寶可夢身上,視為提供1個【無】能量。 從手牌將這張卡附於寶可夢身上時,從自己的牌庫抽出4張卡。", + 'zh-cn': "只要這張卡附於寶可夢身上,視為提供1個【無】能量。 從手牌將這張卡附於寶可夢身上時,從自己的牌庫抽出4張卡。", + ja: "このカードは、ポケモンについているかぎり、エネルギー1個ぶんとしてはたらく。\n\nこのカードを手札からポケモンにつけたとき、自分の山札を4枚引く。" + }, + + energyType: "Special", + regulationMark: "H", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/065.ts b/data-asia/SV/SV7a/065.ts new file mode 100644 index 000000000..f50089911 --- /dev/null +++ b/data-asia/SV/SV7a/065.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "タマタマ" + }, + + illustrator: "Yuriko Akase", + category: "Pokemon", + dexId: [102], + hp: 30, + types: ["Grass"], + + description: { + ja: "タマタマだけに 伝わる テレパシーを 出し合っているので どんなときでも 6匹 集まれる。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "そうじゅくしんか" + }, + + effect: { + ja: "このワザは、先攻プレイヤーの最初の番でも使える。このポケモンから進化するカードを、自分の山札から1枚選び、このポケモンにのせて進化させる。そして山札を切る。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/066.ts b/data-asia/SV/SV7a/066.ts new file mode 100644 index 000000000..5c5bfc04f --- /dev/null +++ b/data-asia/SV/SV7a/066.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "マシェード" + }, + + illustrator: "matazo", + category: "Pokemon", + dexId: [756], + hp: 110, + types: ["Grass"], + + description: { + ja: "点滅する 胞子の 光りで 獲物を おびき寄せて 眠らせる。 指先から 生気を 吸い取る。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "やすらぐひかり" + }, + + effect: { + ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。相手のバトルポケモンをねむりにする。" + } + }], + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + ja: "スパイラルラッシュ" + }, + + damage: "60+", + + effect: { + ja: "ウラが出るまでコインを投げ、オモテの数×30ダメージ追加。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/067.ts b/data-asia/SV/SV7a/067.ts new file mode 100644 index 000000000..1c798db20 --- /dev/null +++ b/data-asia/SV/SV7a/067.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ポワルン たいようのすがた" + }, + + illustrator: "Narano", + category: "Pokemon", + dexId: [351], + hp: 70, + types: ["Fire"], + + description: { + ja: "晴れた 日の ポワルンの 姿。 ヒーターの前に 置く 実験では この 形に 変化しなかった。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "こがす" + }, + + effect: { + ja: "相手のバトルポケモンをやけどにする。" + } + }, { + cost: ["Fire", "Colorless"], + + name: { + ja: "サニーアシスト" + }, + + damage: 50, + + effect: { + ja: "このポケモンについているエネルギーをすべて、ベンチポケモン1匹につけ替える。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 0, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/068.ts b/data-asia/SV/SV7a/068.ts new file mode 100644 index 000000000..d8ffc7c36 --- /dev/null +++ b/data-asia/SV/SV7a/068.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ハギギシリ" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + dexId: [779], + hp: 110, + types: ["Water"], + + description: { + ja: "歯ぎしりで 起こる 波紋に 陽の光が 反射するとき まわりの 水は 眩いばかりに きらめく。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "はんげき" + }, + + effect: { + ja: "このポケモンが、バトル場で相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンにダメカンを3個のせる。" + } + }], + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + ja: "かじりつく" + }, + + damage: 50, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/069.ts b/data-asia/SV/SV7a/069.ts new file mode 100644 index 000000000..2bc611d9f --- /dev/null +++ b/data-asia/SV/SV7a/069.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ハルクジラ" + }, + + illustrator: "Jerky", + category: "Pokemon", + dexId: [975], + hp: 180, + types: ["Water"], + + description: { + ja: "氷エネルギーの 集中する 上あごの ツノが 超低温になって 周囲を 凍らせる。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "がっちりボディ" + }, + + effect: { + ja: "このポケモンが受けるワザのダメージは「-30」される。" + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "デンジャーマウス" + }, + + damage: 150 + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/070.ts b/data-asia/SV/SV7a/070.ts new file mode 100644 index 000000000..16242cd21 --- /dev/null +++ b/data-asia/SV/SV7a/070.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ラティオス" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + dexId: [381], + hp: 120, + types: ["Psychic"], + + description: { + ja: "高い 知能を 持つ ポケモン。 腕を 折りたたんで 飛べば ジェット機を 追い越す スピードだ。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "ちょくげきひこう" + }, + + effect: { + ja: "相手のポケモン1匹に、50ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + } + }, { + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + ja: "ジェットヘッド" + }, + + damage: 110 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/071.ts b/data-asia/SV/SV7a/071.ts new file mode 100644 index 000000000..1a1f82907 --- /dev/null +++ b/data-asia/SV/SV7a/071.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ビブラーバ" + }, + + illustrator: "toriyufu", + category: "Pokemon", + dexId: [329], + hp: 90, + types: ["Fighting"], + + description: { + ja: "翅を 激しく 振動させて 超音波を 発生。 気絶した 獲物を 消化液で 溶かす。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "いやなおと" + }, + + effect: { + ja: "次の自分の番、このワザを受けたポケモンが受けるワザのダメージは「+50」される。" + } + }, { + cost: ["Fighting", "Colorless"], + + name: { + ja: "カッターウインド" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/072.ts b/data-asia/SV/SV7a/072.ts new file mode 100644 index 000000000..ac8ec9024 --- /dev/null +++ b/data-asia/SV/SV7a/072.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "タタッコ" + }, + + illustrator: "USGMEN", + category: "Pokemon", + dexId: [852], + hp: 70, + types: ["Fighting"], + + description: { + ja: "餌を 求め 地上に 上がる。 好奇心旺盛で 目にしたものは とりあえず 触手で 殴る。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "ちょっとつっこむ" + }, + + damage: 30, + + effect: { + ja: "このポケモンにも10ダメージ。" + } + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/073.ts b/data-asia/SV/SV7a/073.ts new file mode 100644 index 000000000..212392112 --- /dev/null +++ b/data-asia/SV/SV7a/073.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "エアームド" + }, + + illustrator: "Takumi Wada", + category: "Pokemon", + dexId: [227], + hp: 110, + types: ["Metal"], + + description: { + ja: "抜け落ちた 羽根は 薄く 鋭いので 刀として 使われていたことも あったらしい。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + ja: "はがねのつばさ" + }, + + damage: 50, + + effect: { + ja: "次の相手の番、このポケモンが受けるワザのダメージは「-30」される。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/074.ts b/data-asia/SV/SV7a/074.ts new file mode 100644 index 000000000..e6e386bdf --- /dev/null +++ b/data-asia/SV/SV7a/074.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "アップリュー" + }, + + illustrator: "Uninori", + category: "Pokemon", + dexId: [841], + hp: 80, + types: ["Dragon"], + + description: { + ja: "体液で りんごを 補修する。 歴戦の 強者の りんごは 全体的に 粘土色。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "サワースピット" + }, + + damage: "20×", + + effect: { + ja: "相手のバトルポケモンにのっているダメカンの数×20ダメージ。" + } + }, { + cost: ["Grass", "Fire"], + + name: { + ja: "スピードひこう" + }, + + damage: 70 + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/075.ts b/data-asia/SV/SV7a/075.ts new file mode 100644 index 000000000..515b04330 --- /dev/null +++ b/data-asia/SV/SV7a/075.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "タルップル" + }, + + illustrator: "MINAMINAMI Take", + category: "Pokemon", + dexId: [842], + hp: 90, + types: ["Dragon"], + + description: { + ja: "背中の 甘い蜜を 舐め取りに やって来る グルトンに ベトベトの 蜜を 吐きかけ 退ける。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "スイートメルト" + }, + + damage: 50, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、ワザが使えない。" + } + }, { + cost: ["Grass", "Fire"], + + name: { + ja: "ワイルドタックル" + }, + + damage: 130, + + effect: { + ja: "このポケモンにも20ダメージ。" + } + }], + + retreat: 3, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/076.ts b/data-asia/SV/SV7a/076.ts new file mode 100644 index 000000000..dc9980362 --- /dev/null +++ b/data-asia/SV/SV7a/076.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ウォーグル" + }, + + illustrator: "Gapao", + category: "Pokemon", + dexId: [628], + hp: 130, + types: ["Colorless"], + + description: { + ja: "仲間の ためなら どれだけ 傷つこうとも 戦いを やめない 勇敢な 大空の 戦士。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ひきずりだす" + }, + + effect: { + ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。その後、新しく出てきたポケモンに40ダメージ。" + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ブラストウインド" + }, + + damage: 120 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/077.ts b/data-asia/SV/SV7a/077.ts new file mode 100644 index 000000000..208bdf96c --- /dev/null +++ b/data-asia/SV/SV7a/077.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ブラックキュレムex" + }, + + illustrator: "N-DESIGN Inc.", + category: "Pokemon", + hp: 230, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "アイスエイジ" + }, + + damage: 90, + + effect: { + ja: "相手のバトルポケモンがポケモンなら、そのポケモンをマヒにする。" + } + }, { + cost: ["Water", "Water", "Colorless", "Colorless"], + + name: { + ja: "ブラックフロスト" + }, + + damage: 250, + + effect: { + ja: "このポケモンにも30ダメージ。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/078.ts b/data-asia/SV/SV7a/078.ts new file mode 100644 index 000000000..378702294 --- /dev/null +++ b/data-asia/SV/SV7a/078.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ラティアスex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 210, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "スカイライン" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分のたねポケモン全員のにげるためのエネルギーは、すべてなくなる。" + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + ja: "むげんのやいば" + }, + + damage: 200, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/079.ts b/data-asia/SV/SV7a/079.ts new file mode 100644 index 000000000..f277fb724 --- /dev/null +++ b/data-asia/SV/SV7a/079.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "フライゴンex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 310, + types: ["Fighting"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "ストームバック" + }, + + damage: 130, + + effect: { + ja: "のぞむなら、このポケモンをベンチポケモンと入れ替える。" + } + }, { + cost: ["Water", "Fighting", "Metal"], + + name: { + ja: "ペリドットソニック" + }, + + effect: { + ja: "相手の「ポケモンex・V」全員に、それぞれ100ダメージ。このワザのダメージは弱点・抵抗力を計算しない。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/080.ts b/data-asia/SV/SV7a/080.ts new file mode 100644 index 000000000..1cd3c15ab --- /dev/null +++ b/data-asia/SV/SV7a/080.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ブリジュラスex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 300, + types: ["Metal"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "ごうきんビルド" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモンに好きなようにつける。" + } + }], + + attacks: [{ + cost: ["Metal", "Metal", "Metal"], + + name: { + ja: "メタルディフェンダー" + }, + + damage: 220, + + effect: { + ja: "次の相手の番、このポケモンの弱点は、すべてなくなる。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/081.ts b/data-asia/SV/SV7a/081.ts new file mode 100644 index 000000000..ef37ef400 --- /dev/null +++ b/data-asia/SV/SV7a/081.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "アローラ ナッシーex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Grass", "Water"], + + name: { + ja: "トロピカルフィーバー" + }, + + damage: 150, + + effect: { + ja: "自分の手札から基本エネルギーを好きなだけ選び、自分のポケモンに好きなようにつける。" + } + }, { + cost: ["Grass", "Water", "Fighting"], + + name: { + ja: "ブンブンスフェーン" + }, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトル場のたねポケモンをきぜつさせる。ウラなら、相手のベンチのたねポケモンを1匹選び、きぜつさせる。" + } + }], + + retreat: 3, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/082.ts b/data-asia/SV/SV7a/082.ts new file mode 100644 index 000000000..ce5669f80 --- /dev/null +++ b/data-asia/SV/SV7a/082.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "モトトカゲex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ブレイクスルー" + }, + + damage: 130, + + effect: { + ja: "相手のベンチポケモン1匹にも、30ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + } + }, { + cost: ["Grass", "Fire", "Psychic"], + + name: { + ja: "ジルコンロード" + }, + + damage: 180, + + effect: { + ja: "のぞむなら、自分の山札を5枚引く。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/083.ts b/data-asia/SV/SV7a/083.ts new file mode 100644 index 000000000..febbbb4bc --- /dev/null +++ b/data-asia/SV/SV7a/083.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "カキツバタ" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + ja: "自分の山札を上から7枚見て、その中からポケモンとトレーナーズを1枚ずつ選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/084.ts b/data-asia/SV/SV7a/084.ts new file mode 100644 index 000000000..fcd7dfa85 --- /dev/null +++ b/data-asia/SV/SV7a/084.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "サーファー" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + ja: "自分のバトルポケモンをベンチポケモンと入れ替える。その後、自分の手札が5枚になるように、山札を引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/085.ts b/data-asia/SV/SV7a/085.ts new file mode 100644 index 000000000..3162af24b --- /dev/null +++ b/data-asia/SV/SV7a/085.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ドラセナ" + }, + + illustrator: "Hideki Ishikawa", + category: "Trainer", + + effect: { + ja: "自分の手札をすべて山札にもどして切る。その後、コインを1回投げ、オモテなら8枚、ウラなら3枚、山札を引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/086.ts b/data-asia/SV/SV7a/086.ts new file mode 100644 index 000000000..ad776d17f --- /dev/null +++ b/data-asia/SV/SV7a/086.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ルチアのアピール" + }, + + illustrator: "En Morikura", + category: "Trainer", + + effect: { + ja: "相手のベンチのたねポケモンを1匹選び、バトルポケモンと入れ替える。その後、新しく出てきたポケモンをこんらんにする。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/087.ts b/data-asia/SV/SV7a/087.ts new file mode 100644 index 000000000..8d74fee5d --- /dev/null +++ b/data-asia/SV/SV7a/087.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ラティアスex" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 210, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "スカイライン" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分のたねポケモン全員のにげるためのエネルギーは、すべてなくなる。" + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + ja: "むげんのやいば" + }, + + damage: 200, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/088.ts b/data-asia/SV/SV7a/088.ts new file mode 100644 index 000000000..176d763ed --- /dev/null +++ b/data-asia/SV/SV7a/088.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ブリジュラスex" + }, + + illustrator: "Shinya Mizuno", + category: "Pokemon", + hp: 300, + types: ["Metal"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "ごうきんビルド" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモンに好きなようにつける。" + } + }], + + attacks: [{ + cost: ["Metal", "Metal", "Metal"], + + name: { + ja: "メタルディフェンダー" + }, + + damage: 220, + + effect: { + ja: "次の相手の番、このポケモンの弱点は、すべてなくなる。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/089.ts b/data-asia/SV/SV7a/089.ts new file mode 100644 index 000000000..829773ce5 --- /dev/null +++ b/data-asia/SV/SV7a/089.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "アローラ ナッシーex" + }, + + illustrator: "Yuriko Akase", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Grass", "Water"], + + name: { + ja: "トロピカルフィーバー" + }, + + damage: 150, + + effect: { + ja: "自分の手札から基本エネルギーを好きなだけ選び、自分のポケモンに好きなようにつける。" + } + }, { + cost: ["Grass", "Water", "Fighting"], + + name: { + ja: "ブンブンスフェーン" + }, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトル場のたねポケモンをきぜつさせる。ウラなら、相手のベンチのたねポケモンを1匹選び、きぜつさせる。" + } + }], + + retreat: 3, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/090.ts b/data-asia/SV/SV7a/090.ts new file mode 100644 index 000000000..54289bea6 --- /dev/null +++ b/data-asia/SV/SV7a/090.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "カキツバタ" + }, + + illustrator: "DOM", + category: "Trainer", + + effect: { + ja: "自分の山札を上から7枚見て、その中からポケモンとトレーナーズを1枚ずつ選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/091.ts b/data-asia/SV/SV7a/091.ts new file mode 100644 index 000000000..bc55e134f --- /dev/null +++ b/data-asia/SV/SV7a/091.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ルチアのアピール" + }, + + illustrator: "Nobusawa/Mochipuyo", + category: "Trainer", + + effect: { + ja: "相手のベンチのたねポケモンを1匹選び、バトルポケモンと入れ替える。その後、新しく出てきたポケモンをこんらんにする。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/092.ts b/data-asia/SV/SV7a/092.ts new file mode 100644 index 000000000..ef37ef400 --- /dev/null +++ b/data-asia/SV/SV7a/092.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "アローラ ナッシーex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Grass", "Water"], + + name: { + ja: "トロピカルフィーバー" + }, + + damage: 150, + + effect: { + ja: "自分の手札から基本エネルギーを好きなだけ選び、自分のポケモンに好きなようにつける。" + } + }, { + cost: ["Grass", "Water", "Fighting"], + + name: { + ja: "ブンブンスフェーン" + }, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトル場のたねポケモンをきぜつさせる。ウラなら、相手のベンチのたねポケモンを1匹選び、きぜつさせる。" + } + }], + + retreat: 3, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/093.ts b/data-asia/SV/SV7a/093.ts new file mode 100644 index 000000000..5a66e63b5 --- /dev/null +++ b/data-asia/SV/SV7a/093.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "カウンターゲイン" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "自分のサイドの残り枚数が、相手のサイドの残り枚数より多いなら、このカードをつけているポケモンがワザを使うためのエネルギーは、エネルギー1個ぶん少なくなる。" + }, + + trainerType: "Tool", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7a/094.ts b/data-asia/SV/SV7a/094.ts new file mode 100644 index 000000000..e9bb13295 --- /dev/null +++ b/data-asia/SV/SV7a/094.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7a" + +const card: Card = { + set: Set, + + name: { + ja: "ジェットエネルギー" + }, + + category: "Energy", + + effect: { + ja: "このカードは、ポケモンについているかぎり、エネルギー1個ぶんとしてはたらく。\n\nこのカードを手札からベンチポケモンにつけたとき、このカードをつけたポケモンを、バトルポケモンと入れ替える。" + }, + + energyType: "Special", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s.ts b/data-asia/SV/SV7s.ts new file mode 100644 index 000000000..5beba958c --- /dev/null +++ b/data-asia/SV/SV7s.ts @@ -0,0 +1,22 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SV7s', + name: { + id: 'Bimbingan Rasi', + th: 'แสงนำทางแห่งสเตลลาร์' + }, + + serie: serie, + + cardCount: { + official: 166 + }, + releaseDate: { + id: '2024-09-20', + th: '2024-09-30' + } +} + +export default set diff --git a/data-asia/SV/SV7s/001.ts b/data-asia/SV/SV7s/001.ts new file mode 100644 index 000000000..5f1a325c9 --- /dev/null +++ b/data-asia/SV/SV7s/001.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เรดิบา", + id: "Ledyba" + }, + + illustrator: "Whisker", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + th: "เมื่ออากาศเย็นลง เรดิบาจำนวนมากจากที่ต่าง ๆ จะมารวมตัวกันเพื่อแอบอิงและมอบความอบอุ่นให้แก่กันและกัน", + id: "Jika udara menjadi dingin, Ledyba banyak berkumpul dari sana-sini, saling mendekat dan saling menghangatkan." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "กระโดดโหม่ง", + id: "Sundulan Meloncat" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/002.ts b/data-asia/SV/SV7s/002.ts new file mode 100644 index 000000000..de9b9d89d --- /dev/null +++ b/data-asia/SV/SV7s/002.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เรเดียน", + id: "Ledian" + }, + + illustrator: "Masako Tomii", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + th: "ในคืนที่ท้องฟ้ามีดวงดาวทอแสงจะกระพือปีกบินไปพร้อมกับโปรยผงระยิบระยับ", + id: "Saat bintang berkelip di langit malam, Ledian terbang melambai sambil menaburkan serbuk berkilau." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "ลายดาวประกาย", + id: "Pola Bintang Berkilau" + }, + + effect: { + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง เลือกโปเกมอนที่มี HP เหลือน้อยกว่าหรือเท่ากับ [90] บนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้", + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Pilih 1 Pokémon dengan sisa HP 90 atau kurang di Cadangan lawan, lalu tukar dengan Pokémon Bertarung." + } + }], + + attacks: [{ + name: { + th: "สปีดสตาร์", + id: "Speed Star" + }, + + effect: { + th: "แดเมจของท่าต่อสู้นี้ จะไม่นำจุดอ่อน ความต้านทาน และเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด", + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan, Resistansi, dan efek yang sedang dialami Pokémon Bertarung lawan." + }, + + damage: 70, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/003.ts b/data-asia/SV/SV7s/003.ts new file mode 100644 index 000000000..8e1b89bdc --- /dev/null +++ b/data-asia/SV/SV7s/003.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ลิลีลา", + id: "Lileep" + }, + + illustrator: "Ounishi", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + th: "โปเกมอนที่ฟื้นสภาพจากฟอสซิล อาศัยอยู่ใต้ทะเลอุ่นราว 1 ร้อยล้านปีก่อน", + id: "Pokémon yang direstorasi dari fosil. Lileep hidup di laut hangat sekitar 100 juta tahun yang lalu." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "มัดยึด", + id: "Menjerat" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้", + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + damage: 50, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/004.ts b/data-asia/SV/SV7s/004.ts new file mode 100644 index 000000000..62da4a984 --- /dev/null +++ b/data-asia/SV/SV7s/004.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ยูเรเดิล", + id: "Cradily" + }, + + illustrator: "miki kudo", + category: "Pokemon", + hp: 150, + types: ["Grass"], + + description: { + th: "ขาสั้นและเดินช้า แต่คอและหนวดนั้นยืดออกได้ถึง 3 เท่า ใช้จับเหยื่อที่อยู่ห่างไกล", + id: "Kaki Cradily pendek dan jalannya lambat, tetapi leher dan tentakelnya dapat memanjang hingga 3 kali lipat dan menangkap mangsa yang jauh darinya." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + th: "เมือกเลือกหยิบ", + id: "Lendir Beraneka Ragam" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือก 1 สภาวะจากสภาวะ[พิษ]/[ไหม้]/[สับสน] ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะผิดปกตินั้น", + id: "Dapat digunakan 1 kali pada giliran sendiri. Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 di antara Racun, Luka Bakar, atau Pusing, lalu ubah kondisi Pokémon Bertarung lawan menjadi kondisi tersebut." + } + }], + + attacks: [{ + name: { + th: "ลมไอพิษ", + id: "Angin Miasma" + }, + + effect: { + th: "แดเมจจะเท่ากับจำนวนสภาวะผิดปกติที่โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามได้รับอยู่ x100", + id: "Serangan ini memberikan kerusakan sejumlah 100 untuk tiap Kondisi Khusus yang sedang dialami Pokémon Bertarung lawan." + }, + + damage: "100×", + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/005.ts b/data-asia/SV/SV7s/005.ts new file mode 100644 index 000000000..5acaa9f16 --- /dev/null +++ b/data-asia/SV/SV7s/005.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มัสคิปปา", + id: "Carnivine" + }, + + illustrator: "Mousho", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + description: { + th: "ล่อเหยื่อด้วยน้ำลายที่มีกลิ่นหวาน แล้วอ้าปากกว้างงับเข้าไป จะใช้เวลา 1 วันเต็ม ๆ เพื่อกินเหยื่อ", + id: "Carnivine memikat mangsa dengan air liurnya yang beraroma manis, lalu melahap mangsa dengan rahang besarnya. Menggunakan waktu sehari penuh untuk memakan mangsanya sampai habis." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "แอบหยิบกิน", + id: "Mencocol Makanan" + }, + + effect: { + th: "ฟื้นฟู HP ของโปเกมอนนี้ [40]", + id: "Pulihkan HP Pokémon ini sejumlah 40." + }, + + cost: ["Colorless"] + }, { + name: { + th: "แผ่ปกคลุม", + id: "Menyelungkupi" + }, + + effect: { + th: "แดเมจของท่าต่อสู้นี้จะลดลง ตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10", + id: "Kerusakan akibat serangan ini berkurang sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini." + }, + + damage: "130-", + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/006.ts b/data-asia/SV/SV7s/006.ts new file mode 100644 index 000000000..6dabc8be4 --- /dev/null +++ b/data-asia/SV/SV7s/006.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คัตโรตอม", + id: "Rotom Pemotong" + }, + + illustrator: "Amelicart", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + th: "ร่างของโรตอมที่เข้าไปในเครื่องตัดหญ้าจะเบ่งด้วยความภูมิอกภูมิใจหลังตัดดอกไม้และหญ้า", + id: "Wujud Rotom yang masuk ke dalam mesin pemotong rumput. Pokémon ini dengan bangga dan sombong memotong habis rumput serta bunga." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "พุ่งตัวถาง", + id: "Lari Kencang Menuai" + }, + + effect: { + th: "ก่อนจะทำแดเมจ ทิ้ง [ไอเท็มติดโปเกมอน] และ [พลังงานพิเศษ] ที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม ทั้งหมดที่ตำแหน่งทิ้งการ์ด", + id: "Sebelum memberikan kerusakan, buang semua Pokémon Tool dan Energi Spesial yang dikenakan pada Pokémon Bertarung lawan ke Trash." + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/007.ts b/data-asia/SV/SV7s/007.ts new file mode 100644 index 000000000..08ee1f49f --- /dev/null +++ b/data-asia/SV/SV7s/007.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บาชูรุ", + id: "Joltik" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 40, + types: ["Grass"], + + description: { + th: "ดูดไฟฟ้าสถิตที่ติดร่างของโปเกมอน ไม่สามารถสร้างไฟฟ้าได้ด้วยตัวเอง", + id: "Joltik menempel di tubuh Pokémon lain dan mengisap listrik statis. Ia tidak dapat membuat listrik sendiri." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "กระโดดหนี", + id: "Lompat Menghindar" + }, + + effect: { + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจและเอฟเฟกต์ของท่าต่อสู้", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan dan efek akibat serangan." + }, + + damage: 10, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/008.ts b/data-asia/SV/SV7s/008.ts new file mode 100644 index 000000000..7372c0e4d --- /dev/null +++ b/data-asia/SV/SV7s/008.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เดนทูลา", + id: "Galvantula" + }, + + illustrator: "mashu", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + th: "โจมตีด้วยการปล่อยขนท้องที่ชาร์จไฟฟ้า ถ้าถูกขนทิ่มทั่วร่างจะชาไปสามวันสามคืน", + id: "Galvantula melakukan serangan dengan menerbangkan bulu perutnya yang bermuatan listrik. Siapa yang tertusuk bulu tersebut akan kejang-kejang selama tiga hari tiga malam." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "ตารวม", + id: "Mata Majemuk" + }, + + effect: { + th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้ ใช้ทำกับโปเกมอนที่มีความสามารถบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+50]", + id: "Kerusakan akibat serangan yang digunakan oleh Pokémon ini kepada Pokémon yang memiliki Ability di Arena Bertarung lawan bertambah sejumlah 50." + } + }], + + attacks: [{ + name: { + th: "ใยแปล๊บปล๊าบ", + id: "Jaring Berkejut-kejut" + }, + + effect: { + th: "ถ้าโปเกมอนนี้มีพลังงาน[สายฟ้า]ติดอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 80", + id: "Jika Pokémon ini mengenakan Energi {Listrik}, kerusakan yang diberikan bertambah sejumlah 80." + }, + + damage: "50+", + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/009.ts b/data-asia/SV/SV7s/009.ts new file mode 100644 index 000000000..028ad9a4a --- /dev/null +++ b/data-asia/SV/SV7s/009.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โมคุโร", + id: "Rowlet" + }, + + illustrator: "Yoshimi Miyoshi", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + th: "ระหว่างที่บินจะซัดขนนกแสนคมกริบใส่อีกฝ่าย แต่หากอยู่ในระยะประชิด จะสยบอีกฝ่ายด้วยลูกเตะที่รุนแรง", + id: "Rowlet terbang sambil menembakkan bulunya yang tajam. Kemudian pada jarak dekat, ia melancarkan tendangan dahsyat." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "คาบ", + id: "Menggondol" + }, + + effect: { + th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา", + id: "Ambil 1 kartu dari atas Deck sendiri." + }, + + cost: ["Colorless"] + }, { + name: { + th: "ใบไม้", + id: "Dedaunan" + }, + + damage: 10, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/010.ts b/data-asia/SV/SV7s/010.ts new file mode 100644 index 000000000..cccf4ec29 --- /dev/null +++ b/data-asia/SV/SV7s/010.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ฟุคุซึโร", + id: "Dartrix" + }, + + illustrator: "Tetsu Kayama", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + th: "ซัดขนนกแหลมคมราวกับมีดจนถูกเรียกว่าขนใบมีดใส่ศัตรูอย่างต่อเนื่อง ขนนกจะทะลวงจุดตายของอีกฝ่ายได้อย่างแน่นอน", + id: "Dartrix melemparkan bulu seperti pisau yang disebut Bulu Pisau dengan terus-menerus dan secara pasti menembak tembus kelemahan musuh." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ปีกสามัคคี", + id: "Sayap Bersatu Padu" + }, + + effect: { + th: "แดเมจจะเท่ากับจำนวนการ์ดโปเกมอนที่มีท่าต่อสู้ [ปีกสามัคคี] ที่อยู่บนตำแหน่งทิ้งการ์ดฝ่ายเรา x20", + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lembar Pokémon yang memiliki serangan Sayap Bersatu Padu yang ada di Trash sendiri." + }, + + damage: "20×", + cost: ["Colorless"] + }, { + name: { + th: "คัตเตอร์วินด์", + id: "Cutter Wind" + }, + + damage: 30, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/011.ts b/data-asia/SV/SV7s/011.ts new file mode 100644 index 000000000..c245ed163 --- /dev/null +++ b/data-asia/SV/SV7s/011.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "จูไนเปอร์", + id: "Decidueye" + }, + + illustrator: "DOM", + category: "Pokemon", + hp: 150, + types: ["Grass"], + + description: { + th: "ใช้ลูกศรขนนกที่เก็บเอาไว้ในปีกง้างยิงฝ่ายตรงข้ามราวกับธนู มันไม่เคยยิงพลาดเป้า", + id: "Decidueye menembakkan bulu panah yang dipasang di sayapnya bagaikan busur dan panah. Panahnya tidak akan meleset mengenai target yang dibidik." + }, + + stage: "Stage2", + + attacks: [{ + name: { + th: "สต็อกขนนก", + id: "Feather Stock" + }, + + effect: { + th: "จั่วการ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 7 ใบ", + id: "Ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 7 lembar." + }, + + cost: ["Colorless"] + }, { + name: { + th: "สตรองช็อต", + id: "Strong Shot" + }, + + effect: { + th: "ทิ้งการ์ด [พลังงานพื้นฐาน[หญ้า]] 1 ใบจากบนมือฝ่ายเราที่ตำแหน่งทิ้งการ์ด ถ้าทิ้งการ์ดไม่ได้ ท่าต่อสู้นี้จะล้มเหลว", + id: "Buang 1 lembar Energi Dasar {Daun} dari Kartu Pegangan sendiri ke Trash. Jika tidak dapat membuangnya ke Trash, serangan ini gagal." + }, + + damage: 170, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/012.ts b/data-asia/SV/SV7s/012.ts new file mode 100644 index 000000000..38fb0ea12 --- /dev/null +++ b/data-asia/SV/SV7s/012.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อโกจิมูชิ", + id: "Grubbin" + }, + + illustrator: "Jerky", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + th: "พ่นใยเหนียวหนืดไปพันกับกิ่งไม้ จากนั้นก็เหวี่ยงตัวแบบลูกตุ้มเพื่อข้ามไปมาระหว่างต้นไม้อย่างคล่องแคล่ว", + id: "Ia memuntahkan benang yang lengket dan menggulungnya ke ranting pohon, lalu dengan lincah melompat dan berpindah dari pohon ke pohon dengan gerakan seperti pendulum." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ซุ่มโจมตี", + id: "Menyergap" + }, + + effect: { + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 30", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 30." + }, + + damage: "10+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/013.ts b/data-asia/SV/SV7s/013.ts new file mode 100644 index 000000000..a48626962 --- /dev/null +++ b/data-asia/SV/SV7s/013.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คาปู บูลูลู", + id: "Tapu Bulu" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + description: { + th: "ถอนต้นไม้ใหญ่ขึ้นมาเหวี่ยงไปรอบ ๆ ทำให้ต้นไม้ใบหญ้าเจริญเติบโต แล้วดูดซับพลังงานนั้น", + id: "Tapu Bulu mencabut pohon besar lalu mengayun-ayunkannya dengan kencang. Ia membuat tanaman tumbuh dengan lebat lalu mengisap energi tersebut." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "วู้ดแฮมเมอร์", + id: "Wood Hammer" + }, + + effect: { + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย", + id: "Pokémon ini juga menerima kerusakan sejumlah 30." + }, + + damage: 220, + cost: ["Grass", "Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/014.ts b/data-asia/SV/SV7s/014.ts new file mode 100644 index 000000000..a26af4d01 --- /dev/null +++ b/data-asia/SV/SV7s/014.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ฮิเมงกะ", + id: "Gossifleur" + }, + + illustrator: "Heisuke Kitazawa", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + th: "ปักก้านบนผิวดิน เมื่ออาบแสงอาทิตย์เต็มที่กลีบดอกไม้จะมีสีสันสดใส", + id: "Ketika Gossifleur menancapkan satu kakinya ke tanah dan bermandikan banyak cahaya matahari, kelopak bunganya akan berwarna cerah." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ดับเบิลสปิน", + id: "Double Spin" + }, + + effect: { + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10", + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "10×", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/015.ts b/data-asia/SV/SV7s/015.ts new file mode 100644 index 000000000..1c414b976 --- /dev/null +++ b/data-asia/SV/SV7s/015.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "วาตะชิรากะ", + id: "Eldegoss" + }, + + illustrator: "Yuka Tanaka", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + th: "เมล็ดขนนุ่นมีสารอาหารเต็มเปี่ยม จะปล่อยนุ่นให้ลอยไปตามลมเพื่อทำให้ต้นไม้ใบหญ้าและเหล่าโปเกมอนร่าเริง", + id: "Biji di bulu kapas Eldegoss mengandung banyak nutrisi. Biji ini diterbangkan menggunakan angin untuk menyehatkan tanaman dan Pokémon lainnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ของขวัญจากสายลมอ่อน", + id: "Hadiah Angin Semilir" + }, + + effect: { + th: "นำโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายเรา หลังจากนั้น เลือกการ์ดที่ชอบได้สูงสุด 3 ใบจากสำรับการ์ด นำขึ้นมือ แล้วสับสำรับการ์ด", + id: "Kembalikan Pokémon ini dan semua kartu yang dikenakannya ke Deck sendiri. Setelah itu, pilih paling banyak 3 kartu sesukanya dari Deck, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + th: "ใบไม้", + id: "Dedaunan" + }, + + damage: 50, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/016.ts b/data-asia/SV/SV7s/016.ts new file mode 100644 index 000000000..2382c3f31 --- /dev/null +++ b/data-asia/SV/SV7s/016.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คาจิชชู", + id: "Applin" + }, + + illustrator: "Yoriyuki Ikegami", + category: "Pokemon", + hp: 40, + types: ["Grass"], + + description: { + th: "อาศัยอยู่ในแอปเปิล พอไม่มีแอปเปิลแล้วจะสูญเสียน้ำในร่างกายและอ่อนแอลง", + id: "Applin hidup di dalam buah apel. Jika apelnya habis, Pokémon ini akan melemah karena kehilangan cairan tubuhnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ฉีดพ่นน้ำ", + id: "Menyemprotkan Getah" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/017.ts b/data-asia/SV/SV7s/017.ts new file mode 100644 index 000000000..dddd73363 --- /dev/null +++ b/data-asia/SV/SV7s/017.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คามิชชู", + id: "Dipplin" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + th: "ตัวนอกที่ยื่นหัวออกมาและตัวในที่ยื่นหางออกมานั้นอาศัยอยู่ด้วยกันในแอปเปิลและคอยช่วยเหลือซึ่งกันและกัน", + id: "Boah luar yang mengeluarkan kepala dan Boah dalam yang mengeluarkan ekor saling membantu dan tinggal bersama di dalam apel." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "โค้ตติ้งแอทแทก", + id: "Coating Attack" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[พื้นฐาน]", + id: "Pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon Basic." + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/018.ts b/data-asia/SV/SV7s/018.ts new file mode 100644 index 000000000..0b5b72728 --- /dev/null +++ b/data-asia/SV/SV7s/018.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คามิสึโอโรจิex", + id: "Hydrapple ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "ชาร์จความสุก", + id: "Muatan Matang" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา หลังจากนั้น ฟื้นฟู HP ของโปเกมอนที่ติดการ์ดนั้น [30]", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 lembar Energi Dasar {Daun} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon sendiri. Setelah itu, pulihkan HP Pokémon yang telah dikenakan Energi sejumlah 30." + } + }], + + attacks: [{ + name: { + th: "พายุน้ำตาลเชื่อม", + id: "Badai Sirop Nektar" + }, + + effect: { + th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[หญ้า]ที่ติดอยู่กับโปเกมอนฝ่ายเราทุกตัว x30", + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi {Daun} yang dikenakan pada semua Pokémon sendiri." + }, + + damage: "30+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/019.ts b/data-asia/SV/SV7s/019.ts new file mode 100644 index 000000000..b8443c420 --- /dev/null +++ b/data-asia/SV/SV7s/019.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เดลวิล", + id: "Houndour" + }, + + illustrator: "REND", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + th: "ชนิดของเสียงร้องที่ใช้ตอนสื่อสารกับฝูงกับตอนไล่ต้อนเหยื่อจะแตกต่างกัน", + id: "Jenis raungan Houndour ketika berkomunikasi dengan sesamanya atau ketika memburu mangsanya berbeda-beda." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "แทะ", + id: "Menggerogot" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "เตะกลับหลัง", + id: "Tendangan Belakang" + }, + + damage: 50, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/020.ts b/data-asia/SV/SV7s/020.ts new file mode 100644 index 000000000..6484adfa5 --- /dev/null +++ b/data-asia/SV/SV7s/020.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เฮลการ์", + id: "Houndoom" + }, + + illustrator: "burari", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + description: { + th: "โปเกมอนที่ได้ยินเสียงหอนชวนขนลุกของมันจะสั่นกลัวและรีบกลับรังของตนอย่างรวดเร็ว", + id: "Pokémon yang mendengar suara lolongan menyeramkan Houndoom bergetar ketakutan dan langsung kembali ke sarang secepatnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "กัดติด", + id: "Menggigit" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "บาร์กเอาต์", + id: "Menggeram" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนที่ได้รับท่าต่อสู้นี้ใช้จะถูก [-100]", + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang digunakan oleh Pokémon yang menerima serangan ini berkurang sejumlah 100." + }, + + damage: 100, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/021.ts b/data-asia/SV/SV7s/021.ts new file mode 100644 index 000000000..7a9259e40 --- /dev/null +++ b/data-asia/SV/SV7s/021.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ยาโทโมริ", + id: "Salandit" + }, + + illustrator: "Felicia Chen", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + th: "เฉพาะตัวเมียเท่านั้นที่สามารถสร้างแก๊สที่มีฟีโรโมนได้ ตัวผู้ที่หลงเสน่ห์จะตกเป็นเบี้ยล่างของตัวเมีย", + id: "Hanya Salandit betina yang dapat menciptakan gas yang mengeluarkan feromon. Salandit jantan yang telah terpesona akan patuh kepada yang betina." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ลูกไฟ", + id: "Bara Api" + }, + + effect: { + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 30, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/022.ts b/data-asia/SV/SV7s/022.ts new file mode 100644 index 000000000..804aa3261 --- /dev/null +++ b/data-asia/SV/SV7s/022.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เอ็นนิวท์", + id: "Salazzle" + }, + + illustrator: "Taiga Kasai", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + description: { + th: "หากฝูงของเอ็นนิวท์บังเอิญเจอกันจะเกิดศึกชิงตัวผู้กันโดยใช้แก๊สฟีโรโมน", + id: "Jika kelompok Salazzle saling bertemu, akan terjadi pertarungan gas feromon untuk memperebutkan Salandit jantan." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ลนไฟฉับพลัน", + id: "Panggang Tiba-tiba" + }, + + effect: { + th: "ฝ่ายตรงข้ามเลือกการ์ดบนมือฝ่ายตรงข้ามเอง 1 ใบ ทิ้งที่ตำแหน่งทิ้งการ์ด เทิร์นนี้ ถ้าโปเกมอนนี้วิวัฒนาการมาจาก [ยาโทโมริ] แล้ว จะทิ้งการ์ดเพิ่มได้ 2 ใบที่ตำแหน่งทิ้งการ์ด", + id: "Lawan memilih 1 lembar Kartu Pegangannya, lalu membuangnya ke Trash. Jika pada giliran ini, Pokémon ini berevolusi dari Salandit, buang lagi 2 kartu tambahan ke Trash." + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "พ่นไฟ", + id: "Semburan Api" + }, + + effect: { + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 130, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/023.ts b/data-asia/SV/SV7s/023.ts new file mode 100644 index 000000000..7bad3a919 --- /dev/null +++ b/data-asia/SV/SV7s/023.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บาคุกาเมส", + id: "Turtonator" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + th: "แบกกระดองที่ถูกเคลือบด้วยดินระเบิด เอาคืนคู่ต่อสู้ที่โจมตีมาด้วยระเบิดยักษ์", + id: "Turtonator menggendong tempurung yang dilapisi oleh bahan peledak. Jika diserang musuh, ia akan membalas dengan ledakan dahsyat." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "เฟลมเซอร์เคิล", + id: "Flame Circle" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้] เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้จะหนีไม่ได้", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar. Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + damage: 50, + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + th: "ไฟลุกพุ่งเข้าใส่", + id: "Terjangan Kobar Api" + }, + + effect: { + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 60 ด้วย", + id: "Pokémon ini juga menerima kerusakan sejumlah 60." + }, + + damage: 180, + cost: ["Fire", "Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/024.ts b/data-asia/SV/SV7s/024.ts new file mode 100644 index 000000000..610d05e12 --- /dev/null +++ b/data-asia/SV/SV7s/024.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ฮิบานี", + id: "Scorbunny" + }, + + illustrator: "Cona Nitanda", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + th: "อุ้งเท้าที่มีพลังงานไฟสะสมอยู่จะมีอุณหภูมิสูงและสร้างความเสียหายรุนแรงให้กับศัตรู", + id: "Energi api yang terkumpul di bantalan kaki Scorbunny menjadi bersuhu tinggi dan menyebabkan kerusakan besar ke lawan." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "เคลื่อนที่ความไวแสง", + id: "Serangan Cepat" + }, + + effect: { + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 10", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 10." + }, + + damage: "10+", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/025.ts b/data-asia/SV/SV7s/025.ts new file mode 100644 index 000000000..8cdd9b080 --- /dev/null +++ b/data-asia/SV/SV7s/025.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "แรบบิฟุต", + id: "Raboot" + }, + + illustrator: "aspara", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + description: { + th: "ภาคภูมิใจในท่าเตะที่หลากหลายของตน แต่ท่าพุ่งหัวชนด้วยหน้าผากที่ร้อนขึ้นด้วยเปลวเพลิงก็ทรงพลังเช่นกัน", + id: "Jurus tendangan Raboot yang beragam adalah kebanggaannya, tetapi tandukan kepala yang dilancarkan dengan kening yang menjadi panas oleh apinya juga dahsyat." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "เตะต่ำ", + id: "Low Kick" + }, + + damage: 30, + cost: ["Fire"] + }, { + name: { + th: "เผาไหม้", + id: "Lidah Api" + }, + + damage: 60, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/026.ts b/data-asia/SV/SV7s/026.ts new file mode 100644 index 000000000..dbeff0b78 --- /dev/null +++ b/data-asia/SV/SV7s/026.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เอสเบิร์นex", + id: "Cinderace ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 320, + types: ["Fire"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + th: "แฟลร์สไตรค์", + id: "Flare Strike" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [แฟลร์สไตรค์] ไม่ได้", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Flare Strike." + }, + + damage: 280, + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + th: "การ์เนตวอลเลย์", + id: "Garnet Volley" + }, + + effect: { + th: "ทำแดเมจ 180 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + id: "Serangan ini memberikan kerusakan sejumlah 180 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + cost: ["Fire", "Fighting", "Darkness"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/027.ts b/data-asia/SV/SV7s/027.ts new file mode 100644 index 000000000..a7c73ec7b --- /dev/null +++ b/data-asia/SV/SV7s/027.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "แมลงมอธเหล็ก", + id: "Iron Moth" + }, + + illustrator: "Shinji Kanda", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + description: { + th: "ข้อมูลไม่เพียงพอและไม่เคยมีข้อมูลว่าถูกจับมาก่อน มีลักษณะเด่นตรงกับวัตถุที่อธิบายไว้ในบันทึกเก่าแก่", + id: "Laporan penangkapannya 0. Data terkait Pokémon ini kurang. Karakteristiknya cocok dengan objek yang tertulis dalam buku kuno." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ดูด", + id: "Absorpsi" + }, + + effect: { + th: "ฟื้นฟู HP ของโปเกมอนนี้ ตามจำนวนแดเมจที่ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม", + id: "Pulihkan HP Pokémon ini sejumlah kerusakan yang diberikan kepada Pokémon Bertarung lawan." + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "ไวลด์รีเจกเตอร์", + id: "Wild Rejector" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจของท่าต่อสู้จากโปเกมอน [โบราณ]", + id: "Pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon Purba." + }, + + damage: 120, + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/028.ts b/data-asia/SV/SV7s/028.ts new file mode 100644 index 000000000..e55d6d5cc --- /dev/null +++ b/data-asia/SV/SV7s/028.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ทัททู", + id: "Horsea" + }, + + illustrator: "Shimaris Yukichi", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + th: "อาศัยอยู่ในทะเลที่มีกระแสน้ำสงบ เมื่อถูกโจมตีจะพ่นหมึกดำใส่แล้วใช้โอกาสนั้นหนี", + id: "Horsea tinggal di laut yang aliran arusnya tenang. Jika diserang, Pokémon ini menembakkan tinta hitam pekat dan melarikan diri." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "อยู่นิ่ง ๆ", + id: "Tidak Bergerak" + }, + + effect: { + th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]", + id: "Pulihkan HP Pokémon ini sejumlah 30." + }, + + cost: ["Water"] + }, { + name: { + th: "ครีบใบมีด", + id: "Sirip Pemotong" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/029.ts b/data-asia/SV/SV7s/029.ts new file mode 100644 index 000000000..2e8ebbaed --- /dev/null +++ b/data-asia/SV/SV7s/029.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ซีดรา", + id: "Seadra" + }, + + illustrator: "Yuya Oka", + category: "Pokemon", + hp: 90, + types: ["Water"], + + description: { + th: "ตัวผู้จะเป็นฝ่ายเลี้ยงดูลูก ระหว่างเลี้ยงดูลูกนั้นพิษของหนามบนหลังจะมีความรุนแรงและเข้มข้นขึ้น", + id: "Seadra jantanlah yang membesarkan anak. Selama masa membesarkan anak, unsur racun pada duri di punggungnya menjadi lebih kuat dan pekat." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "กองหนุน", + id: "Bala Bantuan" + }, + + effect: { + th: "เลือกการ์ดโปเกมอนได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + id: "Pilih paling banyak 3 lembar Pokémon dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + cost: ["Water"] + }, { + name: { + th: "ครีบแหลมคม", + id: "Sirip Tajam" + }, + + damage: 40, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/030.ts b/data-asia/SV/SV7s/030.ts new file mode 100644 index 000000000..7fb2a6179 --- /dev/null +++ b/data-asia/SV/SV7s/030.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คิงดราex", + id: "Kingdra ex" + }, + + illustrator: "toriyufu", + category: "Pokemon", + hp: 310, + types: ["Water"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + th: "โองการแห่งราชันย์", + id: "Komando Raja" + }, + + effect: { + th: "เลือกการ์ดโปเกมอน[น้ำ]ได้สูงสุด 3 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา วางบนเบนช์", + id: "Pilih paling banyak 3 lembar Pokémon {Air} dari Trash sendiri, lalu masukkan ke Cadangan." + }, + + cost: ["Water"] + }, { + name: { + th: "ไฮโดรปั๊มพ์", + id: "Pompa Air" + }, + + effect: { + th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[น้ำ]ที่ติดอยู่กับโปเกมอนนี้ x50", + id: "Kerusakan yang diberikan bertambah sejumlah 50 untuk tiap Energi {Air} yang dikenakan pada Pokémon ini." + }, + + damage: "50+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/031.ts b/data-asia/SV/SV7s/031.ts new file mode 100644 index 000000000..ea636664c --- /dev/null +++ b/data-asia/SV/SV7s/031.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ลาพลาซex", + id: "Lapras ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + th: "พาวเวอร์สแปลช", + id: "Power Splash" + }, + + effect: { + th: "แดเมจจะเท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนนี้ x40", + id: "Serangan ini memberikan kerusakan sejumlah 40 untuk tiap Energi yang dikenakan pada Pokémon ini." + }, + + damage: "40×", + cost: ["Water"] + }, { + name: { + th: "ลาริมาร์เรน", + id: "Larimar Rain" + }, + + effect: { + th: "ดูการ์ด 20 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดพลังงานจากในนั้นตามจำนวนที่ชอบ ติดที่โปเกมอนฝ่ายเราตามชอบ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ", + id: "Lihat 20 kartu dari atas Deck sendiri, pilih sesukanya Energi di antaranya, lalu kenakan sesukanya pada Pokémon sendiri. Kocok kembali sisa kartu ke Deck." + }, + + cost: ["Water", "Psychic", "Metal"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/032.ts b/data-asia/SV/SV7s/032.ts new file mode 100644 index 000000000..3da1734af --- /dev/null +++ b/data-asia/SV/SV7s/032.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "นิวลา", + id: "Sneasel" + }, + + illustrator: "Krgc", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + th: "เจ้าเล่ห์มาก บางครั้งทำงานเป็นทีมโดยให้ตัวหนึ่งล่อพ่อแม่ออกไป ส่วนอีกตัวก็ไปเอาไข่ออกมา", + id: "Pokémon ini menunjukkan kerja tim seperti ketika satu Sneasel dengan cerdiknya memancing induk telur, satu Sneasel lainnya pergi mengambil telur tersebut." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ตัด", + id: "Potongan Iai" + }, + + damage: 10, + cost: ["Water"] + }, { + name: { + th: "รุกประชิด", + id: "Mendesak" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้", + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + damage: 30, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/033.ts b/data-asia/SV/SV7s/033.ts new file mode 100644 index 000000000..71002edc6 --- /dev/null +++ b/data-asia/SV/SV7s/033.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มานิวลา", + id: "Weavile" + }, + + illustrator: "aspara", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + th: "เคลื่อนไหวเป็นกลุ่มกลุ่มละ 4-5 ตัว จะทำสัญลักษณ์ไว้ที่หินหรือต้นไม้และร่วมมือกันจัดการเหยื่อ", + id: "Weavile beraktivitas secara berkelompok dengan jumlah 4–5 ekor. Pokémon ini meninggalkan tanda pada batu atau pohon dan bekerja sama dalam menghabisi mangsanya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ฟันแหลก", + id: "Menyayat" + }, + + damage: 40, + cost: ["Water"] + }, { + name: { + th: "กรงเล็บลูกเห็บ", + id: "Hail Claw" + }, + + effect: { + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ทั้งหมดที่ตำแหน่งทิ้งการ์ด ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]", + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash, lalu ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh." + }, + + damage: 70, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/034.ts b/data-asia/SV/SV7s/034.ts new file mode 100644 index 000000000..1a4916b4c --- /dev/null +++ b/data-asia/SV/SV7s/034.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เคโคโอ", + id: "Finneon" + }, + + illustrator: "Yukiko Baba", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + th: "ผิวส่วนที่เป็นสีชมพูจะส่องแสงได้โดยการสะสมแสงจากดวงอาทิตย์ ว่ากันว่าเอาไว้ใช้พรางตัว", + id: "Bagian kulit berwarna merah muda Finneon mengumpulkan sinar matahari lalu bersinar. Dikatakan bahwa hal ini dilakukan untuk kamuflase." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ราดน้ำ", + id: "Percikan Air" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/035.ts b/data-asia/SV/SV7s/035.ts new file mode 100644 index 000000000..ba2d72866 --- /dev/null +++ b/data-asia/SV/SV7s/035.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เนโอแลนท์", + id: "Lumineon" + }, + + illustrator: "Shigenori Negishi", + category: "Pokemon", + hp: 110, + types: ["Water"], + + description: { + th: "เนโอแลนท์ที่ส่องแสงอยู่ก้นทะเลลึกนั้นดูเหมือนดาวที่ส่องประกายบนท้องฟ้ายามค่ำคืน", + id: "Lumineon yang bersinar di dasar laut dalam terlihat seperti bintang-bintang yang menyinari langit malam." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ทดแทนคุณ", + id: "Membalas Budi" + }, + + effect: { + th: "หากต้องการ จั่วการ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 6 ใบ", + id: "Pemain dapat mengambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 6 lembar." + }, + + damage: 20, + cost: ["Colorless"] + }, { + name: { + th: "ครีบใบมีด", + id: "Sirip Pemotong" + }, + + damage: 70, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/036.ts b/data-asia/SV/SV7s/036.ts new file mode 100644 index 000000000..e27fabe7a --- /dev/null +++ b/data-asia/SV/SV7s/036.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โปรโตกา", + id: "Tirtouga" + }, + + illustrator: "takashi shiraishi", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + th: "เคยอาศัยอยู่ใต้ทะเลดึกดำบรรพ์ แม้จะทำได้แค่คลานแต่ก็จะขึ้นไปบนบกเพื่อล่าเหยื่อ", + id: "Tirtouga tinggal di laut purba. Meskipun hanya dapat merayap, Pokémon ini juga naik ke daratan demi mencari mangsa." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "สแปลชเทิร์น", + id: "Splash Turn" + }, + + effect: { + th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์", + id: "Tukar Pokémon ini dengan Pokémon Cadangan." + }, + + damage: 70, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/037.ts b/data-asia/SV/SV7s/037.ts new file mode 100644 index 000000000..393545a79 --- /dev/null +++ b/data-asia/SV/SV7s/037.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อบาโกรา", + id: "Carracosta" + }, + + illustrator: "LINNE", + category: "Pokemon", + hp: 160, + types: ["Water"], + + description: { + th: "เพราะกลืนกินเหยื่ออย่างหมดจดไม่เหลือแม้แต่เปลือกหรือกระดูก ทำให้กระดองของมันเติบโตหนาและแข็งขึ้น", + id: "Karena cangkang dan tulang mangsanya pun disantap habis hingga bersih tanpa sisa, tempurung Carracosta tumbuh tebal dan keras." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + th: "เตรียมใจพร้อมจากยุคดึกดำบรรพ์", + id: "Pemahaman Primitif" + }, + + effect: { + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ แดเมจของท่าต่อสู้ที่โปเกมอนฝ่ายเราใช้ทำกับโปเกมอนวิวัฒนาการบนตำแหน่งต่อสู้ฝ่ายตรงข้าม จะถูก [+30]", + id: "Selama Pokémon ini ada di Arena, kerusakan akibat serangan yang digunakan oleh Pokémon sendiri kepada Pokémon Evolusi di Arena Bertarung lawan bertambah sejumlah 30." + } + }], + + attacks: [{ + name: { + th: "ไฮโดรแครช", + id: "Hydro Crash" + }, + + damage: 150, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/038.ts b/data-asia/SV/SV7s/038.ts new file mode 100644 index 000000000..6dd53ab3e --- /dev/null +++ b/data-asia/SV/SV7s/038.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เคเค็นคานิ", + id: "Crabominable" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 160, + types: ["Water"], + + description: { + th: "พลังต่อยแข็งแกร่งมาก แต่เคลื่อนไหวช้า พ่นฟองน้ำแข็งจากปากเพื่อหยุดการเคลื่อนไหวของฝ่ายตรงข้าม", + id: "Kekuatan pukulannya kuat, tetapi pergerakannya lambat. Crabominable meniupkan gelembung es dari mulutnya untuk menghentikan pergerakan lawan." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "จัดเตรียม", + id: "Persiapan Sebelum" + }, + + effect: { + th: "พลังงาน[ไร้สี]สำหรับใช้ท่าต่อสู้ของโปเกมอนนี้จะลดลง ตามจำนวนการ์ด [ไห่ไต้] ที่อยู่บนตำแหน่งทิ้งการ์ดฝ่ายเรา", + id: "Energi {Bening} yang dibutuhkan oleh Pokémon ini untuk menggunakan serangan berkurang untuk tiap lembar Algo yang ada di Trash sendiri." + } + }], + + attacks: [{ + name: { + th: "หมัดหนัก", + id: "Pukulan Ayunan Lebar" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [หมัดหนัก] ไม่ได้", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Pukulan Ayunan Lebar." + }, + + damage: 250, + cost: ["Water", "Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/039.ts b/data-asia/SV/SV7s/039.ts new file mode 100644 index 000000000..34f6a8974 --- /dev/null +++ b/data-asia/SV/SV7s/039.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คามุคาเมะ", + id: "Chewtle" + }, + + illustrator: "Yuka Morii", + category: "Pokemon", + hp: 80, + types: ["Water"], + + description: { + th: "เด็ก ๆ ชอบเล่นแข่งกัน โดยจะยกกิ่งไม้ที่คามุคาเมะกัดอยู่ขึ้น แล้วดูว่าตัวไหนจะกัดกิ่งไม้อยู่ได้นานกว่ากัน", + id: "Permainan mengangkat ranting pohon yang digigit oleh Chewtle dan mengadu lamanya waktu Pokémon ini bergantung populer di kalangan anak-anak." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "พุ่งหัวชน", + id: "Tandukan Kepala" + }, + + damage: 60, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/040.ts b/data-asia/SV/SV7s/040.ts new file mode 100644 index 000000000..8e8c64ef8 --- /dev/null +++ b/data-asia/SV/SV7s/040.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คาจิริกาเมะ", + id: "Drednaw" + }, + + illustrator: "Dsuke", + category: "Pokemon", + hp: 140, + types: ["Water"], + + description: { + th: "หลบซ่อนตัวอยู่แถวชายฝั่ง คอยยืดคอยาวออกไปกัดขย้ำเหยื่อตอนที่เหยื่อออกมาดื่มน้ำ", + id: "Drednaw bersembunyi di pantai, lalu memanjangkan lehernya dan menggigit mangsanya yang datang untuk minum." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "กระดองปราการเหล็ก", + id: "Cangkang Pertahanan Besi" + }, + + effect: { + th: "โปเกมอนนี้ จะไม่ได้รับแดเมจของท่าต่อสู้ที่มากกว่าหรือเท่ากับ [200] จากโปเกมอนฝ่ายตรงข้าม", + id: "Pokémon ini tidak menerima kerusakan akibat serangan sejumlah 200 atau lebih dari Pokémon lawan." + } + }], + + attacks: [{ + name: { + th: "ฮาร์ดครันช์", + id: "Hard Crunch" + }, + + effect: { + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 80", + id: "Jika Pokémon Bertarung lawan memiliki Token Kerusakan, kerusakan yang diberikan bertambah sejumlah 80." + }, + + damage: "80+", + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/041.ts b/data-asia/SV/SV7s/041.ts new file mode 100644 index 000000000..1ae7c990c --- /dev/null +++ b/data-asia/SV/SV7s/041.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มิกาลูซา", + id: "Veluza" + }, + + illustrator: "GOTO minori", + category: "Pokemon", + hp: 130, + types: ["Water"], + + description: { + th: "มีความสามารถในการฟื้นร่างกายสูง ทิ้งเนื้อส่วนเกินของร่างกายเพื่อให้ตัวเบาลงและพุ่งเข้าโจมตีเหยื่อ", + id: "Veluza memiliki kemampuan regenerasi yang tinggi. Pokémon ini membuang daging berlebih di tubuhnya, lalu menyerbu mangsanya setelah tubuhnya menjadi ringan." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + th: "จัดเตรียม", + id: "Persiapan Sebelum" + }, + + effect: { + th: "พลังงาน[ไร้สี]สำหรับใช้ท่าต่อสู้ของโปเกมอนนี้จะลดลง ตามจำนวนการ์ด [ไห่ไต้] ที่อยู่บนตำแหน่งทิ้งการ์ดฝ่ายเรา", + id: "Energi {Bening} yang dibutuhkan oleh Pokémon ini untuk menggunakan serangan berkurang untuk tiap lembar Algo yang ada di Trash sendiri." + } + }], + + attacks: [{ + name: { + th: "โซนิคเอดจ์", + id: "Sonic Edge" + }, + + effect: { + th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด", + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan." + }, + + damage: 110, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/042.ts b/data-asia/SV/SV7s/042.ts new file mode 100644 index 000000000..a28a99502 --- /dev/null +++ b/data-asia/SV/SV7s/042.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เอเลบู", + id: "Electabuzz" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + description: { + th: "งานวิจัยที่ให้เอเลบูกักเก็บสายฟ้าเอาไว้เพื่อให้สามารถใช้งานเมื่อใดก็ได้นั้นกำลังคืบหน้า", + id: "Tengah dilakukan penelitian dengan menghimpun guntur ke Electabuzz agar dapat digunakan kapan pun." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "รวบรวม", + id: "Mengumpulkan" + }, + + effect: { + th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา", + id: "Ambil 1 kartu dari atas Deck sendiri." + }, + + cost: ["Lightning"] + }, { + name: { + th: "แมกนัมพันช์", + id: "Magnum Punch" + }, + + damage: 40, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/043.ts b/data-asia/SV/SV7s/043.ts new file mode 100644 index 000000000..9edbc18e6 --- /dev/null +++ b/data-asia/SV/SV7s/043.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เอเลคิเบิล", + id: "Electivire" + }, + + illustrator: "chibi", + category: "Pokemon", + hp: 150, + types: ["Lightning"], + + description: { + th: "กดปลายหางของมันเข้ากับอีกฝ่าย แล้วส่งกระแสไฟฟ้าที่มีแรงดันไฟฟ้าสูงกว่า 2 หมื่นโวลต์เข้าไปในร่างของอีกฝ่ายในชั่วพริบตา", + id: "Ia mengirimkan aliran listrik bertegangan tinggi sebesar lebih dari 20 ribu volt sesaat setelah menekankan ujung ekornya ke lawan." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "อิเล็กทริกสลัก", + id: "Electroslug" + }, + + damage: 40, + cost: ["Lightning"] + }, { + name: { + th: "ไลท์นิงดาวน์", + id: "Lightning Down" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนฝ่ายเราทุกตัว จะใช้ท่าต่อสู้ไม่ได้ (รวมถึงโปเกมอนที่เพิ่งออกมาใหม่บนกระดาน)", + id: "Pada giliran sendiri berikutnya, semua Pokémon sendiri tidak dapat menggunakan serangan. (Termasuk Pokémon yang baru dimasukkan ke Arena.)" + }, + + damage: 220, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/044.ts b/data-asia/SV/SV7s/044.ts new file mode 100644 index 000000000..dbe23bcdd --- /dev/null +++ b/data-asia/SV/SV7s/044.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ชอนชี", + id: "Chinchou" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + th: "ปล่อยกระแสไฟฟ้าขั้วบวกและขั้วลบออกจากปลายหนวดทั้งสองเพื่อทำให้อีกฝ่ายตัวชา", + id: "Ia mengalirkan listrik plus dan minus dari ujung 2 tentakelnya dan melumpuhkan lawannya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ดับเบิลโวลต์", + id: "Double Bolt" + }, + + effect: { + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20", + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "20×", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/045.ts b/data-asia/SV/SV7s/045.ts new file mode 100644 index 000000000..50ba5be35 --- /dev/null +++ b/data-asia/SV/SV7s/045.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "แลนเทอร์น", + id: "Lanturn" + }, + + illustrator: "Akira Komayama", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + th: "ปล่อยแสงสว่างเจิดจ้าออกมาทำให้อีกฝ่ายตาพร่าจนไม่สามารถเคลื่อนไหวได้ แล้วอาศัยจังหวะนั้นกลืนอีกฝ่ายเข้าไปทั้งตัว", + id: "Ia melepaskan cahaya yang menyilaukan untuk membutakan lawan, kemudian ia menelannya bulat-bulat saat lawan tersebut tidak dapat bergerak." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "แสงวาบอลเวง", + id: "Kilat Distraksi" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน] จำนวนตัวนับแดเมจที่วางด้วยสภาวะ[สับสน]นี้จะเป็น 8 ตัว", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing. Jumlah Token Kerusakan yang diletakkan akibat kondisi Pusing ini adalah 8." + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "ธันเดอร์โบลต์", + id: "Thunderbolt" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 140, + cost: ["Lightning", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/046.ts b/data-asia/SV/SV7s/046.ts new file mode 100644 index 000000000..402fc9717 --- /dev/null +++ b/data-asia/SV/SV7s/046.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บาชูรุ", + id: "Joltik" + }, + + illustrator: "Nisota Niso", + category: "Pokemon", + hp: 30, + types: ["Lightning"], + + description: { + th: "เพราะผลิตไฟฟ้าด้วยตัวเองไม่ได้ จึงมักเกาะโปเกมอนขนาดใหญ่เพื่อดูดเอาประจุไฟฟ้าสถิต", + id: "Joltik tidak dapat menghasilkan listrik sendiri sehingga Pokémon ini menempel pada Pokémon besar lain dan menyerap listrik statis." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "บาชูชาร์จ", + id: "Jolt Charge" + }, + + effect: { + th: "เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] และการ์ด [พลังงานพื้นฐาน[สายฟ้า]] ได้สูงสุดอย่างละ 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเราตามชอบ แล้วสับสำรับการ์ด", + id: "Pilih Energi Dasar {Daun} dan Energi Dasar {Listrik} masing-masing paling banyak 2 lembar dari Deck sendiri, lalu kenakan sesukanya pada Pokémon sendiri. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/047.ts b/data-asia/SV/SV7s/047.ts new file mode 100644 index 000000000..15c16af44 --- /dev/null +++ b/data-asia/SV/SV7s/047.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เดนทูลาex", + id: "Galvantula ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + th: "เส้นใยอัดเสย", + id: "Upper Thread" + }, + + effect: { + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】 /【V】] การโจมตีนี้จะเพิ่มแดเมจอีก 110", + id: "Jika Pokémon Bertarung lawan adalah Pokémon {ex}/{V}, kerusakan yang diberikan bertambah sejumlah 110." + }, + + damage: "110+", + cost: ["Lightning", "Colorless"] + }, { + name: { + th: "ฟูลกูไรต์", + id: "Fulgurite" + }, + + effect: { + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด เทิร์นถัดไปของฝ่ายตรงข้าม ฝ่ายตรงข้ามไม่สามารถนำการ์ดไอเท็มจากบนมือออกมาใช้ได้", + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash. Pada giliran lawan berikutnya, lawan tidak dapat memainkan Item dari Kartu Pegangan." + }, + + damage: 180, + cost: ["Grass", "Lightning", "Fighting"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/048.ts b/data-asia/SV/SV7s/048.ts new file mode 100644 index 000000000..a6a12e6d3 --- /dev/null +++ b/data-asia/SV/SV7s/048.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เด็นจิมูชิ", + id: "Charjabug" + }, + + illustrator: "Makura Tami", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + + description: { + th: "เมื่อย่อยใบไม้ร่วงที่กินเข้าไป จะผลิตไฟฟ้าออกมาและกักเก็บไว้ มันสามารถปล่อยไฟฟ้าออกมาจากส่วนปลายของขากรรไกรได้", + id: "Ketika mencerna daun jatuh yang telah dimakan, Pokémon ini menghasilkan listrik dan menghimpunnya. Ia mengeluarkan listrik dari ujung rahangnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "เรียงขนาน", + id: "Berbaris Paralel" + }, + + effect: { + th: "เลือกการ์ด [เด็นจิมูชิ] ได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด", + id: "Pilih paling banyak 3 lembar Charjabug dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck." + }, + + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/049.ts b/data-asia/SV/SV7s/049.ts new file mode 100644 index 000000000..b5e519611 --- /dev/null +++ b/data-asia/SV/SV7s/049.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คุวากานอน", + id: "Vikavolt" + }, + + illustrator: "Shiburingaru", + category: "Pokemon", + hp: 160, + types: ["Lightning"], + + description: { + th: "อุ้มเด็นจิมูชิไว้และรับไฟฟ้าจากเด็นจิมูชิ ยิงลำแสงคลื่นแม่เหล็กรุนแรงออกมาจากขากรรไกรขนาดใหญ่ได้อย่างต่อเนื่อง", + id: "Vikavolt mendapatkan listrik dengan membawa Charjabug dan menembakkan sinar elektromagnet yang kuat secara beruntun dari dagu besarnya." + }, + + stage: "Stage2", + + attacks: [{ + name: { + th: "โวลต์เชนจ์", + id: "Volt Change" + }, + + effect: { + th: "สลับโปเกมอนนี้กับโปเกมอน[สายฟ้า]บนเบนช์", + id: "Tukar Pokémon ini dengan Pokémon {Listrik} di Cadangan." + }, + + damage: 90, + cost: ["Lightning"] + }, { + name: { + th: "สปาร์กกิงแอทแทก", + id: "Sparking Attack" + }, + + damage: 240, + cost: ["Lightning", "Lightning", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/050.ts b/data-asia/SV/SV7s/050.ts new file mode 100644 index 000000000..275967f3b --- /dev/null +++ b/data-asia/SV/SV7s/050.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โทเกะเดมารุ", + id: "Togedemaru" + }, + + illustrator: "Rianti Hidayat", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + + description: { + th: "ด้วยขนยาวกลางหลัง เมื่อได้รับไฟฟ้าช็อตจากโปเกมอนไฟฟ้าหรือสายฟ้าจะสะสมไฟไว้ที่ถุงไฟฟ้า", + id: "Togedemaru menerima sambaran petir atau serangan listrik dari Pokémon listrik dengan bulu panjang di punggungnya dan menggunakannya untuk mengecas listrik di kantong listriknya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ได้จังหวะแปล๊บปล๊าบ", + id: "Kesempatan Berkejut-kejut" + }, + + effect: { + th: "ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายเราเป็น 1 ใบ จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]", + id: "Jika sisa Kartu Point sendiri adalah 1 lembar, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh." + }, + + damage: 30, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/051.ts b/data-asia/SV/SV7s/051.ts new file mode 100644 index 000000000..b0d6c29de --- /dev/null +++ b/data-asia/SV/SV7s/051.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เซราโอรา", + id: "Zeraora" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + th: "วิ่งด้วยความเร็วที่เทียบเท่าฟ้าแลบแล้วเข้าฉีกกระชากศัตรูด้วยกรงเล็บที่ปล่อยไฟฟ้าแรงสูง", + id: "Zeraora berlari secepat kilat dan mencabik-cabik musuhnya dengan cakar yang memancarkan listrik bertegangan tinggi." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "คอมแบตธันเดอร์", + id: "Combat Thunder" + }, + + effect: { + th: "แดเมจจะเพิ่มตามจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้าม x20", + id: "Kerusakan yang diberikan bertambah sejumlah 20 untuk tiap Pokémon Cadangan lawan." + }, + + damage: "20+", + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/052.ts b/data-asia/SV/SV7s/052.ts new file mode 100644 index 000000000..a7f0fc9c2 --- /dev/null +++ b/data-asia/SV/SV7s/052.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โบรโรโรมex", + id: "Revavroom ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 280, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + th: "แอกเซลแฟลช", + id: "Accel Flash" + }, + + effect: { + th: "เทิร์นนี้ ถ้าโปเกมอนนี้ออกจากเบนช์มาที่ตำแหน่งต่อสู้ การโจมตีนี้จะเพิ่มแดเมจอีก 120", + id: "Jika pada giliran ini, Pokémon ini masuk dari Cadangan ke Arena Bertarung, kerusakan yang diberikan bertambah sejumlah 120." + }, + + damage: "20+", + cost: ["Metal"] + }, { + name: { + th: "สปีดเบรก", + id: "Speed Break" + }, + + effect: { + th: "ทิ้งโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ที่ตำแหน่งทิ้งการ์ด", + id: "Buang Pokémon ini dan semua kartu yang dikenakannya ke Trash." + }, + + damage: 250, + cost: ["Metal", "Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/053.ts b/data-asia/SV/SV7s/053.ts new file mode 100644 index 000000000..789a6d9c1 --- /dev/null +++ b/data-asia/SV/SV7s/053.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ยาดง", + id: "Slowpoke" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + description: { + th: "ดูเหม่อลอยตลอดเวลา ไม่รู้ว่าคิดอะไรอยู่ ถนัดใช้หางตกเหยื่อ", + id: "Slowpoke selalu bengong dan tidak ada yang tahu apa yang sedang dipikirkannya. Pokémon ini pandai memancing makanan menggunakan ekornya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ทำหางตก", + id: "Merundukkan Ekor" + }, + + effect: { + th: "เลือกการ์ดโปเกมอน 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ", + id: "Pilih 1 lembar Pokémon dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan." + }, + + cost: ["Colorless"] + }, { + name: { + th: "พุ่งเข้าชน", + id: "Serudukan" + }, + + damage: 30, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/054.ts b/data-asia/SV/SV7s/054.ts new file mode 100644 index 000000000..0c7d3c944 --- /dev/null +++ b/data-asia/SV/SV7s/054.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ยาโดคิง", + id: "Slowking" + }, + + illustrator: "Tetsu Kayama", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + th: "มีสติปัญญาและความสามารถในการหยั่งรู้ที่ยอดเยี่ยม ไม่ว่าเมื่อไหร่ก็จะทำตัวสบาย ๆ ไม่รีบไม่แตกตื่น", + id: "Slowking memiliki kecerdasan dan intuisi yang luar biasa. Di saat apa pun, Pokémon ini tidak panik, tenang, dan santai." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ท้าประลองไหวพริบ", + id: "Tantangan Inspirasi" + }, + + effect: { + th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายเราที่ตำแหน่งทิ้งการ์ด ถ้าการ์ดนั้นเป็นการ์ดโปเกมอน (ยกเว้น [โปเกมอนที่มีกฎ]) เลือกท่าต่อสู้ที่โปเกมอนนั้นมี 1 ท่า ใช้เป็นท่าต่อสู้นี้ได้", + id: "Buang 1 kartu dari atas Deck sendiri ke Trash, jika kartu tersebut adalah Pokémon (selain Pokémon yang memiliki Peraturan), pilih 1 serangan yang dimiliki Pokémon tersebut, lalu gunakan sebagai serangan ini." + }, + + cost: ["Psychic", "Colorless"] + }, { + name: { + th: "ซูเปอร์โทรจิต", + id: "Psikokinesis Super" + }, + + damage: 120, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/055.ts b/data-asia/SV/SV7s/055.ts new file mode 100644 index 000000000..ba3fab5b9 --- /dev/null +++ b/data-asia/SV/SV7s/055.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "สลีป", + id: "Drowzee" + }, + + illustrator: "OKUBO", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + th: "ว่ากันว่าพอมันใช้จมูกที่ยื่นออกมาดมฟุดฟิดก็จะรู้หมดว่าใครที่อยู่ตรงไหนกำลังฝันอะไรอยู่", + id: "Dikabarkan Drowzee dapat mengetahui segalanya tentang siapa, di mana, dan sedang bermimpi apa dengan mengedutkan hidungnya yang menonjol." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "สายตาชวนขนลุก", + id: "Pandangan Menyeramkan" + }, + + effect: { + th: "ดูการ์ดบนมือฝ่ายตรงข้าม", + id: "Lihat Kartu Pegangan lawan." + }, + + damage: 10, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/056.ts b/data-asia/SV/SV7s/056.ts new file mode 100644 index 000000000..6a2e37275 --- /dev/null +++ b/data-asia/SV/SV7s/056.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "สลีปเปอร์", + id: "Hypno" + }, + + illustrator: "Masako Tomii", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + th: "แกว่งลูกตุ้มที่พกเอาไว้ตลอดเวลาด้วยจังหวะคงที่ พอเข้าใกล้แล้วไม่รู้ทำไมถึงง่วงนอน", + id: "Dalam kondisi apa pun, Hypno selalu menggoyangkan pendulum yang dibawanya dengan ritme yang sama. Entah kenapa jadi mengantuk jika mendekatinya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ฝันกลางวัน", + id: "Mimpi di Siang Bolong" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม ถ้าฝ่ายตรงข้ามติดการ์ดพลังงานจากบนมือ ที่โปเกมอนที่ได้รับท่าต่อสู้นี้แล้ว จะจบเทิร์นฝ่ายตรงข้าม", + id: "Pada giliran lawan berikutnya, jika lawan mengenakan Energi dari Kartu Pegangan pada Pokémon yang menerima serangan ini, giliran lawan akan selesai." + }, + + damage: 80, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/057.ts b/data-asia/SV/SV7s/057.ts new file mode 100644 index 000000000..f008f84b3 --- /dev/null +++ b/data-asia/SV/SV7s/057.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โยมาวารุ", + id: "Duskull" + }, + + illustrator: "IKEDA Saki", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + th: "จะรู้สึกหนาวสั่นอย่างรุนแรงตอนที่ถูกมันจ้องเขม็งด้วยนัยน์ตาเดียวสีแดงฉานและสูบพลังงานชีวิตไป", + id: "Ketika vitalitas terisap akibat dipelototi oleh mata tunggal merah padam Pokémon ini, rasa menggigil yang luar biasa akan menyerang." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "รับวิญญาณ", + id: "Pergi Menjemput" + }, + + effect: { + th: "เลือกการ์ด [โยมาวารุ] ได้สูงสุด 3 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา วางบนเบนช์", + id: "Pilih paling banyak 3 lembar Duskull dari Trash sendiri, lalu masukkan ke Cadangan." + }, + + cost: ["Psychic"] + }, { + name: { + th: "งึมงำ", + id: "Bergumam" + }, + + damage: 30, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/058.ts b/data-asia/SV/SV7s/058.ts new file mode 100644 index 000000000..69fc53f07 --- /dev/null +++ b/data-asia/SV/SV7s/058.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ซามาโยรุ", + id: "Dusclops" + }, + + illustrator: "Aya Kusube", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + th: "ว่ากันว่า นัยน์ตาเดียวสีแดงฉานที่ลุกไหม้อยู่ในตัวคือร่างที่แท้จริงของซามาโยรุ แต่ก็ไม่มีใครเคยเห็น", + id: "Dikatakan bahwa mata merah padam tunggal yang sedang terbakar di dalam tubuhnya merupakan tubuh aslinya, tetapi tidak ada yang pernah melihatnya." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "ระเบิดต้องสาป", + id: "Cursed Bomb" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เมื่อใช้แล้ว จะทำให้โปเกมอนนี้[หมดสภาพ] วางตัวนับแดเมจ 5 ตัว บนโปเกมอนฝ่ายตรงข้าม 1 ตัว", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pokémon ini KO jika menggunakan Ability ini. Letakkan 5 Token Kerusakan pada 1 Pokémon lawan." + } + }], + + attacks: [{ + name: { + th: "ลูกไฟวิญญาณ", + id: "Api Hantu" + }, + + damage: 50, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/059.ts b/data-asia/SV/SV7s/059.ts new file mode 100644 index 000000000..6bfcf66a6 --- /dev/null +++ b/data-asia/SV/SV7s/059.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โยนัวร์", + id: "Dusknoir" + }, + + illustrator: "danciao", + category: "Pokemon", + hp: 160, + types: ["Psychic"], + + description: { + th: "ไปกลับระหว่างโลกนี้และโลกหลังความตาย ผู้คนต่างหวาดกลัวเพราะเชื่อว่ามันจะดูดกลืนวิญญาณเร่ร่อนและพาไปด้วย", + id: "Pokémon yang datang dan pergi ke dunia fana dan alam baka. Konon ia mengisap roh gentayangan dan mengangkutnya sehingga ditakuti." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + th: "ระเบิดต้องสาป", + id: "Cursed Bomb" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เมื่อใช้แล้ว จะทำให้โปเกมอนนี้[หมดสภาพ] วางตัวนับแดเมจ 13 ตัว บนโปเกมอนฝ่ายตรงข้าม 1 ตัว", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pokémon ini KO jika menggunakan Ability ini. Letakkan 13 Token Kerusakan pada 1 Pokémon lawan." + } + }], + + attacks: [{ + name: { + th: "จับเงา", + id: "Pengikat Bayangan" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้", + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + damage: 150, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/060.ts b/data-asia/SV/SV7s/060.ts new file mode 100644 index 000000000..95ebf5ecb --- /dev/null +++ b/data-asia/SV/SV7s/060.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ฟูวันเต", + id: "Drifloon" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + th: "เนื่องจากมันดูล่องลอยอย่างไร้จุดหมาย จึงถูกเรียกขานในนิทานเก่าแก่ว่าเป็นเครื่องหมายบอกทางวิญญาณที่หลงทาง", + id: "Karena Drifloon terbang dan melayang tanpa tujuan, ada dongeng yang menceritakan Pokémon ini sebagai pemandu arah roh yang tersesat." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "พอง", + id: "Membesar" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-10]", + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 10." + }, + + damage: 10, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/061.ts b/data-asia/SV/SV7s/061.ts new file mode 100644 index 000000000..47d7ff852 --- /dev/null +++ b/data-asia/SV/SV7s/061.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ฟูวาไรด์", + id: "Drifblim" + }, + + illustrator: "sowsow", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + + description: { + th: "ช่วยแบกคนและโปเกมอน แต่จะลอยไปตามลม ก็เลยไม่สามารถเลือกจุดหมายปลายทางได้", + id: "Drifblim terbang mengangkut manusia dan Pokémon. Namun, tidak dapat menentukan tujuan yang jelas karena ia hanya terbang dibawa angin." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ระเบิดไปด้วยกัน", + id: "Meledak Bersama" + }, + + effect: { + th: "แดเมจจะเท่ากับจำนวน [ฟูวันเต] และ [ฟูวาไรด์] บนกระดานฝ่ายเรา x50 [ฟูวันเต] และ [ฟูวาไรด์] บนกระดานฝ่ายเราทุกตัว ก็จะได้รับแดเมจตัวละ 30 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + id: "Serangan ini memberikan kerusakan sejumlah 50 untuk tiap Drifloon dan Drifblim di Arena sendiri. Serangan ini juga memberikan kerusakan masing-masing sejumlah 30 kepada semua Drifloon dan Drifblim di Arena sendiri. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + damage: "50×", + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/062.ts b/data-asia/SV/SV7s/062.ts new file mode 100644 index 000000000..fbff8d13e --- /dev/null +++ b/data-asia/SV/SV7s/062.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เครเซเลีย", + id: "Cresselia" + }, + + illustrator: "matazo", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + th: "เวลาบินจะปล่อยอนุภาคที่ส่องแสงจากปีกที่เหมือนผ้าคลุม ถูกเรียกว่าเป็นร่างแปลงของพระจันทร์เสี้ยว", + id: "Saat terbang, Cresselia mengeluarkan partikel cahaya dari bulunya yang bagaikan cadar. Pokémon ini dikenal sebagai Jelmaan Bulan Sabit." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ร่ายรำบำบัด", + id: "Tarian Pemulih" + }, + + effect: { + th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเราทุกตัว ตัวละ [20]", + id: "Pulihkan HP semua Pokémon sendiri masing-masing sejumlah 20." + }, + + cost: ["Psychic"] + }, { + name: { + th: "เครสเซนต์เพิร์จ", + id: "Crescent Purge" + }, + + effect: { + th: "หากต้องการ เลือกการ์ดรางวัลที่คว่ำอยู่ของฝ่ายเรา 1 ใบ หงายหน้าการ์ด เมื่อทำเช่นนั้นแล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 80 (หงายการ์ดรางวัลนั้นไว้ จนกว่าจะจบการแบตเทิล)", + id: "Pemain dapat memilih 1 lembar Kartu Point sendiri yang sisi depannya menghadap ke bawah, lalu membalikkan sisi depannya menjadi menghadap ke atas. Jika dilakukan, kerusakan yang diberikan bertambah sejumlah 80. (Sisi depan Kartu Point tersebut tetap menghadap ke atas hingga permainan selesai.)" + }, + + damage: "80+", + cost: ["Psychic", "Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/063.ts b/data-asia/SV/SV7s/063.ts new file mode 100644 index 000000000..9bd207908 --- /dev/null +++ b/data-asia/SV/SV7s/063.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "นิมเฟีย", + id: "Sylveon" + }, + + illustrator: "Kuroimori", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + th: "หนวดสัมผัสพลิ้วไหวไปตามการเคลื่อนไหวที่ปราดเปรียวและสง่างาม แต่การโจมตีของมันนั้นเฉียบคมและเล็งตรงไปยังจุดอ่อน", + id: "Sosok Sylveon yang menari dan mengibarkan antenanya dengan luwes terlihat begitu anggun, namun serangan Pokémon ini mengincar titik kritis lawan dengan akurat." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "มิสติกรีเทิร์น", + id: "Mystic Return" + }, + + effect: { + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว นำโปเกมอนนั้น และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายตรงข้ามแล้วสับ", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Pokémon Cadangan lawan, lalu kocok kembali Pokémon tersebut dan semua kartu yang dikenakannya ke Deck lawan." + }, + + cost: ["Psychic"] + }, { + name: { + th: "เสียงทรงเสน่ห์", + id: "Charm Voice" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing." + }, + + damage: 90, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/064.ts b/data-asia/SV/SV7s/064.ts new file mode 100644 index 000000000..2a9757e34 --- /dev/null +++ b/data-asia/SV/SV7s/064.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คิววะวา", + id: "Comfey" + }, + + illustrator: "saino misaki", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + th: "เมื่อมีดอกไม้ติดตามตัวจะดีใจจนปลดปล่อยพลังในการเยียวยารักษาออกมา ชื่นชอบพื้นที่ที่มีดอกไม้จำนวนมาก", + id: "Ketika ia mengenakan bunga, ia menjadi senang sehingga ia akan mengeluarkan efek penyembuh. Pokémon yang menyukai daerah berbunga banyak." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ฟลาวเวอร์ชาวเวอร์", + id: "Flower Shower" + }, + + effect: { + th: "ผู้เล่นทั้งสองฝ่าย แต่ละฝ่ายจั่วการ์ด 3 ใบจากสำรับการ์ด", + id: "Kedua pemain masing-masing mengambil 3 kartu dari atas Deck." + }, + + cost: ["Psychic"] + }, { + name: { + th: "คลอเคลีย", + id: "Main Kasar" + }, + + effect: { + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 20", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 20." + }, + + damage: "20+", + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/065.ts b/data-asia/SV/SV7s/065.ts new file mode 100644 index 000000000..9e9c4e8be --- /dev/null +++ b/data-asia/SV/SV7s/065.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มาโฮมิล", + id: "Milcery" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + th: "หากถูกจู่โจม มันจะพุ่งเข้าชนทำให้ศัตรูเปรอะไปด้วยครีม ในช่วงที่ศัตรูมองไม่เห็นหรือตกใจกับความอร่อยของครีม ก็จะอาศัยจังหวะนั้นหนีไป", + id: "Ia menyeruduk jika diserang musuh. Pokémon ini kabur ketika musuhnya dibuat berlumuran krim agar tidak bisa melihat atau terkejut karena kelezatan krimnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "งึมงำ", + id: "Bergumam" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/066.ts b/data-asia/SV/SV7s/066.ts new file mode 100644 index 000000000..bbd1a4be3 --- /dev/null +++ b/data-asia/SV/SV7s/066.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มาวิป", + id: "Alcremie" + }, + + illustrator: "Natsumi Yoshida", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + th: "ครีมที่ได้จากมาวิปที่ได้รับการเอาใจใส่นั้นเลิศรสมาก จึงมีแต่เทรนเนอร์ที่คอยดูแลเอาใจใส่มันเป็นอย่างดี", + id: "Dikarenakan Alcremie yang dirawat secara baik mengeluarkan krim yang sangat luar biasa, kebanyakan pelatih merawatnya dengan penuh kelembutan." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ขนมหลากสีสัน", + id: "Makanan Manis Aneka Warna" + }, + + effect: { + th: "เลือกการ์ดโปเกมอนที่เป็นประเภทเดียวกับพลังงานพื้นฐานที่ติดอยู่กับโปเกมอนนี้รวมกันได้สูงสุด 5 ใบ จากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + id: "Pilih paling banyak total 5 lembar Pokémon yang memiliki tipe yang sama dengan Energi Dasar yang dikenakan pada Pokémon ini dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + th: "เมจิคัลช็อต", + id: "Magical Shot" + }, + + damage: 60, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/067.ts b/data-asia/SV/SV7s/067.ts new file mode 100644 index 000000000..ea557fe96 --- /dev/null +++ b/data-asia/SV/SV7s/067.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "พาปิม็อตจิ", + id: "Fidough" + }, + + illustrator: "Narumi Sato", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + th: "ยีสต์ที่อยู่ในลมหายใจของมันมีประโยชน์ในการปรุงอาหาร จึงมีมนุษย์คอยดูแลมันมาตั้งแต่ในอดีต", + id: "Karena napasnya yang mengandung ragi berguna untuk memasak, Fidough dirawat oleh manusia sejak zaman dahulu." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "กลิ่นดี", + id: "Bau Harum" + }, + + effect: { + th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด", + id: "Pilih 1 lembar Pokémon Basic dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + th: "เหยียบ", + id: "Menginjak" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/068.ts b/data-asia/SV/SV7s/068.ts new file mode 100644 index 000000000..6a98c6fb3 --- /dev/null +++ b/data-asia/SV/SV7s/068.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บัลซ์เซลex", + id: "Dachsbun ex" + }, + + illustrator: "You Iribi", + category: "Pokemon", + hp: 250, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "เวลาท้องอิ่ม", + id: "Waktu Kenyang" + }, + + effect: { + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง ฟื้นฟู HP ทั้งหมดของโปเกมอนวิวัฒนาการฝ่ายเราทุกตัว หลังจากนั้น ทิ้งพลังงานที่ติดอยู่กับโปเกมอนที่ฟื้นฟู ทั้งหมดที่ตำแหน่งทิ้งการ์ด", + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Pulihkan HP semua Pokémon Evolusi sendiri sepenuhnya. Setelah itu, buang semua Energi yang dikenakan pada Pokémon yang telah dipulihkan ke Trash." + } + }], + + attacks: [{ + name: { + th: "วันเดอร์ไชน์", + id: "Wonder Shine" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing." + }, + + damage: 130, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/069.ts b/data-asia/SV/SV7s/069.ts new file mode 100644 index 000000000..726d4b6fa --- /dev/null +++ b/data-asia/SV/SV7s/069.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ศิลาเหล็ก", + id: "Iron Boulder" + }, + + illustrator: "GIDORA", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + description: { + th: "เหมือนว่าร่างกายจะมีคุณสมบัติเป็นโลหะ ถูกตั้งชื่อตามวัตถุลึกลับที่ถูกระบุไว้ในหนังสือเก่าแก่", + id: "Tampaknya Pokémon ini bertubuh metalik. Namanya diberikan berdasarkan objek misterius yang tercatat dalam buku kuno." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "แอดจัสต์ฮอร์น", + id: "Adjust Horn" + }, + + effect: { + th: "ถ้าจำนวนการ์ดบนมือฝ่ายเรากับจำนวนการ์ดบนมือฝ่ายตรงข้ามไม่เท่ากัน ท่าต่อสู้นี้จะล้มเหลว", + id: "Jika jumlah Kartu Pegangan sendiri dan jumlah Kartu Pegangan lawan tidak sama, serangan ini gagal." + }, + + damage: 170, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/070.ts b/data-asia/SV/SV7s/070.ts new file mode 100644 index 000000000..b8075a0c2 --- /dev/null +++ b/data-asia/SV/SV7s/070.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คาระคาระ", + id: "Cubone" + }, + + illustrator: "svlt", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + th: "พอร้องไห้คิดถึงแม่ที่เสียชีวิตไป เสียงร้องอย่างน่าเศร้าใจก็จะก้องอยู่ในกระดูกที่ครอบอยู่บนหัว", + id: "Ketika Cubone menangis karena teringat pada induknya yang telah dipisahkan oleh maut, suara tangisnya menggema dengan sedih di dalam tengkorak yang dikenakan di kepalanya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ประจัญบาน", + id: "Menyerang" + }, + + effect: { + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย", + id: "Pokémon ini juga menerima kerusakan sejumlah 10." + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/071.ts b/data-asia/SV/SV7s/071.ts new file mode 100644 index 000000000..42709adf8 --- /dev/null +++ b/data-asia/SV/SV7s/071.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "การะการะ", + id: "Marowak" + }, + + illustrator: "cochi8i", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + + description: { + th: "เมื่อผ่านพ้นความเศร้าโศกไปแล้วก็จะวิวัฒนาการจนกล้าแกร่งขึ้น ใช้กระดูกเป็นอาวุธต่อสู้กับศัตรูอย่างกล้าหาญ", + id: "Telah mengatasi kesedihannya dan berevolusi menjadi Pokémon yang tangguh. Marowak menghadapi musuh dengan gagah berani menggunakan tulang sebagai senjatanya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "เสียงร้อง", + id: "Bersuara" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนที่ได้รับท่าต่อสู้นี้ใช้ จะถูก [-40]", + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang digunakan oleh Pokémon yang menerima serangan ini berkurang sejumlah 40." + }, + + cost: ["Fighting"] + }, { + name: { + th: "กระดูกแก้แค้น", + id: "Balas Dendam Tulang" + }, + + effect: { + th: "ถ้า [คาระคาระ] บนเบนช์ฝ่ายเรามีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 120", + id: "Jika Cubone di Cadangan sendiri memiliki Token Kerusakan, kerusakan yang diberikan bertambah sejumlah 120." + }, + + damage: "60+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/072.ts b/data-asia/SV/SV7s/072.ts new file mode 100644 index 000000000..31844597e --- /dev/null +++ b/data-asia/SV/SV7s/072.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไซฮอร์น", + id: "Rhyhorn" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + description: { + th: "มีลักษณะนิสัยที่เมื่อออกตัววิ่งไปแล้ว จะไม่ยอมหยุดวิ่งแม้จะชนเข้ากับหินก้อนใหญ่ก็ตาม ทำให้ถิ่นที่อยู่อาศัยของมันแผ่กว้างออกไป", + id: "Habitatnya menjadi luas dikarenakan sifatnya yang ketika sudah mulai berlari tidak akan berhenti meski menabrak bebatuan besar sekalipun." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "เขาขวิด", + id: "Tusukan Tanduk" + }, + + damage: 50, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/073.ts b/data-asia/SV/SV7s/073.ts new file mode 100644 index 000000000..c93f1a9b5 --- /dev/null +++ b/data-asia/SV/SV7s/073.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไซดอน", + id: "Rhydon" + }, + + illustrator: "Ryuta Fuse", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + + description: { + th: "มันวิวัฒนาการขึ้นเพื่อให้สามารถเดินได้ด้วยขาหลังเพียงอย่างเดียว ทำให้มันสามารถแผ่ขยายถิ่นที่อยู่อาศัยได้แม้บนเขาสูงชันก็ตาม", + id: "Karena telah berevolusi sehingga menjadi dapat berjalan hanya dengan kaki belakangnya, ia dapat memperluas habitatnya bahkan di gunung terjal sekalipun." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "เขาแห่งการทำลาย", + id: "Tanduk Penghancur" + }, + + effect: { + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash." + }, + + damage: 80, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/074.ts b/data-asia/SV/SV7s/074.ts new file mode 100644 index 000000000..11dcc73ab --- /dev/null +++ b/data-asia/SV/SV7s/074.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โดไซดอน", + id: "Rhyperior" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 200, + types: ["Fighting"], + + description: { + th: "แม้จะมีสมองที่เล็กยิ่งกว่าไซดอน แต่ก็เอาพลังงานที่เหลือทั้งหมดไปลงกับการต่อสู้ มันจึงแข็งแกร่งเป็นอย่างมาก", + id: "Otaknya memang lebih kecil daripada Rhydon, tetapi ia kuat karena menggunakan sejumlah energi sebagai pengganti ukuran otaknya tersebut untuk bertarung." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + th: "ไวด์วอลล์", + id: "Wide Wall" + }, + + effect: { + th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนตำแหน่งต่อสู้ โปเกมอนฝ่ายเราทุกตัว จะไม่ได้รับเอฟเฟกต์ เมื่อฝ่ายตรงข้ามนำการ์ดซัพพอร์ตจากบนมือออกมาใช้", + id: "Selama Pokémon ini ada di Arena Bertarung, saat lawan memainkan Supporter dari Kartu Pegangan, semua Pokémon sendiri tidak menerima efek dari Supporter tersebut." + } + }], + + attacks: [{ + name: { + th: "ดริลไลน์เนอร์", + id: "Drill Liner" + }, + + effect: { + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + id: "Pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash." + }, + + damage: 180, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/075.ts b/data-asia/SV/SV7s/075.ts new file mode 100644 index 000000000..07d33a0e9 --- /dev/null +++ b/data-asia/SV/SV7s/075.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อาซานัน", + id: "Meditite" + }, + + illustrator: "Yuu Nishida", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + th: "นั่งสมาธิเพื่อขัดเกลาพลังจิตให้เพิ่มขึ้นและลอยขึ้นกลางอากาศ จะกินผลไม้แค่ 1 ผลต่อวัน", + id: "Meditite meningkatkan energi jiwanya dengan bermeditasi, lalu melayang di udara. Pokémon ini memakan 1 buah beri per harinya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "เข้าฌาน", + id: "Meditasi" + }, + + effect: { + th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]", + id: "Pulihkan HP Pokémon ini sejumlah 20." + }, + + cost: ["Colorless"] + }, { + name: { + th: "สับ", + id: "Chop" + }, + + damage: 50, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/076.ts b/data-asia/SV/SV7s/076.ts new file mode 100644 index 000000000..71c0484ad --- /dev/null +++ b/data-asia/SV/SV7s/076.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ชาเรมex", + id: "Medicham ex" + }, + + illustrator: "PLANETA Yamashita", + category: "Pokemon", + hp: 260, + types: ["Fighting"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + th: "กดจุดลมปราณ", + id: "Totokan Tenaga Dalam" + }, + + effect: { + th: "วางตัวนับแดเมจให้ HP ของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเหลือเท่ากับ [50]", + id: "Letakkan Token Kerusakan hingga sisa HP Pokémon Bertarung lawan menjadi sejumlah 50." + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "ลูกเตะโยคะ", + id: "Yoga Kick" + }, + + effect: { + th: "แดเมจของท่าต่อสู้นี้จะไม่นำจุดอ่อนและความต้านทานมาคิด", + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan dan Resistansi." + }, + + damage: 190, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/077.ts b/data-asia/SV/SV7s/077.ts new file mode 100644 index 000000000..87ab93617 --- /dev/null +++ b/data-asia/SV/SV7s/077.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "กูเรกกรู", + id: "Croagunk" + }, + + illustrator: "Aliya Chen", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + th: "สู้อย่างตรงไปตรงมาน้อยครั้ง แต่นั่นก็เพื่อความอยู่รอด เป็นมาสคอตที่เป็นที่นิยมมาก", + id: "Croagunk jarang melakukan pertarungan secara jujur dan adil, tetapi itu pun dilakukan untuk bertahan hidup. Pokémon ini populer sebagai maskot." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ทุบตี", + id: "Memukul" + }, + + damage: 10, + cost: ["Fighting"] + }, { + name: { + th: "กระโดดกบ", + id: "Lompat Katak" + }, + + effect: { + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 20", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 20." + }, + + damage: "20+", + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/078.ts b/data-asia/SV/SV7s/078.ts new file mode 100644 index 000000000..69c1a5395 --- /dev/null +++ b/data-asia/SV/SV7s/078.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โดคูร็อก", + id: "Toxicroak" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + th: "มีถุงพิษในลำคอ เมื่อส่งเสียงร้องในลำคอ พิษที่สะสมไว้จะผสมจนเข้ากันและมีฤทธิ์แรงขึ้น", + id: "Toxicroak memiliki kantong racun di tenggorokannya. Ketika menguak, racunnya terkocok dan meningkatkan kekuatannya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ต่อยตี", + id: "Menohok" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "คลีนฮิต", + id: "Clean Hit" + }, + + effect: { + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นโปเกมอนวิวัฒนาการ การโจมตีนี้จะเพิ่มแดเมจอีก 90", + id: "Jika Pokémon Bertarung lawan adalah Pokémon Evolusi, kerusakan yang diberikan bertambah sejumlah 90." + }, + + damage: "90+", + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/079.ts b/data-asia/SV/SV7s/079.ts new file mode 100644 index 000000000..30f98c9ae --- /dev/null +++ b/data-asia/SV/SV7s/079.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โคโจฟู", + id: "Mienfoo" + }, + + illustrator: "Kariya", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + th: "จะเก็บตัวอยู่กลางป่าลึก หมั่นฝึกตนกันเป็นฝูง ท่าเตะและท่าสับจะต่างกันไปตามฝูง", + id: "Mienfoo memencil ke pedalaman gunung dan berlatih bersama kawanannya. Bentuk tendangan dan tebasan berbeda-beda tergantung kawanannya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ตบร่วง", + id: "Tumbuk Jatuh" + }, + + effect: { + th: "เลือกการ์ด 1 ใบจากบนมือฝ่ายตรงข้ามโดยไม่ดูหน้าการ์ด ทิ้งที่ตำแหน่งทิ้งการ์ด", + id: "Pilih 1 kartu dari Kartu Pegangan lawan tanpa melihat sisi depan, lalu buang ke Trash." + }, + + damage: 10, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/080.ts b/data-asia/SV/SV7s/080.ts new file mode 100644 index 000000000..45a0ddf7e --- /dev/null +++ b/data-asia/SV/SV7s/080.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โคโจนโดะ", + id: "Mienshao" + }, + + illustrator: "MINAMINAMI Take", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + + description: { + th: "สามารถใช้ขนที่แขนทั้งสองต่างแส้ได้อย่างคล่องแคล่ว เมื่อมันเริ่มโจมตีอย่างต่อเนื่องแล้วจะไม่มีใครสามารถหยุดมันได้", + id: "Ketika Mienshao menggunakan bulu tubuh kedua tangannya seperti cambuk secara terampil dan memulai serangan beruntun, siapa pun tidak dapat menghentikannya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "หมุนลมกรด", + id: "Angin Ribut Melingkar" + }, + + effect: { + th: "ถ้าการ์ดบนมือฝ่ายตรงข้ามน้อยกว่าหรือเท่ากับ 5 ใบ การโจมตีนี้จะเพิ่มแดเมจอีก 60", + id: "Jika jumlah Kartu Pegangan lawan adalah 5 lembar atau kurang, kerusakan yang diberikan bertambah sejumlah 60." + }, + + damage: "30+", + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/081.ts b/data-asia/SV/SV7s/081.ts new file mode 100644 index 000000000..111f37174 --- /dev/null +++ b/data-asia/SV/SV7s/081.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ยันชัม", + id: "Pancham" + }, + + illustrator: "Tomomi Ozaki", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + th: "การเลียนแบบโกรอนดะที่เป็นลูกพี่จะทำให้เรียนรู้วิธีการต่อสู้หรือวิธีการจับเหยื่อได้", + id: "Dengan menirukan Pangoro yang ia hormati sebagai bos, Pancham mempelajari cara bertarung dan cara menangkap mangsa." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "เหลือบมอง", + id: "Memelototi" + }, + + effect: { + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh." + }, + + cost: ["Colorless"] + }, { + name: { + th: "เตะเรียด", + id: "Tendangan Rendah" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/082.ts b/data-asia/SV/SV7s/082.ts new file mode 100644 index 000000000..28762f35b --- /dev/null +++ b/data-asia/SV/SV7s/082.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ดีแอนซี", + id: "Diancie" + }, + + illustrator: "Jiro Sasumo", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + + description: { + th: "ร่างกลายพันธุ์ของเมเลซี ว่ากันว่าร่างกายที่ส่องประกายสีชมพูนั้นสวยที่สุดในโลก", + id: "Mutasi dari Carbink. Dikatakan bahwa tubuh Diancie yang berkilau dengan warna merah muda adalah yang terindah di dunia." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "สะท้อนกระจาย", + id: "Pemantulan Baur" + }, + + effect: { + th: "แดเมจจะเท่ากับจำนวนการ์ดพลังงานพิเศษที่ติดอยู่กับโปเกมอนฝ่ายตรงข้ามทุกตัว x40", + id: "Serangan ini memberikan kerusakan sejumlah 40 untuk tiap lembar Energi Spesial yang dikenakan pada semua Pokémon lawan." + }, + + damage: "40×", + cost: ["Colorless"] + }, { + name: { + th: "พาวเวอร์เจม", + id: "Power Gem" + }, + + damage: 60, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/083.ts b/data-asia/SV/SV7s/083.ts new file mode 100644 index 000000000..d89389c11 --- /dev/null +++ b/data-asia/SV/SV7s/083.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มาเค็นคานิ", + id: "Crabrawler" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + + description: { + th: "ถึงก้ามจะหักไป ก็จะงอกใหม่อย่างรวดเร็ว ที่กระดองจะมีน้ำสต็อกไหลออกมา นิยมนำไปใช้ทำปาเอยา", + id: "Capit Crabrawler langsung tumbuh meskipun patah. Karena menghasilkan kaldu yang bagus, cangkang Pokémon ini populer sebagai bahan untuk membuat Paella." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "หนีบ", + id: "Capitan Keras" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "ค้อนก้ามปู", + id: "Crabhammer" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/084.ts b/data-asia/SV/SV7s/084.ts new file mode 100644 index 000000000..e5240047c --- /dev/null +++ b/data-asia/SV/SV7s/084.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไทเรสึ", + id: "Falinks" + }, + + illustrator: "Gapao", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + + description: { + th: "ตัวหัวหน้าที่เรียกว่าหัวหน้าทหารจะใช้เขาซึ่งสามารถยืดหดได้ในการออกคำสั่งเพื่อจัดกระบวนทัพ", + id: "Pemimpin Falinks yang disebut juga sebagai kapten memberikan instruksi untuk mengganti formasi dengan tanduknya yang memanjang dan memendek." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "จัดแถว", + id: "Menyusun Formasi" + }, + + effect: { + th: "เลือกการ์ดโปเกมอน[พื้นฐาน]ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด", + id: "Pilih paling banyak 2 lembar Pokémon Basic dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + th: "โจมตีพร้อมกันหมด", + id: "Serbuan Serempak" + }, + + effect: { + th: "เทิร์นก่อนของฝ่ายเรา ถ้าโปเกมอนนี้ใช้ [จัดแถว] ไปแล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 90", + id: "Jika pada giliran sendiri sebelumnya, Pokémon ini telah menggunakan Menyusun Formasi, kerusakan yang diberikan bertambah sejumlah 90." + }, + + damage: "30+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/085.ts b/data-asia/SV/SV7s/085.ts new file mode 100644 index 000000000..db069275a --- /dev/null +++ b/data-asia/SV/SV7s/085.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "กาจิกุมะ พระจันทร์สีเลือด", + id: "Ursaluna Bulan Merah" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + description: { + th: "กาจิกุมะพิเศษตัวนี้ป้องกันตัวด้วยโคลนที่แข็งราวกับเหล็ก และมีตาซ้ายที่สามารถมองเห็นในที่มืดได้", + id: "Ursaluna khusus yang melindungi tubuhnya dengan lumpur sekeras besi dan memiliki mata kiri yang dapat melihat tembus kegelapan." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + th: "กฎเกณฑ์จากประสบการณ์", + id: "Aturan Menurut Pengalaman" + }, + + effect: { + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] ได้สูงสุด 2 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนนี้", + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Pilih paling banyak 2 lembar Energi Dasar {Petarung} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon ini." + } + }], + + attacks: [{ + name: { + th: "แมดไบต์", + id: "Mad Bite" + }, + + effect: { + th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x30", + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Token Kerusakan yang dimiliki Pokémon Bertarung lawan." + }, + + damage: "100+", + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/086.ts b/data-asia/SV/SV7s/086.ts new file mode 100644 index 000000000..8bd8a8f7a --- /dev/null +++ b/data-asia/SV/SV7s/086.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ปีกไล้พสุธา", + id: "Slither Wing" + }, + + illustrator: "Shinji Kanda", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + + description: { + th: "โปเกมอนปริศนาที่มีบางจุดคล้ายคลึงกับสิ่งมีชีวิตที่ถูกเรียกว่าปีกไล้พสุธาในหนังสือเก่าแก่", + id: "Pokémon misterius yang memiliki kemiripan dengan makhluk hidup bernama Slither Wing yang diperkenalkan dalam sebuah buku kuno." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "บดเหล็ก", + id: "Pelumat Besi" + }, + + effect: { + th: "ถ้าบนกระดานฝ่ายตรงข้ามมีโปเกมอน [อนาคต] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 120", + id: "Jika ada Pokémon Futur di Arena lawan, kerusakan yang diberikan bertambah sejumlah 120." + }, + + damage: "20+", + cost: ["Fighting", "Colorless"] + }, { + name: { + th: "สแมชวิง", + id: "Smash Wing" + }, + + effect: { + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 130, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/087.ts b/data-asia/SV/SV7s/087.ts new file mode 100644 index 000000000..478de0b61 --- /dev/null +++ b/data-asia/SV/SV7s/087.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ซูแบท", + id: "Zubat" + }, + + illustrator: "osare", + category: "Pokemon", + hp: 50, + types: ["Darkness"], + + description: { + th: "สำรวจสภาพโดยรอบได้ด้วยคลื่นเสียงความถี่สูงที่ปล่อยออกทางปาก แม้ภายในถ้ำแคบก็สามารถบินไปมาอย่างคล่องแคล่ว", + id: "Zubat mencari tahu kondisi di sekelilingnya menggunakan gelombang ultrasonik yang dikeluarkan dari mulutnya. Pokémon ini dapat terbang berkeliling dengan cekatan di gua yang sempit sekalipun." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "นำทาง", + id: "Menuntun" + }, + + effect: { + th: "เลือกการ์ดซัพพอร์ต 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + id: "Pilih 1 lembar Supporter dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + cost: ["Darkness"] + }, { + name: { + th: "เขี้ยวแห่งความมืด", + id: "Taring Kegelapan" + }, + + damage: 10, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/088.ts b/data-asia/SV/SV7s/088.ts new file mode 100644 index 000000000..32dff51e2 --- /dev/null +++ b/data-asia/SV/SV7s/088.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โกลแบท", + id: "Golbat" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + + description: { + th: "เลือดของสิ่งมีชีวิตคือของโปรด กล่าวกันว่ามีการแบ่งเลือดที่สูบมาได้ให้กับเพื่อนพ้องที่หิวโหยด้วย", + id: "Cairan darah makhluk hidup adalah makanan favoritnya. Kabarnya Golbat kadang juga membagikan darah yang telah diisap kepada sesamanya yang kelaparan." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "บินเร็วจี๋", + id: "Terbang Cepat" + }, + + damage: 30, + cost: ["Darkness"] + }, { + name: { + th: "ดาบทมิฬ", + id: "Pisau Hitam Kelam" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 80, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/089.ts b/data-asia/SV/SV7s/089.ts new file mode 100644 index 000000000..a8cc87bea --- /dev/null +++ b/data-asia/SV/SV7s/089.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โครแบท", + id: "Crobat" + }, + + illustrator: "Nisota Niso", + category: "Pokemon", + hp: 130, + types: ["Darkness"], + + description: { + th: "ขาทั้งสองข้างนั้นกลายสภาพเป็นปีก โฉบบินด้วยความเร็วสูงโดยไม่ส่งเสียง แล้วฝังเขี้ยวลงที่ท้ายทอยของเหยื่อ", + id: "Kedua kakinya berubah menjadi sayap. Crobat terbang dengan kecepatan tinggi tanpa menimbulkan suara lalu menyarangkan taringnya ke tengkuk mangsanya." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + th: "ผู้ใช้เงา", + id: "Utusan Bayangan" + }, + + effect: { + th: "เทิร์นนี้ ถ้านำการ์ด [เทคนิคลับของอันสุ] จากบนมือออกมาใช้แล้ว ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา จั่วการ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 8 ใบ", + id: "Dapat digunakan 1 kali pada giliran sendiri jika pada giliran ini, Teknik Rahasia Janine telah dimainkan dari Kartu Pegangan. Ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 8 lembar." + } + }], + + attacks: [{ + name: { + th: "เขี้ยวมหาพิษ", + id: "Taring Toksik" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ] จำนวนตัวนับแดเมจที่วางด้วยสภาวะ[พิษ]นี้จะเป็น 2 ตัว", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun. Jumlah Token Kerusakan yang diletakkan akibat kondisi Racun ini adalah 2." + }, + + damage: 120, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/090.ts b/data-asia/SV/SV7s/090.ts new file mode 100644 index 000000000..46a38a2d0 --- /dev/null +++ b/data-asia/SV/SV7s/090.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โกคูลิน", + id: "Gulpin" + }, + + illustrator: "Shimaris Yukichi", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + th: "หัวใจและสมองมีขนาดเล็ก ร่างกายส่วนใหญ่เป็นกระเพาะอาหาร มีน้ำย่อยที่ละลายได้ทุกอย่าง", + id: "Gulpin memiliki jantung dan otak yang kecil, serta sebagian besar bagian tubuhnya adalah kantong lambung. Kantong tersebut mengeluarkan asam lambung yang dapat melarutkan apa pun." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "น้ำลายยืด", + id: "Liur" + }, + + damage: 10, + cost: ["Darkness"] + }, { + name: { + th: "ลมหายใจพิษ", + id: "Napas Beracun" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun." + }, + + damage: 30, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/091.ts b/data-asia/SV/SV7s/091.ts new file mode 100644 index 000000000..231aae2f1 --- /dev/null +++ b/data-asia/SV/SV7s/091.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มารุโนม", + id: "Swalot" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 130, + types: ["Darkness"], + + description: { + th: "แม้แต่ยางรถยนต์ก็กลืนได้ในคำเดียว หลั่งของเหลวพิษออกมาจากรูขุมขนในร่างกาย", + id: "Roda ban sekalipun, Swalot akan menelannya bulat-bulat dalam satu teguk. Pokémon ini mengeluarkan cairan tubuh beracun mematikan dari pori-pori tubuhnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "อ้ำคำโต", + id: "Mulut Besar Menutup" + }, + + effect: { + th: "ถ้าจำนวนพลังงานที่ติดอยู่กับโปเกมอนนี้ มากกว่าจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม การโจมตีนี้จะเพิ่มแดเมจอีก 160", + id: "Jika jumlah Energi yang dikenakan pada Pokémon ini lebih banyak dari jumlah Energi yang dikenakan pada Pokémon Bertarung lawan, kerusakan yang diberikan bertambah sejumlah 160." + }, + + damage: "10+", + cost: ["Darkness"] + }, { + name: { + th: "เวนอมฮิต", + id: "Venom Hit" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun." + }, + + damage: 100, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/092.ts b/data-asia/SV/SV7s/092.ts new file mode 100644 index 000000000..d57c4e809 --- /dev/null +++ b/data-asia/SV/SV7s/092.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "แอบโซล", + id: "Absol" + }, + + illustrator: "rika", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + + description: { + th: "วิ่งผ่านทุ่งหญ้าป่าเขาราวกับสายลม เขาทรงคันธนูนั้นไวต่อการรับรู้ถึงลางร้ายแห่งภัยธรรมชาติ", + id: "Absol berlari melintasi padang dan gunung bagaikan angin. Tanduknya yang membusur merasakan pertanda datangnya bencana alam dengan sensitif." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "แบดฟอล", + id: "Bad Fall" + }, + + effect: { + th: "ถ้าบนกระดานฝ่ายเรามีพลังงาน[ความมืด]มากกว่าหรือเท่ากับ 3 ลูก การโจมตีนี้จะเพิ่มแดเมจอีก 50", + id: "Jika ada 3 Energi {Kegelapan} atau lebih di Arena sendiri, kerusakan yang diberikan bertambah sejumlah 50." + }, + + damage: "20+", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/093.ts b/data-asia/SV/SV7s/093.ts new file mode 100644 index 000000000..129f1530a --- /dev/null +++ b/data-asia/SV/SV7s/093.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โซรัว", + id: "Zorua" + }, + + illustrator: "Yuu Nishida", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + th: "แปลงกายเป็นคนหรือโปเกมอนตัวอื่น ซ่อนตัวตนที่แท้จริงเพื่อปกป้องตัวเองจากอันตราย", + id: "Zorua menjelma menjadi manusia atau Pokémon lain. Dengan menyembunyikan identitasnya, Pokémon ini melindungi dirinya dari bahaya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "เหยียบ", + id: "Menginjak" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + th: "ข่วนทวีคูณ", + id: "Cakaran Ganda" + }, + + effect: { + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20", + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "20×", + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/094.ts b/data-asia/SV/SV7s/094.ts new file mode 100644 index 000000000..7e94d61cf --- /dev/null +++ b/data-asia/SV/SV7s/094.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โซโรอาร์ค", + id: "Zoroark" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 120, + types: ["Darkness"], + + description: { + th: "มีพลังที่สามารถหลอกคนจำนวนมากได้พร้อม ๆ กัน จะสร้างภาพลวงตาขึ้นมาเพื่อปกป้องรัง", + id: "Zoroark memiliki kekuatan untuk mengelabui orang banyak secara bersamaan. Pokémon ini memperlihatkan pemandangan ilusi untuk melindungi sarangnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "โจรกรรมลวงตา", + id: "Pembajakan Fantom" + }, + + effect: { + th: "แดเมจจะเท่ากับจำนวน [โปเกมอน【ex】 /【V】] บนกระดานฝ่ายตรงข้าม x60", + id: "Serangan ini memberikan kerusakan sejumlah 60 untuk tiap Pokémon {ex}/{V} di Arena lawan." + }, + + damage: "60×", + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "กรงเล็บฉีกร่าง", + id: "Cakar Penyayat" + }, + + damage: 110, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/095.ts b/data-asia/SV/SV7s/095.ts new file mode 100644 index 000000000..be48ebc09 --- /dev/null +++ b/data-asia/SV/SV7s/095.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โกรอนดะ", + id: "Pangoro" + }, + + illustrator: "KEIICHIRO ITO", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + + description: { + th: "มีนิสัยก้าวร้าว ทำให้ศิโรราบได้ด้วยพละกำลังแขน จิตวิญญาณในการต่อสู้จะลุกโชนเมื่อต่อสู้ตัวต่อตัวกับทาจิฟุซากุมะ", + id: "Pangoro sifatnya kasar dan menggunakan kekuatan lengannya untuk membungkam lawan. Pokémon ini membangkitkan semangat bertarungnya untuk bertarung satu lawan satu dengan Obstagoon." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ดึง", + id: "Menghela" + }, + + effect: { + th: "เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้", + id: "Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung." + }, + + cost: ["Darkness"] + }, { + name: { + th: "อาละวาดไปทั่ว", + id: "Mengamuk" + }, + + effect: { + th: "ทำให้โปเกมอนนี้เป็นสภาวะ[สับสน]", + id: "Ubah kondisi Pokémon ini menjadi Pusing." + }, + + damage: 160, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/096.ts b/data-asia/SV/SV7s/096.ts new file mode 100644 index 000000000..9947c7911 --- /dev/null +++ b/data-asia/SV/SV7s/096.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มาอีกะ", + id: "Inkay" + }, + + illustrator: "Mori Yuu", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + th: "หมุนไปมาพร้อมกับกะพริบร่างเรืองแสง สื่อสารกับพวกพ้องด้วยรูปแบบของแสง", + id: "Inkay berputar sambil mengedipkan tubuh bercahayanya. Pokémon ini menggunakan pola cahaya untuk berkomunikasi dengan temannya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "หนวดซุกซน", + id: "Tentakel Jahil" + }, + + effect: { + th: "ดูการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้าม คืนที่เดิม หากต้องการ สับสำรับการ์ดนั้น", + id: "Lihat 1 kartu dari atas Deck lawan, lalu kembalikan ke posisi semula. Pemain dapat mengocok Deck tersebut." + }, + + cost: ["Colorless"] + }, { + name: { + th: "จิก", + id: "Mematuk" + }, + + damage: 10, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/097.ts b/data-asia/SV/SV7s/097.ts new file mode 100644 index 000000000..9fcec577f --- /dev/null +++ b/data-asia/SV/SV7s/097.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คาลามาเนโร", + id: "Malamar" + }, + + illustrator: "akagi", + category: "Pokemon", + hp: 120, + types: ["Darkness"], + + description: { + th: "ถ้าจ้องมองแสงจากส่วนที่เรืองแสงออกมาจะตกอยู่ในสภาพถูกสะกดจิตทันทีและถูกคาลามาเนโรควบคุมได้", + id: "Siapa yang memandang cahaya pada tubuh bercahaya Malamar akan terhipnotis dan dikendalikan oleh Pokémon ini." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "หนวดสมคบคิด", + id: "Tentakel Persekongkolan" + }, + + effect: { + th: "เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้ หลังจากนั้น ทำแดเมจ 120 กับโปเกมอนที่เพิ่งออกมาใหม่ เทิร์นนี้ ถ้าไม่ได้นำการ์ด [อุบายของซีโรซิก] จากบนมือออกมาใช้ ท่าต่อสู้นี้จะล้มเหลว", + id: "Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, berikan kerusakan sejumlah 120 kepada Pokémon Bertarung yang baru. Jika pada giliran ini, Konspirasi Xerosic tidak dimainkan dari Kartu Pegangan, serangan ini gagal." + }, + + cost: ["Darkness"] + }, { + name: { + th: "โจมตีหมุนวน", + id: "Serangan Berputar" + }, + + damage: 90, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/098.ts b/data-asia/SV/SV7s/098.ts new file mode 100644 index 000000000..654402d44 --- /dev/null +++ b/data-asia/SV/SV7s/098.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อีเวลทอล", + id: "Yveltal" + }, + + illustrator: "SIE NANAHARA", + category: "Pokemon", + hp: 120, + types: ["Darkness"], + + description: { + th: "โปเกมอนในตำนาน เมื่อปีกและขนหางสยายออกกว้างแล้วเปล่งเป็นประกายสีแดง จะสูบพลังชีวิตจากสิ่งมีชีวิตต่าง ๆ", + id: "Yveltal adalah Pokémon legendaris yang menyerap nyawa makhluk hidup saat sayap dan bulu ekornya terentang lebar dan bersinar merah." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "สายลมกัดเซาะ", + id: "Angin Merasuk" + }, + + effect: { + th: "วางตัวนับแดเมจบนโปเกมอนฝ่ายตรงข้ามทุกตัวที่มีตัวนับแดเมจวางอยู่ ตัวละ 2 ตัว", + id: "Letakkan masing-masing sejumlah 2 Token Kerusakan pada semua Pokémon lawan yang memiliki Token Kerusakan." + }, + + cost: ["Darkness"] + }, { + name: { + th: "ลำแสงทำลายล้าง", + id: "Sinar Kehancuran" + }, + + effect: { + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash." + }, + + damage: 100, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/099.ts b/data-asia/SV/SV7s/099.ts new file mode 100644 index 000000000..76c5c6d4c --- /dev/null +++ b/data-asia/SV/SV7s/099.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เบโรบา", + id: "Impidimp" + }, + + illustrator: "Tomokazu Komiya", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + th: "อาศัยอยู่รวมกันเป็นฝูง มักจะกลั่นแกล้งและหลอกลวงกันเองเพื่อฝึกฝีมือ", + id: "Impidimp hidup membentuk kelompok dan saling berbuat usil untuk mengasah kemampuan mereka." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ฝ่ามือตบ", + id: "Tampar" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + th: "กรงเล็บฉีกร่าง", + id: "Cakar Penyayat" + }, + + damage: 40, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/100.ts b/data-asia/SV/SV7s/100.ts new file mode 100644 index 000000000..30b48cd16 --- /dev/null +++ b/data-asia/SV/SV7s/100.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "กิโม", + id: "Morgrem" + }, + + illustrator: "Mékayu", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + + description: { + th: "โปเกมอนที่ดูดซับอารมณ์ด้านลบแล้วเปลี่ยนเป็นพลังงาน เป็นที่นิยมในหมู่คนที่ชอบคิดในแง่ลบ", + id: "Morgrem adalah Pokémon yang mengisap emosi negatif dan menjadikannya sebagai energi. Pokémon ini populer di kalangan orang-orang yang memiliki pikiran negatif." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ตบแรง", + id: "Menepuk" + }, + + damage: 40, + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "เขี้ยวแห่งความมืด", + id: "Taring Kegelapan" + }, + + damage: 70, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/101.ts b/data-asia/SV/SV7s/101.ts new file mode 100644 index 000000000..a7dc404b5 --- /dev/null +++ b/data-asia/SV/SV7s/101.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โอลองเกะ", + id: "Grimmsnarl" + }, + + illustrator: "Kazumasa Yasukuni", + category: "Pokemon", + hp: 170, + types: ["Darkness"], + + description: { + th: "อาศัยอยู่ในป่าลึก แม้ว่าจะวิวัฒนาการจนดูน่าเกรงขาม แต่ก็ไม่เลิกนิสัยทำเรื่องไร้สาระและกลั่นแกล้งคนอยู่ดี", + id: "Grimmsnarl hidup di pedalaman hutan. Pokémon ini tidak pernah berhenti berbuat usil meskipun telah berevolusi dengan baik." + }, + + stage: "Stage2", + + attacks: [{ + name: { + th: "ยั่วยุคว้าหมับ", + id: "Cengkeraman Memancing Emosi" + }, + + effect: { + th: "สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามกับโปเกมอนบนเบนช์ (ฝ่ายตรงข้ามเลือกโปเกมอนที่จะวางบนตำแหน่งต่อสู้) หลังจากนั้น ทำแดเมจ 160 กับโปเกมอนที่เพิ่งออกมาใหม่", + id: "Tukar Pokémon Bertarung lawan dengan Pokémon Cadangan. (Pokémon yang akan dimasukkan ke Arena Bertarung dipilih oleh lawan.) Setelah itu, berikan kerusakan sejumlah 160 kepada Pokémon Bertarung yang baru." + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "กำหมัดชก", + id: "Pukulan Bogem Mentah" + }, + + effect: { + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 160, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/102.ts b/data-asia/SV/SV7s/102.ts new file mode 100644 index 000000000..fc3ed2170 --- /dev/null +++ b/data-asia/SV/SV7s/102.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อี้เนะอินุex", + id: "Okidogi ex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 250, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + th: "พอยซันมัสเซิล", + id: "Poison Muscle" + }, + + effect: { + th: "เลือกการ์ด [พลังงานพื้นฐาน[ความมืด]] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด เมื่อติดแล้ว ทำให้โปเกมอนนี้เป็นสภาวะ[พิษ]", + id: "Pilih paling banyak 2 lembar Energi Dasar {Kegelapan} dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck. Jika dikenakan, ubah kondisi Pokémon ini menjadi Racun." + }, + + cost: ["Colorless"] + }, { + name: { + th: "เครซีเชน", + id: "Crazy Chain" + }, + + effect: { + th: "ถ้าโปเกมอนนี้เป็นสภาวะ[พิษ] การโจมตีนี้จะเพิ่มแดเมจอีก 130", + id: "Jika Pokémon ini mengalami kondisi Racun, kerusakan yang diberikan bertambah sejumlah 130." + }, + + damage: "130+", + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/103.ts b/data-asia/SV/SV7s/103.ts new file mode 100644 index 000000000..cd07f70d2 --- /dev/null +++ b/data-asia/SV/SV7s/103.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มาชิมาชิระex", + id: "Munkidori ex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "ผิดคาด", + id: "Bikin Kecele" + }, + + effect: { + th: "เมื่อโปเกมอนนี้ ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้ามและ[หมดสภาพ]แล้ว ถ้าบนกระดานฝ่ายเรามี [โมโมวาโร่【ex】] อยู่ การ์ดรางวัลที่หยิบได้จะลดลง 1 ใบ", + id: "Jika ada Pecharunt {ex} di Arena sendiri saat Pokémon ini KO karena menerima kerusakan akibat serangan dari Pokémon lawan, Kartu Point yang diambil lawan berkurang 1 lembar." + } + }], + + attacks: [{ + name: { + th: "เดอร์ตี้เฮด", + id: "Dirty Headbutt" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [เดอร์ตี้เฮด] ไม่ได้", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Dirty Headbutt." + }, + + damage: 190, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/104.ts b/data-asia/SV/SV7s/104.ts new file mode 100644 index 000000000..af6559b39 --- /dev/null +++ b/data-asia/SV/SV7s/104.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คิจิคิกิสึex", + id: "Fezandipiti ex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "พลิกวิกฤต", + id: "Kesempatan dalam Kesempitan" + }, + + effect: { + th: "ในเทิร์นก่อนของฝ่ายตรงข้าม ถ้าโปเกมอนฝ่ายเรา[หมดสภาพ] ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา เทิร์นนี้ ถ้าใช้ [พลิกวิกฤต] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้", + id: "Dapat digunakan 1 kali pada giliran sendiri jika pada giliran lawan sebelumnya, ada Pokémon sendiri yang KO. Ambil 3 kartu dari atas Deck sendiri. Jika pada giliran ini, Kesempatan dalam Kesempitan lainnya telah digunakan, Ability ini tidak dapat digunakan." + } + }], + + attacks: [{ + name: { + th: "ครูเอลแอร์โรว์", + id: "Cruel Arrow" + }, + + effect: { + th: "ทำแดเมจ 100 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + id: "Serangan ini memberikan kerusakan sejumlah 100 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/105.ts b/data-asia/SV/SV7s/105.ts new file mode 100644 index 000000000..02badaeaf --- /dev/null +++ b/data-asia/SV/SV7s/105.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โมโมวาโร่ex", + id: "Pecharunt ex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 190, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "โซ่ครอบงำ", + id: "Rantai Dominasi" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกโปเกมอน[ความมืด]บนเบนช์ฝ่ายเรา (ยกเว้น [โมโมวาโร่【ex】]) 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้ หลังจากนั้น ทำให้โปเกมอนใหม่บนตำแหน่งต่อสู้เป็นสภาวะ[พิษ] เทิร์นนี้ ถ้าใช้ [โซ่ครอบงำ] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 Pokémon {Kegelapan} (selain Pecharunt {ex}) di Cadangan sendiri, lalu tukar dengan Pokémon Bertarung. Setelah itu, ubah kondisi Pokémon Bertarung yang baru menjadi Racun. Jika pada giliran ini, Rantai Dominasi lainnya telah digunakan, Ability ini tidak dapat digunakan." + } + }], + + attacks: [{ + name: { + th: "หงุดหงิดระเบิด", + id: "Ledakan Marah-marah" + }, + + effect: { + th: "แดเมจจะเท่ากับจำนวนการ์ดรางวัลที่ฝ่ายตรงข้ามหยิบไปแล้ว x60", + id: "Serangan ini memberikan kerusakan sejumlah 60 untuk tiap lembar Kartu Point yang telah diambil lawan." + }, + + damage: "60×", + cost: ["Darkness", "Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/106.ts b/data-asia/SV/SV7s/106.ts new file mode 100644 index 000000000..c14862e30 --- /dev/null +++ b/data-asia/SV/SV7s/106.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เกียร์", + id: "Klink" + }, + + illustrator: "osare", + category: "Pokemon", + hp: 60, + types: ["Metal"], + + description: { + th: "ร่างทั้งสองมีความคล้ายคลึงกันมากกว่าฝาแฝด หากอยู่กับร่างตัวอื่นจะเข้าขากันได้ไม่ค่อยดีนัก", + id: "Kedua tubuh Pokémon ini lebih dekat daripada saudara kembar sekalipun. Roda gigi dari tubuh Klink lain tidak bisa masuk dengan pas." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ดึงดูด", + id: "Mengambil" + }, + + effect: { + th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา", + id: "Ambil 1 kartu dari atas Deck sendiri." + }, + + cost: ["Colorless"] + }, { + name: { + th: "ลำแสง", + id: "Beam" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/107.ts b/data-asia/SV/SV7s/107.ts new file mode 100644 index 000000000..cceb5d8a2 --- /dev/null +++ b/data-asia/SV/SV7s/107.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "กิเกียร์", + id: "Klang" + }, + + illustrator: "Mina Nakai", + category: "Pokemon", + hp: 90, + types: ["Metal"], + + description: { + th: "เวลาเอาจริงเฟืองด้านนอกของเฟืองใหญ่กับเฟืองเล็กจะประกบกัน ความเร็วในการหมุนจะเพิ่มขึ้นอย่างก้าวกระโดด", + id: "Saat sedang serius, gerigi di sisi luar roda gigi besar dan roda gigi kecil akan saling bertepatan. Kecepatan putar Klang akan meningkat drastis." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ไอออนแท็กเกิล", + id: "Iron Tackle" + }, + + effect: { + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 20 ด้วย", + id: "Pokémon ini juga menerima kerusakan sejumlah 20." + }, + + damage: 60, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/108.ts b/data-asia/SV/SV7s/108.ts new file mode 100644 index 000000000..7f72d513b --- /dev/null +++ b/data-asia/SV/SV7s/108.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "กิกิเกียร์", + id: "Klinklang" + }, + + illustrator: "Tonji Matsuno", + category: "Pokemon", + hp: 140, + types: ["Metal"], + + description: { + th: "โจมตีด้วยกระแสไฟฟ้าแรงสูงจากปลายหนาม สะสมพลังงานจำนวนมากไว้ที่แกนกลางสีแดง", + id: "Klinklang menembakkan listrik yang kuat dari ujung durinya. Inti tubuh merahnya menyimpan banyak energi." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + th: "หมุนวนฉุกเฉิน", + id: "Rotasi Darurat" + }, + + effect: { + th: "ในเทิร์นฝ่ายเรา ถ้าการ์ดนี้อยู่บนมือ และบนกระดานฝ่ายตรงข้ามมีโปเกมอน[ร่าง2] อยู่ ใช้ได้ 1 ครั้ง วางการ์ดนี้บนเบนช์", + id: "Dapat digunakan 1 kali pada giliran sendiri jika kartu ini ada di Kartu Pegangan sendiri dan ada Pokémon Stage 2 di Arena lawan. Masukkan kartu ini ke Cadangan." + } + }], + + attacks: [{ + name: { + th: "ไฮเปอร์บีม", + id: "Hyper Beam" + }, + + effect: { + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด", + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash." + }, + + damage: 130, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/109.ts b/data-asia/SV/SV7s/109.ts new file mode 100644 index 000000000..77b757315 --- /dev/null +++ b/data-asia/SV/SV7s/109.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เกโนเซ็กท์", + id: "Genesect" + }, + + illustrator: "Kazumasa Yasukuni", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + description: { + th: "โปเกมอนแมลงโบราณที่ถูกแก๊งพลาสมาดัดแปลง ปืนใหญ่กลางหลังมีพลังเพิ่มขึ้น", + id: "Pokémon serangga purba yang telah dimodifikasi oleh Tim Plasma. Meriam di punggung Genesect telah diperkuat." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + th: "เอซแคนเซลเลอร์", + id: "Ace Canceler" + }, + + effect: { + th: "ถ้าโปเกมอนนี้มี [ไอเท็มติดโปเกมอน] ติดอยู่ ฝ่ายตรงข้ามไม่สามารถนำการ์ด [【ACE SPEC】] จากบนมือออกมาใช้ได้", + id: "Jika Pokémon ini mengenakan Pokémon Tool, lawan tidak dapat memainkan kartu {ACE SPEC} dari Kartu Pegangan." + } + }], + + attacks: [{ + name: { + th: "แมกเน็ทบลาสต์", + id: "Magnetic Blast" + }, + + damage: 100, + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/110.ts b/data-asia/SV/SV7s/110.ts new file mode 100644 index 000000000..197017e91 --- /dev/null +++ b/data-asia/SV/SV7s/110.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เมลตัน", + id: "Meltan" + }, + + illustrator: "Apios", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + th: "หลอมละลายโลหะแล้วกินเข้าไป ทำให้โลหะเหลวไหลเวียนไปทั่วร่างเพื่อสร้างพลังงานภายในร่างกาย", + id: "Meltan melelehkan logam dan memakannya. Pokémon ini menyirkulasikan logam cair untuk menciptakan energi di dalam tubuhnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ขนของโกโรโกโส", + id: "Mengangkut Rongsokan" + }, + + effect: { + th: "เลือกการ์ด [ไอเท็มติดโปเกมอน] 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + id: "Pilih 1 lembar Pokémon Tool dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + cost: ["Metal"] + }, { + name: { + th: "กระแทก", + id: "Menyeruduk" + }, + + damage: 30, + cost: ["Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/111.ts b/data-asia/SV/SV7s/111.ts new file mode 100644 index 000000000..1176e69dc --- /dev/null +++ b/data-asia/SV/SV7s/111.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เมลเมทัล", + id: "Melmetal" + }, + + illustrator: "Takumi Wada", + category: "Pokemon", + hp: 160, + types: ["Metal"], + + description: { + th: "เมื่อถึงอายุขัย ร่างกายก็จะเริ่มขึ้นสนิมและพังทลายลง แต่สะเก็ดชิ้นเล็ก ๆ ของมันจะฟื้นกลับคืนเป็นเมลตันในไม่ช้า", + id: "Tubuh Melmetal berkarat dan hancur ketika masa hidupnya berakhir. Kepingan kecil yang tersisa akan bangkit kembali menjadi Meltan." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ทุบแหลก", + id: "Pukul Hancur" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "รีโมเดลแอกซ์", + id: "Remodeled Axe" + }, + + effect: { + th: "ก่อนจะทำแดเมจ ทิ้ง [ไอเท็มติดโปเกมอน] ที่ติดอยู่กับโปเกมอนนี้ที่ตำแหน่งทิ้งการ์ด ถ้าทิ้งการ์ดไม่ได้ ท่าต่อสู้นี้จะล้มเหลว", + id: "Sebelum memberikan kerusakan, buang Pokémon Tool yang dikenakan pada Pokémon ini ke Trash. Jika tidak dapat membuangnya ke Trash, serangan ini gagal." + }, + + damage: 250, + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/112.ts b/data-asia/SV/SV7s/112.ts new file mode 100644 index 000000000..597c1274e --- /dev/null +++ b/data-asia/SV/SV7s/112.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โซโด", + id: "Cufant" + }, + + illustrator: "Shinya Mizuno", + category: "Pokemon", + hp: 100, + types: ["Metal"], + + description: { + th: "สามารถยกของที่หนัก 5 ตันได้ ในตอนเช้าจะมุ่งหน้าไปยังถ้ำเป็นฝูงเพื่อหาหินแร่ที่เป็นอาหาร", + id: "Cufant dapat mengangkat barang seberat 5 ton. Saat pagi tiba, Pokémon ini pergi ke gua bersama sesamanya untuk mencari bijih makanannya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "พุ่งเข้าชน", + id: "Serudukan" + }, + + damage: 30, + cost: ["Metal", "Colorless"] + }, { + name: { + th: "ตั้งใจสู้", + id: "Menentang" + }, + + damage: 70, + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/113.ts b/data-asia/SV/SV7s/113.ts new file mode 100644 index 000000000..73f3b6b22 --- /dev/null +++ b/data-asia/SV/SV7s/113.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไดโอโด", + id: "Copperajah" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 200, + types: ["Metal"], + + description: { + th: "มีความหยิ่งทะนงสูงและเอาใจยาก ตัวที่มีผิวหนังสีเขียวสดใสจะเป็นที่เคารพนับถือของพวกพ้อง", + id: "Pokémon ini memiliki harga diri tinggi dan egois. Copperajah yang memiliki kulit berwarna hijau cerah dihormati oleh sesamanya." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "ร่างใหญ่มหึมา", + id: "Tubuh Sangat Besar" + }, + + effect: { + th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนตำแหน่งต่อสู้ ฝ่ายตรงข้ามจะนำการ์ดสเตเดียมจากบนมือออกมาไม่ได้", + id: "Selama Pokémon ini ada di Arena Bertarung, lawan tidak dapat memasukkan Stadium dari Kartu Pegangan." + } + }], + + attacks: [{ + name: { + th: "โนสแลเรียท", + id: "Nose Lariat" + }, + + effect: { + th: "หากต้องการ การโจมตีนี้จะเพิ่มแดเมจอีก 100 เมื่อทำเช่นนั้นแล้ว เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + id: "Pemain dapat membuat kerusakan yang diberikan bertambah sejumlah 100. Jika dilakukan, pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: "130+", + cost: ["Metal", "Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/114.ts b/data-asia/SV/SV7s/114.ts new file mode 100644 index 000000000..2fbec9ebf --- /dev/null +++ b/data-asia/SV/SV7s/114.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ดิวรัลดอน", + id: "Duraludon" + }, + + illustrator: "Takeshi Nakamura", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + description: { + th: "ร่างกายที่เป็นโลหะนั้นทนทานมาก แต่เก็บความร้อน มันจึงต้องระบายความร้อนออกมาทางร่องที่หาง", + id: "Tubuh logamnya kokoh, tetapi panas cenderung menumpuk sehingga ia selalu mengeluarkan panas dari celah ekornya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ตบหนัก", + id: "Hantaman Penuh Tenaga" + }, + + damage: 30, + cost: ["Metal"] + }, { + name: { + th: "เรจจิงแฮมเมอร์", + id: "Raging Hammer" + }, + + effect: { + th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10", + id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini." + }, + + damage: "80+", + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/115.ts b/data-asia/SV/SV7s/115.ts new file mode 100644 index 000000000..f5074a061 --- /dev/null +++ b/data-asia/SV/SV7s/115.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บริดิวรัส", + id: "Archaludon" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + hp: 180, + types: ["Metal"], + + description: { + th: "ขุดรูในภูเขาเพื่อหาอาหาร มันทนทานมาก แม้จะติดอยู่ในอุโมงค์ถล่มก็ไม่สะเทือน", + id: "Pokémon yang mencari makan dengan menggali lubang di dalam gunung. Ia tangguh sehingga terlibat longsor sekalipun bukanlah masalah baginya." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "สะพานเชื่อมเหล็กกล้า", + id: "Jembatan Penghubung Baja" + }, + + effect: { + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ พลังงานสำหรับ[หนี]ของโปเกมอนฝ่ายเราทุกตัวที่มีพลังงาน[โลหะ]ติดอยู่ ทั้งหมดจะหายไป", + id: "Selama Pokémon ini ada di Arena, semua Pokémon sendiri yang mengenakan Energi {Logam} menjadi tidak membutuhkan Energi untuk Mundur." + } + }], + + attacks: [{ + name: { + th: "ไอออนบลัสเตอร์", + id: "Iron Blaster" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 160, + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/116.ts b/data-asia/SV/SV7s/116.ts new file mode 100644 index 000000000..2abad12e9 --- /dev/null +++ b/data-asia/SV/SV7s/116.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โบรรอน", + id: "Varoom" + }, + + illustrator: "HAGIYA Kaoru", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + th: "ร่างที่แท้จริงคือส่วนที่เป็นเหล็กกล้า เกาะติดอยู่กับหินแล้วเปลี่ยนส่วนประกอบนั้นให้เป็นพลังงานที่ใช้ในการขับเคลื่อน", + id: "Tubuh baja Varoom adalah tubuh aslinya. Pokémon ini menempel di batu, mengubah kandungan batu tersebut menjadi energinya, lalu beraktivitas." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "แข็งเกร็ง", + id: "Kaku" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-30]", + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30." + }, + + cost: ["Metal"] + }, { + name: { + th: "กระโดดโหม่ง", + id: "Sundulan Meloncat" + }, + + damage: 20, + cost: ["Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/117.ts b/data-asia/SV/SV7s/117.ts new file mode 100644 index 000000000..2f959083c --- /dev/null +++ b/data-asia/SV/SV7s/117.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มิมิซึซึex", + id: "Orthworm ex" + }, + + illustrator: "PLANETA Yamashita", + category: "Pokemon", + hp: 220, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "เอาคืนตุ้บตั้บ", + id: "Serangan Balik Gedebak-gedebuk" + }, + + effect: { + th: "เมื่อโปเกมอนนี้ ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้าม วางตัวนับแดเมจบนโปเกมอนที่ใช้ท่าต่อสู้ ตามจำนวนพลังงาน[โลหะ]ที่ติดอยู่กับโปเกมอนนี้ x2 ตัว", + id: "Saat Pokémon ini menerima kerusakan akibat serangan dari Pokémon lawan, letakkan 2 Token Kerusakan untuk tiap Energi {Logam} yang dikenakan pada Pokémon ini pada Pokémon yang telah menggunakan serangan." + } + }], + + attacks: [{ + name: { + th: "ปิดกั้นด้วยศิลา", + id: "Segel Batu" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้", + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + damage: 150, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/118.ts b/data-asia/SV/SV7s/118.ts new file mode 100644 index 000000000..62f84f10a --- /dev/null +++ b/data-asia/SV/SV7s/118.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คิบาโกะ", + id: "Axew" + }, + + illustrator: "Orca", + category: "Pokemon", + hp: 70, + types: ["Dragon"], + + description: { + th: "ถ้าเจอรอยกัดที่เป็นเอกลักษณ์ตามหินหรือต้นไม้ แสดงว่าคงมีคิบาโกะอาศัยอยู่แถว ๆ นั้น", + id: "Jika menemukan bekas gigitan yang khas pada batu dan pohon, itu berarti Axew tinggal di dekat sana." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ข่วน", + id: "Mencakar" + }, + + damage: 10, + cost: ["Fighting"] + }, { + name: { + th: "เขี้ยวคม", + id: "Taring Tajam" + }, + + damage: 30, + cost: ["Fighting", "Metal"] + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/119.ts b/data-asia/SV/SV7s/119.ts new file mode 100644 index 000000000..a42f50cd5 --- /dev/null +++ b/data-asia/SV/SV7s/119.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โอโนนโดะ", + id: "Fraxure" + }, + + illustrator: "Uninori", + category: "Pokemon", + hp: 100, + types: ["Dragon"], + + description: { + th: "ใช้เขี้ยวขนาดใหญ่แล่เหยื่ออย่างประณีตเพื่อแยกส่วนที่กินกับส่วนที่เก็บ", + id: "Fraxure menggunakan taring tebalnya untuk memotong daging mangsanya dan memisahkan bagian untuk dimakan dan disimpan." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "บรรยากาศตึงเครียด", + id: "Perasaan Tegang" + }, + + effect: { + th: "โปเกมอนนี้ เมื่อฝ่ายตรงข้ามนำการ์ดไอเท็มหรือการ์ดซัพพอร์ตจากบนมือออกมาใช้ จะไม่ได้รับเอฟเฟกต์นั้น", + id: "Saat lawan memainkan Item atau Supporter dari Kartu Pegangan, Pokémon ini tidak menerima efek dari Item atau Supporter tersebut." + } + }], + + attacks: [{ + name: { + th: "คลื่นมังกร", + id: "Aura Naga" + }, + + effect: { + th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายเราที่ตำแหน่งทิ้งการ์ด", + id: "Buang 1 kartu dari atas Deck sendiri ke Trash." + }, + + damage: 80, + cost: ["Fighting", "Metal"] + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/120.ts b/data-asia/SV/SV7s/120.ts new file mode 100644 index 000000000..069d7a34e --- /dev/null +++ b/data-asia/SV/SV7s/120.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โอโนโนคุส", + id: "Haxorus" + }, + + illustrator: "Tsuyoshi Nagano", + category: "Pokemon", + hp: 170, + types: ["Dragon"], + + description: { + th: "จัดการศัตรูด้วยเขี้ยวอันภาคภูมิ แสนภูมิใจที่เขี้ยวตนคมชนิดที่สามารถตัดผ่าหอคอยเหล็กได้ในทีเดียว", + id: "Haxorus menggunakan taring kebanggaannya untuk mengalahkan musuh. Ia membanggakan ketajaman taringnya yang dapat memotong menara besi dalam satu tebasan." + }, + + stage: "Stage2", + + attacks: [{ + name: { + th: "แอกซ์ดาวน์", + id: "Axe Down" + }, + + effect: { + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมีพลังงานพิเศษติดอยู่ จะทำให้โปเกมอนนั้น[หมดสภาพ]", + id: "Jika Pokémon Bertarung lawan mengenakan Energi Spesial, Pokémon tersebut KO." + }, + + cost: ["Fighting"] + }, { + name: { + th: "คลื่นมังกร", + id: "Aura Naga" + }, + + effect: { + th: "ทิ้งการ์ด 3 ใบจากด้านบนของสำรับการ์ดฝ่ายเราที่ตำแหน่งทิ้งการ์ด", + id: "Buang 3 kartu dari atas Deck sendiri ke Trash." + }, + + damage: 230, + cost: ["Fighting", "Metal"] + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/121.ts b/data-asia/SV/SV7s/121.ts new file mode 100644 index 000000000..1201b2663 --- /dev/null +++ b/data-asia/SV/SV7s/121.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คิวเรม", + id: "Kyurem" + }, + + illustrator: "Shiburingaru", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + + description: { + th: "มีพลังที่เหนือยิ่งกว่าเรชิรัมและเซครอม หากแต่ถูกไอเย็นอุณหภูมิต่ำสุดขั้วผนึกเอาไว้", + id: "Kyurem memiliki kekuatan yang bahkan melampaui Reshiram dan Zekrom, tetapi kekuatannya tersegel oleh hawa dingin bersuhu sangat rendah." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + th: "แอนติพลาสมา", + id: "Anti Plasma" + }, + + effect: { + th: "ถ้าบนตำแหน่งทิ้งการ์ดฝ่ายตรงข้าม มีการ์ดที่มีคำว่า [อโครมา] บนชื่ออยู่ พลังงานสำหรับใช้ [ไตรฟรอสต์] ของโปเกมอนนี้ จะเป็นพลังงาน[ไร้สี] 1 ลูก", + id: "Jika ada kartu yang pada namanya terdapat kata Colress di Trash lawan, Energi yang dibutuhkan oleh Pokémon ini untuk menggunakan Tri Frost menjadi 1 Energi {Bening}." + } + }], + + attacks: [{ + name: { + th: "ไตรฟรอสต์", + id: "Tri Frost" + }, + + effect: { + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ทั้งหมดที่ตำแหน่งทิ้งการ์ด โปเกมอนฝ่ายตรงข้าม 3 ตัว จะได้รับแดเมจตัวละ 110 {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash, serangan ini memberikan kerusakan masing-masing sejumlah 110 kepada 3 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + cost: ["Water", "Water", "Metal", "Metal", "Colorless"] + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/122.ts b/data-asia/SV/SV7s/122.ts new file mode 100644 index 000000000..699e1dbeb --- /dev/null +++ b/data-asia/SV/SV7s/122.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ฟ้าคะนองคลั่ง", + id: "Raging Bolt" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + + description: { + th: "ว่ากันว่า มันจะเผารอบ ๆ ให้เป็นจุณด้วยสายฟ้าที่ปล่อยออกมาจากขนตามร่างกาย ไม่มีใครรู้รายละเอียดเกี่ยวกับมัน", + id: "Konon ia membakar habis sekeliling dengan petir yang dilepaskan dari bulu tubuhnya. Rinciannya tidak diketahui." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "พายุสายฟ้าฟาด", + id: "Badai Sambaran Petir" + }, + + effect: { + th: "ทำแดเมจกับโปเกมอนฝ่ายตรงข้าม 1 ตัว เท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนนี้ x30 {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + id: "Serangan ini memberikan kerusakan sejumlah 30 kepada 1 Pokémon lawan untuk tiap Energi yang dikenakan pada Pokémon ini. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + cost: ["Lightning", "Fighting"] + }, { + name: { + th: "หัวมังกร", + id: "Sundulan Naga" + }, + + damage: 130, + cost: ["Lightning", "Fighting", "Colorless"] + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/123.ts b/data-asia/SV/SV7s/123.ts new file mode 100644 index 000000000..528279f73 --- /dev/null +++ b/data-asia/SV/SV7s/123.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เนียส", + id: "Meowth" + }, + + illustrator: "sui", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + th: "ชอบของที่ส่องแสงเป็นประกายมาก พอเจอของเปล่งประกายแล้วไม่รู้ทำไมเหรียญบนหน้าผากถึงส่องแสงแวววาว", + id: "Meowth sangat menyukai benda-benda berkilau. Entah kenapa koin di keningnya ikut bercahaya ketika ia menemukan benda berkilau." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ข่วนแหลก", + id: "Cakaran Kacau" + }, + + effect: { + th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20", + id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "20×", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/124.ts b/data-asia/SV/SV7s/124.ts new file mode 100644 index 000000000..093d1a132 --- /dev/null +++ b/data-asia/SV/SV7s/124.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เปอร์เซียน", + id: "Persian" + }, + + illustrator: "NC Empire", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + description: { + th: "ระวังตอนอารมณ์รุนแรงจนตั้งหางตรงให้ดี เป็นสัญญาณบอกว่ามันกำลังจะกระโจนเข้ากัด", + id: "Persian memiliki sifat yang kasar. Hati-hati jika ekor Pokémon ini berdiri tegak. Itu adalah pertanda ia akan menerjang dan menggigitmu." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ข่วนแหลก", + id: "Cakaran Kacau" + }, + + effect: { + th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x50", + id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 50 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "50×", + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "สแลชคลอว์", + id: "Cakar Penebas" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/125.ts b/data-asia/SV/SV7s/125.ts new file mode 100644 index 000000000..83412be61 --- /dev/null +++ b/data-asia/SV/SV7s/125.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อีวุย", + id: "Eevee" + }, + + illustrator: "Susumu Maeya", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + th: "มีหน่วยพันธุกรรมที่ผิดปกติ รังสีจากหินทำให้ร่างกายกลายพันธุ์อย่างฉับพลัน", + id: "Eevee memiliki susunan genetik yang tidak teratur. Tubuhnya akan bermutasi ketika terkena radiasi yang dikeluarkan batu elemen." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "คัลเลอร์ฟูลแคช", + id: "Colorful Catch" + }, + + effect: { + th: "เลือกการ์ดพลังงานพื้นฐานที่แต่ละใบต่างประเภทกันได้สูงสุด 3 ใบ จากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + id: "Pilih paling banyak 3 lembar Energi Dasar yang masing-masing berbeda tipenya dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + th: "พุ่งหัวชน", + id: "Tandukan Kepala" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/126.ts b/data-asia/SV/SV7s/126.ts new file mode 100644 index 000000000..6b9b1ba87 --- /dev/null +++ b/data-asia/SV/SV7s/126.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โฮโฮ", + id: "Hoothoot" + }, + + illustrator: "Yukihiro Tada", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + th: "เพราะบอกเวลาได้อย่างเที่ยงตรง จึงมีดินแดนที่เชื่อว่ามันเป็นเทพแห่งปัญญาผู้รู้ซึ้งถึงสัจจะของโลก", + id: "Dikarenakan ia dapat memberitahukan waktu dengan tepat, terdapat negara yang memuja Pokémon ini sebagai Dewa Kebijaksanaan yang maha tahu tentang kebenaran dunia." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ตีสามครั้ง", + id: "Menusuk Tiga Kali" + }, + + effect: { + th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10", + id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "10×", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/127.ts b/data-asia/SV/SV7s/127.ts new file mode 100644 index 000000000..15f516eff --- /dev/null +++ b/data-asia/SV/SV7s/127.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โยรุโนะซึคุ", + id: "Noctowl" + }, + + illustrator: "matazo", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + description: { + th: "เพราะปีกที่อ่อนนุ่มมากทำให้ไม่เกิดเสียงในยามที่บิน จึงแอบเข้าใกล้เหยื่อได้โดยที่เหยื่อไม่รู้ตัว", + id: "Karena sayapnya yang sangat lembut tidak mengeluarkan suara ketika terbang, ia dapat mendekati mangsanya dengan diam-diam." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "ค้นหาอัญมณี", + id: "Mencari Permata" + }, + + effect: { + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ถ้าบนกระดานฝ่ายเรามีโปเกมอน [เทรัสตัล] อยู่ ใช้ได้ 1 ครั้ง เลือกการ์ดเทรนเนอร์ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + id: "Dapat digunakan 1 kali pada giliran sendiri jika ada Pokémon Terastal di Arena sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Pilih paling banyak 2 lembar Trainer dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + } + }], + + attacks: [{ + name: { + th: "สปีดวิง", + id: "Speed Wing" + }, + + damage: 60, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/128.ts b/data-asia/SV/SV7s/128.ts new file mode 100644 index 000000000..3972075b5 --- /dev/null +++ b/data-asia/SV/SV7s/128.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เนียรุมา", + id: "Glameow" + }, + + illustrator: "Yuriko Akase", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + th: "พอไม่พอใจปุ๊บก็จะกางเล็บออกมา แต่นิสัยที่บางครั้งจะร้องครางในลำคอเพื่อออดอ้อนกลับเป็นที่นิยมในคนบางกลุ่ม", + id: "Glameow mencakar jika tidak senang, tetapi kadang mendengkur dan bersifat manja sehingga sebagian orang sangat menyukainya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "จับแขวน", + id: "Mengait" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/129.ts b/data-asia/SV/SV7s/129.ts new file mode 100644 index 000000000..47510fb1e --- /dev/null +++ b/data-asia/SV/SV7s/129.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บูเนียตโตะ", + id: "Purugly" + }, + + illustrator: "Saboteri", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + + description: { + th: "ถ้าที่อยู่ของโปเกมอนอื่นอยู่สบาย ก็จะยึดมาเป็นที่อยู่ของตน", + id: "Meskipun itu tempat tinggal Pokémon lain, jika tempatnya nyaman, Purugly akan menduduki dan menjadikan tempat itu sebagai tempat tinggalnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "เหมียวกลิ้ง", + id: "Dengkur Meong" + }, + + effect: { + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจและเอฟเฟกต์ของท่าต่อสู้", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan dan efek akibat serangan." + }, + + damage: 80, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/130.ts b/data-asia/SV/SV7s/130.ts new file mode 100644 index 000000000..631ff5fb9 --- /dev/null +++ b/data-asia/SV/SV7s/130.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "สปินโรตอม", + id: "Rotom Kipas" + }, + + illustrator: "Toshinao Aoki", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + th: "เครื่องใช้ไฟฟ้าในครัวเรือนที่โรตอมสามารถเข้าไปได้มีหลายชิ้น แต่เครื่องใช้ไฟฟ้าชิ้นแรกที่ได้รับการพัฒนาคือพัดลม", + id: "Terdapat beberapa perabotan elektronik yang dapat dimasuki Rotom, namun kipas angin adalah perabotan yang paling pertama dikembangkan." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + th: "แฟนคอล", + id: "Fan Call" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นแรกสุดของฝ่ายเราเท่านั้น เลือกการ์ดโปเกมอน[ไร้สี]ที่มี HP น้อยกว่าหรือเท่ากับ [100] ได้สูงสุด 3 ใบ จากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด เทิร์นนี้ ถ้าใช้ [แฟนคอล] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้", + id: "Hanya dapat digunakan 1 kali pada giliran pertama sendiri. Pilih paling banyak 3 lembar Pokémon {Bening} dengan HP 100 atau kurang dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck. Jika pada giliran ini, Fan Call lainnya telah digunakan, Ability ini tidak dapat digunakan." + } + }], + + attacks: [{ + name: { + th: "ลงจอดประจัญบาน", + id: "Pendaratan Menyerang" + }, + + effect: { + th: "ถ้าไม่มีการ์ดสเตเดียมอยู่บนกระดาน ท่าต่อสู้นี้จะล้มเหลว", + id: "Jika tidak ada Stadium di Arena, serangan ini gagal." + }, + + damage: 70, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/131.ts b/data-asia/SV/SV7s/131.ts new file mode 100644 index 000000000..e220fabf8 --- /dev/null +++ b/data-asia/SV/SV7s/131.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บัฟฟรอน", + id: "Bouffalant" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + description: { + th: "เพียงแค่พุ่งหัวชนก็สามารถบดทำลายรถยนต์ได้ ยิ่งมีขนที่หัวมากก็ยิ่งได้รับการยอมรับจากพวกพ้องในฝูง", + id: "Bouffalant dapat menghancurkan mobil cukup dengan serudukan kepalanya. Makin besar rambut di kepalanya, makin tinggi pula posisinya di antara kelompoknya." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + th: "เคอร์ลีวอลล์", + id: "Curly Wall" + }, + + effect: { + th: "ตราบใดที่โปเกมอนนี้และ [บัฟฟรอน] ตัวอื่นของฝ่ายเรายังอยู่ แดเมจของท่าต่อสู้ที่โปเกมอน[พื้นฐาน]ประเภท[ไร้สี]ฝ่ายเราทุกตัว จะได้รับจากโปเกมอนฝ่ายตรงข้ามจะถูก [-60] แม้จะมีโปเกมอนที่มีความสามารถนี้กี่ตัวก็ตาม เอฟเฟกต์นี้จะไม่เกิดผลซ้ำ", + id: "Selama Pokémon ini dan Bouffalant sendiri lainnya ada di Arena, kerusakan akibat serangan dari Pokémon lawan yang diterima semua Pokémon Basic tipe {Bening} sendiri berkurang sejumlah 60. Efek ini tidak berlaku kelipatan meskipun ada Pokémon lain yang memiliki Ability yang sama." + } + }], + + attacks: [{ + name: { + th: "พลังแฝง", + id: "Kekuatan Laten" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 130, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/132.ts b/data-asia/SV/SV7s/132.ts new file mode 100644 index 000000000..1e6cb4444 --- /dev/null +++ b/data-asia/SV/SV7s/132.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ทอร์เนลอส", + id: "Tornadus" + }, + + illustrator: "Uninori", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + description: { + th: "ส่วนล่างของร่างกายมีกลุ่มพลังงานที่ดูเหมือนก้อนเมฆปกคลุมอยู่ บินบนท้องฟ้าด้วยความเร็ว 300 กิโลเมตรต่อชั่วโมง", + id: "Bagian bawah tubuh Tornadus diselimuti tubuh energi seperti awan. Pokémon ini terbang di langit dengan kecepatan 300 km/jam." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "กำปั้น", + id: "Kepalan Tinju" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "กำแพงลมพายุ", + id: "Barier Badai Angin" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-50]", + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 50." + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/133.ts b/data-asia/SV/SV7s/133.ts new file mode 100644 index 000000000..9f4ce8006 --- /dev/null +++ b/data-asia/SV/SV7s/133.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ยายาโคมะ", + id: "Fletchling" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + th: "อาศัยอยู่ตามทุ่งหญ้าป่าเขาและในเมือง ตะลุมบอนกับอิคิริงโกะเพื่อแย่งชิงอาณาเขตในเมือง", + id: "Fletchling hidup di padang, gunung, atau di kota. Terjadi pertikaian besar di kota ketika Pokémon ini bertarung dengan Squawkabilly untuk memperebutkan wilayah teritorial." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ส่งกลับไป", + id: "Kirim Balik" + }, + + effect: { + th: "สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามกับโปเกมอนบนเบนช์ {ฝ่ายตรงข้ามเลือกโปเกมอนที่จะวางบนตำแหน่งต่อสู้}", + id: "Tukar Pokémon Bertarung lawan dengan Pokémon Cadangan. [Pokémon yang akan dimasukkan ke Arena Bertarung dipilih oleh lawan.]" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/134.ts b/data-asia/SV/SV7s/134.ts new file mode 100644 index 000000000..aa4680de8 --- /dev/null +++ b/data-asia/SV/SV7s/134.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ฮิโนยาโคมะ", + id: "Fletchinder" + }, + + illustrator: "Julie Hang", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + description: { + th: "ครอบครองอาณาเขตที่มีรัศมีราว 2-3 กิโลเมตร จะไม่ยกโทษให้กับโปเกมอนนกที่รุกล้ำเข้ามาในอาณาเขตของตน", + id: "Fletchinder memiliki wilayah teritorial berjarak radius 2–3 km. Pokémon ini tanpa ampun menyerbu Pokémon burung yang memasuki wilayah teritorialnya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "บินเร็วจี๋", + id: "Terbang Cepat" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/135.ts b/data-asia/SV/SV7s/135.ts new file mode 100644 index 000000000..520d72f91 --- /dev/null +++ b/data-asia/SV/SV7s/135.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไฟร์แอโรว์", + id: "Talonflame" + }, + + illustrator: "Nurikabe", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + + description: { + th: "ถ้าตื่นเต้นจะมีประกายไฟพ่นออกมาจากระหว่างขน เพราะขนไม่ติดไฟเลยถูกเอาไปทำวัสดุป้องกันไฟ", + id: "Jika semangatnya bergejolak, Talonflame mengembuskan bubuk api melalui celah bulunya. Bulunya yang tidak terbakar dimanfaatkan sebagai material anti api." + }, + + stage: "Stage2", + + attacks: [{ + name: { + th: "แอโรเชส", + id: "Aero Chase" + }, + + effect: { + th: "ถ้าพลังงานสำหรับ[หนี]ของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมีมากกว่าหรือเท่ากับ 2 ลูก การโจมตีนี้จะเพิ่มแดเมจอีก 110", + id: "Kerusakan yang diberikan bertambah sejumlah 110 jika Energi yang dibutuhkan oleh Pokémon Bertarung lawan untuk Mundur adalah 2 atau lebih." + }, + + damage: "110+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/136.ts b/data-asia/SV/SV7s/136.ts new file mode 100644 index 000000000..3f83b91ee --- /dev/null +++ b/data-asia/SV/SV7s/136.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ทริมเมียน", + id: "Furfrou" + }, + + illustrator: "Shinya Komatsu", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + description: { + th: "หากตัดแต่งขนที่ยุ่งเหยิงของมัน นอกจากรูปลักษณ์ภายนอกจะดูสง่างามขึ้นแล้ว ความคล่องตัวยังสูงขึ้นอีกด้วย", + id: "Jika memangkas bulu Furfrou yang berantakan, bukan hanya wujudnya yang menjadi cantik, tetapi kecekatannya juga menjadi makin bagus." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "เอนเนอร์จี้แอสซิสต์", + id: "Energy Assist" + }, + + effect: { + th: "เลือกการ์ดพลังงานพื้นฐาน 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนบนเบนช์", + id: "Pilih 1 lembar Energi Dasar dari Trash sendiri, lalu kenakan pada Pokémon Cadangan." + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/137.ts b/data-asia/SV/SV7s/137.ts new file mode 100644 index 000000000..827769e19 --- /dev/null +++ b/data-asia/SV/SV7s/137.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "นุยโคกุมะ", + id: "Stufful" + }, + + illustrator: "ryoma uratsuka", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + th: "แนวขนฟูนุ่มรู้สึกสบายอย่างยิ่งเมื่อสัมผัส แต่ถ้าเผลอไปจับจะถูกโจมตีกลับอย่างรุนแรง", + id: "Bulu Stufful yang lembut sangat enak untuk disentuh, tetapi jika tidak hati-hati saat menyentuhnya, mungkin ia akan melawan dan melukaimu." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "พุ่งเข้าใส่", + id: "Menerjang" + }, + + effect: { + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย", + id: "Pokémon ini juga menerima kerusakan sejumlah 10." + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/138.ts b/data-asia/SV/SV7s/138.ts new file mode 100644 index 000000000..4a65c5af0 --- /dev/null +++ b/data-asia/SV/SV7s/138.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คิเทรุกุมะ", + id: "Bewear" + }, + + illustrator: "Takeshi Nakamura", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + description: { + th: "เมื่อยอมรับเป็นพวกพ้อง จะกอดรัดเพื่อแสดงความรัก แต่อันตรายเพราะกระดูกอาจแหลกเป็นผงได้", + id: "Jika Bewear mengakui seseorang sebagai teman, ia akan memeluknya sebagai ungkapan kasih sayang. Akan tetapi, pelukannya sangat berbahaya karena dapat menghancurkan tulangmu." + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "พาวเวอร์ชาร์จ", + id: "Power Charge" + }, + + effect: { + th: "เลือกการ์ดพลังงานพื้นฐาน 1 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด", + id: "Pilih 1 lembar Energi Dasar dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck." + }, + + damage: 30, + cost: ["Colorless"] + }, { + name: { + th: "ตบหนัก", + id: "Hantaman Penuh Tenaga" + }, + + damage: 130, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/139.ts b/data-asia/SV/SV7s/139.ts new file mode 100644 index 000000000..cb711d93d --- /dev/null +++ b/data-asia/SV/SV7s/139.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "วูลู", + id: "Wooloo" + }, + + illustrator: "Wintr Wandr", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + th: "เส้นขนที่หยิกมีความสามารถในการรองรับการกระแทกสูง ต่อให้ตกจากหน้าผาก็ไม่สะทกสะท้าน", + id: "Bulu Wooloo yang bergelombang menjadi bantalan yang bagus sehingga jatuh dari tebing pun tidak masalah baginya." + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ชนทลาย", + id: "Meruntuhkan" + }, + + effect: { + th: "หากต้องการ ทิ้งการ์ดสเตเดียมที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ด", + id: "Pemain dapat membuang Stadium yang ada di Arena ke Trash." + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/140.ts b/data-asia/SV/SV7s/140.ts new file mode 100644 index 000000000..8b629bfc6 --- /dev/null +++ b/data-asia/SV/SV7s/140.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไบวูลู", + id: "Dubwool" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + description: { + th: "พรมที่ถักจากขนที่มีความยืดหยุ่น เมื่อขึ้นไปจะเด้งได้เหมือนแทรมโพลีน", + id: "Karpet yang ditenun menggunakan bulu Dubwool elastis bagaikan trampolin, sehingga yang menaiki karpet tersebut dapat lompat-lompat memantul." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "ขนอ่อนนุ่ม", + id: "Wol Lembut" + }, + + effect: { + th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-30]", + id: "Kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30." + } + }], + + attacks: [{ + name: { + th: "ชนทลาย", + id: "Meruntuhkan" + }, + + effect: { + th: "หากต้องการ ทิ้งการ์ดสเตเดียมที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ด", + id: "Pemain dapat membuang Stadium yang ada di Arena ke Trash." + }, + + damage: 70, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/141.ts b/data-asia/SV/SV7s/141.ts new file mode 100644 index 000000000..886f5a917 --- /dev/null +++ b/data-asia/SV/SV7s/141.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เทราปากอสex", + id: "Terapagos ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + th: "ยูเนียนบีต", + id: "Union Beat" + }, + + effect: { + th: "ท่าต่อสู้นี้ ไม่สามารถใช้ได้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเล่นทีหลัง แดเมจจะเท่ากับจำนวนโปเกมอนบนเบนช์ฝ่ายเรา x30", + id: "Serangan ini tidak dapat digunakan pada giliran pertama Pemain Kedua. Serangan ini memberikan kerusakan sejumlah 30 untuk tiap Pokémon Cadangan sendiri." + }, + + damage: "30×", + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "คราวน์โอปอล", + id: "Crown Opal" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[พื้นฐาน] (ยกเว้นโปเกมอน[ไร้สี])", + id: "Pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon Basic (selain Pokémon {Bening})." + }, + + damage: 180, + cost: ["Grass", "Water", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/142.ts b/data-asia/SV/SV7s/142.ts new file mode 100644 index 000000000..b7ccf345f --- /dev/null +++ b/data-asia/SV/SV7s/142.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ทรัมเป็ตแก้ว", + id: "Terompet Kaca" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + th: "การ์ดนี้ จะใช้ได้แค่ตอนที่บนกระดานฝ่ายเรามีโปเกมอน [เทรัสตัล] เลือกโปเกมอน[ไร้สี]บนเบนช์ฝ่ายเราได้สูงสุด 2 ตัว นำการ์ดพลังงานพื้นฐานจากตำแหน่งทิ้งการ์ดมาติดตัวละ 1 ใบ", + id: "Kartu ini hanya dapat digunakan saat ada Pokémon Terastal di Arena sendiri. Pilih paling banyak 2 Pokémon {Bening} di Cadangan sendiri, lalu kenakan Energi Dasar masing-masing 1 lembar dari Trash." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/143.ts b/data-asia/SV/SV7s/143.ts new file mode 100644 index 000000000..adc83fbdd --- /dev/null +++ b/data-asia/SV/SV7s/143.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ลำแสงมหาภัย", + id: "Sinar Berbahaya" + }, + + illustrator: "inose yukie", + category: "Trainer", + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]และ[สับสน]", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar dan Pusing." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/144.ts b/data-asia/SV/SV7s/144.ts new file mode 100644 index 000000000..bafa79a1b --- /dev/null +++ b/data-asia/SV/SV7s/144.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ฟอสซิลรากเก่าแก่", + id: "Fosil Akar Usang‌" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + th: "การ์ดนี้ สามารถวางบนกระดานได้ เทียบเท่ากับโปเกมอน[พื้นฐาน]ประเภท[ไร้สี]ที่มี HP 60 การ์ดนี้ จะไม่เป็นสภาวะผิดปกติ และจะหนีไม่ได้ ถ้าอยู่ภายในเทิร์นฝ่ายเรา จะทิ้งการ์ดนี้ที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ดได้", + id: "Kartu ini dapat dimasukkan ke Arena sebagai Pokémon Basic tipe {Bening} dengan HP sejumlah 60. Kartu ini tidak akan menjadi Kondisi Khusus dan tidak dapat Mundur. Pada giliran sendiri, kartu ini yang ada di Arena dapat dibuang ke Trash." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/145.ts b/data-asia/SV/SV7s/145.ts new file mode 100644 index 000000000..1d18052e9 --- /dev/null +++ b/data-asia/SV/SV7s/145.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ฟอสซิลเปลือกเก่าแก่", + id: "Fosil Penutup Usang‌" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + th: "การ์ดนี้ สามารถวางบนกระดานได้ เทียบเท่ากับโปเกมอน[พื้นฐาน]ประเภท[ไร้สี]ที่มี HP 60 การ์ดนี้ จะไม่เป็นสภาวะผิดปกติ และจะหนีไม่ได้ ถ้าอยู่ภายในเทิร์นฝ่ายเรา จะทิ้งการ์ดนี้ที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ดได้", + id: "Kartu ini dapat dimasukkan ke Arena sebagai Pokémon Basic tipe {Bening} dengan HP sejumlah 60. Kartu ini tidak akan menjadi Kondisi Khusus dan tidak dapat Mundur. Pada giliran sendiri, kartu ini yang ada di Arena dapat dibuang ke Trash." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/146.ts b/data-asia/SV/SV7s/146.ts new file mode 100644 index 000000000..6ffb99637 --- /dev/null +++ b/data-asia/SV/SV7s/146.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โปเกไวทัล A", + id: "Poké Vital A" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเรา 1 ตัว [150] การ์ดนี้ ตราบใดที่ยังอยู่บนตำแหน่งทิ้งการ์ด จะนำขึ้นมือไม่ได้ และใส่กลับไปในสำรับการ์ดไม่ได้", + id: "Pulihkan HP 1 Pokémon sendiri sejumlah 150. Selama kartu ini ada di Trash, kartu ini tidak dapat ditambahkan ke Kartu Pegangan dan tidak dapat dikembalikan ke Deck." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/147.ts b/data-asia/SV/SV7s/147.ts new file mode 100644 index 000000000..b45715f5b --- /dev/null +++ b/data-asia/SV/SV7s/147.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เปลหามยามราตรี", + id: "Tandu Malam‌" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + th: "เลือกการ์ดโปเกมอนหรือการ์ดพลังงานพื้นฐาน 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ", + id: "Pilih 1 lembar Pokémon atau Energi Dasar dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/148.ts b/data-asia/SV/SV7s/148.ts new file mode 100644 index 000000000..3d8888dd9 --- /dev/null +++ b/data-asia/SV/SV7s/148.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ผลอูตัน", + id: "Beri Payapa‌" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + th: "เมื่อโปเกมอนที่ติดการ์ดนี้อยู่ ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[พลังจิต]ฝ่ายตรงข้าม แดเมจนั้นจะถูก [-60] ทิ้งการ์ดนี้ที่ตำแหน่งทิ้งการ์ด", + id: "Saat Pokémon yang mengenakan kartu ini menerima kerusakan akibat serangan dari Pokémon {Psychic} lawan, kerusakan tersebut berkurang sejumlah 60, lalu buang kartu ini ke Trash." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/149.ts b/data-asia/SV/SV7s/149.ts new file mode 100644 index 000000000..d0cb1c6b4 --- /dev/null +++ b/data-asia/SV/SV7s/149.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ผลอ็อกคา", + id: "Beri Occa‌" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + th: "เมื่อโปเกมอนที่ติดการ์ดนี้อยู่ ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[ไฟ]ฝ่ายตรงข้าม แดเมจนั้นจะถูก [-60] ทิ้งการ์ดนี้ที่ตำแหน่งทิ้งการ์ด", + id: "Saat Pokémon yang mengenakan kartu ini menerima kerusakan akibat serangan dari Pokémon {Api} lawan, kerusakan tersebut berkurang sejumlah 60, lalu buang kartu ini ke Trash." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/150.ts b/data-asia/SV/SV7s/150.ts new file mode 100644 index 000000000..22fc6ac21 --- /dev/null +++ b/data-asia/SV/SV7s/150.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ผลึกระยิบระยับ", + id: "Kristal Gemerlap‌" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + th: "เมื่อโปเกมอน [เทรัสตัล] ที่ติดการ์ดนี้อยู่จะใช้ท่าต่อสู้ พลังงานสำหรับใช้ท่าต่อสู้นั้น จะลดลง 1 ลูก (พลังงานที่ลดลงจะเป็นประเภทไหนก็ได้)", + id: "Saat Pokémon Terastal yang mengenakan kartu ini menggunakan serangan, Energi yang dibutuhkan untuk menggunakan serangan tersebut berkurang 1. (Dapat memilih Energi tipe apa pun sebagai Energi yang berkurang.)" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/151.ts b/data-asia/SV/SV7s/151.ts new file mode 100644 index 000000000..62de557f9 --- /dev/null +++ b/data-asia/SV/SV7s/151.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โมจิอันทุ", + id: "Moci Rantai‌" + }, + + illustrator: "5ban Graphics", + category: "Trainer", + + effect: { + th: "แดเมจของท่าต่อสู้ที่โปเกมอนที่เป็นสภาวะ[พิษ]ที่ติดการ์ดนี้อยู่ ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+40]", + id: "Kerusakan akibat serangan yang digunakan oleh Pokémon yang mengalami kondisi Racun dan mengenakan kartu ini kepada Pokémon Bertarung lawan bertambah sejumlah 40." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/152.ts b/data-asia/SV/SV7s/152.ts new file mode 100644 index 000000000..85524cbc6 --- /dev/null +++ b/data-asia/SV/SV7s/152.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ก้อนแรงดึงดูด", + id: "Manik Gravitasi‌" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + th: "ตราบใดที่โปเกมอนที่ติดการ์ดนี้อยู่ยังอยู่บนตำแหน่งต่อสู้ พลังงานสำหรับ[หนี]ของโปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่าย แต่ละตัวจะเพิ่มขึ้น 1 ลูก", + id: "Selama Pokémon yang mengenakan kartu ini ada di Arena Bertarung, Energi yang dibutuhkan oleh Pokémon Bertarung kedua pemain untuk Mundur masing-masing bertambah 1." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/153.ts b/data-asia/SV/SV7s/153.ts new file mode 100644 index 000000000..b8ea39d44 --- /dev/null +++ b/data-asia/SV/SV7s/153.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "นาฬิกาทรายแห่งพลัง", + id: "Jam Pasir Kekuatan‌" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + th: "เมื่อจบเทิร์นฝ่ายเรา ถ้าโปเกมอนที่ติดการ์ดนี้อยู่อยู่บนตำแหน่งต่อสู้ จะเลือกการ์ดพลังงานพื้นฐาน 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนนั้นก็ได้", + id: "Pada akhir giliran sendiri, jika Pokémon yang mengenakan kartu ini ada di Arena Bertarung, pemain dapat memilih 1 lembar Energi Dasar dari Trash sendiri, lalu mengenakannya pada Pokémon tersebut." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/154.ts b/data-asia/SV/SV7s/154.ts new file mode 100644 index 000000000..6856e9552 --- /dev/null +++ b/data-asia/SV/SV7s/154.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ดีลักซ์บอมบ์", + id: "Deluxe Bomb‌" + }, + + illustrator: "inose yukie", + category: "Trainer", + + effect: { + th: "เมื่อโปเกมอนที่ติดการ์ดนี้ อยู่บนตำแหน่งต่อสู้และได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้าม วางตัวนับแดเมจ 12 ตัวบนโปเกมอนที่ใช้ท่าต่อสู้ หลังจากนั้น ทิ้งการ์ดนี้ที่ตำแหน่งทิ้งการ์ด", + id: "Saat Pokémon yang mengenakan kartu ini ada di Arena Bertarung dan menerima kerusakan akibat serangan dari Pokémon lawan, letakkan 12 Token Kerusakan pada Pokémon yang telah menggunakan serangan. Setelah itu, buang kartu ini ke Trash." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/155.ts b/data-asia/SV/SV7s/155.ts new file mode 100644 index 000000000..22f33769c --- /dev/null +++ b/data-asia/SV/SV7s/155.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อาคามัตสึ", + id: "Akamatsu‌" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + th: "เลือกการ์ดพลังงานพื้นฐานที่แต่ละใบต่างประเภทกันได้สูงสุด 2 ใบ จากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำใบใดใบหนึ่ง 1 ใบขึ้นมือ ติดการ์ดพลังงานที่เหลือที่โปเกมอนฝ่ายเรา แล้วสับสำรับการ์ด", + id: "Pilih paling banyak 2 lembar Energi Dasar yang masing-masing berbeda tipenya dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan salah satu ke Kartu Pegangan dan kenakan sisa Energi pada Pokémon sendiri. Kemudian, kocok Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/156.ts b/data-asia/SV/SV7s/156.ts new file mode 100644 index 000000000..9d843ea55 --- /dev/null +++ b/data-asia/SV/SV7s/156.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "จิตยึดติดของอโครมา", + id: "Obsesi Colress‌" + }, + + illustrator: "hncl", + category: "Trainer", + + effect: { + th: "เลือกการ์ดสเตเดียมและการ์ดพลังงานอย่างละ 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + id: "Pilih Stadium dan Energi masing-masing 1 lembar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/157.ts b/data-asia/SV/SV7s/157.ts new file mode 100644 index 000000000..288333d8b --- /dev/null +++ b/data-asia/SV/SV7s/157.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เทคนิคลับของอันสุ", + id: "Teknik Rahasia Janine‌" + }, + + illustrator: "Taira Akitsu", + category: "Trainer", + + effect: { + th: "เลือกโปเกมอน[ความมืด]ฝ่ายเราได้สูงสุด 2 ตัว นำการ์ด [พลังงานพื้นฐาน[ความมืด]] จากสำรับการ์ดฝ่ายเรามาติดตัวละ 1 ใบ แล้วสับสำรับการ์ด เมื่อติดที่โปเกมอนบนตำแหน่งต่อสู้แล้ว ทำให้โปเกมอนนั้นเป็นสภาวะ[พิษ]", + id: "Pilih paling banyak 2 Pokémon {Kegelapan} sendiri, lalu kenakan Energi Dasar {Kegelapan} masing-masing 1 lembar dari Deck sendiri. Kemudian, kocok Deck. Jika dikenakan pada Pokémon Bertarung, ubah kondisi Pokémon tersebut menjadi Racun." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/158.ts b/data-asia/SV/SV7s/158.ts new file mode 100644 index 000000000..16d79be37 --- /dev/null +++ b/data-asia/SV/SV7s/158.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "แคสซิโอเปีย", + id: "Cassiopeia‌" + }, + + illustrator: "Atsushi Furusawa", + category: "Trainer", + + effect: { + th: "การ์ดนี้ จะใช้ได้แค่ตอนที่การ์ดบนมือฝ่ายเรามีการ์ดนี้เพียง 1 ใบเท่านั้น เลือกการ์ดที่ชอบได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด", + id: "Kartu ini hanya dapat digunakan saat Kartu Pegangan sendiri hanya 1 kartu ini saja. Pilih paling banyak 2 kartu sesukanya dari Deck sendiri, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/159.ts b/data-asia/SV/SV7s/159.ts new file mode 100644 index 000000000..f4558bd02 --- /dev/null +++ b/data-asia/SV/SV7s/159.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อุบายของซีโรซิก", + id: "Konspirasi Xerosic‌" + }, + + illustrator: "GOSSAN", + category: "Trainer", + + effect: { + th: "ฝ่ายตรงข้ามทิ้งการ์ดบนมือฝ่ายตรงข้ามเอง จนเหลือ 3 ใบที่ตำแหน่งทิ้งการ์ด", + id: "Lawan membuang Kartu Pegangannya ke Trash hingga jumlah Kartu Pegangan menjadi 3 lembar." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/160.ts b/data-asia/SV/SV7s/160.ts new file mode 100644 index 000000000..e6ccce8dd --- /dev/null +++ b/data-asia/SV/SV7s/160.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ทาโร่", + id: "Tara‌" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + th: "นำการ์ดบนมือฝ่ายเราทั้งหมดใส่กลับไปในสำรับการ์ดแล้วสับ หลังจากนั้น จั่วการ์ด 4 ใบจากสำรับการ์ด ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามน้อยกว่าหรือเท่ากับ 3 ใบ จำนวนการ์ดที่จั่วจะเป็น 8 ใบ", + id: "Kocok kembali semua Kartu Pegangan sendiri ke Deck. Setelah itu, ambil 4 kartu dari atas Deck. Jika sisa Kartu Point lawan adalah 3 lembar atau kurang, jumlah kartu yang diambil menjadi 8 lembar." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/161.ts b/data-asia/SV/SV7s/161.ts new file mode 100644 index 000000000..68b7a75bd --- /dev/null +++ b/data-asia/SV/SV7s/161.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไห่ไต้", + id: "Algo‌" + }, + + illustrator: "Hideki Ishikawa", + category: "Trainer", + + effect: { + th: "เลือกการ์ดบนมือฝ่ายเรา 2 ใบ เรียงตามลำดับที่ชอบ ใส่กลับไปด้านล่างของสำรับการ์ด หลังจากนั้น จั่วการ์ด 4 ใบจากสำรับการ์ด (ถ้านำการ์ดบนมือฝ่ายเรา 2 ใบใส่กลับไปในสำรับการ์ดไม่ได้ การ์ดนี้จะใช้ไม่ได้)", + id: "Pilih 2 lembar Kartu Pegangan sendiri, tukar urutan kartu sesukanya, lalu kembalikan ke bawah Deck. Setelah itu, ambil 4 kartu dari atas Deck. (Jika tidak dapat mengembalikan 2 lembar Kartu Pegangan sendiri, kartu ini tidak dapat digunakan.)" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/162.ts b/data-asia/SV/SV7s/162.ts new file mode 100644 index 000000000..014021ac9 --- /dev/null +++ b/data-asia/SV/SV7s/162.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไบรอาร์", + id: "Briar‌" + }, + + illustrator: "Naoki Saito", + category: "Trainer", + + effect: { + th: "การ์ดนี้ จะใช้ได้แค่ตอนที่จำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามมี 2 ใบ เทิร์นนี้ ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้ที่โปเกมอน [เทรัสตัล] ฝ่ายเราใช้ หยิบการ์ดรางวัลเพิ่ม 1 ใบ", + id: "Kartu ini hanya dapat digunakan saat sisa Kartu Point lawan adalah 2 lembar. Pada giliran ini, jika Pokémon Bertarung lawan KO karena kerusakan akibat serangan yang digunakan oleh Pokémon Terastal sendiri, ambil Kartu Point 1 lembar lebih banyak." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/163.ts b/data-asia/SV/SV7s/163.ts new file mode 100644 index 000000000..a26b21733 --- /dev/null +++ b/data-asia/SV/SV7s/163.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ต้นไม้ยักษ์วิเศษ", + id: "Pohon Besar Agung‌" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + th: "ผู้เล่นทั้งสองฝ่าย ในแต่ละเทิร์นของตัวเองทำได้ 1 ครั้ง เลือกการ์ดโปเกมอน[ร่าง1] ที่จะวิวัฒนาการจากโปเกมอน[พื้นฐาน] 1 ตัวบนกระดานฝ่ายตัวเอง 1 ใบจากสำรับการ์ดฝ่ายตัวเอง จะวางบนโปเกมอนนั้นเพื่อวิวัฒนาการก็ได้ ถ้าวิวัฒนาการแล้ว เลือกการ์ดโปเกมอน[ร่าง2] 1 ใบ เพื่อวิวัฒนาการต่อก็ได้ แล้วสับสำรับการ์ด (โปเกมอน[พื้นฐาน]ในเทิร์นแรกสุดของฝ่ายตัวเอง และที่เพิ่งออกมาไม่สามารถวิวัฒนาการได้)", + id: "Kedua pemain 1 kali pada tiap gilirannya sendiri dapat memilih 1 lembar Pokémon Stage 1 yang merupakan evolusi dari 1 Pokémon Basic di Arena sendiri dari Deck sendiri, lalu meletakkannya pada Pokémon tersebut untuk melakukan evolusi. Jika melakukan evolusi, pemain dapat melanjutkan memilih 1 lembar Pokémon Stage 2, lalu meletakkannya pada Pokémon tersebut untuk melakukan evolusi. Kemudian, kocok Deck. (Tidak dapat melakukan evolusi pada giliran pertama pemain dan pada Pokémon Basic yang baru dimasukkan.)" + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/164.ts b/data-asia/SV/SV7s/164.ts new file mode 100644 index 000000000..187574ea5 --- /dev/null +++ b/data-asia/SV/SV7s/164.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โพรงถ้ำใหญ่ซีโร่", + id: "Gua Besar Zero" + }, + + illustrator: "MARINA Chikazawa", + category: "Trainer", + + effect: { + th: "ผู้เล่นที่มีโปเกมอน [เทรัสตัล] อยู่บนกระดานฝ่ายตัวเอง จำนวนโปเกมอนที่สามารถวางบนเบนช์ได้จะเป็น 8 ตัว (เมื่อการ์ดนี้ถูกทิ้งที่ตำแหน่งทิ้งการ์ดหรือ ไม่มีโปเกมอน [เทรัสตัล] บนกระดานฝ่ายตัวเองแล้ว ให้ทิ้งโปเกมอนบนเบนช์จนเหลือ 5 ตัวที่ตำแหน่งทิ้งการ์ด ถ้าทิ้งทั้งสองฝ่าย เจ้าของการ์ดนี้จะเริ่มทิ้งก่อน)", + id: "Jumlah Pokémon yang dapat dimasukkan ke Cadangan pemain yang ada Pokémon Terastal di Arenanya sendiri menjadi 8. (Saat kartu ini dibuang ke Trash atau saat Pokémon Terastal menjadi tidak ada di Arena sendiri, buang ke Trash hingga jumlah Pokémon di Cadangan menjadi 5. Jika kedua pemain membuang ke Trash, pemilik kartu ini membuang Pokémon Cadangan ke Trash terlebih dahulu.)" + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/165.ts b/data-asia/SV/SV7s/165.ts new file mode 100644 index 000000000..5f0f31ac3 --- /dev/null +++ b/data-asia/SV/SV7s/165.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "นิวทรัลเซ็นเตอร์", + id: "Neutral Center‌" + }, + + illustrator: "imoniii", + category: "Trainer", + + effect: { + th: "โปเกมอนของทั้งสองฝ่ายทุกตัว (ยกเว้น [โปเกมอนที่มีกฎ]) จะไม่ได้รับแดเมจของท่าต่อสู้จาก [โปเกมอน【ex】 /【V】] ฝ่ายตรงข้าม การ์ดนี้ ตราบใดที่ยังอยู่บนตำแหน่งทิ้งการ์ด จะนำขึ้นมือไม่ได้ และใส่กลับไปในสำรับการ์ดไม่ได้", + id: "Semua Pokémon (selain Pokémon yang memiliki Peraturan) kedua pemain tidak menerima kerusakan akibat serangan dari Pokémon {ex}/{V} lawan. Selama kartu ini ada di Trash, kartu ini tidak dapat ditambahkan ke Kartu Pegangan dan tidak dapat dikembalikan ke Deck." + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/166.ts b/data-asia/SV/SV7s/166.ts new file mode 100644 index 000000000..487614001 --- /dev/null +++ b/data-asia/SV/SV7s/166.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อะคาเดมียามราตรี", + id: "Akademi Saat Malam" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + th: "ผู้เล่นทั้งสองฝ่าย ในแต่ละเทิร์นของตัวเองทำได้ 1 ครั้ง จะเลือกการ์ดบนมือฝ่ายตัวเอง 1 ใบ ใส่กลับไปด้านบนของสำรับการ์ดก็ได้", + id: "Kedua pemain 1 kali pada tiap gilirannya sendiri dapat memilih 1 lembar Kartu Pegangan sendiri, lalu mengembalikannya ke atas Deck." + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/167.ts b/data-asia/SV/SV7s/167.ts new file mode 100644 index 000000000..d7baaebd4 --- /dev/null +++ b/data-asia/SV/SV7s/167.ts @@ -0,0 +1,39 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เรเดียน" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + name: { + th: "สปีดสตาร์" + }, + + effect: { + th: "แดเมจของท่าต่อสู้นี้ จะไม่นำจุดอ่อน ความต้านทาน และเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด" + }, + + damage: 70, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/168.ts b/data-asia/SV/SV7s/168.ts new file mode 100644 index 000000000..6cac010b4 --- /dev/null +++ b/data-asia/SV/SV7s/168.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ลิลีลา" + }, + + illustrator: "Mori Yuu", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + th: "โปเกมอนที่ฟื้นสภาพจากฟอสซิล อาศัยอยู่ใต้ทะเลอุ่นราว 1 ร้อยล้านปีก่อน" + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "มัดยึด" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" + }, + + damage: 50, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/169.ts b/data-asia/SV/SV7s/169.ts new file mode 100644 index 000000000..0459fad01 --- /dev/null +++ b/data-asia/SV/SV7s/169.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คาปู บูลูลู" + }, + + illustrator: "IKEDA Saki", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + description: { + th: "ถอนต้นไม้ใหญ่ขึ้นมาเหวี่ยงไปรอบ ๆ ทำให้ต้นไม้ใบหญ้าเจริญเติบโต แล้วดูดซับพลังงานนั้น" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "วู้ดแฮมเมอร์" + }, + + effect: { + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย" + }, + + damage: 220, + cost: ["Grass", "Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/170.ts b/data-asia/SV/SV7s/170.ts new file mode 100644 index 000000000..42e38dd54 --- /dev/null +++ b/data-asia/SV/SV7s/170.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เฮลการ์" + }, + + illustrator: "Taiga Kasai", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + description: { + th: "โปเกมอนที่ได้ยินเสียงหอนชวนขนลุกของมันจะสั่นกลัวและรีบกลับรังของตนอย่างรวดเร็ว" + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "กัดติด" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "บาร์กเอาต์" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนที่ได้รับท่าต่อสู้นี้ใช้จะถูก [-100]" + }, + + damage: 100, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/171.ts b/data-asia/SV/SV7s/171.ts new file mode 100644 index 000000000..34d5adb1f --- /dev/null +++ b/data-asia/SV/SV7s/171.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บาคุกาเมส" + }, + + illustrator: "Yukihiro Tada", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + th: "แบกกระดองที่ถูกเคลือบด้วยดินระเบิด เอาคืนคู่ต่อสู้ที่โจมตีมาด้วยระเบิดยักษ์" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "เฟลมเซอร์เคิล" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้] เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้จะหนีไม่ได้" + }, + + damage: 50, + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + th: "ไฟลุกพุ่งเข้าใส่" + }, + + effect: { + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 60 ด้วย" + }, + + damage: 180, + cost: ["Fire", "Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/172.ts b/data-asia/SV/SV7s/172.ts new file mode 100644 index 000000000..71ee4b500 --- /dev/null +++ b/data-asia/SV/SV7s/172.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "แรบบิฟุต" + }, + + illustrator: "rika", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + description: { + th: "ภาคภูมิใจในท่าเตะที่หลากหลายของตน แต่ท่าพุ่งหัวชนด้วยหน้าผากที่ร้อนขึ้นด้วยเปลวเพลิงก็ทรงพลังเช่นกัน" + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "เตะต่ำ" + }, + + damage: 30, + cost: ["Fire"] + }, { + name: { + th: "เผาไหม้" + }, + + damage: 60, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/173.ts b/data-asia/SV/SV7s/173.ts new file mode 100644 index 000000000..3c7ee9672 --- /dev/null +++ b/data-asia/SV/SV7s/173.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ทัททู" + }, + + illustrator: "Shinya Komatsu", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + th: "อาศัยอยู่ในทะเลที่มีกระแสน้ำสงบ เมื่อถูกโจมตีจะพ่นหมึกดำใส่แล้วใช้โอกาสนั้นหนี" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "อยู่นิ่ง ๆ" + }, + + effect: { + th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]" + }, + + cost: ["Water"] + }, { + name: { + th: "ครีบใบมีด" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/174.ts b/data-asia/SV/SV7s/174.ts new file mode 100644 index 000000000..44dd3a7a1 --- /dev/null +++ b/data-asia/SV/SV7s/174.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เคเค็นคานิ" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 160, + types: ["Water"], + + description: { + th: "พลังต่อยแข็งแกร่งมาก แต่เคลื่อนไหวช้า พ่นฟองน้ำแข็งจากปากเพื่อหยุดการเคลื่อนไหวของฝ่ายตรงข้าม" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "จัดเตรียม" + }, + + effect: { + th: "พลังงาน[ไร้สี]สำหรับใช้ท่าต่อสู้ของโปเกมอนนี้จะลดลง ตามจำนวนการ์ด [ไห่ไต้] ที่อยู่บนตำแหน่งทิ้งการ์ดฝ่ายเรา" + } + }], + + attacks: [{ + name: { + th: "หมัดหนัก" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [หมัดหนัก] ไม่ได้" + }, + + damage: 250, + cost: ["Water", "Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/175.ts b/data-asia/SV/SV7s/175.ts new file mode 100644 index 000000000..a4895cada --- /dev/null +++ b/data-asia/SV/SV7s/175.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บาชูรุ" + }, + + illustrator: "MARINA Chikazawa", + category: "Pokemon", + hp: 30, + types: ["Lightning"], + + description: { + th: "เพราะผลิตไฟฟ้าด้วยตัวเองไม่ได้ จึงมักเกาะโปเกมอนขนาดใหญ่เพื่อดูดเอาประจุไฟฟ้าสถิต" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "บาชูชาร์จ" + }, + + effect: { + th: "เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] และการ์ด [พลังงานพื้นฐาน[สายฟ้า]] ได้สูงสุดอย่างละ 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเราตามชอบ แล้วสับสำรับการ์ด" + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/176.ts b/data-asia/SV/SV7s/176.ts new file mode 100644 index 000000000..5d48a4b12 --- /dev/null +++ b/data-asia/SV/SV7s/176.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เซราโอรา" + }, + + illustrator: "Kazumasa Yasukuni", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + th: "วิ่งด้วยความเร็วที่เทียบเท่าฟ้าแลบแล้วเข้าฉีกกระชากศัตรูด้วยกรงเล็บที่ปล่อยไฟฟ้าแรงสูง" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "คอมแบตธันเดอร์" + }, + + effect: { + th: "แดเมจจะเพิ่มตามจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้าม x20" + }, + + damage: "20+", + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/177.ts b/data-asia/SV/SV7s/177.ts new file mode 100644 index 000000000..6104b388e --- /dev/null +++ b/data-asia/SV/SV7s/177.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โยมาวารุ" + }, + + illustrator: "James Turner", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + th: "จะรู้สึกหนาวสั่นอย่างรุนแรงตอนที่ถูกมันจ้องเขม็งด้วยนัยน์ตาเดียวสีแดงฉานและสูบพลังงานชีวิตไป" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "รับวิญญาณ" + }, + + effect: { + th: "เลือกการ์ด [โยมาวารุ] ได้สูงสุด 3 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา วางบนเบนช์" + }, + + cost: ["Psychic"] + }, { + name: { + th: "งึมงำ" + }, + + damage: 30, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/178.ts b/data-asia/SV/SV7s/178.ts new file mode 100644 index 000000000..2184979a5 --- /dev/null +++ b/data-asia/SV/SV7s/178.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ซามาโยรุ" + }, + + illustrator: "James Turner", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + th: "ว่ากันว่า นัยน์ตาเดียวสีแดงฉานที่ลุกไหม้อยู่ในตัวคือร่างที่แท้จริงของซามาโยรุ แต่ก็ไม่มีใครเคยเห็น" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "ระเบิดต้องสาป" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เมื่อใช้แล้ว จะทำให้โปเกมอนนี้[หมดสภาพ] วางตัวนับแดเมจ 5 ตัว บนโปเกมอนฝ่ายตรงข้าม 1 ตัว" + } + }], + + attacks: [{ + name: { + th: "ลูกไฟวิญญาณ" + }, + + damage: 50, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/179.ts b/data-asia/SV/SV7s/179.ts new file mode 100644 index 000000000..45ce90fa9 --- /dev/null +++ b/data-asia/SV/SV7s/179.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โยนัวร์" + }, + + illustrator: "James Turner", + category: "Pokemon", + hp: 160, + types: ["Psychic"], + + description: { + th: "ไปกลับระหว่างโลกนี้และโลกหลังความตาย ผู้คนต่างหวาดกลัวเพราะเชื่อว่ามันจะดูดกลืนวิญญาณเร่ร่อนและพาไปด้วย" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + th: "ระเบิดต้องสาป" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เมื่อใช้แล้ว จะทำให้โปเกมอนนี้[หมดสภาพ] วางตัวนับแดเมจ 13 ตัว บนโปเกมอนฝ่ายตรงข้าม 1 ตัว" + } + }], + + attacks: [{ + name: { + th: "จับเงา" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" + }, + + damage: 150, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/180.ts b/data-asia/SV/SV7s/180.ts new file mode 100644 index 000000000..1e78edd68 --- /dev/null +++ b/data-asia/SV/SV7s/180.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เครเซเลีย" + }, + + illustrator: "satoma", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + th: "เวลาบินจะปล่อยอนุภาคที่ส่องแสงจากปีกที่เหมือนผ้าคลุม ถูกเรียกว่าเป็นร่างแปลงของพระจันทร์เสี้ยว" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "ร่ายรำบำบัด" + }, + + effect: { + th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเราทุกตัว ตัวละ [20]" + }, + + cost: ["Psychic"] + }, { + name: { + th: "เครสเซนต์เพิร์จ" + }, + + effect: { + th: "หากต้องการ เลือกการ์ดรางวัลที่คว่ำอยู่ของฝ่ายเรา 1 ใบ หงายหน้าการ์ด เมื่อทำเช่นนั้นแล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 80 (หงายการ์ดรางวัลนั้นไว้ จนกว่าจะจบการแบตเทิล)" + }, + + damage: "80+", + cost: ["Psychic", "Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/181.ts b/data-asia/SV/SV7s/181.ts new file mode 100644 index 000000000..e2cc84924 --- /dev/null +++ b/data-asia/SV/SV7s/181.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มาโฮมิล" + }, + + illustrator: "Dsuke", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + th: "หากถูกจู่โจม มันจะพุ่งเข้าชนทำให้ศัตรูเปรอะไปด้วยครีม ในช่วงที่ศัตรูมองไม่เห็นหรือตกใจกับความอร่อยของครีม ก็จะอาศัยจังหวะนั้นหนีไป" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "งึมงำ" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/182.ts b/data-asia/SV/SV7s/182.ts new file mode 100644 index 000000000..13f578147 --- /dev/null +++ b/data-asia/SV/SV7s/182.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อาซานัน" + }, + + illustrator: "Yuriko Akase", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + th: "นั่งสมาธิเพื่อขัดเกลาพลังจิตให้เพิ่มขึ้นและลอยขึ้นกลางอากาศ จะกินผลไม้แค่ 1 ผลต่อวัน" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "เข้าฌาน" + }, + + effect: { + th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]" + }, + + cost: ["Colorless"] + }, { + name: { + th: "สับ" + }, + + damage: 50, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/183.ts b/data-asia/SV/SV7s/183.ts new file mode 100644 index 000000000..e030747b0 --- /dev/null +++ b/data-asia/SV/SV7s/183.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โกคูลิน" + }, + + illustrator: "Jerky", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + th: "หัวใจและสมองมีขนาดเล็ก ร่างกายส่วนใหญ่เป็นกระเพาะอาหาร มีน้ำย่อยที่ละลายได้ทุกอย่าง" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "น้ำลายยืด" + }, + + damage: 10, + cost: ["Darkness"] + }, { + name: { + th: "ลมหายใจพิษ" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]" + }, + + damage: 30, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/184.ts b/data-asia/SV/SV7s/184.ts new file mode 100644 index 000000000..13ce27ee2 --- /dev/null +++ b/data-asia/SV/SV7s/184.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โซรัว" + }, + + illustrator: "REND", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + th: "แปลงกายเป็นคนหรือโปเกมอนตัวอื่น ซ่อนตัวตนที่แท้จริงเพื่อปกป้องตัวเองจากอันตราย" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "เหยียบ" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + th: "ข่วนทวีคูณ" + }, + + effect: { + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20" + }, + + damage: "20×", + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/185.ts b/data-asia/SV/SV7s/185.ts new file mode 100644 index 000000000..4573e3398 --- /dev/null +++ b/data-asia/SV/SV7s/185.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โซโด" + }, + + illustrator: "Mina Nakai", + category: "Pokemon", + hp: 100, + types: ["Metal"], + + description: { + th: "สามารถยกของที่หนัก 5 ตันได้ ในตอนเช้าจะมุ่งหน้าไปยังถ้ำเป็นฝูงเพื่อหาหินแร่ที่เป็นอาหาร" + }, + + stage: "Basic", + + attacks: [{ + name: { + th: "พุ่งเข้าชน" + }, + + damage: 30, + cost: ["Metal", "Colorless"] + }, { + name: { + th: "ตั้งใจสู้" + }, + + damage: 70, + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/186.ts b/data-asia/SV/SV7s/186.ts new file mode 100644 index 000000000..d9a971e10 --- /dev/null +++ b/data-asia/SV/SV7s/186.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บริดิวรัส" + }, + + illustrator: "Toshinao Aoki", + category: "Pokemon", + hp: 180, + types: ["Metal"], + + description: { + th: "ขุดรูในภูเขาเพื่อหาอาหาร มันทนทานมาก แม้จะติดอยู่ในอุโมงค์ถล่มก็ไม่สะเทือน" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "สะพานเชื่อมเหล็กกล้า" + }, + + effect: { + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ พลังงานสำหรับ[หนี]ของโปเกมอนฝ่ายเราทุกตัวที่มีพลังงาน[โลหะ]ติดอยู่ ทั้งหมดจะหายไป" + } + }], + + attacks: [{ + name: { + th: "ไอออนบลัสเตอร์" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้" + }, + + damage: 160, + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/187.ts b/data-asia/SV/SV7s/187.ts new file mode 100644 index 000000000..696379cef --- /dev/null +++ b/data-asia/SV/SV7s/187.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โอโนนโดะ" + }, + + illustrator: "MINAMINAMI Take", + category: "Pokemon", + hp: 100, + types: ["Dragon"], + + description: { + th: "ใช้เขี้ยวขนาดใหญ่แล่เหยื่ออย่างประณีตเพื่อแยกส่วนที่กินกับส่วนที่เก็บ" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "บรรยากาศตึงเครียด" + }, + + effect: { + th: "โปเกมอนนี้ เมื่อฝ่ายตรงข้ามนำการ์ดไอเท็มหรือการ์ดซัพพอร์ตจากบนมือออกมาใช้ จะไม่ได้รับเอฟเฟกต์นั้น" + } + }], + + attacks: [{ + name: { + th: "คลื่นมังกร" + }, + + effect: { + th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายเราที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 80, + cost: ["Fighting", "Metal"] + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/188.ts b/data-asia/SV/SV7s/188.ts new file mode 100644 index 000000000..9f810727e --- /dev/null +++ b/data-asia/SV/SV7s/188.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เปอร์เซียน" + }, + + illustrator: "Whisker", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + description: { + th: "ระวังตอนอารมณ์รุนแรงจนตั้งหางตรงให้ดี เป็นสัญญาณบอกว่ามันกำลังจะกระโจนเข้ากัด" + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "ข่วนแหลก" + }, + + effect: { + th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x50" + }, + + damage: "50×", + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "สแลชคลอว์" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/189.ts b/data-asia/SV/SV7s/189.ts new file mode 100644 index 000000000..b99aa92b7 --- /dev/null +++ b/data-asia/SV/SV7s/189.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โยรุโนะซึคุ" + }, + + illustrator: "Tetsu Kayama", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + description: { + th: "เพราะปีกที่อ่อนนุ่มมากทำให้ไม่เกิดเสียงในยามที่บิน จึงแอบเข้าใกล้เหยื่อได้โดยที่เหยื่อไม่รู้ตัว" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + th: "ค้นหาอัญมณี" + }, + + effect: { + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ถ้าบนกระดานฝ่ายเรามีโปเกมอน [เทรัสตัล] อยู่ ใช้ได้ 1 ครั้ง เลือกการ์ดเทรนเนอร์ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด" + } + }], + + attacks: [{ + name: { + th: "สปีดวิง" + }, + + damage: 60, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/190.ts b/data-asia/SV/SV7s/190.ts new file mode 100644 index 000000000..d286ae9b2 --- /dev/null +++ b/data-asia/SV/SV7s/190.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คิเทรุกุมะ" + }, + + illustrator: "Takeshi Nakamura", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + description: { + th: "เมื่อยอมรับเป็นพวกพ้อง จะกอดรัดเพื่อแสดงความรัก แต่อันตรายเพราะกระดูกอาจแหลกเป็นผงได้" + }, + + stage: "Stage1", + + attacks: [{ + name: { + th: "พาวเวอร์ชาร์จ" + }, + + effect: { + th: "เลือกการ์ดพลังงานพื้นฐาน 1 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด" + }, + + damage: 30, + cost: ["Colorless"] + }, { + name: { + th: "ตบหนัก" + }, + + damage: 130, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/191.ts b/data-asia/SV/SV7s/191.ts new file mode 100644 index 000000000..76b5af25c --- /dev/null +++ b/data-asia/SV/SV7s/191.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คามิสึโอโรจิex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "ชาร์จความสุก" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา หลังจากนั้น ฟื้นฟู HP ของโปเกมอนที่ติดการ์ดนั้น [30]" + } + }], + + attacks: [{ + name: { + th: "พายุน้ำตาลเชื่อม" + }, + + effect: { + th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[หญ้า]ที่ติดอยู่กับโปเกมอนฝ่ายเราทุกตัว x30" + }, + + damage: "30+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/192.ts b/data-asia/SV/SV7s/192.ts new file mode 100644 index 000000000..f4b1bfbac --- /dev/null +++ b/data-asia/SV/SV7s/192.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เอสเบิร์นex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 320, + types: ["Fire"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + th: "แฟลร์สไตรค์" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [แฟลร์สไตรค์] ไม่ได้" + }, + + damage: 280, + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + th: "การ์เนตวอลเลย์" + }, + + effect: { + th: "ทำแดเมจ 180 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" + }, + + cost: ["Fire", "Fighting", "Darkness"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/193.ts b/data-asia/SV/SV7s/193.ts new file mode 100644 index 000000000..8703faa09 --- /dev/null +++ b/data-asia/SV/SV7s/193.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ลาพลาซex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + th: "พาวเวอร์สแปลช" + }, + + effect: { + th: "แดเมจจะเท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนนี้ x40" + }, + + damage: "40×", + cost: ["Water"] + }, { + name: { + th: "ลาริมาร์เรน" + }, + + effect: { + th: "ดูการ์ด 20 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดพลังงานจากในนั้นตามจำนวนที่ชอบ ติดที่โปเกมอนฝ่ายเราตามชอบ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ" + }, + + cost: ["Water", "Psychic", "Metal"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/194.ts b/data-asia/SV/SV7s/194.ts new file mode 100644 index 000000000..ccddeda30 --- /dev/null +++ b/data-asia/SV/SV7s/194.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คิงดราex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 310, + types: ["Water"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + th: "โองการแห่งราชันย์" + }, + + effect: { + th: "เลือกการ์ดโปเกมอน[น้ำ]ได้สูงสุด 3 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา วางบนเบนช์" + }, + + cost: ["Water"] + }, { + name: { + th: "ไฮโดรปั๊มพ์" + }, + + effect: { + th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[น้ำ]ที่ติดอยู่กับโปเกมอนนี้ x50" + }, + + damage: "50+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/195.ts b/data-asia/SV/SV7s/195.ts new file mode 100644 index 000000000..bfa0d190b --- /dev/null +++ b/data-asia/SV/SV7s/195.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เดนทูลาex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + th: "เส้นใยอัดเสย" + }, + + effect: { + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】 /【V】] การโจมตีนี้จะเพิ่มแดเมจอีก 110" + }, + + damage: "110+", + cost: ["Lightning", "Colorless"] + }, { + name: { + th: "ฟูลกูไรต์" + }, + + effect: { + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด เทิร์นถัดไปของฝ่ายตรงข้าม ฝ่ายตรงข้ามไม่สามารถนำการ์ดไอเท็มจากบนมือออกมาใช้ได้" + }, + + damage: 180, + cost: ["Grass", "Lightning", "Fighting"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/196.ts b/data-asia/SV/SV7s/196.ts new file mode 100644 index 000000000..16ecda68b --- /dev/null +++ b/data-asia/SV/SV7s/196.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โบรโรโรมex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 280, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + th: "แอกเซลแฟลช" + }, + + effect: { + th: "เทิร์นนี้ ถ้าโปเกมอนนี้ออกจากเบนช์มาที่ตำแหน่งต่อสู้ การโจมตีนี้จะเพิ่มแดเมจอีก 120" + }, + + damage: "20+", + cost: ["Metal"] + }, { + name: { + th: "สปีดเบรก" + }, + + effect: { + th: "ทิ้งโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 250, + cost: ["Metal", "Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/197.ts b/data-asia/SV/SV7s/197.ts new file mode 100644 index 000000000..0bb48b81f --- /dev/null +++ b/data-asia/SV/SV7s/197.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บัลซ์เซลex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 250, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "เวลาท้องอิ่ม" + }, + + effect: { + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง ฟื้นฟู HP ทั้งหมดของโปเกมอนวิวัฒนาการฝ่ายเราทุกตัว หลังจากนั้น ทิ้งพลังงานที่ติดอยู่กับโปเกมอนที่ฟื้นฟู ทั้งหมดที่ตำแหน่งทิ้งการ์ด" + } + }], + + attacks: [{ + name: { + th: "วันเดอร์ไชน์" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]" + }, + + damage: 130, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/198.ts b/data-asia/SV/SV7s/198.ts new file mode 100644 index 000000000..391f350ca --- /dev/null +++ b/data-asia/SV/SV7s/198.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ชาเรมex" + }, + + illustrator: "PLANETA Yamashita", + category: "Pokemon", + hp: 260, + types: ["Fighting"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + th: "กดจุดลมปราณ" + }, + + effect: { + th: "วางตัวนับแดเมจให้ HP ของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเหลือเท่ากับ [50]" + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "ลูกเตะโยคะ" + }, + + effect: { + th: "แดเมจของท่าต่อสู้นี้จะไม่นำจุดอ่อนและความต้านทานมาคิด" + }, + + damage: 190, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/199.ts b/data-asia/SV/SV7s/199.ts new file mode 100644 index 000000000..4b46c99d4 --- /dev/null +++ b/data-asia/SV/SV7s/199.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อี้เนะอินุex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 250, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + th: "พอยซันมัสเซิล" + }, + + effect: { + th: "เลือกการ์ด [พลังงานพื้นฐาน[ความมืด]] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด เมื่อติดแล้ว ทำให้โปเกมอนนี้เป็นสภาวะ[พิษ]" + }, + + cost: ["Colorless"] + }, { + name: { + th: "เครซีเชน" + }, + + effect: { + th: "ถ้าโปเกมอนนี้เป็นสภาวะ[พิษ] การโจมตีนี้จะเพิ่มแดเมจอีก 130" + }, + + damage: "130+", + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/200.ts b/data-asia/SV/SV7s/200.ts new file mode 100644 index 000000000..8974092cc --- /dev/null +++ b/data-asia/SV/SV7s/200.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มาชิมาชิระex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "ผิดคาด" + }, + + effect: { + th: "เมื่อโปเกมอนนี้ ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้ามและ[หมดสภาพ]แล้ว ถ้าบนกระดานฝ่ายเรามี [โมโมวาโร่【ex】] อยู่ การ์ดรางวัลที่หยิบได้จะลดลง 1 ใบ" + } + }], + + attacks: [{ + name: { + th: "เดอร์ตี้เฮด" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [เดอร์ตี้เฮด] ไม่ได้" + }, + + damage: 190, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/201.ts b/data-asia/SV/SV7s/201.ts new file mode 100644 index 000000000..93b425934 --- /dev/null +++ b/data-asia/SV/SV7s/201.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คิจิคิกิสึex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "พลิกวิกฤต" + }, + + effect: { + th: "ในเทิร์นก่อนของฝ่ายตรงข้าม ถ้าโปเกมอนฝ่ายเรา[หมดสภาพ] ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา เทิร์นนี้ ถ้าใช้ [พลิกวิกฤต] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้" + } + }], + + attacks: [{ + name: { + th: "ครูเอลแอร์โรว์" + }, + + effect: { + th: "ทำแดเมจ 100 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" + }, + + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/202.ts b/data-asia/SV/SV7s/202.ts new file mode 100644 index 000000000..dc6fff205 --- /dev/null +++ b/data-asia/SV/SV7s/202.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โมโมวาโร่ex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 190, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "โซ่ครอบงำ" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกโปเกมอน[ความมืด]บนเบนช์ฝ่ายเรา (ยกเว้น [โมโมวาโร่【ex】]) 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้ หลังจากนั้น ทำให้โปเกมอนใหม่บนตำแหน่งต่อสู้เป็นสภาวะ[พิษ] เทิร์นนี้ ถ้าใช้ [โซ่ครอบงำ] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้" + } + }], + + attacks: [{ + name: { + th: "หงุดหงิดระเบิด" + }, + + effect: { + th: "แดเมจจะเท่ากับจำนวนการ์ดรางวัลที่ฝ่ายตรงข้ามหยิบไปแล้ว x60" + }, + + damage: "60×", + cost: ["Darkness", "Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/203.ts b/data-asia/SV/SV7s/203.ts new file mode 100644 index 000000000..e20549599 --- /dev/null +++ b/data-asia/SV/SV7s/203.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มิมิซึซึex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 220, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "เอาคืนตุ้บตั้บ" + }, + + effect: { + th: "เมื่อโปเกมอนนี้ ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้าม วางตัวนับแดเมจบนโปเกมอนที่ใช้ท่าต่อสู้ ตามจำนวนพลังงาน[โลหะ]ที่ติดอยู่กับโปเกมอนนี้ x2 ตัว" + } + }], + + attacks: [{ + name: { + th: "ปิดกั้นด้วยศิลา" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" + }, + + damage: 150, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/204.ts b/data-asia/SV/SV7s/204.ts new file mode 100644 index 000000000..a572341b8 --- /dev/null +++ b/data-asia/SV/SV7s/204.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เทราปากอสex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + th: "ยูเนียนบีต" + }, + + effect: { + th: "ท่าต่อสู้นี้ ไม่สามารถใช้ได้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเล่นทีหลัง แดเมจจะเท่ากับจำนวนโปเกมอนบนเบนช์ฝ่ายเรา x30" + }, + + damage: "30×", + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "คราวน์โอปอล" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[พื้นฐาน] (ยกเว้นโปเกมอน[ไร้สี])" + }, + + damage: 180, + cost: ["Grass", "Water", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/205.ts b/data-asia/SV/SV7s/205.ts new file mode 100644 index 000000000..d52cc712e --- /dev/null +++ b/data-asia/SV/SV7s/205.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อาคามัตสึ" + }, + + illustrator: "GIDORA", + category: "Energy", + + effect: { + th: "เลือกการ์ดพลังงานพื้นฐานที่แต่ละใบต่างประเภทกันได้สูงสุด 2 ใบ จากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำใบใดใบหนึ่ง 1 ใบขึ้นมือ ติดการ์ดพลังงานที่เหลือที่โปเกมอนฝ่ายเรา แล้วสับสำรับการ์ด" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/206.ts b/data-asia/SV/SV7s/206.ts new file mode 100644 index 000000000..cb2f9493d --- /dev/null +++ b/data-asia/SV/SV7s/206.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "จิตยึดติดของอโครมา" + }, + + illustrator: "hncl", + category: "Energy", + + effect: { + th: "เลือกการ์ดสเตเดียมและการ์ดพลังงานอย่างละ 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/207.ts b/data-asia/SV/SV7s/207.ts new file mode 100644 index 000000000..5dfcb9e05 --- /dev/null +++ b/data-asia/SV/SV7s/207.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เทคนิคลับของอันสุ" + }, + + illustrator: "Taira Akitsu", + category: "Energy", + + effect: { + th: "เลือกโปเกมอน[ความมืด]ฝ่ายเราได้สูงสุด 2 ตัว นำการ์ด [พลังงานพื้นฐาน[ความมืด]] จากสำรับการ์ดฝ่ายเรามาติดตัวละ 1 ใบ แล้วสับสำรับการ์ด เมื่อติดที่โปเกมอนบนตำแหน่งต่อสู้แล้ว ทำให้โปเกมอนนั้นเป็นสภาวะ[พิษ]" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/208.ts b/data-asia/SV/SV7s/208.ts new file mode 100644 index 000000000..153ac8cf7 --- /dev/null +++ b/data-asia/SV/SV7s/208.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "แคสซิโอเปีย" + }, + + illustrator: "Atsushi Furusawa", + category: "Energy", + + effect: { + th: "การ์ดนี้ จะใช้ได้แค่ตอนที่การ์ดบนมือฝ่ายเรามีการ์ดนี้เพียง 1 ใบเท่านั้น เลือกการ์ดที่ชอบได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/209.ts b/data-asia/SV/SV7s/209.ts new file mode 100644 index 000000000..0a1784112 --- /dev/null +++ b/data-asia/SV/SV7s/209.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อุบายของซีโรซิก" + }, + + illustrator: "GOSSAN", + category: "Energy", + + effect: { + th: "ฝ่ายตรงข้ามทิ้งการ์ดบนมือฝ่ายตรงข้ามเอง จนเหลือ 3 ใบที่ตำแหน่งทิ้งการ์ด" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/210.ts b/data-asia/SV/SV7s/210.ts new file mode 100644 index 000000000..45dffd906 --- /dev/null +++ b/data-asia/SV/SV7s/210.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ทาโร่" + }, + + illustrator: "Sanosuke Sakuma", + category: "Energy", + + effect: { + th: "นำการ์ดบนมือฝ่ายเราทั้งหมดใส่กลับไปในสำรับการ์ดแล้วสับ หลังจากนั้น จั่วการ์ด 4 ใบจากสำรับการ์ด ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามน้อยกว่าหรือเท่ากับ 3 ใบ จำนวนการ์ดที่จั่วจะเป็น 8 ใบ" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/211.ts b/data-asia/SV/SV7s/211.ts new file mode 100644 index 000000000..162d59112 --- /dev/null +++ b/data-asia/SV/SV7s/211.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไห่ไต้" + }, + + illustrator: "Hideki Ishikawa", + category: "Energy", + + effect: { + th: "เลือกการ์ดบนมือฝ่ายเรา 2 ใบ เรียงตามลำดับที่ชอบ ใส่กลับไปด้านล่างของสำรับการ์ด หลังจากนั้น จั่วการ์ด 4 ใบจากสำรับการ์ด (ถ้านำการ์ดบนมือฝ่ายเรา 2 ใบใส่กลับไปในสำรับการ์ดไม่ได้ การ์ดนี้จะใช้ไม่ได้)" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/212.ts b/data-asia/SV/SV7s/212.ts new file mode 100644 index 000000000..36a294973 --- /dev/null +++ b/data-asia/SV/SV7s/212.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไบรอาร์" + }, + + illustrator: "Naoki Saito", + category: "Energy", + + effect: { + th: "การ์ดนี้ จะใช้ได้แค่ตอนที่จำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามมี 2 ใบ เทิร์นนี้ ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้ที่โปเกมอน [เทรัสตัล] ฝ่ายเราใช้ หยิบการ์ดรางวัลเพิ่ม 1 ใบ" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/213.ts b/data-asia/SV/SV7s/213.ts new file mode 100644 index 000000000..fabb6a896 --- /dev/null +++ b/data-asia/SV/SV7s/213.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คามิสึโอโรจิex" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "ชาร์จความสุก" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา หลังจากนั้น ฟื้นฟู HP ของโปเกมอนที่ติดการ์ดนั้น [30]" + } + }], + + attacks: [{ + name: { + th: "พายุน้ำตาลเชื่อม" + }, + + effect: { + th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[หญ้า]ที่ติดอยู่กับโปเกมอนฝ่ายเราทุกตัว x30" + }, + + damage: "30+", + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/214.ts b/data-asia/SV/SV7s/214.ts new file mode 100644 index 000000000..d040f164e --- /dev/null +++ b/data-asia/SV/SV7s/214.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เดนทูลาex" + }, + + illustrator: "MARINA Chikazawa", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + th: "เส้นใยอัดเสย" + }, + + effect: { + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】 /【V】] การโจมตีนี้จะเพิ่มแดเมจอีก 110" + }, + + damage: "110+", + cost: ["Lightning", "Colorless"] + }, { + name: { + th: "ฟูลกูไรต์" + }, + + effect: { + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด เทิร์นถัดไปของฝ่ายตรงข้าม ฝ่ายตรงข้ามไม่สามารถนำการ์ดไอเท็มจากบนมือออกมาใช้ได้" + }, + + damage: 180, + cost: ["Grass", "Lightning", "Fighting"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/215.ts b/data-asia/SV/SV7s/215.ts new file mode 100644 index 000000000..159452863 --- /dev/null +++ b/data-asia/SV/SV7s/215.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "บัลซ์เซลex" + }, + + illustrator: "Yuu Nishida", + category: "Pokemon", + hp: 250, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "เวลาท้องอิ่ม" + }, + + effect: { + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง ฟื้นฟู HP ทั้งหมดของโปเกมอนวิวัฒนาการฝ่ายเราทุกตัว หลังจากนั้น ทิ้งพลังงานที่ติดอยู่กับโปเกมอนที่ฟื้นฟู ทั้งหมดที่ตำแหน่งทิ้งการ์ด" + } + }], + + attacks: [{ + name: { + th: "วันเดอร์ไชน์" + }, + + effect: { + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]" + }, + + damage: 130, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/216.ts b/data-asia/SV/SV7s/216.ts new file mode 100644 index 000000000..c82e66439 --- /dev/null +++ b/data-asia/SV/SV7s/216.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "อี้เนะอินุex" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 250, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + th: "พอยซันมัสเซิล" + }, + + effect: { + th: "เลือกการ์ด [พลังงานพื้นฐาน[ความมืด]] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด เมื่อติดแล้ว ทำให้โปเกมอนนี้เป็นสภาวะ[พิษ]" + }, + + cost: ["Colorless"] + }, { + name: { + th: "เครซีเชน" + }, + + effect: { + th: "ถ้าโปเกมอนนี้เป็นสภาวะ[พิษ] การโจมตีนี้จะเพิ่มแดเมจอีก 130" + }, + + damage: "130+", + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/217.ts b/data-asia/SV/SV7s/217.ts new file mode 100644 index 000000000..0626ab39f --- /dev/null +++ b/data-asia/SV/SV7s/217.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "มาชิมาชิระex" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "ผิดคาด" + }, + + effect: { + th: "เมื่อโปเกมอนนี้ ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้ามและ[หมดสภาพ]แล้ว ถ้าบนกระดานฝ่ายเรามี [โมโมวาโร่【ex】] อยู่ การ์ดรางวัลที่หยิบได้จะลดลง 1 ใบ" + } + }], + + attacks: [{ + name: { + th: "เดอร์ตี้เฮด" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [เดอร์ตี้เฮด] ไม่ได้" + }, + + damage: 190, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/218.ts b/data-asia/SV/SV7s/218.ts new file mode 100644 index 000000000..1daa6d5b2 --- /dev/null +++ b/data-asia/SV/SV7s/218.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "คิจิคิกิสึex" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "พลิกวิกฤต" + }, + + effect: { + th: "ในเทิร์นก่อนของฝ่ายตรงข้าม ถ้าโปเกมอนฝ่ายเรา[หมดสภาพ] ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา เทิร์นนี้ ถ้าใช้ [พลิกวิกฤต] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้" + } + }], + + attacks: [{ + name: { + th: "ครูเอลแอร์โรว์" + }, + + effect: { + th: "ทำแดเมจ 100 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" + }, + + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/219.ts b/data-asia/SV/SV7s/219.ts new file mode 100644 index 000000000..4b38c3cfd --- /dev/null +++ b/data-asia/SV/SV7s/219.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "โมโมวาโร่ex" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 190, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + th: "โซ่ครอบงำ" + }, + + effect: { + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกโปเกมอน[ความมืด]บนเบนช์ฝ่ายเรา (ยกเว้น [โมโมวาโร่【ex】]) 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้ หลังจากนั้น ทำให้โปเกมอนใหม่บนตำแหน่งต่อสู้เป็นสภาวะ[พิษ] เทิร์นนี้ ถ้าใช้ [โซ่ครอบงำ] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้" + } + }], + + attacks: [{ + name: { + th: "หงุดหงิดระเบิด" + }, + + effect: { + th: "แดเมจจะเท่ากับจำนวนการ์ดรางวัลที่ฝ่ายตรงข้ามหยิบไปแล้ว x60" + }, + + damage: "60×", + cost: ["Darkness", "Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/220.ts b/data-asia/SV/SV7s/220.ts new file mode 100644 index 000000000..86431b175 --- /dev/null +++ b/data-asia/SV/SV7s/220.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "เทราปากอสex" + }, + + illustrator: "Saboteri", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + th: "ยูเนียนบีต" + }, + + effect: { + th: "ท่าต่อสู้นี้ ไม่สามารถใช้ได้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเล่นทีหลัง แดเมจจะเท่ากับจำนวนโปเกมอนบนเบนช์ฝ่ายเรา x30" + }, + + damage: "30×", + cost: ["Colorless", "Colorless"] + }, { + name: { + th: "คราวน์โอปอล" + }, + + effect: { + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[พื้นฐาน] (ยกเว้นโปเกมอน[ไร้สี])" + }, + + damage: 180, + cost: ["Grass", "Water", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/221.ts b/data-asia/SV/SV7s/221.ts new file mode 100644 index 000000000..27181c2ca --- /dev/null +++ b/data-asia/SV/SV7s/221.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "แคสซิโอเปีย" + }, + + illustrator: "burari", + category: "Energy", + + effect: { + th: "การ์ดนี้ จะใช้ได้แค่ตอนที่การ์ดบนมือฝ่ายเรามีการ์ดนี้เพียง 1 ใบเท่านั้น เลือกการ์ดที่ชอบได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/222.ts b/data-asia/SV/SV7s/222.ts new file mode 100644 index 000000000..4e63396e6 --- /dev/null +++ b/data-asia/SV/SV7s/222.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ทาโร่" + }, + + illustrator: "Souichirou Gunjima", + category: "Energy", + + effect: { + th: "นำการ์ดบนมือฝ่ายเราทั้งหมดใส่กลับไปในสำรับการ์ดแล้วสับ หลังจากนั้น จั่วการ์ด 4 ใบจากสำรับการ์ด ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามน้อยกว่าหรือเท่ากับ 3 ใบ จำนวนการ์ดที่จั่วจะเป็น 8 ใบ" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV7s/223.ts b/data-asia/SV/SV7s/223.ts new file mode 100644 index 000000000..105b00e4f --- /dev/null +++ b/data-asia/SV/SV7s/223.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV7s" + +const card: Card = { + set: Set, + + name: { + th: "ไบรอาร์" + }, + + illustrator: "DOM", + category: "Energy", + + effect: { + th: "การ์ดนี้ จะใช้ได้แค่ตอนที่จำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามมี 2 ใบ เทิร์นนี้ ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้ที่โปเกมอน [เทรัสตัล] ฝ่ายเราใช้ หยิบการ์ดรางวัลเพิ่ม 1 ใบ" + }, + + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8.ts b/data-asia/SV/SV8.ts new file mode 100644 index 000000000..43c117a09 --- /dev/null +++ b/data-asia/SV/SV8.ts @@ -0,0 +1,24 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SV8', + name: { + ja: '超電ブレイカー', + 'zh-cn': '超電突圍', + 'zh-tw': '超電突圍' + }, + + serie: serie, + + cardCount: { + official: 106 + }, + releaseDate: { + ja: '2024-10-18', + 'zh-cn': '2024-10-25', + 'zh-tw': '2024-10-25', + } +} + +export default set diff --git a/data-asia/SV/SV8/001.ts b/data-asia/SV/SV8/001.ts new file mode 100644 index 000000000..f3105275c --- /dev/null +++ b/data-asia/SV/SV8/001.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "タマタマ", + 'zh-tw': "蛋蛋", + 'zh-cn': "蛋蛋" + }, + + illustrator: "OKUBO", + rarity: "Common", + category: "Pokemon", + dexId: [102], + hp: 50, + types: ["Grass"], + + description: { + ja: "タマタマだけに 伝わる テレパシーを 出し合っているので どんなときでも 6匹 集まれる。", + 'zh-tw': "會發出只有蛋蛋才能收到的 心靈感應,因此不論何時 都能6隻聚集在一起。", + 'zh-cn': "會發出只有蛋蛋才能收到的 心靈感應,因此不論何時 都能6隻聚集在一起。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "すいとる", + 'zh-tw': "吸取", + 'zh-cn': "吸取" + }, + + damage: 10, + + effect: { + ja: "このポケモンのHPを「10」回復する。", + 'zh-tw': "將這隻寶可夢恢復「10」HP。", + 'zh-cn': "將這隻寶可夢恢復「10」HP。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/002.ts b/data-asia/SV/SV8/002.ts new file mode 100644 index 000000000..d0fc192ce --- /dev/null +++ b/data-asia/SV/SV8/002.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ナッシー", + 'zh-tw': "椰蛋樹", + 'zh-cn': "椰蛋樹" + }, + + illustrator: "Oswaldo KATO", + rarity: "Uncommon", + category: "Pokemon", + dexId: [103], + hp: 130, + types: ["Grass"], + + description: { + ja: "ごくまれに 頭の どれか ひとつが 地面に 落ちると タマタマになって 動きだすという。", + 'zh-tw': "聽說在極少數的情況下, 當其中一顆頭掉落到地面, 就會變成蛋蛋並且動起來。", + 'zh-cn': "聽說在極少數的情況下, 當其中一顆頭掉落到地面, 就會變成蛋蛋並且動起來。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "たまなげアワー", + 'zh-tw': "投球時刻", + 'zh-cn': "投球時刻" + }, + + damage: "60×", + + effect: { + ja: "おたがいのバトルポケモンについているエネルギーの数ぶんコインを投げ、オモテの数×60ダメージ。", + 'zh-tw': "擲與雙方的戰鬥寶可夢身上附加的能量的數量相同次數的硬幣,造成正面出現的次數×60點傷害。", + 'zh-cn': "擲與雙方的戰鬥寶可夢身上附加的能量的數量相同次數的硬幣,造成正面出現的次數×60點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/003.ts b/data-asia/SV/SV8/003.ts new file mode 100644 index 000000000..2c2fa47d8 --- /dev/null +++ b/data-asia/SV/SV8/003.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "アイアントex", + 'zh-tw': "鐵蟻ex", + 'zh-cn': "鐵蟻ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Double rare", + category: "Pokemon", + hp: 190, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "いきなりけずる", + 'zh-tw': "突然削退", + 'zh-cn': "突然削退" + }, + + effect: { + ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。相手の山札を上から1枚トラッシュする。", + 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。將對手的牌庫上方1張卡丟棄。", + 'zh-cn': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。將對手的牌庫上方1張卡丟棄。" + } + }], + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + ja: "リベンジクラッシュ", + 'zh-tw': "復仇粉碎", + 'zh-cn': "復仇粉碎" + }, + + damage: "120+", + + effect: { + ja: "相手がすでにとったサイドの枚数×30ダメージ追加。", + 'zh-tw': "增加對手已經獲得的獎賞卡的張數×30點傷害。", + 'zh-cn': "增加對手已經獲得的獎賞卡的張數×30點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/004.ts b/data-asia/SV/SV8/004.ts new file mode 100644 index 000000000..8da99fd2c --- /dev/null +++ b/data-asia/SV/SV8/004.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "コフキムシ", + 'zh-tw': "粉蝶蟲", + 'zh-cn': "粉蝶蟲" + }, + + illustrator: "Iori Suzuki", + rarity: "Common", + category: "Pokemon", + dexId: [664], + hp: 40, + types: ["Grass"], + + description: { + ja: "毒の粉を まき散らして 敵を 追い払う。 棲んでいる 土地により エサにする 植物が 違う。", + 'zh-tw': "會灑出毒粉趕走敵人。 棲息的土地不同,作為 食糧的植物也就不同。", + 'zh-cn': "會灑出毒粉趕走敵人。 棲息的土地不同,作為 食糧的植物也就不同。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "なかまをよぶ", + 'zh-tw': "呼朋引伴", + 'zh-cn': "呼朋引伴" + }, + + effect: { + ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/005.ts b/data-asia/SV/SV8/005.ts new file mode 100644 index 000000000..8c1ab41cb --- /dev/null +++ b/data-asia/SV/SV8/005.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "コフーライ", + 'zh-tw': "粉蝶蛹", + 'zh-cn': "粉蝶蛹" + }, + + illustrator: "tono", + rarity: "Common", + category: "Pokemon", + dexId: [665], + hp: 80, + types: ["Grass"], + + description: { + ja: "決まった 棲み処を 持たない。 気の向くまま 野山を 歩きまわり 進化の エネルギーを 蓄える。", + 'zh-tw': "沒有固定的住處。 會隨心所欲地在山野走來走去, 蓄積進化時所需的能量。", + 'zh-cn': "沒有固定的住處。 會隨心所欲地在山野走來走去, 蓄積進化時所需的能量。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "あるきまわる", + 'zh-tw': "走來走去", + 'zh-cn': "走來走去" + }, + + effect: { + ja: "このポケモンをベンチポケモンと入れ替える。", + 'zh-tw': "將這隻寶可夢與備戰寶可夢互換。", + 'zh-cn': "將這隻寶可夢與備戰寶可夢互換。" + } + }, { + cost: ["Grass"], + + name: { + ja: "たいあたり", + 'zh-tw': "撞擊", + 'zh-cn': "撞擊" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/006.ts b/data-asia/SV/SV8/006.ts new file mode 100644 index 000000000..c20d69f84 --- /dev/null +++ b/data-asia/SV/SV8/006.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ビビヨン", + 'zh-tw': "彩粉蝶", + 'zh-cn': "彩粉蝶" + }, + + illustrator: "Amelicart", + rarity: "Uncommon", + category: "Pokemon", + dexId: [666], + hp: 120, + types: ["Grass"], + + description: { + ja: "不思議な 土地で 生まれた。 色鮮やかな 毒の りんぷんを 翅から 散らして 戦う。", + 'zh-tw': "誕生在神奇的地方。 會從翅膀灑出色彩鮮豔的 毒鱗粉來戰鬥。", + 'zh-cn': "誕生在神奇的地方。 會從翅膀灑出色彩鮮豔的 毒鱗粉來戰鬥。" + }, + + stage: "Stage2", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "エボルパウダー", + 'zh-tw': "進化粉", + 'zh-cn': "進化粉" + }, + + effect: { + ja: "自分のベンチポケモン全員からそれぞれ進化するカードを、自分の山札から1枚ずつ選び、それぞれにのせて進化させる。そして山札を切る。", + 'zh-tw': "從自己的牌庫,選擇自己的所有備戰寶可夢進化而來的卡各1張,放置於各自身上完成進化。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫,選擇自己的所有備戰寶可夢進化而來的卡各1張,放置於各自身上完成進化。並且重洗牌庫。" + } + }, { + cost: ["Grass"], + + name: { + ja: "カッターウインド", + 'zh-tw': "利刃之風", + 'zh-cn': "利刃之風" + }, + + damage: 90 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/007.ts b/data-asia/SV/SV8/007.ts new file mode 100644 index 000000000..46687a245 --- /dev/null +++ b/data-asia/SV/SV8/007.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "カプサイジ", + 'zh-tw': "熱辣娃", + 'zh-cn': "熱辣娃" + }, + + illustrator: "Julie Hang", + rarity: "Common", + category: "Pokemon", + dexId: [951], + hp: 70, + types: ["Grass"], + + description: { + ja: "パルデアの 郷土料理は 抜け落ちた カプサイジの 前歯が 使われているので 激辛なのだ。", + 'zh-tw': "帕底亞當地會用熱辣娃 掉落的門牙來做料理, 所以超級無敵霹靂辣。", + 'zh-cn': "帕底亞當地會用熱辣娃 掉落的門牙來做料理, 所以超級無敵霹靂辣。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "とびだしヘッド", + 'zh-tw': "魯莽頭擊", + 'zh-cn': "魯莽頭擊" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/008.ts b/data-asia/SV/SV8/008.ts new file mode 100644 index 000000000..87552019b --- /dev/null +++ b/data-asia/SV/SV8/008.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "シガロコ", + 'zh-tw': "蟲滾泥", + 'zh-cn': "蟲滾泥" + }, + + illustrator: "Toshinao Aoki", + rarity: "Common", + category: "Pokemon", + dexId: [953], + hp: 40, + types: ["Grass"], + + description: { + ja: "泥玉を 転がしながら 進化の エネルギーを 熟成させる。 やがて 進化のときを 迎える。", + 'zh-tw': "會一邊滾著泥巴球, 一邊使進化的能量成熟。 最終會迎接進化的時刻。", + 'zh-cn': "會一邊滾著泥巴球, 一邊使進化的能量成熟。 最終會迎接進化的時刻。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "もってくる", + 'zh-tw': "呼喚", + 'zh-cn': "呼喚" + }, + + effect: { + ja: "自分の山札を1枚引く。", + 'zh-tw': "從自己的牌庫抽出1張卡。", + 'zh-cn': "從自己的牌庫抽出1張卡。" + } + }, { + cost: ["Grass"], + + name: { + ja: "ころがる", + 'zh-tw': "滾動", + 'zh-cn': "滾動" + }, + + damage: 10 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/009.ts b/data-asia/SV/SV8/009.ts new file mode 100644 index 000000000..b049cf86c --- /dev/null +++ b/data-asia/SV/SV8/009.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ベラカス", + 'zh-tw': "蟲甲聖", + 'zh-cn': "蟲甲聖" + }, + + illustrator: "Masako Tomii", + rarity: "Rare", + category: "Pokemon", + dexId: [954], + hp: 70, + types: ["Grass"], + + description: { + ja: "玉の中に 赤ん坊が 眠る。 心地よく 眠れるように 脚で 玉を まわして あやしているのだ。", + 'zh-tw': "為了讓在球裡睡覺的寶寶 可以睡得更加香甜,會用腳 轉著球,讓寶寶感到安穩。", + 'zh-cn': "為了讓在球裡睡覺的寶寶 可以睡得更加香甜,會用腳 轉著球,讓寶寶感到安穩。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "トリプルドロー", + 'zh-tw': "三重抽出", + 'zh-cn': "三重抽出" + }, + + effect: { + ja: "自分の山札を3枚引く。", + 'zh-tw': "從自己的牌庫抽出3張卡。", + 'zh-cn': "從自己的牌庫抽出3張卡。" + } + }, { + cost: ["Grass"], + + name: { + ja: "どんでんがえし", + 'zh-tw': "絕地反攻", + 'zh-cn': "絕地反攻" + }, + + damage: "40+", + + effect: { + ja: "自分の山札の残り枚数が3枚以下なら、200ダメージ追加。", + 'zh-tw': "若自己的牌庫的剩餘張數為3張以下,則增加200點傷害。", + 'zh-cn': "若自己的牌庫的剩餘張數為3張以下,則增加200點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/010.ts b/data-asia/SV/SV8/010.ts new file mode 100644 index 000000000..dae4c6c6b --- /dev/null +++ b/data-asia/SV/SV8/010.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "チオンジェン", + 'zh-tw': "古簡蝸", + 'zh-cn': "古簡蝸" + }, + + illustrator: "danciao", + rarity: "Uncommon", + category: "Pokemon", + dexId: [1001], + hp: 130, + types: ["Grass"], + + description: { + ja: "草木の エネルギーを 吸い上げる。 周囲の 森は たちどころに 枯れ果て 田畑は 不作となる。", + 'zh-tw': "會吸取草木的能量, 使周圍的森林霎時乾枯, 田地的農作物歉收。", + 'zh-cn': "會吸取草木的能量, 使周圍的森林霎時乾枯, 田地的農作物歉收。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + ja: "グリードハザード", + 'zh-tw': "貪婪危害", + 'zh-cn': "貪婪危害" + }, + + damage: 20, + + effect: { + ja: "自分の山札の残り枚数が3枚以下なら、相手のベンチポケモン2匹にも、それぞれ120ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + 'zh-tw': "若自己的牌庫的剩餘張數為3張以下,則對手的2隻備戰寶可夢也各受到120點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "若自己的牌庫的剩餘張數為3張以下,則對手的2隻備戰寶可夢也各受到120點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }, { + cost: ["Grass", "Grass", "Colorless"], + + name: { + ja: "まきこみウィップ", + 'zh-tw': "捲入鞭打", + 'zh-cn': "捲入鞭打" + }, + + damage: 130, + + effect: { + ja: "自分の山札を上から3枚トラッシュする。", + 'zh-tw': "將自己的牌庫上方3張卡丟棄。", + 'zh-cn': "將自己的牌庫上方3張卡丟棄。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/011.ts b/data-asia/SV/SV8/011.ts new file mode 100644 index 000000000..b9c66d274 --- /dev/null +++ b/data-asia/SV/SV8/011.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "パルデア ケンタロス", + 'zh-tw': "帕底亞 肯泰羅", + 'zh-cn': "帕底亞 肯泰羅" + }, + + illustrator: "Taiga Kasai", + rarity: "Uncommon", + category: "Pokemon", + dexId: [128], + hp: 130, + types: ["Fire"], + + description: { + ja: "高温の 鼻息を 吹きだすので ブレイズ種と 名づけられた。 3本の 尻尾を 束ねている。", + 'zh-tw': "噴出的鼻息溫度很高, 因此被命名為火熾種。 3根尾巴總是束在一起。", + 'zh-cn': "噴出的鼻息溫度很高, 因此被命名為火熾種。 3根尾巴總是束在一起。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "うしろげり", + 'zh-tw': "後踢", + 'zh-cn': "後踢" + }, + + damage: 30 + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + ja: "きあいタックル", + 'zh-tw': "真氣衝撞", + 'zh-cn': "真氣衝撞" + }, + + damage: "90+", + + effect: { + ja: "相手のバトルポケモンが1進化ポケモンなら、90ダメージ追加。", + 'zh-tw': "若對手的戰鬥寶可夢為【1階進化】寶可夢,則增加90點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為【1階進化】寶可夢,則增加90點傷害。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/012.ts b/data-asia/SV/SV8/012.ts new file mode 100644 index 000000000..d63514553 --- /dev/null +++ b/data-asia/SV/SV8/012.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ビクティニ", + 'zh-tw': "比克提尼", + 'zh-cn': "比克提尼" + }, + + illustrator: "313", + rarity: "Uncommon", + category: "Pokemon", + dexId: [494], + hp: 70, + types: ["Fire"], + + description: { + ja: "勝利を もたらす ポケモン。 ビクティニを 連れた トレーナーは どんな 勝負にも 勝てるという。", + 'zh-tw': "帶來勝利的寶可夢。 據說帶著比克提尼的訓練家, 不論任何比賽必能取得勝利。", + 'zh-cn': "帶來勝利的寶可夢。 據說帶著比克提尼的訓練家, 不論任何比賽必能取得勝利。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ビクトリーエール", + 'zh-tw': "勝利聲援", + 'zh-cn': "勝利聲援" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分のタイプの進化ポケモンが使うワザの、相手のバトルポケモンへのダメージは「+10」される。", + 'zh-tw': "只要這隻寶可夢在場上,自己的【火】屬性的進化寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+10」點。", + 'zh-cn': "只要這隻寶可夢在場上,自己的【火】屬性的進化寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+10」點。" + } + }], + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + ja: "ほのお", + 'zh-tw': "火焰", + 'zh-cn': "火焰" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/013.ts b/data-asia/SV/SV8/013.ts new file mode 100644 index 000000000..3be596de3 --- /dev/null +++ b/data-asia/SV/SV8/013.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "メラルバ", + 'zh-tw': "燃燒蟲", + 'zh-cn': "燃燒蟲" + }, + + illustrator: "MARINA Chikazawa", + rarity: "Common", + category: "Pokemon", + dexId: [636], + hp: 70, + types: ["Fire"], + + description: { + ja: "大昔は 太陽の遣い と 崇められたが しばしば 山火事を 起こすこともあり 煙たがられた。", + 'zh-tw': "在遙遠的過去曾被信奉成 太陽的使者,但卻因為常常 引發森林大火而遭人們疏遠。", + 'zh-cn': "在遙遠的過去曾被信奉成 太陽的使者,但卻因為常常 引發森林大火而遭人們疏遠。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ぶつかる", + 'zh-tw': "衝撞", + 'zh-cn': "衝撞" + }, + + damage: 10 + }, { + cost: ["Fire", "Colorless"], + + name: { + ja: "ひをはく", + 'zh-tw': "吐火", + 'zh-cn': "吐火" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/014.ts b/data-asia/SV/SV8/014.ts new file mode 100644 index 000000000..a2c35c40b --- /dev/null +++ b/data-asia/SV/SV8/014.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ウルガモス", + 'zh-tw': "火神蛾", + 'zh-cn': "火神蛾" + }, + + illustrator: "matazo", + rarity: "Common", + category: "Pokemon", + dexId: [637], + hp: 140, + types: ["Fire"], + + description: { + ja: "炎の りんぷんを まき散らす。 危険なのは 高熱よりも あたりの 酸素が なくなること。", + 'zh-tw': "會朝四周灑出火焰鱗粉。 最危險的不是高溫, 而是會耗盡周圍的氧氣。", + 'zh-cn': "會朝四周灑出火焰鱗粉。 最危險的不是高溫, 而是會耗盡周圍的氧氣。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "きゅうけつ", + 'zh-tw': "吸血", + 'zh-cn': "吸血" + }, + + damage: 30, + + effect: { + ja: "相手のバトルポケモンに与えたダメージぶん、このポケモンのHPを回復する。", + 'zh-tw': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。", + 'zh-cn': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。" + } + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + ja: "どとうのはばたき", + 'zh-tw': "怒濤羽擊", + 'zh-cn': "怒濤羽擊" + }, + + damage: 150, + + effect: { + ja: "このポケモンにも50ダメージ。", + 'zh-tw': "這隻寶可夢也受到50點傷害。", + 'zh-cn': "這隻寶可夢也受到50點傷害。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/015.ts b/data-asia/SV/SV8/015.ts new file mode 100644 index 000000000..27fdda258 --- /dev/null +++ b/data-asia/SV/SV8/015.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ヤクデ", + 'zh-tw': "燒火蚣", + 'zh-cn': "燒火蚣" + }, + + illustrator: "Minahamu", + rarity: "Common", + category: "Pokemon", + dexId: [850], + hp: 80, + types: ["Fire"], + + description: { + ja: "体に 溜めた 可燃ガスで 発熱。 とくに お腹の 黄色い 部分が 熱いのだ。", + 'zh-tw': "靠儲存在體內的可燃氣體 來發熱。熱度最高的是 腹部的黃色部分。", + 'zh-cn': "靠儲存在體內的可燃氣體 來發熱。熱度最高的是 腹部的黃色部分。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "ひだね", + 'zh-tw': "火種", + 'zh-cn': "火種" + }, + + damage: 10 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ひっかける", + 'zh-tw': "鉤住", + 'zh-cn': "鉤住" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/016.ts b/data-asia/SV/SV8/016.ts new file mode 100644 index 000000000..3dccc4f2e --- /dev/null +++ b/data-asia/SV/SV8/016.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "マルヤクデ", + 'zh-tw': "焚焰蚣", + 'zh-cn': "焚焰蚣" + }, + + illustrator: "Aliya Chen", + rarity: "Common", + category: "Pokemon", + dexId: [851], + hp: 130, + types: ["Fire"], + + description: { + ja: "発熱時の 体温は およそ 800度。 体を 鞭のように しならせて 跳びかかってくるぞ。", + 'zh-tw': "發熱時的體溫大約有800度。 會像鞭子那樣彎曲身體, 朝著敵人彈跳過去。", + 'zh-cn': "發熱時的體溫大約有800度。 會像鞭子那樣彎曲身體, 朝著敵人彈跳過去。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "もえるねっぱ", + 'zh-tw': "燃燒熱浪", + 'zh-cn': "燃燒熱浪" + }, + + damage: 130, + + effect: { + ja: "自分のベンチポケモン全員にも、それぞれ30ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + 'zh-tw': "自己的所有備戰寶可夢也各受到30點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "自己的所有備戰寶可夢也各受到30點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ヒートブラスト", + 'zh-tw': "高溫爆破", + 'zh-cn': "高溫爆破" + }, + + damage: 80 + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/017.ts b/data-asia/SV/SV8/017.ts new file mode 100644 index 000000000..7dd77d694 --- /dev/null +++ b/data-asia/SV/SV8/017.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ホゲータ", + 'zh-tw': "呆火鱷", + 'zh-cn': "呆火鱷" + }, + + illustrator: "Tomomi Ozaki", + rarity: "Common", + category: "Pokemon", + dexId: [909], + hp: 80, + types: ["Fire"], + + description: { + ja: "炎袋が 小さく あふれ出た エネルギーが 頭の くぼみから 放出され ゆらゆら 揺れる。", + 'zh-tw': "火囊很小,因此能量會 溢出來,在牠頭上的 凹槽那裡搖曳晃動。", + 'zh-cn': "火囊很小,因此能量會 溢出來,在牠頭上的 凹槽那裡搖曳晃動。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + ja: "ねつでこがす", + 'zh-tw': "熱灼燒", + 'zh-cn': "熱灼燒" + }, + + damage: 20, + + effect: { + ja: "相手のバトルポケモンをやけどにする。", + 'zh-tw': "將對手的戰鬥寶可夢【灼傷】。", + 'zh-cn': "將對手的戰鬥寶可夢【灼傷】。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/018.ts b/data-asia/SV/SV8/018.ts new file mode 100644 index 000000000..78079c2a1 --- /dev/null +++ b/data-asia/SV/SV8/018.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "アチゲータ", + 'zh-tw': "炙燙鱷", + 'zh-cn': "炙燙鱷" + }, + + illustrator: "Atsuya Uki", + rarity: "Common", + category: "Pokemon", + dexId: [910], + hp: 110, + types: ["Fire"], + + description: { + ja: "声帯と 炎袋の 弁は 密接な 関係。 だみ声を 上げながら 炎を 吐き散らす。", + 'zh-tw': "聲帶和火囊的閥緊鄰在一起。 會一邊發出嘶啞的聲音, 一邊噴灑火焰。", + 'zh-cn': "聲帶和火囊的閥緊鄰在一起。 會一邊發出嘶啞的聲音, 一邊噴灑火焰。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + ja: "ヒートブレス", + 'zh-tw': "高溫吐息", + 'zh-cn': "高溫吐息" + }, + + damage: "30+", + + effect: { + ja: "コインを1回投げオモテなら、50ダメージ追加。", + 'zh-tw': "擲1次硬幣若為正面,則增加50點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加50點傷害。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/019.ts b/data-asia/SV/SV8/019.ts new file mode 100644 index 000000000..80a122797 --- /dev/null +++ b/data-asia/SV/SV8/019.ts @@ -0,0 +1,73 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ラウドボーン", + 'zh-tw': "骨紋巨聲鱷", + 'zh-cn': "骨紋巨聲鱷" + }, + + illustrator: "akagi", + rarity: "Rare", + category: "Pokemon", + dexId: [911], + hp: 180, + types: ["Fire"], + + description: { + ja: "優しい 歌声は 聴いた者の 魂を 癒す。 3000度の 炎で 敵を 焼き尽くす。", + 'zh-tw': "溫柔的歌聲能療癒聽者的靈魂。 會使用3000度的火焰 將敵人燒成灰燼。", + 'zh-cn': "溫柔的歌聲能療癒聽者的靈魂。 會使用3000度的火焰 將敵人燒成灰燼。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + ja: "てんねん", + 'zh-tw': "純樸", + 'zh-cn': "純樸" + }, + + effect: { + ja: "このポケモンは、相手のポケモンが使うワザの効果を受けない。", + 'zh-tw': "這隻寶可夢不會受到對手的寶可夢使用招式的效果的影響。", + 'zh-cn': "這隻寶可夢不會受到對手的寶可夢使用招式的效果的影響。" + } + }], + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + ja: "フレアリサイタル", + 'zh-tw': "純樸", + 'zh-tw': "閃焰獨唱會", + 'zh-cn': "閃焰獨唱會" + }, + + damage: "60+", + + effect: { + ja: "おたがいのベンチポケモンの数×20ダメージ追加。", + 'zh-tw': "這隻寶可夢不會受到對手的寶可夢使用招式的效果的影響。", + 'zh-tw': "增加雙方的備戰寶可夢的數量×20點傷害。", + 'zh-cn': "增加雙方的備戰寶可夢的數量×20點傷害。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/020.ts b/data-asia/SV/SV8/020.ts new file mode 100644 index 000000000..665e04c04 --- /dev/null +++ b/data-asia/SV/SV8/020.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "カルボウ", + 'zh-tw': "炭小侍", + 'zh-cn': "炭小侍" + }, + + illustrator: "Mékayu", + rarity: "Common", + category: "Pokemon", + dexId: [935], + hp: 80, + types: ["Fire"], + + description: { + ja: "戦いになると 火力が 上がり 摂氏1000度に 達する。 油分の多い 木の実を 好む。", + 'zh-tw': "在進入戰鬥狀態後, 火力會上升至攝氏1000度。 喜歡吃油脂含量高的樹果。", + 'zh-cn': "在進入戰鬥狀態後, 火力會上升至攝氏1000度。 喜歡吃油脂含量高的樹果。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "なぐる", + 'zh-tw': "打擊", + 'zh-cn': "打擊" + }, + + damage: 10 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "かえんほうしゃ", + 'zh-tw': "噴射火焰", + 'zh-cn': "噴射火焰" + }, + + damage: 70, + + effect: { + ja: "このポケモンについているエネルギーを1個選び、トラッシュする。", + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/021.ts b/data-asia/SV/SV8/021.ts new file mode 100644 index 000000000..75ed208ad --- /dev/null +++ b/data-asia/SV/SV8/021.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "グレンアルマ", + 'zh-tw': "紅蓮鎧騎", + 'zh-cn': "紅蓮鎧騎" + }, + + illustrator: "DOM", + rarity: "Uncommon", + category: "Pokemon", + dexId: [936], + hp: 140, + types: ["Fire"], + + description: { + ja: "エスパーと 炎の エネルギーで 強化された 鎧を まとう。 灼熱の 火の玉を 放つ。", + 'zh-tw': "身上包裹著受到超能力 和火焰能量強化的鎧甲。 會釋放熾熱的火球。", + 'zh-cn': "身上包裹著受到超能力 和火焰能量強化的鎧甲。 會釋放熾熱的火球。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "かえん", + 'zh-tw': "烈焰", + 'zh-cn': "烈焰" + }, + + damage: 50 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "グレンブラスター", + 'zh-tw': "紅蓮引爆", + 'zh-cn': "紅蓮引爆" + }, + + effect: { + ja: "このポケモンについているエネルギーをすべてトラッシュし、相手のベンチポケモン1匹に、180ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + 'zh-tw': "將這隻寶可夢身上附加的【火】能量卡全部丟棄,對手的1隻備戰寶可夢受到180點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "將這隻寶可夢身上附加的【火】能量卡全部丟棄,對手的1隻備戰寶可夢受到180點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/022.ts b/data-asia/SV/SV8/022.ts new file mode 100644 index 000000000..3bbe78376 --- /dev/null +++ b/data-asia/SV/SV8/022.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ソウブレイズ", + 'zh-tw': "蒼炎刃鬼", + 'zh-cn': "蒼炎刃鬼" + }, + + illustrator: "kantaro", + rarity: "Uncommon", + category: "Pokemon", + dexId: [937], + hp: 140, + types: ["Fire"], + + description: { + ja: "怨念の 染みついた 古い 鎧により 進化した 姿。 容赦なく 敵を 切り刻む。", + 'zh-tw': "憑藉滲進怨念的舊鎧甲 而進化成的樣子。 會毫不留情地斬斷敵人。", + 'zh-cn': "憑藉滲進怨念的舊鎧甲 而進化成的樣子。 會毫不留情地斬斷敵人。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ブレイズカース", + 'zh-tw': "火焰咒詛", + 'zh-cn': "火焰咒詛" + }, + + effect: { + ja: "相手のポケモン全員についている特殊エネルギーを、すべてトラッシュする。", + 'zh-tw': "將對手的所有寶可夢身上附加的特殊能量卡全部丟棄。", + 'zh-cn': "將對手的所有寶可夢身上附加的特殊能量卡全部丟棄。" + } + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "こくえんぎり", + 'zh-tw': "黑煙斬", + 'zh-cn': "黑煙斬" + }, + + damage: 160, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/023.ts b/data-asia/SV/SV8/023.ts new file mode 100644 index 000000000..91240ec25 --- /dev/null +++ b/data-asia/SV/SV8/023.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "スコヴィランex", + 'zh-tw': "狠辣椒ex", + 'zh-cn': "狠辣椒ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Fire"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "ダブルタイプ", + 'zh-tw': "雙重屬性", + 'zh-cn': "雙重屬性" + }, + + effect: { + ja: "このポケモンは、場にいるかぎりとの2つのタイプになる。", + 'zh-tw': "只要這隻寶可夢在場上,改為【草】與【火】2種屬性。", + 'zh-cn': "只要這隻寶可夢在場上,改為【草】與【火】2種屬性。" + } + }], + + attacks: [{ + cost: ["Fire", "Fire"], + + name: { + ja: "スパイシーレイジ", + 'zh-tw': "香料激怒", + 'zh-cn': "香料激怒" + }, + + damage: "10+", + + effect: { + ja: "このポケモンにのっているダメカンの数×70ダメージ追加。", + 'zh-tw': "增加這隻寶可夢身上放置的傷害指示物的數量×70點傷害。", + 'zh-cn': "增加這隻寶可夢身上放置的傷害指示物的數量×70點傷害。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/024.ts b/data-asia/SV/SV8/024.ts new file mode 100644 index 000000000..844cbd7f1 --- /dev/null +++ b/data-asia/SV/SV8/024.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "パルデア ケンタロス", + 'zh-tw': "帕底亞 肯泰羅", + 'zh-cn': "帕底亞 肯泰羅" + }, + + illustrator: "toi8", + rarity: "Uncommon", + category: "Pokemon", + dexId: [128], + hp: 130, + types: ["Water"], + + description: { + ja: "ツノから 水を 吹きだし 泳ぐ。 脂肪分が 多く 浮きやすいのが ウォーター種の 特徴。", + 'zh-tw': "會從角噴出水來游泳。 脂肪含量高而容易浮在水上 是水瀾種的特徵。", + 'zh-cn': "會從角噴出水來游泳。 脂肪含量高而容易浮在水上 是水瀾種的特徵。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "かちあげホーン", + 'zh-tw': "上搗角擊", + 'zh-cn': "上搗角擊" + }, + + damage: 30, + + effect: { + ja: "のぞむなら、相手のバトル場の2進化ポケモンについているエネルギーを2個選び、相手の手札にもどす。", + 'zh-tw': "若希望,選擇2個對手的戰鬥場的【2階進化】寶可夢身上附加的能量,放回對手的手牌。", + 'zh-cn': "若希望,選擇2個對手的戰鬥場的【2階進化】寶可夢身上附加的能量,放回對手的手牌。" + } + }, { + cost: ["Water", "Water", "Colorless"], + + name: { + ja: "ジェットヘッド", + 'zh-tw': "噴射頭擊", + 'zh-cn': "噴射頭擊" + }, + + damage: 100 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/025.ts b/data-asia/SV/SV8/025.ts new file mode 100644 index 000000000..5492ceba3 --- /dev/null +++ b/data-asia/SV/SV8/025.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ヒンバス", + 'zh-tw': "醜醜魚", + 'zh-cn': "醜醜魚" + }, + + illustrator: "Kedamahadaitai Yawarakai", + rarity: "Common", + category: "Pokemon", + dexId: [349], + hp: 30, + types: ["Water"], + + description: { + ja: "一番 みすぼらしい ポケモン。 水草の 多い 川底で 大勢 集まって 暮らしている。", + 'zh-tw': "最寒酸的寶可夢。 在有許多水草的河底 群聚而居。", + 'zh-cn': "最寒酸的寶可夢。 在有許多水草的河底 群聚而居。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "はねにげ", + 'zh-tw': "躍起逃走", + 'zh-cn': "躍起逃走" + }, + + effect: { + ja: "このポケモンをベンチポケモンと入れ替える。", + 'zh-tw': "將這隻寶可夢與備戰寶可夢互換。", + 'zh-cn': "將這隻寶可夢與備戰寶可夢互換。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/026.ts b/data-asia/SV/SV8/026.ts new file mode 100644 index 000000000..d3d84df96 --- /dev/null +++ b/data-asia/SV/SV8/026.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ミロカロスex", + 'zh-tw': "美納斯ex", + 'zh-cn': "美納斯ex" + }, + + illustrator: "hncl", + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "きらめくウロコ", + 'zh-tw': "‌璀璨鱗片", + 'zh-cn': "‌璀璨鱗片" + }, + + effect: { + ja: "このポケモンは、相手の「テラスタル」のポケモンからワザのダメージや効果を受けない。", + 'zh-tw': "這隻寶可夢不會受到對手的「太晶」寶可夢招式的傷害與效果的影響。", + 'zh-cn': "這隻寶可夢不會受到對手的「太晶」寶可夢招式的傷害與效果的影響。" + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + ja: "ヒプノスプラッシュ", + 'zh-tw': "昏睡飛濺", + 'zh-cn': "昏睡飛濺" + }, + + damage: 160, + + effect: { + ja: "相手のバトルポケモンをねむりにする。", + 'zh-tw': "將對手的戰鬥寶可夢【睡眠】。", + 'zh-cn': "將對手的戰鬥寶可夢【睡眠】。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/027.ts b/data-asia/SV/SV8/027.ts new file mode 100644 index 000000000..5eb8afc66 --- /dev/null +++ b/data-asia/SV/SV8/027.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "タマザラシ", + 'zh-tw': "海豹球", + 'zh-cn': "海豹球" + }, + + illustrator: "Teeziro", + rarity: "Common", + category: "Pokemon", + dexId: [363], + hp: 70, + types: ["Water"], + + description: { + ja: "ぶ厚い 脂肪に 包まれた 見事に まんまるな 体。 歩くより 転がるほうが 速い。", + 'zh-tw': "身體被厚厚的脂肪包裹著, 圓得令人讚嘆。用翻滾的 方式移動反而比走路還要快。", + 'zh-cn': "身體被厚厚的脂肪包裹著, 圓得令人讚嘆。用翻滾的 方式移動反而比走路還要快。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "こなゆき", + 'zh-tw': "細雪", + 'zh-cn': "細雪" + }, + + damage: 10, + + effect: { + ja: "相手のバトルポケモンをねむりにする。", + 'zh-tw': "將對手的戰鬥寶可夢【睡眠】。", + 'zh-cn': "將對手的戰鬥寶可夢【睡眠】。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/028.ts b/data-asia/SV/SV8/028.ts new file mode 100644 index 000000000..57da98dfd --- /dev/null +++ b/data-asia/SV/SV8/028.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "トドグラー", + 'zh-tw': "海魔獅", + 'zh-cn': "海魔獅" + }, + + illustrator: "Mina Nakai", + rarity: "Common", + category: "Pokemon", + dexId: [364], + hp: 100, + types: ["Water"], + + description: { + ja: "流氷の 上で 生活。 泳ぎながら 獲物の 匂いを 嗅ぎわけて 見つけだし 捕まえる。", + 'zh-tw': "在浮冰上生活。能夠一邊 游泳一邊嗅出獵物的氣味, 把對方找出來獵捕。", + 'zh-cn': "在浮冰上生活。能夠一邊 游泳一邊嗅出獵物的氣味, 把對方找出來獵捕。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "つきたおし", + 'zh-tw': "撞倒", + 'zh-cn': "撞倒" + }, + + damage: 30 + }, { + cost: ["Water", "Water"], + + name: { + ja: "アイスボール", + 'zh-tw': "冰球", + 'zh-cn': "冰球" + }, + + damage: 60 + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/029.ts b/data-asia/SV/SV8/029.ts new file mode 100644 index 000000000..f38a1b98f --- /dev/null +++ b/data-asia/SV/SV8/029.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "トドゼルガ", + 'zh-tw': "帝牙海獅", + 'zh-cn': "帝牙海獅" + }, + + illustrator: "Mitsuhiro Arita", + rarity: "Uncommon", + category: "Pokemon", + dexId: [365], + hp: 170, + types: ["Water"], + + description: { + ja: "2、30匹で 群れを つくる。 敵に 襲われると リーダーは 体を 張って 群れを 守る。", + 'zh-tw': "會由2、30隻群居生活。 受到敵人攻擊時,首領會 奮不顧身地保護群體。", + 'zh-cn': "會由2、30隻群居生活。 受到敵人攻擊時,首領會 奮不顧身地保護群體。" + }, + + stage: "Stage2", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "とうけつファング", + 'zh-tw': "凍結獠牙", + 'zh-cn': "凍結獠牙" + }, + + damage: 60, + + effect: { + ja: "次の相手の番、ついているエネルギーが2個以下のポケモン全員は、ワザが使えない。(新しく場に出したポケモンもふくむ。)", + 'zh-tw': "在下個對手的回合,身上附加的能量為2個以下的所有寶可夢無法使用招式。(包含新上場的寶可夢。)", + 'zh-cn': "在下個對手的回合,身上附加的能量為2個以下的所有寶可夢無法使用招式。(包含新上場的寶可夢。)" + } + }, { + cost: ["Water", "Water"], + + name: { + ja: "メガトンフォール", + 'zh-tw': "百萬噸墜落", + 'zh-cn': "百萬噸墜落" + }, + + damage: 170, + + effect: { + ja: "このポケモンにも50ダメージ。", + 'zh-tw': "這隻寶可夢也受到50點傷害。", + 'zh-cn': "這隻寶可夢也受到50點傷害。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/030.ts b/data-asia/SV/SV8/030.ts new file mode 100644 index 000000000..e50747d9b --- /dev/null +++ b/data-asia/SV/SV8/030.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "カラナクシ", + 'zh-tw': "無殼海兔", + 'zh-cn': "無殼海兔" + }, + + illustrator: "Shinya Komatsu", + rarity: "Common", + category: "Pokemon", + dexId: [422], + hp: 70, + types: ["Water"], + + description: { + ja: "磯辺で 見かけることが 多い。 ある程度の 時間であれば 陸上でも 活動できる。", + 'zh-tw': "經常能在岩岸發現牠的身影。 即使是在陸地上,也有辦法 活動上一定程度的時間。", + 'zh-cn': "經常能在岩岸發現牠的身影。 即使是在陸地上,也有辦法 活動上一定程度的時間。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "うちみず", + 'zh-tw': "潑灑清水", + 'zh-cn': "潑灑清水" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/031.ts b/data-asia/SV/SV8/031.ts new file mode 100644 index 000000000..547080757 --- /dev/null +++ b/data-asia/SV/SV8/031.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "テツノツツミ", + 'zh-tw': "鐵包袱", + 'zh-cn': "鐵包袱" + }, + + illustrator: "rika", + rarity: "Uncommon", + category: "Pokemon", + dexId: [991], + hp: 100, + types: ["Water"], + + description: { + ja: "古い 書物に 登場する 謎の 物体に 似た ポケモン。 目撃例は 過去 2件のみ。", + 'zh-tw': "與古書裡記載的神秘物體 長得很相像的寶可夢。 過去只被目擊過2次。", + 'zh-cn': "與古書裡記載的神秘物體 長得很相像的寶可夢。 過去只被目擊過2次。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + ja: "ガストコリジョン", + 'zh-tw': "瞬風衝激", + 'zh-cn': "瞬風衝激" + }, + + damage: "200-", + + effect: { + ja: "相手のバトルポケモンのにげるためのエネルギーの数×50ダメージぶん、このワザのダメージは小さくなる。", + 'zh-tw': "減少對手的戰鬥寶可夢【撤退】所需的能量的數量×50點傷害。", + 'zh-cn': "減少對手的戰鬥寶可夢【撤退】所需的能量的數量×50點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/032.ts b/data-asia/SV/SV8/032.ts new file mode 100644 index 000000000..454f46d98 --- /dev/null +++ b/data-asia/SV/SV8/032.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "パオジアン", + 'zh-tw': "古劍豹", + 'zh-cn': "古劍豹" + }, + + illustrator: "Yuya Oka", + rarity: "Rare", + category: "Pokemon", + dexId: [1002], + hp: 120, + types: ["Water"], + + description: { + ja: "大昔に 剣によって 露と消えた 者たちの 憎しみが 雪を まとい ポケモンになった。", + 'zh-tw': "遙遠過去喪命於劍下者 的憎恨之情纏繞在雪上, 變成了寶可夢。", + 'zh-cn': "遙遠過去喪命於劍下者 的憎恨之情纏繞在雪上, 變成了寶可夢。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ゆきにしずめる", + 'zh-tw': "‌‌沉雪", + 'zh-cn': "‌‌沉雪" + }, + + effect: { + ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。場に出ているスタジアムをトラッシュする。", + 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。將場上的競技場卡丟棄。", + 'zh-cn': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。將場上的競技場卡丟棄。" + } + }], + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + ja: "アイシクルループ", + 'zh-tw': "冰柱閉環", + 'zh-cn': "冰柱閉環" + }, + + damage: 120, + + effect: { + ja: "このポケモンについているエネルギーを1個選び、手札にもどす。", + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,放回手牌。", + 'zh-cn': "選擇1個這隻寶可夢身上附加的能量,放回手牌。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/033.ts b/data-asia/SV/SV8/033.ts new file mode 100644 index 000000000..cf881bded --- /dev/null +++ b/data-asia/SV/SV8/033.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ピカチュウex", + 'zh-tw': "皮卡丘ex", + 'zh-cn': "皮卡丘ex" + }, + + illustrator: "aky CG Works", + rarity: "Double rare", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "がんばりハート", + 'zh-tw': "‌‌勤奮之心", + 'zh-cn': "‌‌勤奮之心" + }, + + effect: { + ja: "このポケモンのHPがまんたんの状態で、このポケモンがワザのダメージを受けてきぜつするとき、きぜつせず、残りHPが「10」の状態で場に残る。", + 'zh-tw': "‌這隻寶可夢的HP是全滿的狀態下,這隻寶可夢受到招式的傷害而【昏厥】時,這隻寶可夢不會【昏厥】,而是以剩餘HP為「10」的狀態留在場上。", + 'zh-cn': "‌這隻寶可夢的HP是全滿的狀態下,這隻寶可夢受到招式的傷害而【昏厥】時,這隻寶可夢不會【昏厥】,而是以剩餘HP為「10」的狀態留在場上。" + } + }], + + attacks: [{ + cost: ["Grass", "Lightning", "Metal"], + + name: { + ja: "トパーズボルト", + 'zh-tw': "黃玉伏特", + 'zh-cn': "黃玉伏特" + }, + + damage: 300, + + effect: { + ja: "このポケモンについているエネルギーを3個選び、トラッシュする。", + 'zh-tw': "選擇3個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇3個這隻寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/034.ts b/data-asia/SV/SV8/034.ts new file mode 100644 index 000000000..111a022da --- /dev/null +++ b/data-asia/SV/SV8/034.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "コイル", + 'zh-tw': "小磁怪", + 'zh-cn': "小磁怪" + }, + + illustrator: "Hoshino KURO", + rarity: "Common", + category: "Pokemon", + dexId: [81], + hp: 60, + types: ["Lightning"], + + description: { + ja: "空中に 浮いたまま 移動して 左右の ユニットから 電磁波などを 放射する。", + 'zh-tw': "會浮在空中移動, 從左右兩邊的組件發射 電磁波之類的東西。", + 'zh-cn': "會浮在空中移動, 從左右兩邊的組件發射 電磁波之類的東西。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + ja: "ピッカリだま", + 'zh-tw': "光彈", + 'zh-cn': "光彈" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/035.ts b/data-asia/SV/SV8/035.ts new file mode 100644 index 000000000..ffed44672 --- /dev/null +++ b/data-asia/SV/SV8/035.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "レアコイル", + 'zh-tw': "三合一磁怪", + 'zh-cn': "三合一磁怪" + }, + + illustrator: "Nisota Niso", + rarity: "Uncommon", + category: "Pokemon", + dexId: [82], + hp: 100, + types: ["Lightning"], + + description: { + ja: "連結した タイプの コイルは 太陽の 黒点が 多いとき たくさん 現れると 言われる。", + 'zh-tw': "據說太陽黑子多的時候, 這類連結在一起的小磁怪 會大量出現。", + 'zh-cn': "據說太陽黑子多的時候, 這類連結在一起的小磁怪 會大量出現。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "かじょうほうでん", + 'zh-tw': "‌‌‌過度放電", + 'zh-cn': "‌‌‌過度放電" + }, + + effect: { + ja: "自分の番に1回使えて、使ったなら、このポケモンをきぜつさせる。自分のトラッシュから基本エネルギーを3枚まで選び、自分のポケモンに好きなようにつける。", + 'zh-tw': "在自己的回合時可使用1次,若使用,則將這隻寶可夢【昏厥】。從自己的棄牌區選擇最多3張基本能量卡,以任意方式附於自己的【雷】寶可夢身上。", + 'zh-cn': "在自己的回合時可使用1次,若使用,則將這隻寶可夢【昏厥】。從自己的棄牌區選擇最多3張基本能量卡,以任意方式附於自己的【雷】寶可夢身上。" + } + }], + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + ja: "ライトニングボール", + 'zh-tw': "雷電球", + 'zh-cn': "雷電球" + }, + + damage: 40 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/036.ts b/data-asia/SV/SV8/036.ts new file mode 100644 index 000000000..794a8c024 --- /dev/null +++ b/data-asia/SV/SV8/036.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ジバコイル", + 'zh-tw': "自爆磁怪", + 'zh-cn': "自爆磁怪" + }, + + illustrator: "Po-Suzuki", + rarity: "Uncommon", + category: "Pokemon", + dexId: [462], + hp: 170, + types: ["Lightning"], + + description: { + ja: "特殊な 磁場で レアコイルの 分子 構造が 組み換えられて ジバコイルに 進化した。", + 'zh-tw': "在特殊磁場的影響下, 三合一磁怪的分子構造受到重組, 從而進化成了自爆磁怪。", + 'zh-cn': "在特殊磁場的影響下, 三合一磁怪的分子構造受到重組, 從而進化成了自爆磁怪。" + }, + + stage: "Stage2", + + attacks: [{ + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + ja: "きょうりょくじば", + 'zh-tw': "強勁磁場", + 'zh-cn': "強勁磁場" + }, + + damage: 80, + + effect: { + ja: "相手のバトルポケモンをこんらんにする。次の相手の番、このワザを受けたポケモンは、にげられない。", + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。在下個對手的回合,受到這個招式的寶可夢無法撤退。" + } + }, { + cost: ["Lightning", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "でんじほう", + 'zh-tw': "電磁炮", + 'zh-cn': "電磁炮" + }, + + damage: 180, + + effect: { + ja: "次の自分の番、このポケモンは「でんじほう」が使えない。", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「電磁炮」。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「電磁炮」。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/037.ts b/data-asia/SV/SV8/037.ts new file mode 100644 index 000000000..950df0a71 --- /dev/null +++ b/data-asia/SV/SV8/037.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ロトム", + 'zh-tw': "洛托姆", + 'zh-cn': "洛托姆" + }, + + illustrator: "Shinya Mizuno", + rarity: "Common", + category: "Pokemon", + dexId: [479], + hp: 80, + types: ["Lightning"], + + description: { + ja: "特殊な モーターを 動かす 動力源として 長い あいだ 研究されていた ポケモン。", + 'zh-tw': "被當作驅動 特殊馬達的動力源, 而被長期研究的寶可夢。", + 'zh-cn': "被當作驅動 特殊馬達的動力源, 而被長期研究的寶可夢。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + ja: "クラッシュパルス", + 'zh-tw': "粉碎脈衝", + 'zh-cn': "粉碎脈衝" + }, + + effect: { + ja: "相手の手札を見て、その中にある「グッズ」と「ポケモンのどうぐ」を、すべてトラッシュする。", + 'zh-tw': "查看對手的手牌,將其中的「物品」卡與「寶可夢道具」卡全部丟棄。", + 'zh-cn': "查看對手的手牌,將其中的「物品」卡與「寶可夢道具」卡全部丟棄。" + } + }, { + cost: ["Lightning"], + + name: { + ja: "エネショート", + 'zh-tw': "能量短路", + 'zh-cn': "能量短路" + }, + + damage: "20×", + + effect: { + ja: "相手のバトルポケモンについているエネルギーの数×20ダメージ。", + 'zh-tw': "造成對手的戰鬥寶可夢身上附加的能量的數量×20點傷害。", + 'zh-cn': "造成對手的戰鬥寶可夢身上附加的能量的數量×20點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/038.ts b/data-asia/SV/SV8/038.ts new file mode 100644 index 000000000..ce03eb84a --- /dev/null +++ b/data-asia/SV/SV8/038.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "シママ", + 'zh-tw': "斑斑馬", + 'zh-cn': "斑斑馬" + }, + + illustrator: "kamonabe", + rarity: "Common", + category: "Pokemon", + dexId: [522], + hp: 70, + types: ["Lightning"], + + description: { + ja: "落雷の 多い 土地を 好む。 たてがみで 雷を 受け止め 体に 電気を 溜めこむのだ。", + 'zh-tw': "喜歡經常發生落雷的土地。 會用鬃毛接下雷電, 把電力儲存到體內。", + 'zh-cn': "喜歡經常發生落雷的土地。 會用鬃毛接下雷電, 把電力儲存到體內。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "くわえる", + 'zh-tw': "叼", + 'zh-cn': "叼" + }, + + effect: { + ja: "自分の山札を1枚引く。", + 'zh-tw': "從自己的牌庫抽出1張卡。", + 'zh-cn': "從自己的牌庫抽出1張卡。" + } + }, { + cost: ["Lightning", "Colorless"], + + name: { + ja: "バチバチ", + 'zh-tw': "劈哩啪啦", + 'zh-cn': "劈哩啪啦" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/039.ts b/data-asia/SV/SV8/039.ts new file mode 100644 index 000000000..d1f42d383 --- /dev/null +++ b/data-asia/SV/SV8/039.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ゼブライカ", + 'zh-tw': "雷電斑馬", + 'zh-cn': "雷電斑馬" + }, + + illustrator: "Sanosuke Sakuma", + rarity: "Common", + category: "Pokemon", + dexId: [523], + hp: 130, + types: ["Lightning"], + + description: { + ja: "雷鳴を 聞くと 群れの シママが 雷から 充電できるように 群れで 雷雲を 追いかける。", + 'zh-tw': "為了讓群體裡的斑斑馬能 透過雷電充電,只要一聽到 雷鳴聲,就會成群追趕雷雲。", + 'zh-cn': "為了讓群體裡的斑斑馬能 透過雷電充電,只要一聽到 雷鳴聲,就會成群追趕雷雲。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Lightning"], + + name: { + ja: "キック", + 'zh-tw': "踢", + 'zh-cn': "踢" + }, + + damage: 30 + }, { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + ja: "マッハボルト", + 'zh-tw': "音速伏特", + 'zh-cn': "音速伏特" + }, + + damage: 120 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/040.ts b/data-asia/SV/SV8/040.ts new file mode 100644 index 000000000..040466a37 --- /dev/null +++ b/data-asia/SV/SV8/040.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "マッギョ", + 'zh-tw': "泥巴魚", + 'zh-cn': "泥巴魚" + }, + + illustrator: "Miki Tanaka", + rarity: "Common", + category: "Pokemon", + dexId: [618], + hp: 110, + types: ["Lightning"], + + description: { + ja: "干潟が すみか。 泥に 棲む 細菌に よって 電気を つくる 器官が 発達した。", + 'zh-tw': "潮間帶便是牠的巢穴。 製造電的器官由於 泥裡的細菌而發達起來。", + 'zh-cn': "潮間帶便是牠的巢穴。 製造電的器官由於 泥裡的細菌而發達起來。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + ja: "バチッとしびれる", + 'zh-tw': "劈啪麻痺", + 'zh-cn': "劈啪麻痺" + }, + + damage: 50, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。さらに、そのポケモンについているエネルギーを1個選び、トラッシュする。", + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。再選擇1個那隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。再選擇1個那隻寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/041.ts b/data-asia/SV/SV8/041.ts new file mode 100644 index 000000000..d9ed5850e --- /dev/null +++ b/data-asia/SV/SV8/041.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "カプ・コケコ", + 'zh-tw': "卡璞・鳴鳴", + 'zh-cn': "卡璞・鳴鳴" + }, + + illustrator: "Souichirou Gunjima", + rarity: "Rare", + category: "Pokemon", + dexId: [785], + hp: 120, + types: ["Lightning"], + + description: { + ja: "守り神と 呼ばれるが 気分を 害する 人間や ポケモンには 襲い掛かる 荒ぶる神 でもある。", + 'zh-tw': "雖被稱為守護神,但會去 襲擊惹自己不開心的人或寶可夢, 是個性情凶悍的神。", + 'zh-cn': "雖被稱為守護神,但會去 襲擊惹自己不開心的人或寶可夢, 是個性情凶悍的神。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "かみなりをよぶ", + 'zh-tw': "召喚雷電", + 'zh-cn': "召喚雷電" + }, + + effect: { + ja: "自分の山札からポケモンを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇最多2張【雷】寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張【雷】寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。" + } + }, { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + ja: "サイドカウンター", + 'zh-tw': "獎賞反擊", + 'zh-cn': "獎賞反擊" + }, + + damage: "90+", + + effect: { + ja: "自分のサイドの残り枚数が、相手のサイドの残り枚数より多いなら、90ダメージ追加。", + 'zh-tw': "若自己剩餘獎賞卡的張數,比對手剩餘獎賞卡的張數多,則增加90點傷害。", + 'zh-cn': "若自己剩餘獎賞卡的張數,比對手剩餘獎賞卡的張數多,則增加90點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/042.ts b/data-asia/SV/SV8/042.ts new file mode 100644 index 000000000..656ff981d --- /dev/null +++ b/data-asia/SV/SV8/042.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "カイデン", + 'zh-tw': "電海燕", + 'zh-cn': "電海燕" + }, + + illustrator: "Pani Kobayashi", + rarity: "Common", + category: "Pokemon", + dexId: [940], + hp: 60, + types: ["Lightning"], + + description: { + ja: "海岸の 崖に 巣を 作る。 巣は パチパチ 弾ける 不思議な 食感で 人気の 珍味。", + 'zh-tw': "會在海岸的懸崖上築巢。 吃起來劈哩啪啦跳的神奇口感, 讓牠的巢成了受歡迎的珍奇美食。", + 'zh-cn': "會在海岸的懸崖上築巢。 吃起來劈哩啪啦跳的神奇口感, 讓牠的巢成了受歡迎的珍奇美食。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + ja: "つばめがえし", + 'zh-tw': "燕返", + 'zh-cn': "燕返" + }, + + damage: "10+", + + effect: { + ja: "コインを1回投げオモテなら、20ダメージ追加。", + 'zh-tw': "擲1次硬幣若為正面,則增加20點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加20點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/043.ts b/data-asia/SV/SV8/043.ts new file mode 100644 index 000000000..103304f33 --- /dev/null +++ b/data-asia/SV/SV8/043.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "タイカイデン", + 'zh-tw': "大電海燕", + 'zh-cn': "大電海燕" + }, + + illustrator: "KEIICHIRO ITO", + rarity: "Uncommon", + category: "Pokemon", + dexId: [941], + hp: 120, + types: ["Lightning"], + + description: { + ja: "のど袋に 翼で 作った 電気を 溜める。 羽の 油分が とても 少なく 泳ぎは 苦手。", + 'zh-tw': "會把翅膀製造的電儲存到喉囊裡。 由於羽毛含的油脂少之又少, 導致牠不是很擅長游泳。", + 'zh-cn': "會把翅膀製造的電儲存到喉囊裡。 由於羽毛含的油脂少之又少, 導致牠不是很擅長游泳。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "かっくう", + 'zh-tw': "滑翔", + 'zh-cn': "滑翔" + }, + + damage: 50 + }, { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + ja: "ストームボルト", + 'zh-tw': "風暴伏特", + 'zh-cn': "風暴伏特" + }, + + damage: 160, + + effect: { + ja: "このポケモンについているエネルギーをすべて、ベンチポケモンに好きなようにつけ替える。", + 'zh-tw': "將這隻寶可夢身上附加的所有能量卡,以任意方式改附於備戰寶可夢身上。", + 'zh-cn': "將這隻寶可夢身上附加的所有能量卡,以任意方式改附於備戰寶可夢身上。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/044.ts b/data-asia/SV/SV8/044.ts new file mode 100644 index 000000000..0ab1369f9 --- /dev/null +++ b/data-asia/SV/SV8/044.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ミライドン", + 'zh-tw': "密勒頓", + 'zh-cn': "密勒頓" + }, + + illustrator: "Nurikabe", + rarity: "Uncommon", + category: "Pokemon", + dexId: [1008], + hp: 120, + types: ["Lightning"], + + description: { + ja: "古い 書物に 名が ある テツノオロチらしい。 雷で 大地を 灰に 変えたという。", + 'zh-tw': "牠似乎就是古書裡所提及的 鐵大蛇。傳說牠曾用雷電 將大地化成了一片灰。", + 'zh-cn': "牠似乎就是古書裡所提及的 鐵大蛇。傳說牠曾用雷電 將大地化成了一片灰。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + ja: "プロテクトコード", + 'zh-tw': "防護代碼", + 'zh-cn': "防護代碼" + }, + + damage: 40, + + effect: { + ja: "次の相手の番、自分の「未来」のポケモン全員は、「ポケモンex」からワザのダメージを受けない。このポケモンがバトル場をはなれたら、この効果はなくなる。", + 'zh-tw': "在下個對手的回合,自己的所有「未來」寶可夢不會受到「寶可夢【ex】」招式的傷害。若這隻寶可夢離開戰鬥場,則這個效果消除。", + 'zh-cn': "在下個對手的回合,自己的所有「未來」寶可夢不會受到「寶可夢【ex】」招式的傷害。若這隻寶可夢離開戰鬥場,則這個效果消除。" + } + }, { + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + ja: "サンダークロー", + 'zh-tw': "閃電爪", + 'zh-cn': "閃電爪" + }, + + damage: 100 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/045.ts b/data-asia/SV/SV8/045.ts new file mode 100644 index 000000000..2143efd27 --- /dev/null +++ b/data-asia/SV/SV8/045.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "トゲピー", + 'zh-tw': "波克比", + 'zh-cn': "波克比" + }, + + illustrator: "Yoko Hishida", + rarity: "Common", + category: "Pokemon", + dexId: [175], + hp: 50, + types: ["Psychic"], + + description: { + ja: "殻の中に 幸せが たくさん つまっているらしく 優しくされると 幸運を 分け与える という。", + 'zh-tw': "殼內好像塞滿了許多幸福, 據說只要溫柔地對待牠, 牠就會把幸運分給對方。", + 'zh-cn': "殼內好像塞滿了許多幸福, 據說只要溫柔地對待牠, 牠就會把幸運分給對方。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "はたく", + 'zh-tw': "拍擊", + 'zh-cn': "拍擊" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/046.ts b/data-asia/SV/SV8/046.ts new file mode 100644 index 000000000..15926a6ff --- /dev/null +++ b/data-asia/SV/SV8/046.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "トゲチック", + 'zh-tw': "波克基古", + 'zh-cn': "波克基古" + }, + + illustrator: "Teeziro", + rarity: "Common", + category: "Pokemon", + dexId: [176], + hp: 90, + types: ["Psychic"], + + description: { + ja: "心優しい 人の 前に 幸せを もたらすため 姿を 現すと 言われている。", + 'zh-tw': "據說牠會為了將 幸福帶給心地善良 的人而現身。", + 'zh-cn': "據說牠會為了將 幸福帶給心地善良 的人而現身。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ドレインキッス", + 'zh-tw': "吸取之吻", + 'zh-cn': "吸取之吻" + }, + + damage: 30, + + effect: { + ja: "このポケモンのHPを「30」回復する。", + 'zh-tw': "將這隻寶可夢恢復「30」HP。", + 'zh-cn': "將這隻寶可夢恢復「30」HP。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/047.ts b/data-asia/SV/SV8/047.ts new file mode 100644 index 000000000..96c4cd97e --- /dev/null +++ b/data-asia/SV/SV8/047.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "トゲキッス", + 'zh-tw': "波克基斯", + 'zh-cn': "波克基斯" + }, + + illustrator: "Narano", + rarity: "Rare", + category: "Pokemon", + dexId: [468], + hp: 140, + types: ["Psychic"], + + description: { + ja: "争い事や もめ事が 起こる 場所には 姿を 見せない。 近ごろは ほとんど 見かけない。", + 'zh-tw': "不會出現在發生 爭端和紛亂的地方。 近來幾乎見不到牠的身影。", + 'zh-cn': "不會出現在發生 爭端和紛亂的地方。 近來幾乎見不到牠的身影。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + ja: "ワンダーキッス", + 'zh-tw': "奇跡之吻", + 'zh-cn': "奇跡之吻" + }, + + effect: { + ja: "このポケモンがいるかぎり、相手のバトルポケモンがきぜつするたび、自分はコインを1回投げる。オモテなら、サイドを1枚多くとる。この効果は、この特性を持つポケモンが何匹いても、重ならない。", + 'zh-tw': "只要這隻寶可夢在場上,每次當對手的戰鬥寶可夢【昏厥】時,自己擲1次硬幣。若為正面,則多獲得1張獎賞卡。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。", + 'zh-cn': "只要這隻寶可夢在場上,每次當對手的戰鬥寶可夢【昏厥】時,自己擲1次硬幣。若為正面,則多獲得1張獎賞卡。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "スピードウイング", + 'zh-tw': "高速之翼", + 'zh-cn': "高速之翼" + }, + + damage: 140 + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/048.ts b/data-asia/SV/SV8/048.ts new file mode 100644 index 000000000..9a077619b --- /dev/null +++ b/data-asia/SV/SV8/048.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ユクシー", + 'zh-tw': "由克希", + 'zh-cn': "由克希" + }, + + illustrator: "HYOGONOSUKE", + rarity: "Common", + category: "Pokemon", + dexId: [480], + hp: 70, + types: ["Psychic"], + + description: { + ja: "知識の神と 呼ばれている。 目を 合わせた 者の 記憶を 消してしまう 力を 持つという。", + 'zh-tw': "被稱為知識之神。 擁有將與自己視線相對者的 記憶消去的力量。", + 'zh-cn': "被稱為知識之神。 擁有將與自己視線相對者的 記憶消去的力量。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "いたみのきおく", + 'zh-tw': "痛楚記憶", + 'zh-cn': "痛楚記憶" + }, + + effect: { + ja: "相手のポケモン全員に、それぞれダメカンを2個のせる。", + 'zh-tw': "在對手的所有寶可夢身上各放置2個傷害指示物。", + 'zh-cn': "在對手的所有寶可夢身上各放置2個傷害指示物。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/049.ts b/data-asia/SV/SV8/049.ts new file mode 100644 index 000000000..298825f2c --- /dev/null +++ b/data-asia/SV/SV8/049.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "エムリット", + 'zh-tw': "艾姆利多", + 'zh-cn': "艾姆利多" + }, + + illustrator: "HYOGONOSUKE", + rarity: "Common", + category: "Pokemon", + dexId: [481], + hp: 70, + types: ["Psychic"], + + description: { + ja: "悲しみの 苦しさと 喜びの 尊さを 人々に 教えた。 感情の神と 呼ばれている。", + 'zh-tw': "教導了人們悲傷的痛苦 以及喜悅的珍貴。 被稱為感情之神。", + 'zh-cn': "教導了人們悲傷的痛苦 以及喜悅的珍貴。 被稱為感情之神。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "こころをみたす", + 'zh-tw': "滿載心田", + 'zh-cn': "滿載心田" + }, + + effect: { + ja: "自分の手札から「基本エネルギー」を2枚まで選び、自分のポケモンに好きなようにつける。", + 'zh-tw': "從自己的手牌選擇最多2張「基本【超】能量」卡,以任意方式附於自己的寶可夢身上。", + 'zh-cn': "從自己的手牌選擇最多2張「基本【超】能量」卡,以任意方式附於自己的寶可夢身上。" + } + }, { + cost: ["Psychic", "Psychic"], + + name: { + ja: "ゴッドバースト", + 'zh-tw': "神之爆炸", + 'zh-cn': "神之爆炸" + }, + + damage: 160, + + effect: { + ja: "自分のベンチに「ユクシー」「アグノム」がいないなら、このワザは失敗。", + 'zh-tw': "若自己的備戰區沒有「由克希」「亞克諾姆」,則這個招式失敗。", + 'zh-cn': "若自己的備戰區沒有「由克希」「亞克諾姆」,則這個招式失敗。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/050.ts b/data-asia/SV/SV8/050.ts new file mode 100644 index 000000000..a33d37562 --- /dev/null +++ b/data-asia/SV/SV8/050.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "アグノム", + 'zh-tw': "亞克諾姆", + 'zh-cn': "亞克諾姆" + }, + + illustrator: "HYOGONOSUKE", + rarity: "Common", + category: "Pokemon", + dexId: [482], + hp: 70, + types: ["Psychic"], + + description: { + ja: "意思の神と 呼ばれている。 湖の 底で 眠り続け 世界の バランスを とっている。", + 'zh-tw': "被稱為意志之神。 在湖底沉睡著, 維持世界的平衡。", + 'zh-cn': "被稱為意志之神。 在湖底沉睡著, 維持世界的平衡。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "マインドキネシス", + 'zh-tw': "意志強念", + 'zh-cn': "意志強念" + }, + + damage: "10+", + + effect: { + ja: "相手のポケモン全員にのっているダメカンの数×10ダメージ追加。", + 'zh-tw': "增加對手的所有寶可夢身上放置的傷害指示物的數量×10點傷害。", + 'zh-cn': "增加對手的所有寶可夢身上放置的傷害指示物的數量×10點傷害。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/051.ts b/data-asia/SV/SV8/051.ts new file mode 100644 index 000000000..ee076ea94 --- /dev/null +++ b/data-asia/SV/SV8/051.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "デスマス", + 'zh-tw': "哭哭面具", + 'zh-cn': "哭哭面具" + }, + + illustrator: "IKEDA Saki", + rarity: "Common", + category: "Pokemon", + dexId: [562], + hp: 70, + types: ["Psychic"], + + description: { + ja: "夜な夜な 遺跡を さまよう。 もっている マスクは 人 だった ころの 自分の 顔 だという。", + 'zh-tw': "每天夜裡都在遺跡中徘徊。 據說牠拿著的面具 是牠還是人類時的臉。", + 'zh-cn': "每天夜裡都在遺跡中徘徊。 據說牠拿著的面具 是牠還是人類時的臉。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "つぶやく", + 'zh-tw': "囈語", + 'zh-cn': "囈語" + }, + + damage: 10 + }, { + cost: ["Psychic", "Colorless"], + + name: { + ja: "ちょっとうらむ", + 'zh-tw': "咒怨一下", + 'zh-cn': "咒怨一下" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/052.ts b/data-asia/SV/SV8/052.ts new file mode 100644 index 000000000..f07ea2cec --- /dev/null +++ b/data-asia/SV/SV8/052.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "デスカーン", + 'zh-tw': "死神棺", + 'zh-cn': "死神棺" + }, + + illustrator: "Shiburingaru", + rarity: "Rare", + category: "Pokemon", + dexId: [563], + hp: 120, + types: ["Psychic"], + + description: { + ja: "ピカピカの 黄金の 体。 もはや 人間だった ことは 思い出すことは ないと いう。", + 'zh-tw': "擁有閃亮亮的黃金身軀。 據說牠已再也無法記起 自己曾經是人類。", + 'zh-cn': "擁有閃亮亮的黃金身軀。 據說牠已再也無法記起 自己曾經是人類。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "めいふのおきて", + 'zh-tw': "冥府之律", + 'zh-cn': "冥府之律" + }, + + effect: { + ja: "おたがいの特性を持つポケモン全員に、それぞれダメカンを6個のせる。", + 'zh-tw': "在雙方的所有擁有特性的寶可夢身上,各放置6個傷害指示物。", + 'zh-cn': "在雙方的所有擁有特性的寶可夢身上,各放置6個傷害指示物。" + } + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "ホロウショット", + 'zh-tw': "陰森射擊", + 'zh-cn': "陰森射擊" + }, + + damage: 100 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/053.ts b/data-asia/SV/SV8/053.ts new file mode 100644 index 000000000..b7010ebc6 --- /dev/null +++ b/data-asia/SV/SV8/053.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ニャスパー", + 'zh-tw': "妙喵", + 'zh-cn': "妙喵" + }, + + illustrator: "Natsumi Yoshida", + rarity: "Common", + category: "Pokemon", + dexId: [677], + hp: 60, + types: ["Psychic"], + + description: { + ja: "無表情だが 内面では サイコパワーを 抑えこむのに 必死に なっているのだ。", + 'zh-tw': "雖然看起來面無表情, 但其實內心正非常努力地 在控制自己的精神力量。", + 'zh-cn': "雖然看起來面無表情, 但其實內心正非常努力地 在控制自己的精神力量。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "みすかす", + 'zh-tw': "看透", + 'zh-cn': "看透" + }, + + effect: { + ja: "相手の手札を見る。", + 'zh-tw': "查看對手的手牌。", + 'zh-cn': "查看對手的手牌。" + } + }, { + cost: ["Psychic", "Colorless"], + + name: { + ja: "サイコショット", + 'zh-tw': "精神射擊", + 'zh-cn': "精神射擊" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/054.ts b/data-asia/SV/SV8/054.ts new file mode 100644 index 000000000..4760758a2 --- /dev/null +++ b/data-asia/SV/SV8/054.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ニャオニクス", + 'zh-tw': "超能妙喵", + 'zh-cn': "超能妙喵" + }, + + illustrator: "Yoriyuki Ikegami", + rarity: "Uncommon", + category: "Pokemon", + dexId: [678], + hp: 90, + types: ["Psychic"], + + description: { + ja: "強力な サイコパワーを 出し続けていると ニャオニクスの 肉体にも ダメージが およぶ。", + 'zh-tw': "如果持續不斷釋放強大的 精神力量,超能妙喵的 肉體也會受到傷害。", + 'zh-cn': "如果持續不斷釋放強大的 精神力量,超能妙喵的 肉體也會受到傷害。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "さそうしっぽ", + 'zh-tw': "誘導之尾", + 'zh-cn': "誘導之尾" + }, + + effect: { + ja: "自分の番に、自分の手札から「のんびりじゃらし」を1枚トラッシュするなら、1回使える。相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。", + 'zh-tw': "在自己的回合,若從自己的手牌將1張「悠哉尾草棒」丟棄,則可使用1次。選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。", + 'zh-cn': "在自己的回合,若從自己的手牌將1張「悠哉尾草棒」丟棄,則可使用1次。選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "サイコショット", + 'zh-tw': "精神射擊", + 'zh-cn': "精神射擊" + }, + + damage: 80 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/055.ts b/data-asia/SV/SV8/055.ts new file mode 100644 index 000000000..42fe50a6f --- /dev/null +++ b/data-asia/SV/SV8/055.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "デデンネ", + 'zh-tw': "咚咚鼠", + 'zh-cn': "咚咚鼠" + }, + + illustrator: "Uninori", + rarity: "Common", + category: "Pokemon", + dexId: [702], + hp: 70, + types: ["Psychic"], + + description: { + ja: "ほっぺの ヒゲから 電波を 飛ばし 仲間と 連絡を とりあう。 電気が 減ると 丸まり 眠る。", + 'zh-tw': "會從雙頰上的鬍鬚發出電波 來與同伴相互聯絡。 電力變少時會蜷縮起來睡覺。", + 'zh-cn': "會從雙頰上的鬍鬚發出電波 來與同伴相互聯絡。 電力變少時會蜷縮起來睡覺。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "でんじソナー", + 'zh-tw': "電磁聲納", + 'zh-cn': "電磁聲納" + }, + + effect: { + ja: "自分のトラッシュからトレーナーズを1枚選び、相手に見せて、手札に加える。", + 'zh-tw': "從自己的棄牌區選擇1張訓練家卡,在給對手看過後加入手牌。", + 'zh-cn': "從自己的棄牌區選擇1張訓練家卡,在給對手看過後加入手牌。" + } + }, { + cost: ["Psychic"], + + name: { + ja: "かじる", + 'zh-tw': "咬", + 'zh-cn': "咬" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/056.ts b/data-asia/SV/SV8/056.ts new file mode 100644 index 000000000..475a1ee6b --- /dev/null +++ b/data-asia/SV/SV8/056.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "スナバァ", + 'zh-tw': "沙丘娃", + 'zh-cn': "沙丘娃" + }, + + illustrator: "Koji Nakata", + rarity: "Common", + category: "Pokemon", + dexId: [769], + hp: 90, + types: ["Psychic"], + + description: { + ja: "獲物の 目を 砂で 潰し その隙に 近づこうとするが 動きが 遅いので 逃げられる。", + 'zh-tw': "會用沙子攻擊獵物的眼睛後 趁機接近,但卻總是因為 行動緩慢而讓獵物逃走。", + 'zh-cn': "會用沙子攻擊獵物的眼睛後 趁機接近,但卻總是因為 行動緩慢而讓獵物逃走。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "すなしぶき", + 'zh-tw': "沙沫", + 'zh-cn': "沙沫" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/057.ts b/data-asia/SV/SV8/057.ts new file mode 100644 index 000000000..4a527ed5a --- /dev/null +++ b/data-asia/SV/SV8/057.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "シロデスナex", + 'zh-tw': "噬沙堡爺ex", + 'zh-cn': "噬沙堡爺ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 280, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "すなじごく", + 'zh-tw': "流沙地獄", + 'zh-cn': "流沙地獄" + }, + + damage: 160, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + } + }, { + cost: ["Water", "Psychic", "Fighting"], + + name: { + ja: "バライトジェイル", + 'zh-tw': "重晶石之獄", + 'zh-cn': "重晶石之獄" + }, + + effect: { + ja: "相手のベンチポケモン全員に、それぞれ残りHPが「100」になるように、ダメカンをのせる。", + 'zh-tw': "在對手的所有備戰寶可夢身上放置傷害指示物直到各自的剩餘HP變為「100」為止。", + 'zh-cn': "在對手的所有備戰寶可夢身上放置傷害指示物直到各自的剩餘HP變為「100」為止。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/058.ts b/data-asia/SV/SV8/058.ts new file mode 100644 index 000000000..1151005f2 --- /dev/null +++ b/data-asia/SV/SV8/058.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "イエッサン", + 'zh-tw': "愛管侍", + 'zh-cn': "愛管侍" + }, + + illustrator: "Sekio", + rarity: "Uncommon", + category: "Pokemon", + dexId: [876], + hp: 100, + types: ["Psychic"], + + description: { + ja: "つねに トレーナーの そばに いる。 サイコパワーで 行動を 予知して 身のまわりの 世話をする。", + 'zh-tw': "時時刻刻都待在訓練家身邊。 牠會以精神力量預知訓練家 的行動,以照料其日常起居。", + 'zh-cn': "時時刻刻都待在訓練家身邊。 牠會以精神力量預知訓練家 的行動,以照料其日常起居。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "せわやきヒール", + 'zh-tw': "悉心治癒", + 'zh-cn': "悉心治癒" + }, + + effect: { + ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。自分のバトルポケモンのHPを「30」回復し、特殊状態も1つ回復する。", + 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。將自己的戰鬥寶可夢恢復「30」HP,特殊狀態也恢復1個。", + 'zh-cn': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。將自己的戰鬥寶可夢恢復「30」HP,特殊狀態也恢復1個。" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "ちょうねんりき", + 'zh-tw': "超念力", + 'zh-cn': "超念力" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/059.ts b/data-asia/SV/SV8/059.ts new file mode 100644 index 000000000..e076b573a --- /dev/null +++ b/data-asia/SV/SV8/059.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ハバタクカミ", + 'zh-tw': "振翼髮", + 'zh-cn': "振翼髮" + }, + + illustrator: "Ebila", + rarity: "Uncommon", + category: "Pokemon", + dexId: [987], + hp: 90, + types: ["Psychic"], + + description: { + ja: "とある 書物に 登場する ハバタクカミという 生物と 似た 特徴を 持つ ポケモン。", + 'zh-tw': "與某本書裡記載的一種 叫做振翼髮的生物有著 相似特徵的寶可夢。", + 'zh-cn': "與某本書裡記載的一種 叫做振翼髮的生物有著 相似特徵的寶可夢。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "まどわしうつす", + 'zh-tw': "蠱惑挪移", + 'zh-cn': "蠱惑挪移" + }, + + effect: { + ja: "自分のベンチの「古代」のポケモンを1匹選び、選んだポケモンにのっているダメカンをすべて、相手のバトルポケモンにのせ替える。", + 'zh-tw': "選擇1隻自己的備戰區的「古代」寶可夢,將所選的寶可夢身上放置的傷害指示物,全部改放於對手的戰鬥寶可夢身上。", + 'zh-cn': "選擇1隻自己的備戰區的「古代」寶可夢,將所選的寶可夢身上放置的傷害指示物,全部改放於對手的戰鬥寶可夢身上。" + } + }, { + cost: ["Psychic", "Psychic"], + + name: { + ja: "ムーンフォース", + 'zh-tw': "月亮之力", + 'zh-cn': "月亮之力" + }, + + damage: 70, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンが使うワザのダメージは「-30」される。", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-30」點。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-30」點。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/060.ts b/data-asia/SV/SV8/060.ts new file mode 100644 index 000000000..d90e12616 --- /dev/null +++ b/data-asia/SV/SV8/060.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "マンキー", + 'zh-tw': "猴怪", + 'zh-cn': "猴怪" + }, + + illustrator: "Apios", + rarity: "Common", + category: "Pokemon", + dexId: [56], + hp: 60, + types: ["Fighting"], + + description: { + ja: "普段は 機嫌が 良くても ちょっとしたことで いきなり 暴れだすから 怖いのだ。", + 'zh-tw': "平時就算心情再怎麼好, 也會因為一點芝麻小事 而突然暴怒,令人害怕。", + 'zh-cn': "平時就算心情再怎麼好, 也會因為一點芝麻小事 而突然暴怒,令人害怕。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ダブルチョップ", + 'zh-tw': "二連劈", + 'zh-cn': "二連劈" + }, + + damage: "10×", + + effect: { + ja: "コインを2回投げ、オモテの数×10ダメージ。", + 'zh-tw': "擲2次硬幣,造成正面出現的次數×10點傷害。", + 'zh-cn': "擲2次硬幣,造成正面出現的次數×10點傷害。" + } + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/061.ts b/data-asia/SV/SV8/061.ts new file mode 100644 index 000000000..32c0b931c --- /dev/null +++ b/data-asia/SV/SV8/061.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "オコリザル", + 'zh-tw': "火爆猴", + 'zh-cn': "火爆猴" + }, + + illustrator: "Felicia Chen", + rarity: "Common", + category: "Pokemon", + dexId: [57], + hp: 110, + types: ["Fighting"], + + description: { + ja: "ある研究者の 学説では モンスターボールの 中でも オコリザルは 怒っているらしい。", + 'zh-tw': "某位研究者的學說中提到, 即使在精靈球裡, 火爆猴好像也在發怒。", + 'zh-cn': "某位研究者的學說中提到, 即使在精靈球裡, 火爆猴好像也在發怒。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "あしばらい", + 'zh-tw': "掃腿", + 'zh-cn': "掃腿" + }, + + damage: 30, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。", + 'zh-tw': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。" + } + }, { + cost: ["Fighting", "Colorless"], + + name: { + ja: "メガトンパンチ", + 'zh-tw': "百萬噸重拳", + 'zh-cn': "百萬噸重拳" + }, + + damage: 70 + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/062.ts b/data-asia/SV/SV8/062.ts new file mode 100644 index 000000000..d04c22a80 --- /dev/null +++ b/data-asia/SV/SV8/062.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "コノヨザル", + 'zh-tw': "棄世猴", + 'zh-cn': "棄世猴" + }, + + illustrator: "SIE NANAHARA", + rarity: "Uncommon", + category: "Pokemon", + dexId: [979], + hp: 140, + types: ["Fighting"], + + description: { + ja: "心に 秘めた 怒りのパワーを こぶしに 込めて 叩きつけると 相手を 骨の髄から 砕く。", + 'zh-tw': "會將隱藏在心中的憤怒之力 注入拳頭發動攻擊,其威力 會深入骨髓,將對手打個粉碎。", + 'zh-cn': "會將隱藏在心中的憤怒之力 注入拳頭發動攻擊,其威力 會深入骨髓,將對手打個粉碎。" + }, + + stage: "Stage2", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "あばれまわる", + 'zh-tw': "暴走", + 'zh-cn': "暴走" + }, + + damage: 130, + + effect: { + ja: "このポケモンをこんらんにする。", + 'zh-tw': "將這隻寶可夢【混亂】。", + 'zh-cn': "將這隻寶可夢【混亂】。" + } + }, { + cost: ["Fighting", "Colorless"], + + name: { + ja: "みちづれファイト", + 'zh-tw': "同命戰鬥", + 'zh-cn': "同命戰鬥" + }, + + effect: { + ja: "おたがいのバトルポケモンをきぜつさせる。", + 'zh-tw': "將雙方的戰鬥寶可夢【昏厥】。", + 'zh-cn': "將雙方的戰鬥寶可夢【昏厥】。" + } + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/063.ts b/data-asia/SV/SV8/063.ts new file mode 100644 index 000000000..07166c3d5 --- /dev/null +++ b/data-asia/SV/SV8/063.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "パルデア ケンタロス", + 'zh-tw': "帕底亞 肯泰羅", + 'zh-cn': "帕底亞 肯泰羅" + }, + + illustrator: "Uta", + rarity: "Uncommon", + category: "Pokemon", + dexId: [128], + hp: 130, + types: ["Fighting"], + + description: { + ja: "ぶ厚く 力強い 筋肉と 気性の 荒さが 特徴。 コンバット種と 呼ばれる。", + 'zh-tw': "特徵是厚實有力的肌肉, 以及粗魯暴躁的性格。 這種樣子被稱為鬥戰種。", + 'zh-cn': "特徵是厚實有力的肌肉, 以及粗魯暴躁的性格。 這種樣子被稱為鬥戰種。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + ja: "けとばす", + 'zh-tw': "踢飛", + 'zh-cn': "踢飛" + }, + + damage: 40 + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + ja: "ブロックスタンプ", + 'zh-tw': "障礙踩踏", + 'zh-cn': "障礙踩踏" + }, + + damage: 90, + + effect: { + ja: "次の相手の番、このワザを受けたたねポケモンは、ワザが使えない。", + 'zh-tw': "在下個對手的回合,受到這個招式的【基礎】寶可夢,無法使用招式。", + 'zh-cn': "在下個對手的回合,受到這個招式的【基礎】寶可夢,無法使用招式。" + } + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/064.ts b/data-asia/SV/SV8/064.ts new file mode 100644 index 000000000..f829915d9 --- /dev/null +++ b/data-asia/SV/SV8/064.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ゴマゾウ", + 'zh-tw': "小小象", + 'zh-cn': "小小象" + }, + + illustrator: "ryoma uratsuka", + rarity: "Common", + category: "Pokemon", + dexId: [231], + hp: 80, + types: ["Fighting"], + + description: { + ja: "見た目より ずっと 力持ち。 振りまわす 鼻に ぶつかると 腕の 骨が もっていかれる。", + 'zh-tw': "有別於外表的大力士。 如果被牠甩動的鼻子揮中, 手臂的骨頭就會支離破碎。", + 'zh-cn': "有別於外表的大力士。 如果被牠甩動的鼻子揮中, 手臂的骨頭就會支離破碎。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "ずつき", + 'zh-tw': "頭錘", + 'zh-cn': "頭錘" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/065.ts b/data-asia/SV/SV8/065.ts new file mode 100644 index 000000000..f8740ec46 --- /dev/null +++ b/data-asia/SV/SV8/065.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ドンファン", + 'zh-tw': "頓甲", + 'zh-cn': "頓甲" + }, + + illustrator: "GOSSAN", + rarity: "Common", + category: "Pokemon", + dexId: [232], + hp: 150, + types: ["Fighting"], + + description: { + ja: "普段は 落ち着いているが 一度 怒らせると 体を 丸めて 回転しながら 突っ込んでくる。", + 'zh-tw': "雖然平時性情穩重, 但一旦被激怒就會滾著 蜷起的身體猛衝過來。", + 'zh-cn': "雖然平時性情穩重, 但一旦被激怒就會滾著 蜷起的身體猛衝過來。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "うちのめす", + 'zh-tw': "打垮", + 'zh-cn': "打垮" + }, + + damage: 40, + + effect: { + ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。", + 'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。" + } + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + ja: "ガードローリング", + 'zh-tw': "防守回轉", + 'zh-cn': "防守回轉" + }, + + damage: 120, + + effect: { + ja: "このポケモンについているエネルギーを2個選び、トラッシュする。次の相手の番、このポケモンが受けるワザのダメージは「-100」される。", + 'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。在下個對手的回合,這隻寶可夢受到招式的傷害「-100」點。", + 'zh-cn': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。在下個對手的回合,這隻寶可夢受到招式的傷害「-100」點。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/066.ts b/data-asia/SV/SV8/066.ts new file mode 100644 index 000000000..d9d2109d3 --- /dev/null +++ b/data-asia/SV/SV8/066.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "トリトドン", + 'zh-tw': "海兔獸", + 'zh-cn': "海兔獸" + }, + + illustrator: "Scav", + rarity: "Rare", + category: "Pokemon", + dexId: [423], + hp: 130, + types: ["Fighting"], + + description: { + ja: "浅い 磯辺に 現れる。 獲物を 捕らえると 粘液で ゆっくりと 溶かし すするのだ。", + 'zh-tw': "能在水淺的岩岸發現牠。 會用黏液慢慢溶解 並吸食捕捉到的獵物。", + 'zh-cn': "能在水淺的岩岸發現牠。 會用黏液慢慢溶解 並吸食捕捉到的獵物。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "ねんちゃくしばり", + 'zh-tw': "黏著束縛", + 'zh-cn': "黏著束縛" + }, + + effect: { + ja: "このポケモンがベンチにいるかぎり、おたがいのベンチの2進化ポケモンの特性は、すべてなくなる。", + 'zh-tw': "只要這隻寶可夢在備戰區,雙方的備戰區的【2階進化】寶可夢的特性全部消除。", + 'zh-cn': "只要這隻寶可夢在備戰區,雙方的備戰區的【2階進化】寶可夢的特性全部消除。" + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + ja: "マッドショット", + 'zh-tw': "泥巴射擊", + 'zh-cn': "泥巴射擊" + }, + + damage: 80 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/067.ts b/data-asia/SV/SV8/067.ts new file mode 100644 index 000000000..26c0443da --- /dev/null +++ b/data-asia/SV/SV8/067.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "キラーメ", + 'zh-tw': "晶光芽", + 'zh-cn': "晶光芽" + }, + + illustrator: "Eri Kamei", + rarity: "Common", + category: "Pokemon", + dexId: [969], + hp: 70, + types: ["Fighting"], + + description: { + ja: "毒成分の 結晶が まるで 花びらに 見える。 花粉のように 毒の粉を ばらまき 身を守る。", + 'zh-tw': "以毒構成的結晶看似花瓣。 會如灑花粉般地灑出毒粉 來保護自身安全。", + 'zh-cn': "以毒構成的結晶看似花瓣。 會如灑花粉般地灑出毒粉 來保護自身安全。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "いわとばし", + 'zh-tw': "岩石投擲", + 'zh-cn': "岩石投擲" + }, + + damage: 10, + + effect: { + ja: "このワザのダメージは抵抗力を計算しない。", + 'zh-tw': "這個招式的傷害不計算抵抗力。", + 'zh-cn': "這個招式的傷害不計算抵抗力。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/068.ts b/data-asia/SV/SV8/068.ts new file mode 100644 index 000000000..f52658bf2 --- /dev/null +++ b/data-asia/SV/SV8/068.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "キラフロル", + 'zh-tw': "晶光花", + 'zh-cn': "晶光花" + }, + + illustrator: "takashi shiraishi", + rarity: "Common", + category: "Pokemon", + dexId: [970], + hp: 130, + types: ["Fighting"], + + description: { + ja: "毒エネルギーが 結晶化した 花びらは テラスタルの 宝石に 似ていると 最近 判明した。", + 'zh-tw': "最近發現牠的毒能量 結晶化後所形成的花瓣 與太晶的寶石類似。", + 'zh-cn': "最近發現牠的毒能量 結晶化後所形成的花瓣 與太晶的寶石類似。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "むしばむはへん", + 'zh-tw': "侵蝕碎塊", + 'zh-cn': "侵蝕碎塊" + }, + + damage: 20, + + effect: { + ja: "相手のバトルポケモンをどくにする。次の相手の番、このワザを受けたポケモンは、手札から出すエネルギーをつけられない。", + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。在下個對手的回合,受到這個招式的寶可夢,無法附上從手牌使出的能量卡。", + 'zh-cn': "將對手的戰鬥寶可夢【中毒】。在下個對手的回合,受到這個招式的寶可夢,無法附上從手牌使出的能量卡。" + } + }, { + cost: ["Fighting", "Colorless"], + + name: { + ja: "いわおとし", + 'zh-tw': "落石", + 'zh-cn': "落石" + }, + + damage: 60 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/069.ts b/data-asia/SV/SV8/069.ts new file mode 100644 index 000000000..a5eb9c3a6 --- /dev/null +++ b/data-asia/SV/SV8/069.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "コライドン", + 'zh-tw': "故勒頓", + 'zh-cn': "故勒頓" + }, + + illustrator: "Ryuta Fuse", + rarity: "Uncommon", + category: "Pokemon", + dexId: [1007], + hp: 130, + types: ["Fighting"], + + description: { + ja: "拳で 大地を 引き裂いたと 古い 探検記に 記された ツバサノオウの 正体らしい。", + 'zh-tw': "牠似乎就是古老的探險記裡 提到的翼大王的真面目。 據記載,牠曾以拳頭擊裂大地。", + 'zh-cn': "牠似乎就是古老的探險記裡 提到的翼大王的真面目。 據記載,牠曾以拳頭擊裂大地。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "はじょうもうこう", + 'zh-tw': "輪番狂攻", + 'zh-cn': "輪番狂攻" + }, + + damage: "30+", + + effect: { + ja: "前の自分の番、このポケモン以外の「古代」のポケモンがワザを使っていたなら、150ダメージ追加。", + 'zh-tw': "在上個自己的回合,若這隻寶可夢以外的「古代」寶可夢使用了招式,則增加150點傷害。", + 'zh-cn': "在上個自己的回合,若這隻寶可夢以外的「古代」寶可夢使用了招式,則增加150點傷害。" + } + }, { + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + ja: "ぶちかます", + 'zh-tw': "頭突", + 'zh-cn': "頭突" + }, + + damage: 110 + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/070.ts b/data-asia/SV/SV8/070.ts new file mode 100644 index 000000000..87ca830be --- /dev/null +++ b/data-asia/SV/SV8/070.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "モノズ", + 'zh-tw': "單首龍", + 'zh-cn': "單首龍" + }, + + illustrator: "YASHIRO Nanaco", + rarity: "Common", + category: "Pokemon", + dexId: [633], + hp: 70, + types: ["Darkness"], + + description: { + ja: "棲み処は 洞窟の 奥深く。 エサも 少ないので 動くものは なんでも 食いつき 食べようとする。", + 'zh-tw': "棲息的洞窟深處缺乏食糧, 因此只要是會動的東西, 牠都會想去咬住吃掉。", + 'zh-cn': "棲息的洞窟深處缺乏食糧, 因此只要是會動的東西, 牠都會想去咬住吃掉。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "ふみならす", + 'zh-tw': "踩落", + 'zh-cn': "踩落" + }, + + effect: { + ja: "相手の山札を上から1枚トラッシュする。", + 'zh-tw': "將對手的牌庫上方1張卡丟棄。", + 'zh-cn': "將對手的牌庫上方1張卡丟棄。" + } + }, { + cost: ["Darkness", "Colorless"], + + name: { + ja: "かみつく", + 'zh-tw': "咬住", + 'zh-cn': "咬住" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/071.ts b/data-asia/SV/SV8/071.ts new file mode 100644 index 000000000..7e883a276 --- /dev/null +++ b/data-asia/SV/SV8/071.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ジヘッド", + 'zh-tw': "雙首暴龍", + 'zh-cn': "雙首暴龍" + }, + + illustrator: "chibi", + rarity: "Common", + category: "Pokemon", + dexId: [634], + hp: 100, + types: ["Darkness"], + + description: { + ja: "2つの 頭は 好みが 違う。 頭同士 争うことで だれの 力も 借りずに 強くなるのだ。", + 'zh-tw': "2顆頭各有喜好。 由於頭之間會互相爭鬥, 因此不靠外力也能變強。", + 'zh-cn': "2顆頭各有喜好。 由於頭之間會互相爭鬥, 因此不靠外力也能變強。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "ふみならす", + 'zh-tw': "踩落", + 'zh-cn': "踩落" + }, + + effect: { + ja: "相手の山札を上から2枚トラッシュする。", + 'zh-tw': "將對手的牌庫上方2張卡丟棄。", + 'zh-cn': "將對手的牌庫上方2張卡丟棄。" + } + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + ja: "やみのキバ", + 'zh-tw': "暗之牙", + 'zh-cn': "暗之牙" + }, + + damage: 60 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/072.ts b/data-asia/SV/SV8/072.ts new file mode 100644 index 000000000..a2720c70e --- /dev/null +++ b/data-asia/SV/SV8/072.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "サザンドラex", + 'zh-tw': "三首惡龍ex", + 'zh-cn': "三首惡龍ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 330, + types: ["Darkness"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + ja: "クラッシュヘッズ", + 'zh-tw': "粉碎頭", + 'zh-cn': "粉碎頭" + }, + + damage: 200, + + effect: { + ja: "相手の山札を上から3枚トラッシュする。", + 'zh-tw': "將對手的牌庫上方3張卡丟棄。", + 'zh-cn': "將對手的牌庫上方3張卡丟棄。" + } + }, { + cost: ["Psychic", "Darkness", "Metal", "Colorless"], + + name: { + ja: "オブシディアン", + 'zh-tw': "黑曜石", + 'zh-cn': "黑曜石" + }, + + damage: 130, + + effect: { + ja: "相手のベンチポケモン2匹にも、それぞれ130ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + 'zh-tw': "對手的2隻備戰寶可夢也各受到130點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的2隻備戰寶可夢也各受到130點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/073.ts b/data-asia/SV/SV8/073.ts new file mode 100644 index 000000000..864e0d93e --- /dev/null +++ b/data-asia/SV/SV8/073.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "シルシュルー", + 'zh-tw': "滋汁鼴", + 'zh-cn': "滋汁鼴" + }, + + illustrator: "Yukiko Baba", + rarity: "Common", + category: "Pokemon", + dexId: [944], + hp: 60, + types: ["Darkness"], + + description: { + ja: "縄張りに 敵が 近づかないよう 刺激臭がする 毒液で 巣の まわりに 図形を 描く。", + 'zh-tw': "為了不讓敵人靠近地盤, 會用有刺鼻臭味的毒液, 在巢的周圍描繪圖形。", + 'zh-cn': "為了不讓敵人靠近地盤, 會用有刺鼻臭味的毒液, 在巢的周圍描繪圖形。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "しるをとばす", + 'zh-tw': "噴汁", + 'zh-cn': "噴汁" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/074.ts b/data-asia/SV/SV8/074.ts new file mode 100644 index 000000000..e99404aa8 --- /dev/null +++ b/data-asia/SV/SV8/074.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "タギングル", + 'zh-tw': "塗標客", + 'zh-cn': "塗標客" + }, + + illustrator: "NC Empire", + rarity: "Uncommon", + category: "Pokemon", + dexId: [945], + hp: 100, + types: ["Darkness"], + + description: { + ja: "タギングルが 描く 模様は 個体によって 異なり 生涯 同じ 模様を 描き続ける。", + 'zh-tw': "塗標客畫的圖案 會依個體而有所不同。 一生不斷畫著相同圖案。", + 'zh-cn': "塗標客畫的圖案 會依個體而有所不同。 一生不斷畫著相同圖案。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "いたずらペイント", + 'zh-tw': "惡作劇作畫", + 'zh-cn': "惡作劇作畫" + }, + + effect: { + ja: "相手のトラッシュからエネルギーを3枚まで選び、相手のポケモンに好きなようにつける。", + 'zh-tw': "從對手的棄牌區選擇最多3張能量卡,以任意方式附於對手的寶可夢身上。", + 'zh-cn': "從對手的棄牌區選擇最多3張能量卡,以任意方式附於對手的寶可夢身上。" + } + }, { + cost: ["Darkness", "Darkness"], + + name: { + ja: "エナジーグラフィティ", + 'zh-tw': "能量塗鴉", + 'zh-cn': "能量塗鴉" + }, + + damage: "40×", + + effect: { + ja: "相手のポケモン全員についているエネルギーの数×40ダメージ。", + 'zh-tw': "造成對手的所有寶可夢身上附加的能量的數量×40點傷害。", + 'zh-cn': "造成對手的所有寶可夢身上附加的能量的數量×40點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/075.ts b/data-asia/SV/SV8/075.ts new file mode 100644 index 000000000..89c40ee2c --- /dev/null +++ b/data-asia/SV/SV8/075.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "モモワロウ", + 'zh-tw': "桃歹郎", + 'zh-cn': "桃歹郎" + }, + + illustrator: "Souichirou Gunjima", + rarity: "Uncommon", + category: "Pokemon", + dexId: [1025], + hp: 80, + types: ["Darkness"], + + description: { + ja: "モモ型の 殻は 猛毒の 貯蔵庫。 毒の 餅を 作り 人や ポケモンに ふるまう。", + 'zh-tw': "桃形的殼是劇毒的儲藏庫。 會製作帶毒的麻糬 送給人和寶可夢吃。", + 'zh-cn': "桃形的殼是劇毒的儲藏庫。 會製作帶毒的麻糬 送給人和寶可夢吃。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "もうどくしはい", + 'zh-tw': "劇毒支配", + 'zh-cn': "劇毒支配" + }, + + effect: { + ja: "このポケモンがバトル場にいるかぎり、相手のどくのポケモンは、どくでのせるダメカンの数が5個多くなる。", + 'zh-tw': "只要這隻寶可夢在戰鬥場上,對手的【中毒】的寶可夢,因【中毒】而放置的傷害指示物的數量增加5個。", + 'zh-cn': "只要這隻寶可夢在戰鬥場上,對手的【中毒】的寶可夢,因【中毒】而放置的傷害指示物的數量增加5個。" + } + }], + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + ja: "ポイズンチェーン", + 'zh-tw': "猛毒連鎖", + 'zh-cn': "猛毒連鎖" + }, + + damage: 10, + + effect: { + ja: "相手のバトルポケモンをどくにする。次の相手の番、このワザを受けたポケモンは、にげられない。", + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "將對手的戰鬥寶可夢【中毒】。在下個對手的回合,受到這個招式的寶可夢無法撤退。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/076.ts b/data-asia/SV/SV8/076.ts new file mode 100644 index 000000000..0eafc2a2b --- /dev/null +++ b/data-asia/SV/SV8/076.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "アローラ ディグダ", + 'zh-tw': "阿羅拉 地鼠", + 'zh-cn': "阿羅拉 地鼠" + }, + + illustrator: "Akino Fukuji", + rarity: "Common", + category: "Pokemon", + dexId: [50], + hp: 50, + types: ["Metal"], + + description: { + ja: "金色の 髭は センサー機能を 持っている。 穴から だして 周りの 様子を うかがっている。", + 'zh-tw': "金色的鬍子擁有感應器的功能。 會從洞裡伸出,查探周圍的狀態。", + 'zh-cn': "金色的鬍子擁有感應器的功能。 會從洞裡伸出,查探周圍的狀態。" + }, + + stage: "Basic", + + attacks: [{ + name: { + ja: "ふいをつく", + 'zh-tw': "偷襲", + 'zh-cn': "偷襲" + }, + + damage: 30, + + effect: { + ja: "コインを1回投げウラなら、このワザは失敗。", + 'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。", + 'zh-cn': "擲1次硬幣若為反面,則這個招式失敗。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/077.ts b/data-asia/SV/SV8/077.ts new file mode 100644 index 000000000..29c471112 --- /dev/null +++ b/data-asia/SV/SV8/077.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "アローラ ダグトリオ", + 'zh-tw': "阿羅拉 三地鼠", + 'zh-cn': "阿羅拉 三地鼠" + }, + + illustrator: "Dsuke", + rarity: "Uncommon", + category: "Pokemon", + dexId: [51], + hp: 110, + types: ["Metal"], + + description: { + ja: "金属質の 髭は 重いので 素早さは いまいちだが 硬い 岩盤も 掘りぬくパワーを 持つ。", + 'zh-tw': "金屬材質的鬍鬚很重, 所以速度並不快, 但擁有能夠挖穿堅硬岩盤的力量。", + 'zh-cn': "金屬材質的鬍鬚很重, 所以速度並不快, 但擁有能夠挖穿堅硬岩盤的力量。" + }, + + stage: "Stage1", + + attacks: [{ + name: { + ja: "スリービンゴ", + 'zh-tw': "三賓果", + 'zh-cn': "三賓果" + }, + + damage: 120, + + effect: { + ja: "自分の手札が3枚でないなら、このワザは失敗。", + 'zh-tw': "若自己的手牌不是3張,則這個招式失敗。", + 'zh-cn': "若自己的手牌不是3張,則這個招式失敗。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/078.ts b/data-asia/SV/SV8/078.ts new file mode 100644 index 000000000..b084fa389 --- /dev/null +++ b/data-asia/SV/SV8/078.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ドーミラー", + 'zh-tw': "銅鏡怪", + 'zh-cn': "銅鏡怪" + }, + + illustrator: "Nabatame Kazutaka", + rarity: "Common", + category: "Pokemon", + dexId: [436], + hp: 60, + types: ["Metal"], + + description: { + ja: "古い お墓から みつかる。 背中の 模様には 神秘的な 力が 宿っていると いわれる。", + 'zh-tw': "能在古墓發現到牠。 據說牠背上的花紋 寄宿著神秘的力量。", + 'zh-cn': "能在古墓發現到牠。 據說牠背上的花紋 寄宿著神秘的力量。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + ja: "シールドアタック", + 'zh-tw': "盾牌攻擊", + 'zh-cn': "盾牌攻擊" + }, + + damage: "20+", + + effect: { + ja: "コインを1回投げオモテなら、20ダメージ追加。", + 'zh-tw': "擲1次硬幣若為正面,則增加20點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加20點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/079.ts b/data-asia/SV/SV8/079.ts new file mode 100644 index 000000000..bbc24ff8c --- /dev/null +++ b/data-asia/SV/SV8/079.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ドータクン", + 'zh-tw': "青銅鐘", + 'zh-cn': "青銅鐘" + }, + + illustrator: "kawayoo", + rarity: "Common", + category: "Pokemon", + dexId: [437], + hp: 130, + types: ["Metal"], + + description: { + ja: "別世界への 穴を 開けて そこから 雨を 降らしていた。 そのため 豊作の神 とされる。", + 'zh-tw': "打開通往其他世界的洞, 從那裡降下雨來。 因此被叫做豐收之神。", + 'zh-cn': "打開通往其他世界的洞, 從那裡降下雨來。 因此被叫做豐收之神。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + ja: "かいてんアタック", + 'zh-tw': "迴轉攻擊", + 'zh-cn': "迴轉攻擊" + }, + + damage: 50 + }, { + cost: ["Metal", "Colorless", "Colorless"], + + name: { + ja: "ダブルインパクト", + 'zh-tw': "雙重衝擊", + 'zh-cn': "雙重衝擊" + }, + + damage: "100×", + + effect: { + ja: "コインを2回投げ、オモテの数×100ダメージ。", + 'zh-tw': "擲2次硬幣,造成正面出現的次數×100點傷害。", + 'zh-cn': "擲2次硬幣,造成正面出現的次數×100點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/080.ts b/data-asia/SV/SV8/080.ts new file mode 100644 index 000000000..e86653f74 --- /dev/null +++ b/data-asia/SV/SV8/080.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ムゲンダイナ", + 'zh-tw': "無極汰那", + 'zh-cn': "無極汰那" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Rare", + category: "Pokemon", + dexId: [890], + hp: 150, + types: ["Dragon"], + + description: { + ja: "胸の コアが ガラル地方の 大地から 涌きだす エネルギーを 吸収して 活動している。", + 'zh-tw': "會用胸部的核心吸收 伽勒爾的大地湧出的能量, 藉以保持自己的活力。", + 'zh-cn': "會用胸部的核心吸收 伽勒爾的大地湧出的能量, 藉以保持自己的活力。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "ダイナブラスト", + 'zh-tw': "汰那爆破", + 'zh-cn': "汰那爆破" + }, + + damage: "10+", + + effect: { + ja: "相手のバトルポケモンが「ポケモンex」なら、80ダメージ追加。", + 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】」,則增加80點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為「寶可夢【ex】」,則增加80點傷害。" + } + }, { + cost: ["Fire", "Darkness", "Darkness"], + + name: { + ja: "ワールドエンド", + 'zh-tw': "世界之末", + 'zh-cn': "世界之末" + }, + + damage: 230, + + effect: { + ja: "場に出ているスタジアムをトラッシュする。トラッシュできないなら、このワザは失敗。", + 'zh-tw': "將場上的競技場卡丟棄。若無法丟棄,則這個招式失敗。", + 'zh-cn': "將場上的競技場卡丟棄。若無法丟棄,則這個招式失敗。" + } + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/081.ts b/data-asia/SV/SV8/081.ts new file mode 100644 index 000000000..246f4ff90 --- /dev/null +++ b/data-asia/SV/SV8/081.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "シャリタツex", + 'zh-tw': "米立龍ex", + 'zh-cn': "米立龍ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 160, + types: ["Dragon"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Water"], + + name: { + ja: "ふいうちポンプ", + 'zh-tw': "突襲水泵", + 'zh-cn': "突襲水泵" + }, + + damage: 100, + + effect: { + ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。", + 'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。" + } + }, { + cost: ["Fire", "Water", "Darkness"], + + name: { + ja: "シナバールアー", + 'zh-tw': "硃砂誘餌", + 'zh-cn': "硃砂誘餌" + }, + + effect: { + ja: "自分の山札を上から10枚見て、その中からポケモンを好きなだけ選び、ベンチに出す。残りのカードは山札にもどして切る。", + 'zh-tw': "查看自己的牌庫上方10張卡,從其中選擇任意數量的寶可夢卡,放置於備戰區。將剩餘卡放回牌庫並重洗。", + 'zh-cn': "查看自己的牌庫上方10張卡,從其中選擇任意數量的寶可夢卡,放置於備戰區。將剩餘卡放回牌庫並重洗。" + } + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/082.ts b/data-asia/SV/SV8/082.ts new file mode 100644 index 000000000..e97c86a2a --- /dev/null +++ b/data-asia/SV/SV8/082.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ナマケロ", + 'zh-tw': "懶人獺", + 'zh-cn': "懶人獺" + }, + + illustrator: "Aya Kusube", + rarity: "Common", + category: "Pokemon", + dexId: [287], + hp: 60, + types: ["Colorless"], + + description: { + ja: "ナマケロの 怠けた 様子は 見ている 人の 怠け心を 存分に 刺激するのだ。", + 'zh-tw': "懶人獺慵懶的樣子 會深深地刺激 看著牠的人的懶惰之心。", + 'zh-cn': "懶人獺慵懶的樣子 會深深地刺激 看著牠的人的懶惰之心。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "のんびりする", + 'zh-tw': "悠哉", + 'zh-cn': "悠哉" + }, + + effect: { + ja: "このポケモンのHPを「60」回復する。次の自分の番、このポケモンはにげられない。", + 'zh-tw': "將這隻寶可夢恢復「60」HP。在下個自己的回合,這隻寶可夢無法撤退。", + 'zh-cn': "將這隻寶可夢恢復「60」HP。在下個自己的回合,這隻寶可夢無法撤退。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/083.ts b/data-asia/SV/SV8/083.ts new file mode 100644 index 000000000..f0267a7da --- /dev/null +++ b/data-asia/SV/SV8/083.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ヤルキモノ", + 'zh-tw': "過動猿", + 'zh-cn': "過動猿" + }, + + illustrator: "Kurata So", + rarity: "Common", + category: "Pokemon", + dexId: [288], + hp: 90, + types: ["Colorless"], + + description: { + ja: "いつも 暴れているので すぐに お腹が 空いてしまうが 食事の ときも じっとして いられない。", + 'zh-tw': "由於無時無刻都在大鬧, 肚子馬上就會覺得餓, 但牠卻連吃飯時也靜不下來。", + 'zh-cn': "由於無時無刻都在大鬧, 肚子馬上就會覺得餓, 但牠卻連吃飯時也靜不下來。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "スラッシュクロー", + 'zh-tw': "利爪揮砍", + 'zh-cn': "利爪揮砍" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/084.ts b/data-asia/SV/SV8/084.ts new file mode 100644 index 000000000..d3238fabd --- /dev/null +++ b/data-asia/SV/SV8/084.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ケッキングex", + 'zh-tw': "請假王ex", + 'zh-cn': "請假王ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Double rare", + category: "Pokemon", + hp: 340, + types: ["Colorless"], + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "さぼりたいしつ", + 'zh-tw': "懶怠個性", + 'zh-cn': "懶怠個性" + }, + + effect: { + ja: "相手の場に「ポケモンex・V」がいないなら、このポケモンはワザが使えない。", + 'zh-tw': "若對手的場上沒有「寶可夢【ex】・【V】」,則這隻寶可夢無法使用招式。", + 'zh-cn': "若對手的場上沒有「寶可夢【ex】・【V】」,則這隻寶可夢無法使用招式。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "グレートスイング", + 'zh-tw': "偉大橫掃", + 'zh-cn': "偉大橫掃" + }, + + damage: 280, + + effect: { + ja: "このポケモンについているエネルギーを1個選び、トラッシュする。", + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/085.ts b/data-asia/SV/SV8/085.ts new file mode 100644 index 000000000..38f288fd1 --- /dev/null +++ b/data-asia/SV/SV8/085.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ザングース", + 'zh-tw': "貓鼬斬", + 'zh-cn': "貓鼬斬" + }, + + illustrator: "Ligton", + rarity: "Common", + category: "Pokemon", + dexId: [335], + hp: 90, + types: ["Colorless"], + + description: { + ja: "ハブネークに 出会うと 体毛が 逆立ち 攻撃態勢になる。 鋭い ツメが 最大の 武器。", + 'zh-tw': "遇上飯匙蛇就會豎起體毛, 擺出攻擊的架勢。 銳利的爪子是最大的武器。", + 'zh-cn': "遇上飯匙蛇就會豎起體毛, 擺出攻擊的架勢。 銳利的爪子是最大的武器。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "れんぞくぎり", + 'zh-tw': "連斬", + 'zh-cn': "連斬" + }, + + damage: "10+", + + effect: { + ja: "コインを3回投げる。オモテが1回なら、20ダメージ追加。オモテが2回なら、50ダメージ追加。すべてオモテなら、80ダメージ追加。", + 'zh-tw': "擲3次硬幣。若出現1次正面,則增加20點傷害。若出現2次正面,則增加50點傷害。若全部為正面,則增加80點傷害。", + 'zh-cn': "擲3次硬幣。若出現1次正面,則增加20點傷害。若出現2次正面,則增加50點傷害。若全部為正面,則增加80點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/086.ts b/data-asia/SV/SV8/086.ts new file mode 100644 index 000000000..b6d820125 --- /dev/null +++ b/data-asia/SV/SV8/086.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "カクレオン", + 'zh-tw': "變隱龍", + 'zh-cn': "變隱龍" + }, + + illustrator: "Shinji Kanda", + rarity: "Common", + category: "Pokemon", + dexId: [352], + hp: 70, + types: ["Colorless"], + + description: { + ja: "身体の 色を 変えて 景色に 溶け込む。 長く かまわないでいると スネて 姿を 見せなくなる。", + 'zh-tw': "能改變體色,融入周圍的景色中。 如果長時間不去理會牠, 牠就會鬧彆扭而不肯現身。", + 'zh-cn': "能改變體色,融入周圍的景色中。 如果長時間不去理會牠, 牠就會鬧彆扭而不肯現身。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "かくれじょうず", + 'zh-tw': "躲藏高手", + 'zh-cn': "躲藏高手" + }, + + effect: { + ja: "このポケモンがワザのダメージを受けるとき、自分はコインを1回投げる。オモテなら、このポケモンはそのダメージを受けない。", + 'zh-tw': "這隻寶可夢受到招式的傷害時,自己擲1次硬幣。若為正面,則這隻寶可夢不會受到那個傷害。", + 'zh-cn': "這隻寶可夢受到招式的傷害時,自己擲1次硬幣。若為正面,則這隻寶可夢不會受到那個傷害。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ベロウィップ", + 'zh-tw': "舌之鞭打", + 'zh-cn': "舌之鞭打" + }, + + effect: { + ja: "相手のポケモン1匹に、30ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + 'zh-tw': "對手的1隻寶可夢受到30點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻寶可夢受到30點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/087.ts b/data-asia/SV/SV8/087.ts new file mode 100644 index 000000000..b5ad6a431 --- /dev/null +++ b/data-asia/SV/SV8/087.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "バッフロン", + 'zh-tw': "爆炸頭水牛", + 'zh-cn': "爆炸頭水牛" + }, + + illustrator: "Anesaki Dynamic", + rarity: "Common", + category: "Pokemon", + dexId: [626], + hp: 130, + types: ["Colorless"], + + description: { + ja: "頭突きだけで 車を 潰す。 頭の 毛が 大きいほど 群れでの 地位が 上がるのだ。", + 'zh-tw': "只用頭錘就能壓扁汽車。 頭部的那團毛越大一團, 在群體裡的地位就會越高。", + 'zh-cn': "只用頭錘就能壓扁汽車。 頭部的那團毛越大一團, 在群體裡的地位就會越高。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "まちうけホーン", + 'zh-tw': "等待角擊", + 'zh-cn': "等待角擊" + }, + + damage: 40, + + effect: { + ja: "次の相手の番、このポケモンがワザのダメージを受けたとき、ワザを使ったポケモンにダメカンを6個のせる。", + 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害時,在使用招式的寶可夢身上放置6個傷害指示物。", + 'zh-cn': "在下個對手的回合,這隻寶可夢受到招式的傷害時,在使用招式的寶可夢身上放置6個傷害指示物。" + } + }, { + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "スマッシュヘッド", + 'zh-tw': "粉碎頭擊", + 'zh-cn': "粉碎頭擊" + }, + + damage: 150, + + effect: { + ja: "このポケモンについているエネルギーを2個選び、トラッシュする。", + 'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/088.ts b/data-asia/SV/SV8/088.ts new file mode 100644 index 000000000..fea51a6b0 --- /dev/null +++ b/data-asia/SV/SV8/088.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "エリキテル", + 'zh-tw': "傘電蜥", + 'zh-cn': "傘電蜥" + }, + + illustrator: "miki kudo", + rarity: "Common", + category: "Pokemon", + dexId: [694], + hp: 70, + types: ["Colorless"], + + description: { + ja: "頭の ひだを 広げ 太陽の 光で 発電すると パワフルな 電気技を 出せるようになる。", + 'zh-tw': "當牠張開頭部的褶邊 用太陽光發電,就能使出 威力強大的電屬性招式。", + 'zh-cn': "當牠張開頭部的褶邊 用太陽光發電,就能使出 威力強大的電屬性招式。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "プチボルト", + 'zh-tw': "小伏特", + 'zh-cn': "小伏特" + }, + + damage: 10 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "とつげき", + 'zh-tw': "突擊", + 'zh-cn': "突擊" + }, + + damage: 40, + + effect: { + ja: "このポケモンにも10ダメージ。", + 'zh-tw': "這隻寶可夢也受到10點傷害。", + 'zh-cn': "這隻寶可夢也受到10點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/089.ts b/data-asia/SV/SV8/089.ts new file mode 100644 index 000000000..29c64ee13 --- /dev/null +++ b/data-asia/SV/SV8/089.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "エレザード", + 'zh-tw': "光電傘蜥", + 'zh-cn': "光電傘蜥" + }, + + illustrator: "Ryota Murayama", + rarity: "Common", + category: "Pokemon", + dexId: [695], + hp: 110, + types: ["Colorless"], + + description: { + ja: "襟巻を 広げて 太陽光を 浴びると 大都会で 使われる 電気を 1匹で 発電する。", + 'zh-tw': "如果展開頸傘沐浴陽光, 單憑1隻光電傘蜥就能 製造出大城市所需的電力。", + 'zh-cn': "如果展開頸傘沐浴陽光, 單憑1隻光電傘蜥就能 製造出大城市所需的電力。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "パラボラチャージ", + 'zh-tw': "拋物面充電", + 'zh-cn': "拋物面充電" + }, + + effect: { + ja: "自分の山札からエネルギーを4枚まで選び、相手に見せて、手札に加える。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇最多4張能量卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多4張能量卡,在給對手看過後加入手牌。並且重洗牌庫。" + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "エレキスラッグ", + 'zh-tw': "電氣猛擊", + 'zh-cn': "電氣猛擊" + }, + + damage: 80 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/090.ts b/data-asia/SV/SV8/090.ts new file mode 100644 index 000000000..092044c64 --- /dev/null +++ b/data-asia/SV/SV8/090.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ヤレユータン", + 'zh-tw': "智揮猩", + 'zh-cn': "智揮猩" + }, + + illustrator: "Saboteri", + rarity: "Common", + category: "Pokemon", + dexId: [765], + hp: 120, + types: ["Colorless"], + + description: { + ja: "森の奥で 静かに 暮らす。 マントのような 紫の 毛は 歳を 重ねるほどに 長くなる。", + 'zh-tw': "在森林深處過著安靜的生活。 如同斗蓬般的紫色體毛 會隨著年齡而越變越長。", + 'zh-cn': "在森林深處過著安靜的生活。 如同斗蓬般的紫色體毛 會隨著年齡而越變越長。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "よわみをにぎる", + 'zh-tw': "掌握弱點", + 'zh-cn': "掌握弱點" + }, + + effect: { + ja: "次の自分の番の終わりまで、このワザを受けたポケモンの弱点はタイプになる。[弱点は「×2」でダメージ計算をする。]", + 'zh-tw': "在下個自己的回合結束前,受到這個招式的寶可夢弱點改爲【無】屬性。[弱點以「×2」計算傷害。]", + 'zh-cn': "在下個自己的回合結束前,受到這個招式的寶可夢弱點改爲【無】屬性。[弱點以「×2」計算傷害。]" + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ひらてうち", + 'zh-tw': "掌擊", + 'zh-cn': "掌擊" + }, + + damage: 80 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/091.ts b/data-asia/SV/SV8/091.ts new file mode 100644 index 000000000..0227c077a --- /dev/null +++ b/data-asia/SV/SV8/091.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ワッカネズミ", + 'zh-tw': "一對鼠", + 'zh-cn': "一對鼠" + }, + + illustrator: "USGMEN", + rarity: "Common", + category: "Pokemon", + dexId: [924], + hp: 40, + types: ["Colorless"], + + description: { + ja: "どんなときでも 2匹は 一緒。 見つけた エサは ぴったりと 半分こして 仲良く 食べる。", + 'zh-tw': "無論何時2隻都待在一起。 會把尋獲的食物均分成兩半, 親密無間地一同進食。", + 'zh-cn': "無論何時2隻都待在一起。 會把尋獲的食物均分成兩半, 親密無間地一同進食。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "じゃれつく", + 'zh-tw': "嬉鬧", + 'zh-cn': "嬉鬧" + }, + + damage: "10+", + + effect: { + ja: "コインを1回投げオモテなら、10ダメージ追加。", + 'zh-tw': "擲1次硬幣若為正面,則增加10點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加10點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/092.ts b/data-asia/SV/SV8/092.ts new file mode 100644 index 000000000..b40e61e14 --- /dev/null +++ b/data-asia/SV/SV8/092.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "イッカネズミ", + 'zh-tw': "一家鼠", + 'zh-cn': "一家鼠" + }, + + illustrator: "DOM", + rarity: "Uncommon", + category: "Pokemon", + dexId: [925], + hp: 80, + types: ["Colorless"], + + description: { + ja: "大きな 2匹が 子どもたちを 守りながら 戦う。 強い 相手には 全員で 立ち向かう。", + 'zh-tw': "身型大的2隻會在戰鬥的 同時保護著孩子。對抗實力 強大的對手時會集體出陣。", + 'zh-cn': "身型大的2隻會在戰鬥的 同時保護著孩子。對抗實力 強大的對手時會集體出陣。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ファミリーマーチ", + 'zh-tw': "家族行軍", + 'zh-cn': "家族行軍" + }, + + effect: { + ja: "自分の山札から「イッカネズミ(『ポケモンex』をふくむ)」を2枚まで選び、ベンチに出す。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇最多2張「一家鼠(包含『寶可夢【ex】』)」,放置於備戰區。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張「一家鼠(包含『寶可夢【ex】』)」,放置於備戰區。並且重洗牌庫。" + } + }, { + cost: ["Colorless"], + + name: { + ja: "れんぞくまえば", + 'zh-tw': "連續門牙", + 'zh-cn': "連續門牙" + }, + + damage: "30×", + + effect: { + ja: "コインを4回投げ、オモテの数×30ダメージ。", + 'zh-tw': "擲4次硬幣,造成正面出現的次數×30點傷害。", + 'zh-cn': "擲4次硬幣,造成正面出現的次數×30點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/093.ts b/data-asia/SV/SV8/093.ts new file mode 100644 index 000000000..554ec68f3 --- /dev/null +++ b/data-asia/SV/SV8/093.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "テラパゴス", + 'zh-tw': "太樂巴戈斯", + 'zh-cn': "太樂巴戈斯" + }, + + illustrator: "GIDORA", + rarity: "Rare", + category: "Pokemon", + dexId: [1024], + hp: 120, + types: ["Colorless"], + + description: { + ja: "テラスタルの 甲羅は 相手の 技を 受けると そのエネルギーを 吸い取って 自分のものにする。", + 'zh-tw': "太晶的甲殼若受到對手的 招式攻擊,就會把該招式 的能量吸收來供自己使用。", + 'zh-cn': "太晶的甲殼若受到對手的 招式攻擊,就會把該招式 的能量吸收來供自己使用。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "プリズムチャージ", + 'zh-tw': "稜鏡充能", + 'zh-cn': "稜鏡充能" + }, + + effect: { + ja: "自分の山札から、それぞれちがうタイプの基本エネルギーを3枚まで選び、自分の「テラスタル」のポケモンに好きなようにつける。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇最多3張各不同屬性的基本能量卡,以任意方式附於自己的「太晶」寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多3張各不同屬性的基本能量卡,以任意方式附於自己的「太晶」寶可夢身上。並且重洗牌庫。" + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ハードタックル", + 'zh-tw': "堅硬衝撞", + 'zh-cn': "堅硬衝撞" + }, + + damage: 100 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/094.ts b/data-asia/SV/SV8/094.ts new file mode 100644 index 000000000..b1cf2fc7c --- /dev/null +++ b/data-asia/SV/SV8/094.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "推理セット", + 'zh-tw': "推理組合", + 'zh-cn': "推理組合" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "自分の山札を上から3枚見て、好きな順番に入れ替えて、山札の上にもどす。または、そのカードをすべてウラにして切り、山札の下にもどす。", + 'zh-tw': "查看自己的牌庫上方3張卡,以任意順序排列,放回牌庫上方。或者將那些卡全部翻回反面並重洗,放回牌庫下方。", + 'zh-cn': "查看自己的牌庫上方3張卡,以任意順序排列,放回牌庫上方。或者將那些卡全部翻回反面並重洗,放回牌庫下方。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/095.ts b/data-asia/SV/SV8/095.ts new file mode 100644 index 000000000..649f45060 --- /dev/null +++ b/data-asia/SV/SV8/095.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "スクランブルスイッチ", + 'zh-tw': "急進開關", + 'zh-cn': "急進開關" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + ja: "自分のバトルポケモンをベンチポケモンと入れ替える。その後、ベンチに入れ替えたポケモンについているエネルギーを好きなだけ選び、新しいバトルポケモンにつけ替える。", + 'zh-tw': "將自己的戰鬥寶可夢與備戰寶可夢互換。然後,選擇換入備戰區的寶可夢身上附加的任意數量的能量卡,改附於新的戰鬥寶可夢身上。", + 'zh-cn': "將自己的戰鬥寶可夢與備戰寶可夢互換。然後,選擇換入備戰區的寶可夢身上附加的任意數量的能量卡,改附於新的戰鬥寶可夢身上。" + }, + + trainerType: "Item", + rarity: "None", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/096.ts b/data-asia/SV/SV8/096.ts new file mode 100644 index 000000000..968eeb40e --- /dev/null +++ b/data-asia/SV/SV8/096.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "のんびりじゃらし", + 'zh-tw': "悠哉尾草棒", + 'zh-cn': "悠哉尾草棒" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "このカードは、後攻プレイヤーの最初の番しか使えない。\n\n相手の場のポケモンについているエネルギーを1個選び、相手の手札にもどす。", + 'zh-tw': "這張卡只可在後攻玩家的最初回合使用。 選擇1個對手的場上寶可夢身上附加的能量,放回對手的手牌。", + 'zh-cn': "這張卡只可在後攻玩家的最初回合使用。 選擇1個對手的場上寶可夢身上附加的能量,放回對手的手牌。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/097.ts b/data-asia/SV/SV8/097.ts new file mode 100644 index 000000000..b0458cfca --- /dev/null +++ b/data-asia/SV/SV8/097.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ミラクルインカム", + 'zh-tw': "奇跡耳麥", + 'zh-cn': "奇跡耳麥" + }, + + illustrator: "inose yukie", + category: "Trainer", + + effect: { + ja: "自分のトラッシュからサポートを2枚まで選び、相手に見せて、手札に加える。", + 'zh-tw': "從自己的棄牌區選擇最多2張支援者卡,在給對手看過後加入手牌。", + 'zh-cn': "從自己的棄牌區選擇最多2張支援者卡,在給對手看過後加入手牌。" + }, + + trainerType: "Item", + rarity: "None", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/098.ts b/data-asia/SV/SV8/098.ts new file mode 100644 index 000000000..cfd21f567 --- /dev/null +++ b/data-asia/SV/SV8/098.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "希望のアミュレット", + 'zh-tw': "希望護身符", + 'zh-cn': "希望護身符" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンが、相手のポケモンからワザのダメージを受けてきぜつしたとき、自分の山札から好きなカードを3枚まで選び、手札に加える。そして山札を切る。", + 'zh-tw': "附有這張卡的寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,從自己的牌庫任意選擇最多3張卡加入手牌。並且重洗牌庫。", + 'zh-cn': "附有這張卡的寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,從自己的牌庫任意選擇最多3張卡加入手牌。並且重洗牌庫。" + }, + + trainerType: "Tool", + rarity: "None", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/099.ts b/data-asia/SV/SV8/099.ts new file mode 100644 index 000000000..d05a47911 --- /dev/null +++ b/data-asia/SV/SV8/099.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ナモのみ", + 'zh-tw': "刺耳果", + 'zh-cn': "刺耳果" + }, + + illustrator: "Studio Bora Inc.", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンが、相手のポケモンからワザのダメージを受けるとき、そのダメージは「-60」され、このカードをトラッシュする。", + 'zh-tw': "附有這張卡的寶可夢受到對手的【惡】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。", + 'zh-cn': "附有這張卡的寶可夢受到對手的【惡】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/100.ts b/data-asia/SV/SV8/100.ts new file mode 100644 index 000000000..529112d0c --- /dev/null +++ b/data-asia/SV/SV8/100.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "リリバのみ", + 'zh-tw': "霹霹果", + 'zh-cn': "霹霹果" + }, + + illustrator: "Studio Bora Inc.", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンが、相手のポケモンからワザのダメージを受けるとき、そのダメージは「-60」され、このカードをトラッシュする。", + 'zh-tw': "附有這張卡的寶可夢受到對手的【鋼】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。", + 'zh-cn': "附有這張卡的寶可夢受到對手的【鋼】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/101.ts b/data-asia/SV/SV8/101.ts new file mode 100644 index 000000000..84e19ffae --- /dev/null +++ b/data-asia/SV/SV8/101.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ワザマシン フローライト", + 'zh-tw': "招式學習器 螢石", + 'zh-cn': "招式學習器 螢石" + }, + + illustrator: "Studio Bora Inc.", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンは、このカードに書かれているワザを使える。[ワザを使うためのエネルギーは必要。] ポケモンについているこのカードは、自分の番の終わりにトラッシュする。", + 'zh-tw': "附有這張卡的寶可夢,可使用這張卡上寫的招式。[需要有足夠使用招式的能量。]將附於寶可夢身上的這張卡,在自己的回合結束時丟棄。", + 'zh-cn': "附有這張卡的寶可夢,可使用這張卡上寫的招式。[需要有足夠使用招式的能量。]將附於寶可夢身上的這張卡,在自己的回合結束時丟棄。" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/102.ts b/data-asia/SV/SV8/102.ts new file mode 100644 index 000000000..60cc38408 --- /dev/null +++ b/data-asia/SV/SV8/102.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "シアノ", + 'zh-tw': "席藍", + 'zh-cn': "席藍" + }, + + illustrator: "Akira Komayama", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "自分の山札から「ポケモンex」を3枚まで選び、相手に見せて、手札に加える。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇最多3張「寶可夢【ex】」卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多3張「寶可夢【ex】」卡,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/103.ts b/data-asia/SV/SV8/103.ts new file mode 100644 index 000000000..4963072db --- /dev/null +++ b/data-asia/SV/SV8/103.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "シトロンの機転", + 'zh-tw': "希特隆的機智", + 'zh-cn': "希特隆的機智" + }, + + illustrator: "Naoki Saito", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "自分のポケモン全員のHPを、それぞれ「60」回復する。", + 'zh-tw': "將自己的所有【雷】寶可夢各恢復「60」HP。", + 'zh-cn': "將自己的所有【雷】寶可夢各恢復「60」HP。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/104.ts b/data-asia/SV/SV8/104.ts new file mode 100644 index 000000000..011091762 --- /dev/null +++ b/data-asia/SV/SV8/104.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "ミカンのまなざし", + 'zh-tw': "阿蜜的目光", + 'zh-cn': "阿蜜的目光" + }, + + illustrator: "Taira Akitsu", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "次の相手の番、自分のポケモン全員が、相手のポケモンから受けるワザのダメージは「-30」される。(新しく場に出したポケモンもふくむ。)", + 'zh-tw': "在下個對手的回合,自己的所有寶可夢受到對手的寶可夢招式的傷害「-30」點。(包含新上場的寶可夢。)", + 'zh-cn': "在下個對手的回合,自己的所有寶可夢受到對手的寶可夢招式的傷害「-30」點。(包含新上場的寶可夢。)" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/105.ts b/data-asia/SV/SV8/105.ts new file mode 100644 index 000000000..988c1aaa2 --- /dev/null +++ b/data-asia/SV/SV8/105.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "エキサイトスタジアム", + 'zh-tw': "激動競技場", + 'zh-cn': "激動競技場" + }, + + illustrator: "imoniii", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "おたがいの場のたねポケモン全員の最大HPは、それぞれ「+30」される。", + 'zh-tw': "雙方場上所有【基礎】寶可夢的最大HP各「+30」。", + 'zh-cn': "雙方場上所有【基礎】寶可夢的最大HP各「+30」。" + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8/106.ts b/data-asia/SV/SV8/106.ts new file mode 100644 index 000000000..dd8decbff --- /dev/null +++ b/data-asia/SV/SV8/106.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8" + +const card: Card = { + set: Set, + + name: { + ja: "グラビティーマウンテン", + 'zh-tw': "引力山岳", + 'zh-cn': "引力山岳" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "おたがいの場の2進化ポケモン全員の最大HPは、それぞれ「-30」される。", + 'zh-tw': "雙方場上所有【2階進化】寶可夢的最大HP各「-30」。", + 'zh-cn': "雙方場上所有【2階進化】寶可夢的最大HP各「-30」。" + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a.ts b/data-asia/SV/SV8a.ts new file mode 100644 index 000000000..618d684c4 --- /dev/null +++ b/data-asia/SV/SV8a.ts @@ -0,0 +1,28 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SV8a', + name: { + ja: 'テラスタルフェスex', + id: 'Festival Terastal ex', + th: 'เทศกาลเทรัสตัลex', + "zh-tw": '太晶慶典ex', + 'zh-cn': '太晶慶典ex' + }, + + serie: serie, + + cardCount: { + official: 187 + }, + releaseDate: { + ja: '2024-12-06', + id: '2025-01-31', + "zh-cn": '2024-12-20', + "zh-tw": '2024-12-20', + th: '2025-02-07' + } +} + +export default set diff --git a/data-asia/SV/SV8a/001.ts b/data-asia/SV/SV8a/001.ts new file mode 100644 index 000000000..e8069ade9 --- /dev/null +++ b/data-asia/SV/SV8a/001.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "スボミー", + id: "Budew", + th: "ซึโบมี", + 'zh-tw': "含羞苞", + 'zh-cn': "含羞苞" + }, + + illustrator: "Yoriyuki Ikegami", + rarity: "None", + category: "Pokemon", + dexId: [406], + hp: 30, + types: ["Grass"], + + description: { + ja: "毒を 含んだ 花粉を まく。 きれいな 水で 育てるほど 毒の 成分は 高まる。", + id: "Budew menyebarkan serbuk sari yang mengandung racun. Makin jernih air yang digunakan untuk membesarkan Pokémon ini, makin tinggi kandungan racunnya.", + th: "กระจายละอองเกสรพิษออกมา ยิ่งเลี้ยงด้วยน้ำที่สะอาดมากเท่าไหร่ พิษยิ่งมีความรุนแรงมากขึ้นเท่านั้น", + 'zh-tw': "會散佈帶有毒素的花粉。 培育時所用的水越乾淨, 所含有的毒性就越高。", + 'zh-cn': "會散佈帶有毒素的花粉。 培育時所用的水越乾淨, 所含有的毒性就越高。" + }, + + stage: "Basic", + + attacks: [{ + name: { + ja: "むずむずかふん", + id: "Serbuk Sari Geli-geli Gatal", + th: "ละอองเกสรคันยิบ ๆ", + 'zh-tw': "癢癢花粉", + 'zh-cn': "癢癢花粉" + }, + + damage: 10, + + effect: { + ja: "次の相手の番、相手は手札からグッズを出して使えない。", + id: "Pada giliran lawan berikutnya, lawan tidak dapat memainkan Item dari Kartu Pegangan.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม ฝ่ายตรงข้ามไม่สามารถนำการ์ดไอเท็มจากบนมือ ออกมาใช้ได้", + 'zh-tw': "在下個對手的回合,對手無法從手牌使出物品卡。", + 'zh-cn': "在下個對手的回合,對手無法從手牌使出物品卡。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/002.ts b/data-asia/SV/SV8a/002.ts new file mode 100644 index 000000000..0e00d40b3 --- /dev/null +++ b/data-asia/SV/SV8a/002.ts @@ -0,0 +1,73 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "リーフィア", + id: "Leafeon", + th: "ลีเฟีย", + 'zh-tw': "葉伊布", + 'zh-cn': "葉伊布" + }, + + illustrator: "Iori Suzuki", + rarity: "None", + category: "Pokemon", + dexId: [470], + hp: 120, + types: ["Grass"], + + description: { + ja: "若い リーフィアほど ツンとくる 青臭い 匂い。 年老いると 落ち葉のような 匂いになる。", + id: "Makin muda Leafeon, makin kuat aroma daun mudanya. Seiring dengan pertambahan umur, aroma Pokémon ini menjadi seperti bau daun gugur.", + th: "ลีเฟียนั้นยิ่งอ่อนเยาว์จะยิ่งเหม็นเขียวแสบจมูก พอเริ่มมีอายุมากขึ้นจะมีกลิ่นเหมือนใบไม้ร่วง", + 'zh-tw': "越是年幼的葉伊布, 越是有刺鼻的青草味。 年老後就會變成好像落葉的味道。", + 'zh-cn': "越是年幼的葉伊布, 越是有刺鼻的青草味。 年老後就會變成好像落葉的味道。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "わかばのめぐみ", + id: "Berkah Daun Muda", + th: "พรจากใบอ่อน", + 'zh-tw': "嫩葉之恩", + 'zh-cn': "嫩葉之恩" + }, + + effect: { + ja: "自分の手札から「基本エネルギー」を1枚選び、ベンチポケモンにつける。その後、つけたポケモンのHPをすべて回復する。", + id: "Pilih 1 lembar Energi Dasar {Daun} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon Cadangan. Setelah itu, pulihkan HP Pokémon yang telah dikenakan Energi sepenuhnya.", + th: "เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนบนเบนช์ หลังจากนั้น ฟื้นฟู HP ทั้งหมดของโปเกมอนที่ติดการ์ดนั้น", + 'zh-tw': "從自己的手牌選擇1張「基本【草】能量」卡,附於備戰寶可夢身上。然後,將附上這些卡的寶可夢的HP全部恢復。", + 'zh-cn': "從自己的手牌選擇1張「基本【草】能量」卡,附於備戰寶可夢身上。然後,將附上這些卡的寶可夢的HP全部恢復。" + } + }, { + cost: ["Grass", "Colorless"], + + name: { + ja: "ソーラービーム", + id: "Solar Beam", + th: "โซลาร์บีม", + 'zh-tw': "日光束", + 'zh-cn': "日光束" + }, + + damage: 70 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/003.ts b/data-asia/SV/SV8a/003.ts new file mode 100644 index 000000000..e91946163 --- /dev/null +++ b/data-asia/SV/SV8a/003.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "リーフィアex", + id: "Leafeon ex", + th: "ลีเฟียex", + 'zh-tw': "葉伊布ex", + 'zh-cn': "葉伊布ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Grass"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + ja: "あおばのあらし", + id: "Badai Daun Segar", + th: "พายุใบไม้เขียวขจี", + 'zh-tw': "綠葉風暴", + 'zh-cn': "綠葉風暴" + }, + + damage: "60×", + + effect: { + ja: "相手のポケモン全員についているエネルギーの数×60ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 60 untuk tiap Energi yang dikenakan pada semua Pokémon lawan.", + th: "แดเมจจะเท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนฝ่ายตรงข้ามทุกตัว x60", + 'zh-tw': "造成對手的所有寶可夢身上附加的能量的數量×60點傷害。", + 'zh-cn': "造成對手的所有寶可夢身上附加的能量的數量×60點傷害。" + } + }, { + cost: ["Grass", "Fire", "Water"], + + name: { + ja: "モスアゲート", + id: "Moss Agate", + th: "มอสอาเกต", + 'zh-tw': "苔紋瑪瑙", + 'zh-cn': "苔紋瑪瑙" + }, + + damage: 230, + + effect: { + ja: "自分のベンチポケモン全員のHPを、それぞれ「100」回復する。", + id: "Pulihkan HP semua Pokémon Cadangan sendiri masing-masing sejumlah 100.", + th: "ฟื้นฟู HP ของโปเกมอนบนเบนช์ฝ่ายเราทุกตัว ตัวละ [100]", + 'zh-tw': "將自己的所有備戰寶可夢各恢復「100」HP。", + 'zh-cn': "將自己的所有備戰寶可夢各恢復「100」HP。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/004.ts b/data-asia/SV/SV8a/004.ts new file mode 100644 index 000000000..0e604e444 --- /dev/null +++ b/data-asia/SV/SV8a/004.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "モンメン", + id: "Cottonee", + th: "โมนเมน", + 'zh-tw': "木棉球", + 'zh-cn': "木棉球" + }, + + illustrator: "Kyoko Umemoto", + rarity: "None", + category: "Pokemon", + dexId: [546], + hp: 60, + types: ["Grass"], + + description: { + ja: "綿を 飛ばして 身を 守る。 台風の 風に 流され 地球の 裏側に いくことも。", + id: "Cottonee menyemburkan kapas untuk melindungi dirinya. Saat badai, kadang ada yang terbawa angin topan hingga ke belahan lain planet.", + th: "ปล่อยนุ่นเพื่อป้องกันตัว บางครั้งเมื่อลอยไปตามลมพายุไต้ฝุ่น ก็จะไปถึงอีกฟากของโลกเลย", + 'zh-tw': "會噴出棉花保護身體。 有時會被颱風吹到 地球的另一邊。", + 'zh-cn': "會噴出棉花保護身體。 有時會被颱風吹到 地球的另一邊。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "トリプルスピン", + id: "Triple Spin", + th: "ทริปเปิลสปิน", + 'zh-tw': "三重旋轉", + 'zh-cn': "三重旋轉" + }, + + damage: "10×", + + effect: { + ja: "コインを3回投げ、オモテの数×10ダメージ。", + id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10", + 'zh-tw': "擲3次硬幣,造成正面出現的次數×10點傷害。", + 'zh-cn': "擲3次硬幣,造成正面出現的次數×10點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/005.ts b/data-asia/SV/SV8a/005.ts new file mode 100644 index 000000000..b73360c03 --- /dev/null +++ b/data-asia/SV/SV8a/005.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "エルフーン", + id: "Whimsicott", + th: "เอลฟูน", + 'zh-tw': "風妖精", + 'zh-cn': "風妖精" + }, + + illustrator: "Mizue", + rarity: "None", + category: "Pokemon", + dexId: [547], + hp: 100, + types: ["Grass"], + + description: { + ja: "綿を まき散らし イタズラする。 水を かけると 重くなって 動けなくなり 観念するぞ。", + id: "Whimsicott berbuat iseng dengan menyebarkan kapas ke segala arah. Kapasnya akan menjadi berat saat basah oleh air sehingga ia tidak dapat bergerak dan hanya bisa pasrah.", + th: "โปรยนุ่นเพื่อแกล้ง เมื่อราดน้ำจะหนักจนขยับไม่ได้แล้วถึงสำนึก", + 'zh-tw': "喜歡到處撒棉花搗蛋。 沾水之後就會變重而 動彈不得,只能聽天由命。", + 'zh-cn': "喜歡到處撒棉花搗蛋。 沾水之後就會變重而 動彈不得,只能聽天由命。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "かるがるヒール", + id: "Pemulihan Enteng", + th: "รักษาง่าย ๆ", + 'zh-tw': "柔柔治癒", + 'zh-cn': "柔柔治癒" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分のバトル場のポケモンのHPを、すべて回復する。その後、回復したポケモンについているエネルギーを、すべてトラッシュする。", + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Pulihkan HP Pokémon {Daun} di Arena Bertarung sendiri sepenuhnya. Setelah itu, buang semua Energi yang dikenakan pada Pokémon yang telah dipulihkan ke Trash.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง ฟื้นฟู HP ทั้งหมดของโปเกมอน[หญ้า]บนตำแหน่งต่อสู้ฝ่ายเรา หลังจากนั้น ทิ้งพลังงานที่ติดอยู่กับโปเกมอนที่ฟื้นฟู ทั้งหมดที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。將自己的戰鬥場的【草】寶可夢的HP全部恢復。然後,將恢復的寶可夢身上附加的能量全部丟棄。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。將自己的戰鬥場的【草】寶可夢的HP全部恢復。然後,將恢復的寶可夢身上附加的能量全部丟棄。" + } + }], + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "タネばくだん", + id: "Bom Benih", + th: "ระเบิดเมล็ดพืช", + 'zh-tw': "種子炸彈", + 'zh-cn': "種子炸彈" + }, + + damage: 40 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/006.ts b/data-asia/SV/SV8a/006.ts new file mode 100644 index 000000000..dda8f7b0c --- /dev/null +++ b/data-asia/SV/SV8a/006.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "サルノリ", + id: "Grookey", + th: "ซารุโนริ", + 'zh-tw': "敲音猴", + 'zh-cn': "敲音猴" + }, + + illustrator: "Tomomi Ozaki", + rarity: "None", + category: "Pokemon", + dexId: [810], + hp: 70, + types: ["Grass"], + + description: { + ja: "特別な スティックで リズムを 刻むと 草花を 元気にする パワーが 音波になって 広がる。", + id: "Ketika Grookey mengetuk irama dengan stik spesialnya, kekuatan yang membuat tumbuhan sehat akan menjadi gelombang suara dan meluas.", + th: "เมื่อใช้แท่งไม้พิเศษเคาะจังหวะดนตรี พลังที่ทำให้ต้นไม้ดอกไม้ร่าเริงจะกลายเป็นคลื่นเสียงแผ่ขยายออกไป", + 'zh-tw': "當牠用特別的木棒敲奏時, 能夠給予花草活力的力量 就會變成音波擴散開來。", + 'zh-cn': "當牠用特別的木棒敲奏時, 能夠給予花草活力的力量 就會變成音波擴散開來。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "けとばす", + id: "Tendangan Penghempas", + th: "ดีด", + 'zh-tw': "踢飛", + 'zh-cn': "踢飛" + }, + + damage: 10 + }, { + cost: ["Grass", "Grass"], + + name: { + ja: "えだづき", + id: "Tusukan Ranting", + th: "ต่อกิ่ง", + 'zh-tw': "木枝突刺", + 'zh-cn': "木枝突刺" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/007.ts b/data-asia/SV/SV8a/007.ts new file mode 100644 index 000000000..ada79a5b3 --- /dev/null +++ b/data-asia/SV/SV8a/007.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "バチンキー", + id: "Thwackey", + th: "บาจินคี", + 'zh-tw': "啪咚猴", + 'zh-cn': "啪咚猴" + }, + + illustrator: "Uninori", + rarity: "None", + category: "Pokemon", + dexId: [811], + hp: 100, + types: ["Grass"], + + description: { + ja: "2本の スティックで 激しい ビートを 刻める バチンキーほど 仲間たちの 尊敬を 集める。", + id: "Thwackey yang dapat mengetukkan irama menggunakan dua buah stiknya dengan kencanglah yang makin dihormati kawanannya.", + th: "ยิ่งบาจินคีตีจังหวะรุนแรงด้วยแท่งไม้ 2 แท่งเท่าไหร่ ก็ยิ่งได้รับความเคารพจากเหล่าสหาย", + 'zh-tw': "越是能用2根木棒敲奏出 激烈節拍的啪咚猴,越是 能獲得夥伴們的尊敬。", + 'zh-cn': "越是能用2根木棒敲奏出 激烈節拍的啪咚猴,越是 能獲得夥伴們的尊敬。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "ドンドンだいこ", + id: "Gendang Dung Dung Dung", + th: "ตีกลองตึ้งตึ้ง", + 'zh-tw': "衝衝鼓", + 'zh-cn': "衝衝鼓" + }, + + effect: { + ja: "自分のバトルポケモンが特性「おまつりおんど」を持つポケモンなら、自分の番に1回使える。自分の山札から好きなカードを1枚選び、手札に加える。そして山札を切る。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon Bertarung sendiri adalah Pokémon yang memiliki Ability Orkes Festival. Pilih 1 kartu sesukanya dari Deck sendiri, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายเราเป็นโปเกมอนที่มีความสามารถ [รำวงงานเทศกาล] ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ดที่ชอบ 1 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "若自己的戰鬥寶可夢為擁有特性「祭典樂舞」的寶可夢,則在自己的回合時可使用1次。從自己的牌庫任意選擇1張卡加入手牌。並且重洗牌庫。", + 'zh-cn': "若自己的戰鬥寶可夢為擁有特性「祭典樂舞」的寶可夢,則在自己的回合時可使用1次。從自己的牌庫任意選擇1張卡加入手牌。並且重洗牌庫。" + } + }], + + attacks: [{ + cost: ["Grass", "Grass"], + + name: { + ja: "たたく", + id: "Menghantam", + th: "ตี", + 'zh-tw': "敲擊", + 'zh-cn': "敲擊" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/008.ts b/data-asia/SV/SV8a/008.ts new file mode 100644 index 000000000..ca0c7cd74 --- /dev/null +++ b/data-asia/SV/SV8a/008.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "カジッチュ", + id: "Applin", + th: "คาจิชชู", + 'zh-tw': "啃果蟲", + 'zh-cn': "啃果蟲" + }, + + illustrator: "Yoriyuki Ikegami", + rarity: "None", + category: "Pokemon", + dexId: [840], + hp: 40, + types: ["Grass"], + + description: { + ja: "りんごの 中で 暮らしている。 りんごが なくなると 体の 水分が 抜けて 弱ってしまう。", + id: "Applin hidup di dalam buah apel. Jika apelnya habis, Pokémon ini akan melemah karena kehilangan cairan tubuhnya.", + th: "อาศัยอยู่ในแอปเปิล พอไม่มีแอปเปิลแล้วจะสูญเสียน้ำในร่างกายและอ่อนแอลง", + 'zh-tw': "平時都在蘋果中生活。 如果失去了蘋果,身體的 水分就會流失而變得虛弱。", + 'zh-cn': "平時都在蘋果中生活。 如果失去了蘋果,身體的 水分就會流失而變得虛弱。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "しるをとばす", + id: "Menyemprotkan Getah", + th: "ฉีดพ่นน้ำ", + 'zh-tw': "噴汁", + 'zh-cn': "噴汁" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/009.ts b/data-asia/SV/SV8a/009.ts new file mode 100644 index 000000000..9dfb23145 --- /dev/null +++ b/data-asia/SV/SV8a/009.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "カミッチュ", + id: "Dipplin", + th: "คามิชชู", + 'zh-tw': "裹蜜蟲", + 'zh-cn': "裹蜜蟲" + }, + + illustrator: "Saboteri", + rarity: "None", + category: "Pokemon", + dexId: [1011], + hp: 80, + types: ["Grass"], + + description: { + ja: "頭を 出している そとッチュと 尻尾を 出している なかッチュが 助け合い りんごのなかで 暮らす。", + id: "Boah luar yang mengeluarkan kepala dan Boah dalam yang mengeluarkan ekor saling membantu dan tinggal bersama di dalam apel.", + th: "ตัวนอกที่ยื่นหัวออกมาและตัวในที่ยื่นหางออกมานั้นอาศัยอยู่ด้วยกันในแอปเปิลและคอยช่วยเหลือซึ่งกันและกัน", + 'zh-tw': "由露出了頭部的外頭蟲與 露出了尾巴的裡頭蟲相扶相持, 一起在蘋果裡面生活。", + 'zh-cn': "由露出了頭部的外頭蟲與 露出了尾巴的裡頭蟲相扶相持, 一起在蘋果裡面生活。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "おまつりおんど", + id: "Orkes Festival", + th: "รำวงงานเทศกาล", + 'zh-tw': "祭典樂舞", + 'zh-cn': "祭典樂舞" + }, + + effect: { + ja: "場に「お祭り会場」が出ているなら、このポケモンは、持っているワザを2回連続で使える。(1回目のワザで相手のバトルポケモンがきぜつしたなら、次のバトルポケモンが出たあと、2回目のワザを使う。)", + id: "Jika ada Lokasi Festival di Arena, Pokémon ini dapat menggunakan serangan yang dimiliki 2 kali berturut-turut. (Jika Pokémon Bertarung lawan KO akibat serangan pertama, gunakan serangan kedua setelah Pokémon Bertarung berikutnya masuk.)", + th: "ถ้ามี [สถานที่จัดเทศกาล] อยู่บนกระดาน โปเกมอนนี้ จะใช้ท่าต่อสู้ที่มีต่อเนื่องกันได้ 2 ครั้ง (ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ]ด้วยท่าต่อสู้ครั้งที่ 1 หลังจากที่โปเกมอนบนตำแหน่งต่อสู้ตัวถัดไปออกมา ให้ใช้ท่าต่อสู้ครั้งที่ 2)", + 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)", + 'zh-cn': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)" + } + }], + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "ともだちのわ", + id: "Lingkaran Teman", + th: "กลุ่มเพื่อน", + 'zh-tw': "朋友之環", + 'zh-cn': "朋友之環" + }, + + damage: "20×", + + effect: { + ja: "自分のベンチポケモンの数×20ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Pokémon Cadangan sendiri.", + th: "แดเมจจะเท่ากับจำนวนโปเกมอนบนเบนช์ฝ่ายเรา x20", + 'zh-tw': "造成自己的備戰寶可夢的數量×20點傷害。", + 'zh-cn': "造成自己的備戰寶可夢的數量×20點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/010.ts b/data-asia/SV/SV8a/010.ts new file mode 100644 index 000000000..53a4d82fc --- /dev/null +++ b/data-asia/SV/SV8a/010.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "カミツオロチex", + id: "Hydrapple ex", + th: "คามิสึโอโรจิex", + 'zh-tw': "蜜集大蛇ex", + 'zh-cn': "蜜集大蛇ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "じゅくせいチャージ", + id: "Muatan Matang", + th: "ชาร์จความสุก", + 'zh-tw': "‌熟成充能", + 'zh-cn': "‌熟成充能" + }, + + effect: { + ja: "自分の番に1回使える。自分の手札から「基本エネルギー」を1枚選び、自分のポケモンにつける。その後、つけたポケモンのHPを「30」回復する。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 lembar Energi Dasar {Daun} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon sendiri. Setelah itu, pulihkan HP Pokémon yang telah dikenakan Energi sejumlah 30.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา หลังจากนั้น ฟื้นฟู HP ของโปเกมอนที่ติดการ์ดนั้น [30]", + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於自己的寶可夢身上。然後,將附上那張卡的寶可夢恢復「30」HP。", + 'zh-cn': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於自己的寶可夢身上。然後,將附上那張卡的寶可夢恢復「30」HP。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "みつあめストーム", + id: "Badai Sirop Nektar", + th: "พายุน้ำตาลเชื่อม", + 'zh-tw': "蜜糖風暴", + 'zh-cn': "蜜糖風暴" + }, + + damage: "30+", + + effect: { + ja: "自分のポケモン全員についているエネルギーの数×30ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi {Daun} yang dikenakan pada semua Pokémon sendiri.", + th: "แดเมจจะเพิ่มตามจำนวนพลังงาน[หญ้า]ที่ติดอยู่กับโปเกมอนฝ่ายเราทุกตัว x30", + 'zh-tw': "增加自己的所有寶可夢身上附加的【草】能量的數量×30點傷害。", + 'zh-cn': "增加自己的所有寶可夢身上附加的【草】能量的數量×30點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/011.ts b/data-asia/SV/SV8a/011.ts new file mode 100644 index 000000000..b34085c48 --- /dev/null +++ b/data-asia/SV/SV8a/011.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アノクサ", + id: "Bramblin", + th: "อาโนะคุสะ", + 'zh-tw': "納噬草", + 'zh-cn': "納噬草" + }, + + illustrator: "Tetsu Kayama", + rarity: "None", + category: "Pokemon", + dexId: [946], + hp: 50, + types: ["Grass"], + + description: { + ja: "風に吹かれて 荒野を 転がり 行き先は 自分でも わからない。 体が 濡れるのが 大嫌い。", + id: "Bramblin bergulir ditiup angin di padang gurun tanpa mengetahui tujuannya. Pokémon ini sangat benci jika tubuhnya menjadi basah.", + th: "ถูกลมพัดกลิ้งไปตามทุ่งหญ้ารกร้าง แม้แต่ตัวเองก็ไม่รู้ว่ากำลังมุ่งหน้าไปที่ไหน เกลียดการที่ร่างกายเปียกชุ่มเป็นอย่างมาก", + 'zh-tw': "在風的吹拂下滾動於荒野間, 就連自己也不知道會滾到哪裡去。 最討厭身體被弄得濕答答的。", + 'zh-cn': "在風的吹拂下滾動於荒野間, 就連自己也不知道會滾到哪裡去。 最討厭身體被弄得濕答答的。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "トゲでさす", + id: "Duri Penusuk", + th: "แทงด้วยหนาม", + 'zh-tw': "針刺", + 'zh-cn': "針刺" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/012.ts b/data-asia/SV/SV8a/012.ts new file mode 100644 index 000000000..32a8364fa --- /dev/null +++ b/data-asia/SV/SV8a/012.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アノホラグサ", + id: "Brambleghast", + th: "อาโนะโฮรากุสะ", + 'zh-tw': "怖納噬草", + 'zh-cn': "怖納噬草" + }, + + illustrator: "otumami", + rarity: "None", + category: "Pokemon", + dexId: [947], + hp: 100, + types: ["Grass"], + + description: { + ja: "乾燥地帯を 放浪する。 ごくまれに 大量発生して 町ひとつを 埋めつくしてしまう。", + id: "Brambleghast berkelana di wilayah gersang. Terkadang Pokémon ini bermunculan dalam jumlah besar dan mengubur sebuah kota.", + th: "เคลื่อนไปอย่างไร้จุดหมายในพื้นที่แห้งแล้ง นาน ๆ ทีจะปรากฏตัวขึ้นมาเป็นจำนวนมากจนกลืนหมู่บ้านทั้งหมู่บ้านหายไป", + 'zh-tw': "會在乾燥地帶流浪。 有極低的機率會大量出現, 把一整座城鎮塞得滿滿滿。", + 'zh-cn': "會在乾燥地帶流浪。 有極低的機率會大量出現, 把一整座城鎮塞得滿滿滿。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "ざっそうだましい", + id: "Jiwa Tangguh", + th: "จิตวิญญาณแห่งวัชพืช", + 'zh-tw': "雜草魂", + 'zh-cn': "雜草魂" + }, + + effect: { + ja: "相手がすでにとったサイド1枚につき、このポケモンの最大HPは「+50」される。", + id: "HP maksimal Pokémon ini bertambah sejumlah 50 untuk tiap 1 lembar Kartu Point yang telah diambil lawan.", + th: "HP สูงสุดของโปเกมอนนี้จะถูก [+50] ต่อการ์ดรางวัล 1 ใบที่ฝ่ายตรงข้ามหยิบไปแล้ว", + 'zh-tw': "這隻寶可夢的最大HP,依對手已經獲得的獎賞卡每1張「+50」。", + 'zh-cn': "這隻寶可夢的最大HP,依對手已經獲得的獎賞卡每1張「+50」。" + } + }], + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + ja: "パワフルニードル", + id: "Powerful Needle", + th: "พาวเวอร์ฟูลนีดเดิ้ล", + 'zh-tw': "強力尖刺", + 'zh-cn': "強力尖刺" + }, + + damage: "80×", + + effect: { + ja: "このポケモンについているエネルギーの数ぶんコインを投げ、オモテの数×80ダメージ。", + id: "Lempar koin untuk tiap Energi yang dikenakan pada Pokémon ini. Serangan ini memberikan kerusakan sejumlah 80 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนนี้ แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x80", + 'zh-tw': "擲與這隻寶可夢身上附加的能量的數量相同次數的硬幣,造成正面出現的次數×80點傷害。", + 'zh-cn': "擲與這隻寶可夢身上附加的能量的數量相同次數的硬幣,造成正面出現的次數×80點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/013.ts b/data-asia/SV/SV8a/013.ts new file mode 100644 index 000000000..44b7e4c88 --- /dev/null +++ b/data-asia/SV/SV8a/013.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "シガロコ", + id: "Rellor", + th: "ชิกาโรโค", + 'zh-tw': "蟲滾泥", + 'zh-cn': "蟲滾泥" + }, + + illustrator: "Saboteri", + rarity: "None", + category: "Pokemon", + dexId: [953], + hp: 50, + types: ["Grass"], + + description: { + ja: "泥玉を 転がしながら 進化の エネルギーを 熟成させる。 やがて 進化のときを 迎える。", + id: "Rellor mematangkan energi evolusi sambil menggelindingkan bola lumpur. Pada akhirnya, waktu evolusi Pokémon ini akan tiba.", + th: "บ่มพลังงานที่ใช้ในการวิวัฒนาการให้สุกไปในขณะที่กลิ้งก้อนโคลน เพื่อรอช่วงเวลาที่จะได้วิวัฒนาการ", + 'zh-tw': "會一邊滾著泥巴球, 一邊使進化的能量成熟。 最終會迎接進化的時刻。", + 'zh-cn': "會一邊滾著泥巴球, 一邊使進化的能量成熟。 最終會迎接進化的時刻。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ちょっとつっこむ", + id: "Gasak Sedikit", + th: "จุ้นจ้านหน่อย", + 'zh-tw': "撞一下", + 'zh-cn': "撞一下" + }, + + damage: 30, + + effect: { + ja: "このポケモンにも10ダメージ。", + id: "Pokémon ini juga menerima kerusakan sejumlah 10.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย", + 'zh-tw': "這隻寶可夢也受到10點傷害。", + 'zh-cn': "這隻寶可夢也受到10點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/014.ts b/data-asia/SV/SV8a/014.ts new file mode 100644 index 000000000..bcae852ad --- /dev/null +++ b/data-asia/SV/SV8a/014.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ベラカス", + id: "Rabsca", + th: "เบราคาสุ", + 'zh-tw': "蟲甲聖", + 'zh-cn': "蟲甲聖" + }, + + illustrator: "mingo", + rarity: "None", + category: "Pokemon", + dexId: [954], + hp: 70, + types: ["Grass"], + + description: { + ja: "玉の中に 赤ん坊が 眠る。 心地よく 眠れるように 脚で 玉を まわして あやしているのだ。", + id: "Bayi tertidur di dalam bola Rabsca. Pokémon ini menggelundungkan bola dengan kakinya dan menenangkan bayi tersebut agar dapat tidur nyenyak.", + th: "มีตัวอ่อนหลับใหลอยู่ภายในลูกบอล ใช้ขาหมุนลูกบอลเพื่อกล่อมให้ตัวอ่อนนอนหลับสบาย", + 'zh-tw': "為了讓在球裡睡覺的寶寶 可以睡得更加香甜,會用腳 轉著球,讓寶寶感到安穩。", + 'zh-cn': "為了讓在球裡睡覺的寶寶 可以睡得更加香甜,會用腳 轉著球,讓寶寶感到安穩。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "スフィアシールド", + id: "Sphere Shield", + th: "สเฟียร์ชีลด์", + 'zh-tw': "球形盾牌", + 'zh-cn': "球形盾牌" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分のベンチポケモン全員は、相手のポケモンからワザのダメージや効果を受けない。", + id: "Selama Pokémon ini ada di Arena, semua Pokémon Cadangan sendiri tidak menerima kerusakan dan efek akibat serangan dari Pokémon lawan.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ โปเกมอนบนเบนช์ฝ่ายเราทุกตัว จะไม่ได้รับแดเมจและเอฟเฟกต์ของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้าม", + 'zh-tw': "只要這隻寶可夢在場上,自己的所有備戰寶可夢不會受到對手的寶可夢招式的傷害與效果的影響。", + 'zh-cn': "只要這隻寶可夢在場上,自己的所有備戰寶可夢不會受到對手的寶可夢招式的傷害與效果的影響。" + } + }], + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "サイコキネシス", + id: "Psikis", + th: "ไซโคคิเนซิส", + 'zh-tw': "精神強念", + 'zh-cn': "精神強念" + }, + + damage: "10+", + + effect: { + ja: "相手のバトルポケモンについているエネルギーの数×30ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon Bertarung lawan.", + th: "แดเมจจะเพิ่มตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x30", + 'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。", + 'zh-cn': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/015.ts b/data-asia/SV/SV8a/015.ts new file mode 100644 index 000000000..a838ab864 --- /dev/null +++ b/data-asia/SV/SV8a/015.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "チオンジェン", + id: "Wo-Chien", + th: "ฉงเจี่ยน", + 'zh-tw': "古簡蝸", + 'zh-cn': "古簡蝸" + }, + + illustrator: "Kouki Saitou", + rarity: "None", + category: "Pokemon", + dexId: [1001], + hp: 130, + types: ["Grass"], + + description: { + ja: "草木の エネルギーを 吸い上げる。 周囲の 森は たちどころに 枯れ果て 田畑は 不作となる。", + id: "Wo-Chien mengisap energi tumbuhan. Hutan sekeliling Pokémon ini langsung menjadi tandus dan sawah-sawah menjadi gersang.", + th: "ดูดพลังงานของต้นไม้ใบหญ้า ทำให้ป่าไม้โดยรอบเหี่ยวเฉาอย่างรวดเร็วและไร่นาไม่ค่อยออกผล", + 'zh-tw': "會吸取草木的能量, 使周圍的森林霎時乾枯, 田地的農作物歉收。", + 'zh-cn': "會吸取草木的能量, 使周圍的森林霎時乾枯, 田地的農作物歉收。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "リーフブリング", + id: "Leaf Bring", + th: "เบิกใบไม้", + 'zh-tw': "綠葉到來", + 'zh-cn': "綠葉到來" + }, + + effect: { + ja: "自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモン1匹につける。", + id: "Pilih paling banyak 2 lembar Energi Dasar {Daun} dari Trash sendiri, lalu kenakan pada 1 Pokémon sendiri.", + th: "เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา 1 ตัว", + 'zh-tw': "從自己的棄牌區選擇最多2張「基本【草】能量」卡,附於自己的1隻寶可夢身上。", + 'zh-cn': "從自己的棄牌區選擇最多2張「基本【草】能量」卡,附於自己的1隻寶可夢身上。" + } + }, { + cost: ["Grass", "Grass", "Grass", "Colorless"], + + name: { + ja: "どんよくバインド", + id: "Ketamakan Mengikat", + th: "โลภมากมัดติด", + 'zh-tw': "貪欲制約", + 'zh-cn': "貪欲制約" + }, + + damage: 140, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、ワザを使うためのエネルギーが、エネルギー2個ぶん多くなる。", + id: "Pada giliran lawan berikutnya, Energi yang dibutuhkan oleh Pokémon yang menerima serangan ini untuk menggunakan serangan bertambah 2 Energi {Bening}.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ พลังงานสำหรับใช้ท่าต่อสู้ จะใช้พลังงาน[ไร้สี]เพิ่มขึ้น 2 ลูก", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式所需的能量增加2個【無】能量。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢使用招式所需的能量增加2個【無】能量。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/016.ts b/data-asia/SV/SV8a/016.ts new file mode 100644 index 000000000..7687f3425 --- /dev/null +++ b/data-asia/SV/SV8a/016.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノイサハex", + id: "Iron Leaves ex", + th: "ใบด่างเหล็กex", + 'zh-tw': "鐵斑葉ex", + 'zh-cn': "鐵斑葉ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 220, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "ラピッドバーニア", + id: "Rapid Vernier", + th: "แรพพิดเวอร์เนียร์", + 'zh-tw': "迅速游標", + 'zh-cn': "迅速游標" + }, + + effect: { + ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。このポケモンをバトルポケモンと入れ替える。入れ替えた場合、自分の場のポケモンについているエネルギーを好きなだけ選び、このポケモンにつけ替える。", + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Tukar Pokémon ini dengan Pokémon Bertarung. Jika ditukar, pilih sesukanya Energi yang dikenakan pada Pokémon di Arena sendiri, lalu pindahkan ke Pokémon ini.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง สลับโปเกมอนนี้กับโปเกมอนบนตำแหน่งต่อสู้ เมื่อสลับแล้ว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเราตามจำนวนที่ชอบ ย้ายมาติดกับโปเกมอนนี้", + 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。將這隻寶可夢與戰鬥寶可夢互換。互換的情況下,選擇自己的場上寶可夢身上附加的任意數量的能量卡,改附於這隻寶可夢身上。", + 'zh-cn': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。將這隻寶可夢與戰鬥寶可夢互換。互換的情況下,選擇自己的場上寶可夢身上附加的任意數量的能量卡,改附於這隻寶可夢身上。" + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Colorless"], + + name: { + ja: "プリズムエッジ", + id: "Prism Edge", + th: "ปริซึมเอดจ์", + 'zh-tw': "稜鏡刀鋒", + 'zh-cn': "稜鏡刀鋒" + }, + + damage: 180, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/017.ts b/data-asia/SV/SV8a/017.ts new file mode 100644 index 000000000..dc0dd429b --- /dev/null +++ b/data-asia/SV/SV8a/017.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "チャデス", + id: "Poltchageist", + th: "ฉะเดธ", + 'zh-tw': "斯魔茶", + 'zh-cn': "斯魔茶" + }, + + illustrator: "MINAMINAMI Take", + rarity: "None", + category: "Pokemon", + dexId: [1012], + hp: 30, + types: ["Grass"], + + description: { + ja: "ヤバチャの リージョンフォームに 見えるが まったく 関係のない ポケモンと 最近 判明した。", + id: "Poltchageist terlihat seperti varian daerah dari Sinistea, tetapi belakangan ini ditemukan bahwa mereka merupakan Pokémon yang tidak ada keterkaitannya sama sekali.", + th: "แม้จะดูเหมือนฟอร์มตามภูมิภาคของยาบาฉะ แต่ไม่นานมานี้มีการค้นพบแล้วว่า มันเป็นโปเกมอนที่ไม่เกี่ยวข้องกันโดยสิ้นเชิง", + 'zh-tw': "雖然這種寶可夢看起來像是 來悲茶的地區形態,但最近 被發現其實兩者毫無關係。", + 'zh-cn': "雖然這種寶可夢看起來像是 來悲茶的地區形態,但最近 被發現其實兩者毫無關係。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "くらがくれ", + id: "Gudang Persembunyian", + th: "ซ่อนในคลัง", + 'zh-tw': "藏隱", + 'zh-cn': "藏隱" + }, + + effect: { + ja: "このポケモンは、ベンチにいるかぎり、相手のポケモンからワザのダメージや効果を受けない。", + id: "Selama Pokémon ini ada di Cadangan, Pokémon ini tidak menerima kerusakan dan efek akibat serangan dari Pokémon lawan.", + th: "โปเกมอนนี้ ตราบใดที่ยังอยู่บนเบนช์ จะไม่ได้รับแดเมจและเอฟเฟกต์ของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้าม", + 'zh-tw': "只要這隻寶可夢在備戰區,不會受到對手的寶可夢招式的傷害與效果的影響。", + 'zh-cn': "只要這隻寶可夢在備戰區,不會受到對手的寶可夢招式的傷害與效果的影響。" + } + }], + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "ひっかける", + id: "Mengait", + th: "จับแขวน", + 'zh-tw': "鉤住", + 'zh-cn': "鉤住" + }, + + damage: 10 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/018.ts b/data-asia/SV/SV8a/018.ts new file mode 100644 index 000000000..4a3b09337 --- /dev/null +++ b/data-asia/SV/SV8a/018.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ヤバソチャ", + id: "Sinistcha", + th: "ยาบาโซฉะ", + 'zh-tw': "來悲粗茶", + 'zh-cn': "來悲粗茶" + }, + + illustrator: "Kouki Saitou", + rarity: "None", + category: "Pokemon", + dexId: [1013], + hp: 70, + types: ["Grass"], + + description: { + ja: "民家の 床下や 棚の奥など 冷暗所を 好む。 日没後 獲物を 探して 徘徊する。", + id: "Pokémon yang menyukai tempat gelap dan dingin seperti di bawah lantai rumah, di dalam rak, atau lainnya. Ia berkeliaran mencari mangsanya setelah matahari terbenam.", + th: "ชอบสถานที่เย็น ๆ มืด ๆ อย่างใต้พื้นบ้านหรือตามซอกมุมชั้นวางของ หลังพระอาทิตย์ตกจะไปตระเวนหาอาหาร", + 'zh-tw': "喜歡待在民宅的地板下或 架子深處等陰涼的地方。 日落後會四處徘徊尋找獵物。", + 'zh-cn': "喜歡待在民宅的地板下或 架子深處等陰涼的地方。 日落後會四處徘徊尋找獵物。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "のろいのしずく", + id: "Tetesan Kutukan", + th: "หยาดหยดแห่งคำสาป", + 'zh-tw': "詛咒水滴", + 'zh-cn': "詛咒水滴" + }, + + effect: { + ja: "ダメカン4個を、相手のポケモンに好きなようにのせる。", + id: "Letakkan sejumlah 4 Token Kerusakan pada Pokémon lawan sesukanya.", + th: "วางตัวนับแดเมจ 4 ตัว บนโปเกมอนฝ่ายตรงข้ามตามชอบ", + 'zh-tw': "將4個傷害指示物以任意方式放置於對手的寶可夢身上。", + 'zh-cn': "將4個傷害指示物以任意方式放置於對手的寶可夢身上。" + } + }, { + cost: ["Grass"], + + name: { + ja: "ぶちまけちゃ", + id: "Menghamburkan Teh", + th: "คว่ำชาทิ้ง", + 'zh-tw': "傾瀉茶", + 'zh-cn': "傾瀉茶" + }, + + damage: "70×", + + effect: { + ja: "自分の場のポケモンについているエネルギーを3枚までトラッシュし、その枚数×70ダメージ。", + id: "Buang paling banyak 3 lembar Energi {Daun} yang dikenakan pada Pokémon di Arena sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 70 untuk tiap lembarnya.", + th: "ทิ้งการ์ดพลังงาน[หญ้า]ที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเราได้สูงสุด 3 ใบที่ตำแหน่งทิ้งการ์ด แดเมจจะเท่ากับจำนวนการ์ดนั้น x70", + 'zh-tw': "將最多3張自己的場上寶可夢身上附加的【草】能量卡丟棄,造成其張數×70點傷害。", + 'zh-cn': "將最多3張自己的場上寶可夢身上附加的【草】能量卡丟棄,造成其張數×70點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/019.ts b/data-asia/SV/SV8a/019.ts new file mode 100644 index 000000000..f54a146a4 --- /dev/null +++ b/data-asia/SV/SV8a/019.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ヤバソチャex", + id: "Sinistcha ex", + th: "ยาบาโซฉะex", + 'zh-tw': "來悲粗茶ex", + 'zh-cn': "來悲粗茶ex" + }, + + illustrator: "aky CG Works", + rarity: "Double rare", + category: "Pokemon", + hp: 240, + types: ["Grass"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "せんじがえし", + id: "Menyeduh Balik", + th: "ต้มสกัดคืน", + 'zh-tw': "熬返", + 'zh-cn': "熬返" + }, + + effect: { + ja: "自分のトラッシュにある「基本エネルギー」をすべて相手に見せ、その枚数×2個ぶんのダメカンを、相手のポケモン1匹にのせる。その後、見せたエネルギーを山札にもどして切る。", + id: "Perlihatkan semua Energi Dasar {Daun} yang ada di Trash sendiri ke lawan, letakkan 2 Token Kerusakan untuk tiap lembarnya pada 1 Pokémon lawan. Setelah itu, kocok kembali Energi yang telah diperlihatkan ke Deck.", + th: "ให้ฝ่ายตรงข้ามดูการ์ด [พลังงานพื้นฐาน[หญ้า]] ที่อยู่บนตำแหน่งทิ้งการ์ดฝ่ายเราทั้งหมด วางตัวนับแดเมจบนโปเกมอนฝ่ายตรงข้าม 1 ตัว ตามจำนวนการ์ดนั้น x2 ตัว หลังจากนั้น นำการ์ดพลังงานที่ให้ดูใส่กลับไปในสำรับการ์ดแล้วสับ", + 'zh-tw': "在給對手看過自己的棄牌區的所有「基本【草】能量」卡後,將與其張數×2個的相同數量的傷害指示物,放置於對手的1隻寶可夢身上。然後,將給對手看過的能量卡放回牌庫並重洗。", + 'zh-cn': "在給對手看過自己的棄牌區的所有「基本【草】能量」卡後,將與其張數×2個的相同數量的傷害指示物,放置於對手的1隻寶可夢身上。然後,將給對手看過的能量卡放回牌庫並重洗。" + } + }, { + cost: ["Grass", "Colorless"], + + name: { + ja: "まっちゃスプラッシュ", + id: "Matcha Splash", + th: "มัทฉะสแปลช", + 'zh-tw': "抹茶飛濺", + 'zh-cn': "抹茶飛濺" + }, + + damage: 120, + + effect: { + ja: "自分のポケモン全員のHPを、それぞれ「30」回復する。", + id: "Pulihkan HP semua Pokémon sendiri masing-masing sejumlah 30.", + th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเราทุกตัว ตัวละ [30]", + 'zh-tw': "將自己的所有寶可夢各恢復「30」HP。", + 'zh-cn': "將自己的所有寶可夢各恢復「30」HP。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/020.ts b/data-asia/SV/SV8a/020.ts new file mode 100644 index 000000000..f8602913e --- /dev/null +++ b/data-asia/SV/SV8a/020.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーガポン みどりのめんex", + id: "Ogerpon Topeng Teal ex", + th: "โอการ์ปอง หน้ากากสีทีลex", + 'zh-tw': "厄鬼椪 碧草面具ex", + 'zh-cn': "厄鬼椪 碧草面具ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "みどりのまい", + id: "Tarian Teal", + th: "ระบำเขียวขจี", + 'zh-tw': "碧綠之舞", + 'zh-cn': "碧綠之舞" + }, + + effect: { + ja: "自分の番に1回使える。自分の手札から「基本エネルギー」を1枚選び、このポケモンにつける。その後、自分の山札を1枚引く。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 lembar Energi Dasar {Daun} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon ini. Setelah itu, ambil 1 kartu dari atas Deck sendiri.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนนี้ หลังจากนั้น จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา", + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於這隻寶可夢身上。然後,從自己的牌庫抽出1張卡。", + 'zh-cn': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於這隻寶可夢身上。然後,從自己的牌庫抽出1張卡。" + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Grass"], + + name: { + ja: "まんようしぐれ", + id: "Hujan Ribuan Daun", + th: "ฝนใบไม้โปรยปราย", + 'zh-tw': "萬葉陣雨", + 'zh-cn': "萬葉陣雨" + }, + + damage: "30+", + + effect: { + ja: "おたがいのバトルポケモンについているエネルギーの数×30ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon Bertarung kedua pemain.", + th: "แดเมจจะเพิ่มตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่าย x30", + 'zh-tw': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。", + 'zh-cn': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/021.ts b/data-asia/SV/SV8a/021.ts new file mode 100644 index 000000000..ec12bbf99 --- /dev/null +++ b/data-asia/SV/SV8a/021.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブースター", + id: "Flareon", + th: "บูสเตอร์", + 'zh-tw': "火伊布", + 'zh-cn': "火伊布" + }, + + illustrator: "SIE NANAHARA", + rarity: "None", + category: "Pokemon", + dexId: [136], + hp: 130, + types: ["Fire"], + + description: { + ja: "吸いこんだ 空気を 体内の 炎袋に 送りこみ 1700度の 炎にして 吹く。", + id: "Udara yang diisap Flareon dikirim ke kantong api di dalam tubuhnya, dipanaskan menjadi api bersuhu 1700 ℃, lalu diembuskan.", + th: "ส่งอากาศที่สูดเข้ามาไปยังถุงไฟภายในร่างกายเพื่อให้ไฟลุกไหม้ถึง 1700 องศาเซลเซียส แล้วพ่นออกมา", + 'zh-tw': "會將吸入的空氣送進 體內的火囊轉化成 1700度的火焰後再吐出來。", + 'zh-cn': "會將吸入的空氣送進 體內的火囊轉化成 1700度的火焰後再吐出來。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "はかいび", + id: "Api Penghancur", + th: "ไฟทำลายล้าง", + 'zh-tw': "破壞火", + 'zh-cn': "破壞火" + }, + + damage: 30, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。" + } + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + ja: "とうしのもうか", + id: "Kobar Api Semangat Petarung", + th: "ไฟลุกนักสู้", + 'zh-tw': "鬥志猛火", + 'zh-cn': "鬥志猛火" + }, + + damage: "90+", + + effect: { + ja: "相手のバトルポケモンが「ポケモンex・V」なら、90ダメージ追加。", + id: "Jika Pokémon Bertarung lawan adalah Pokémon {ex}/{V}, kerusakan yang diberikan bertambah sejumlah 90.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】 /【V】] การโจมตีนี้จะเพิ่มแดเมจอีก 90", + 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加90點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加90點傷害。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/022.ts b/data-asia/SV/SV8a/022.ts new file mode 100644 index 000000000..b1d55cac9 --- /dev/null +++ b/data-asia/SV/SV8a/022.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブースターex", + id: "Flareon ex", + th: "บูสเตอร์ex", + 'zh-tw': "火伊布ex", + 'zh-cn': "火伊布ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Fire"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + ja: "バーニングチャージ", + id: "Burning Charge", + th: "เบิร์นนิงชาร์จ", + 'zh-tw': "燃燒充能", + 'zh-cn': "燃燒充能" + }, + + damage: 130, + + effect: { + ja: "自分の山札から基本エネルギーを2枚まで選び、自分のポケモン1匹につける。そして山札を切る。", + id: "Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, lalu kenakan pada 1 Pokémon sendiri. Kemudian, kocok Deck.", + th: "เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอน ฝ่ายเรา 1 ตัว แล้วสับสำรับการ์ด", + 'zh-tw': "從自己的牌庫選擇最多2張基本能量卡,附於自己的1隻寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張基本能量卡,附於自己的1隻寶可夢身上。並且重洗牌庫。" + } + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + ja: "カーネリアン", + id: "Carnelian", + th: "คาร์เนเลียน", + 'zh-tw': "紅玉髓", + 'zh-cn': "紅玉髓" + }, + + damage: 280, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/023.ts b/data-asia/SV/SV8a/023.ts new file mode 100644 index 000000000..61f8c21cf --- /dev/null +++ b/data-asia/SV/SV8a/023.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "カルボウ", + id: "Charcadet", + th: "คาร์โบ", + 'zh-tw': "炭小侍", + 'zh-cn': "炭小侍" + }, + + illustrator: "Saya Tsuruta", + rarity: "None", + category: "Pokemon", + dexId: [935], + hp: 70, + types: ["Fire"], + + description: { + ja: "焼けた 木炭に 命が 宿り ポケモンになった。 燃える 闘志で 強敵にも 戦いを 挑む。", + id: "Jiwa bersemayam ke dalam arang terbakar, lalu berubah menjadi Pokémon. Dengan semangat bertarung yang membara, Charcadet menantang untuk bertarung meskipun melawan musuh yang kuat.", + th: "เป็นโปเกมอนที่เกิดจากถ่านไม้ที่ลุกไหม้ มีจิตวิญญาณการต่อสู้ที่เร่าร้อน กล้าเผชิญหน้าแม้กับศัตรูที่แข็งแกร่ง", + 'zh-tw': "生命寄宿在燃燒的木炭上 變成了寶可夢。即使敵人再強, 也會以燃燒的鬥志迎面而戰。", + 'zh-cn': "生命寄宿在燃燒的木炭上 變成了寶可夢。即使敵人再強, 也會以燃燒的鬥志迎面而戰。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "なぐる", + id: "Memukul", + th: "ทุบตี", + 'zh-tw': "打擊", + 'zh-cn': "打擊" + }, + + damage: 10 + }, { + cost: ["Fire", "Colorless"], + + name: { + ja: "かえん", + id: "Lidah Api", + th: "เผาไหม้", + 'zh-tw': "烈焰", + 'zh-cn': "烈焰" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/024.ts b/data-asia/SV/SV8a/024.ts new file mode 100644 index 000000000..bebedd01d --- /dev/null +++ b/data-asia/SV/SV8a/024.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノドクガ", + id: "Iron Moth", + th: "แมลงมอธเหล็ก", + 'zh-tw': "鐵毒蛾", + 'zh-cn': "鐵毒蛾" + }, + + illustrator: "Kouki Saitou", + rarity: "None", + category: "Pokemon", + dexId: [994], + hp: 130, + types: ["Fire"], + + description: { + ja: "捕獲例は ゼロ。 データ不足。 古い 書物に 記された 物体と 特徴が 一致。", + id: "Laporan penangkapannya 0. Data terkait Pokémon ini kurang. Karakteristiknya cocok dengan objek yang tertulis dalam buku kuno.", + th: "ข้อมูลไม่เพียงพอและไม่เคยมีข้อมูลว่าถูกจับมาก่อน มีลักษณะเด่นตรงกับวัตถุที่อธิบายไว้ในบันทึกเก่าแก่", + 'zh-tw': "無捕獲紀錄。資料不足。 其特徵與古書裡 所記載的物體一致。", + 'zh-cn': "無捕獲紀錄。資料不足。 其特徵與古書裡 所記載的物體一致。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "サーマルリアクター", + id: "Thermal Reactor", + th: "เครื่องปฏิกรณ์ความร้อน", + 'zh-tw': "熱流反應者", + 'zh-cn': "熱流反應者" + }, + + effect: { + ja: "自分の番に、このポケモンがベンチからバトル場に出たとき、1回使える。自分の場のポケモンについているエネルギーを好きなだけ選び、このポケモンにつけ替える。", + id: "Dapat digunakan 1 kali pada giliran sendiri saat Pokémon ini masuk dari Cadangan ke Arena Bertarung. Pilih sesukanya Energi {Api} yang dikenakan pada Pokémon di Arena sendiri, lalu pindahkan ke Pokémon ini.", + th: "ในเทิร์นฝ่ายเรา เมื่อโปเกมอนนี้ออกจากเบนช์มาที่ตำแหน่งต่อสู้ ใช้ได้ 1 ครั้ง เลือกพลังงาน[ไฟ]ที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเราตามจำนวนที่ชอบ ย้ายมาติดกับโปเกมอนนี้", + 'zh-tw': "在自己的回合,從備戰區將這隻寶可夢放置於戰鬥場時,可使用1次。選擇自己的場上寶可夢身上附加的任意數量的【火】能量卡,改附於這隻寶可夢身上。", + 'zh-cn': "在自己的回合,從備戰區將這隻寶可夢放置於戰鬥場時,可使用1次。選擇自己的場上寶可夢身上附加的任意數量的【火】能量卡,改附於這隻寶可夢身上。" + } + }], + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "ねっせん", + id: "Sinar Panas", + th: "ลำแสงร้อนจี๋", + 'zh-tw': "高熱光線", + 'zh-cn': "高熱光線" + }, + + damage: 120, + + effect: { + ja: "次の自分の番、このポケモンは「ねっせん」が使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Sinar Panas.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [ลำแสงร้อนจี๋] ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「高熱光線」。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「高熱光線」。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/025.ts b/data-asia/SV/SV8a/025.ts new file mode 100644 index 000000000..b6f65f873 --- /dev/null +++ b/data-asia/SV/SV8a/025.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イーユイ", + id: "Chi-Yu", + th: "อวี้อวี๋", + 'zh-tw': "古玉魚", + 'zh-cn': "古玉魚" + }, + + illustrator: "Dsuke", + rarity: "None", + category: "Pokemon", + dexId: [1004], + hp: 110, + types: ["Fire"], + + description: { + ja: "3000度の 炎を 操る。 岩や 砂利を 溶かして 作った マグマの海を ゆうゆうと 泳ぐ。", + id: "Chi-Yu mengendalikan api bersuhu 3000 ℃. Pokémon ini melelehkan batu dan kerikil, lalu berenang dengan tenang di lautan magma buatannya.", + th: "ควบคุมเปลวไฟที่ร้อนกว่า 3000 องศาเซลเซียส แหวกว่ายในทะเลแม็กมาที่มันสร้างจากการหลอมละลายหินและกรวดอย่างสบาย ๆ", + 'zh-tw': "能操控3000度的火焰。 會熔化岩石和沙礫做成熔岩海, 並在裡面悠閒自在地游泳。", + 'zh-cn': "能操控3000度的火焰。 會熔化岩石和沙礫做成熔岩海, 並在裡面悠閒自在地游泳。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "フレアブリング", + id: "Flare Bring", + th: "เบิกเปลวเพลิง", + 'zh-tw': "閃焰到來", + 'zh-cn': "閃焰到來" + }, + + effect: { + ja: "自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモン1匹につける。", + id: "Pilih paling banyak 2 lembar Energi Dasar {Api} dari Trash sendiri, lalu kenakan pada 1 Pokémon sendiri.", + th: "เลือกการ์ด [พลังงานพื้นฐาน[ไฟ]] ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา 1 ตัว", + 'zh-tw': "從自己的棄牌區選擇最多2張「基本【火】能量」卡,附於自己的1隻寶可夢身上。", + 'zh-cn': "從自己的棄牌區選擇最多2張「基本【火】能量」卡,附於自己的1隻寶可夢身上。" + } + }, { + cost: ["Fire", "Fire"], + + name: { + ja: "ねたみのごうか", + id: "Inferno Kedengkian", + th: "ไฟนรกแห่งความอิจฉา", + 'zh-tw': "嫉妒業火", + 'zh-cn': "嫉妒業火" + }, + + damage: "50+", + + effect: { + ja: "前の相手の番に、ワザのダメージで、自分のポケモンがきぜつしていたなら、90ダメージ追加。", + id: "Jika pada giliran lawan sebelumnya, ada Pokémon sendiri yang KO karena kerusakan akibat serangan, kerusakan yang diberikan bertambah sejumlah 90.", + th: "ในเทิร์นก่อนของฝ่ายตรงข้าม ถ้าโปเกมอนฝ่ายเรา[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้ การโจมตีนี้จะเพิ่มแดเมจอีก 90", + 'zh-tw': "在上個對手的回合,若自己的寶可夢因招式的傷害而【昏厥】了,則增加90點傷害。", + 'zh-cn': "在上個對手的回合,若自己的寶可夢因招式的傷害而【昏厥】了,則增加90點傷害。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/026.ts b/data-asia/SV/SV8a/026.ts new file mode 100644 index 000000000..a7986b2dc --- /dev/null +++ b/data-asia/SV/SV8a/026.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーガポン かまどのめんex", + id: "Ogerpon Topeng Tungku ex", + th: "โอการ์ปอง หน้ากากเตาไฟex", + 'zh-tw': "厄鬼椪 火灶面具ex", + 'zh-cn': "厄鬼椪 火灶面具ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + ja: "いかりがま", + id: "Tungku Kemarahan", + th: "เตาไฟพิโรธ", + 'zh-tw': "憤怒之窯", + 'zh-cn': "憤怒之窯" + }, + + damage: "20×", + + effect: { + ja: "このポケモンにのっているダメカンの数×20ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang dimiliki Pokémon ini.", + th: "แดเมจจะเท่ากับจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x20", + 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。", + 'zh-cn': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。" + } + }, { + cost: ["Fire", "Fire", "Fire"], + + name: { + ja: "ダイナミックブレイズ", + id: "Dynamic Blaze", + th: "ไดนามิกเบลซ", + 'zh-tw': "極限火焰", + 'zh-cn': "極限火焰" + }, + + damage: "140+", + + effect: { + ja: "相手のバトルポケモンが進化ポケモンなら、140ダメージ追加。その場合、このポケモンについているエネルギーを、すべてトラッシュする。", + id: "Jika Pokémon Bertarung lawan adalah Pokémon Evolusi, kerusakan yang diberikan bertambah sejumlah 140. Pada kondisi tersebut, buang semua Energi yang dikenakan pada Pokémon ini ke Trash.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นโปเกมอนวิวัฒนาการ การโจมตีนี้จะเพิ่มแดเมจอีก 140 เมื่อทำเช่นนั้นแล้ว ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "若對手的戰鬥寶可夢為進化寶可夢,則增加140點傷害。這個情況下,將這隻寶可夢身上附加的能量卡全部丟棄。", + 'zh-cn': "若對手的戰鬥寶可夢為進化寶可夢,則增加140點傷害。這個情況下,將這隻寶可夢身上附加的能量卡全部丟棄。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/027.ts b/data-asia/SV/SV8a/027.ts new file mode 100644 index 000000000..504496055 --- /dev/null +++ b/data-asia/SV/SV8a/027.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ウガツホムラex", + id: "Gouging Fire ex", + th: "เพลิงทะลวงex", + 'zh-tw': "破空焰ex", + 'zh-cn': "破空焰ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + ja: "ヒートブラスト", + id: "Heat Blast", + th: "ฮีทบลาสต์", + 'zh-tw': "高溫爆破", + 'zh-cn': "高溫爆破" + }, + + damage: 60 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "れっかばくしん", + id: "Maju Pesat Api Berkobar", + th: "ไฟลุกบุกทะลวง", + 'zh-tw': "烈火爆進", + 'zh-cn': "烈火爆進" + }, + + damage: 260, + + effect: { + ja: "このワザを使ったなら、このポケモンは、バトル場をはなれるまで「れっかばくしん」が使えない。", + id: "Jika Pokémon ini telah menggunakan serangan ini, Pokémon ini tidak dapat menggunakan Maju Pesat Api Berkobar hingga meninggalkan Arena Bertarung.", + th: "ถ้าใช้ท่าต่อสู้นี้แล้ว โปเกมอนนี้ จะใช้ [ไฟลุกบุกทะลวง] ไม่ได้จนกว่าจะออกจากตำแหน่งต่อสู้", + 'zh-tw': "若使用了這個招式,則這隻寶可夢離開戰鬥場前無法使用「烈火爆進」。", + 'zh-cn': "若使用了這個招式,則這隻寶可夢離開戰鬥場前無法使用「烈火爆進」。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/028.ts b/data-asia/SV/SV8a/028.ts new file mode 100644 index 000000000..e140ee1f4 --- /dev/null +++ b/data-asia/SV/SV8a/028.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "トサキント", + id: "Goldeen", + th: "โทซาคินโตะ", + 'zh-tw': "角金魚", + 'zh-cn': "角金魚" + }, + + illustrator: "saino misaki", + rarity: "None", + category: "Pokemon", + dexId: [118], + hp: 50, + types: ["Water"], + + description: { + ja: "背びれ 胸びれ 尾びれが 優雅に たなびくので 水の踊り子 と呼ばれる。", + id: "Goldeen dikenal sebagai Penari Air karena sirip punggung, sirip dada, dan sirip ekornya berayun dengan anggun.", + th: "ครีบหลัง ครีบอก ครีบหางโบกสะบัดอย่างงดงามจนถูกเรียกว่านักระบำแห่งท้องน้ำ", + 'zh-tw': "會優雅地搖擺 背鰭、胸鰭和尾鰭, 所以被稱為水中的舞者。", + 'zh-cn': "會優雅地搖擺 背鰭、胸鰭和尾鰭, 所以被稱為水中的舞者。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "おまつりおんど", + id: "Orkes Festival", + th: "รำวงงานเทศกาล", + 'zh-tw': "祭典樂舞", + 'zh-cn': "祭典樂舞" + }, + + effect: { + ja: "場に「お祭り会場」が出ているなら、このポケモンは、持っているワザを2回連続で使える。(1回目のワザで相手のバトルポケモンがきぜつしたなら、次のバトルポケモンが出たあと、2回目のワザを使う。)", + id: "Jika ada Lokasi Festival di Arena, Pokémon ini dapat menggunakan serangan yang dimiliki 2 kali berturut-turut. (Jika Pokémon Bertarung lawan KO akibat serangan pertama, gunakan serangan kedua setelah Pokémon Bertarung berikutnya masuk.)", + th: "ถ้ามี [สถานที่จัดเทศกาล] อยู่บนกระดาน โปเกมอนนี้ จะใช้ท่าต่อสู้ที่มีต่อเนื่องกันได้ 2 ครั้ง (ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ]ด้วยท่าต่อสู้ครั้งที่ 1 หลังจากที่โปเกมอนบนตำแหน่งต่อสู้ตัวถัดไปออกมา ให้ใช้ท่าต่อสู้ครั้งที่ 2)", + 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)", + 'zh-cn': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "うずしお", + id: "Pusaran Air", + th: "น้ำวน", + 'zh-tw': "潮旋", + 'zh-cn': "潮旋" + }, + + damage: 10, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/029.ts b/data-asia/SV/SV8a/029.ts new file mode 100644 index 000000000..036444d1c --- /dev/null +++ b/data-asia/SV/SV8a/029.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アズマオウ", + id: "Seaking", + th: "อซึมาโอ", + 'zh-tw': "金魚王", + 'zh-cn': "金魚王" + }, + + illustrator: "Nelnal", + rarity: "None", + category: "Pokemon", + dexId: [119], + hp: 110, + types: ["Water"], + + description: { + ja: "秋になると プロポーズのため 体に 脂が のってきて とても きれいな色に 変化する。", + id: "Saat musim gugur, tubuh Seaking makin berlemak dan warnanya berubah menjadi sangat indah karena Pokémon ini bersiap untuk melamar pasangannya.", + th: "เมื่อเข้าสู่ฤดูใบไม้ร่วง ร่างกายจะมีไขมันสะสมเพิ่มขึ้นและเปลี่ยนเป็น สีที่สวยงามมาก เพื่อรอผสมพันธุ์", + 'zh-tw': "到了秋天,體內的脂肪 會因為要求偶而增加, 體色也會變得非常漂亮。", + 'zh-cn': "到了秋天,體內的脂肪 會因為要求偶而增加, 體色也會變得非常漂亮。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "おまつりおんど", + id: "Orkes Festival", + th: "รำวงงานเทศกาล", + 'zh-tw': "祭典樂舞", + 'zh-cn': "祭典樂舞" + }, + + effect: { + ja: "場に「お祭り会場」が出ているなら、このポケモンは、持っているワザを2回連続で使える。(1回目のワザで相手のバトルポケモンがきぜつしたなら、次のバトルポケモンが出たあと、2回目のワザを使う。)", + id: "Jika ada Lokasi Festival di Arena, Pokémon ini dapat menggunakan serangan yang dimiliki 2 kali berturut-turut. (Jika Pokémon Bertarung lawan KO akibat serangan pertama, gunakan serangan kedua setelah Pokémon Bertarung berikutnya masuk.)", + th: "ถ้ามี [สถานที่จัดเทศกาล] อยู่บนกระดาน โปเกมอนนี้ จะใช้ท่าต่อสู้ที่มีต่อเนื่อง กันได้ 2 ครั้ง (ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ]ด้วยท่า ต่อสู้ครั้งที่ 1 หลังจากที่โปเกมอนบนตำแหน่งต่อสู้ตัวถัดไปออกมา ให้ใช้ท่า ต่อสู้ครั้งที่ 2)", + 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)", + 'zh-cn': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)" + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "クイックドロー", + id: "Quick Draw", + th: "ควิกดรอว์", + 'zh-tw': "快速抽出", + 'zh-cn': "快速抽出" + }, + + damage: 60, + + effect: { + ja: "自分の山札を2枚引く。", + id: "Ambil 2 kartu dari atas Deck sendiri.", + th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา", + 'zh-tw': "從自己的牌庫抽出2張卡。", + 'zh-cn': "從自己的牌庫抽出2張卡。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/030.ts b/data-asia/SV/SV8a/030.ts new file mode 100644 index 000000000..17fe18938 --- /dev/null +++ b/data-asia/SV/SV8a/030.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "シャワーズ", + id: "Vaporeon", + th: "ชาวเวอร์ส", + 'zh-tw': "水伊布", + 'zh-cn': "水伊布" + }, + + illustrator: "Taira Akitsu", + rarity: "None", + category: "Pokemon", + dexId: [134], + hp: 130, + types: ["Water"], + + description: { + ja: "水辺に 棲むが 尻尾には 魚のような ひれが 残っていて 人魚と 間違う 人もいる。", + id: "Vaporeon hidup di dekat air. Karena terdapat sirip seperti ikan pada ekornya, ada manusia yang menyangka Pokémon ini adalah putri duyung.", + th: "อาศัยอยู่ริมน้ำ เพราะหางมีครีบเหมือนปลาอยู่เลยมีคนเข้าใจผิดคิดว่าเป็นเงือก", + 'zh-tw': "雖然棲息在水邊, 但由於尾巴上有像是魚的鰭, 因此有的人會把牠誤認成人魚。", + 'zh-cn': "雖然棲息在水邊, 但由於尾巴上有像是魚的鰭, 因此有的人會把牠誤認成人魚。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "スパイラルドレイン", + id: "Spiral Drain", + th: "สไปรัลเดรน", + 'zh-tw': "螺旋吸取", + 'zh-cn': "螺旋吸取" + }, + + damage: 30, + + effect: { + ja: "このポケモンのHPを「30」回復する。", + id: "Pulihkan HP Pokémon ini sejumlah 30.", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]", + 'zh-tw': "將這隻寶可夢恢復「30」HP。", + 'zh-cn': "將這隻寶可夢恢復「30」HP。" + } + }, { + cost: ["Water", "Colorless", "Colorless"], + + name: { + ja: "とうしのうずしお", + id: "Pusaran Air Semangat Petarung", + th: "น้ำวนนักสู้", + 'zh-tw': "鬥志潮旋", + 'zh-cn': "鬥志潮旋" + }, + + damage: "90+", + + effect: { + ja: "相手のバトルポケモンが「ポケモンex・V」なら、90ダメージ追加。", + id: "Jika Pokémon Bertarung lawan adalah Pokémon {ex}/{V}, kerusakan yang diberikan bertambah sejumlah 90.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】 /【V】] การโจมตีนี้จะเพิ่มแดเมจอีก 90", + 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加90點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加90點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/031.ts b/data-asia/SV/SV8a/031.ts new file mode 100644 index 000000000..3d72a3650 --- /dev/null +++ b/data-asia/SV/SV8a/031.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "シャワーズex", + id: "Vaporeon ex", + th: "ชาวเวอร์สex", + 'zh-tw': "水伊布ex", + 'zh-cn': "水伊布ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 280, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + ja: "ヘビースコール", + id: "Heavy Squall", + th: "เฮฟวีสควอล", + 'zh-tw': "重磅驟雨", + 'zh-cn': "重磅驟雨" + }, + + effect: { + ja: "相手の「ポケモンex」全員に、それぞれ60ダメージ。このワザのダメージは弱点・抵抗力を計算しない。", + id: "Serangan ini memberikan kerusakan masing-masing sejumlah 60 kepada semua Pokémon {ex} lawan. Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan dan Resistansi.", + th: "[โปเกมอน【ex】] ฝ่ายตรงข้ามทุกตัว จะได้รับแดเมจตัวละ 60 แดเมจของท่า ต่อสู้นี้จะไม่นำจุดอ่อนและความต้านทานมาคิด", + 'zh-tw': "對手的所有「寶可夢【ex】」各受到60點傷害。這個招式的傷害不計算弱點・抵抗力。", + 'zh-cn': "對手的所有「寶可夢【ex】」各受到60點傷害。這個招式的傷害不計算弱點・抵抗力。" + } + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + ja: "アクアマリン", + id: "Aquamarine", + th: "อะความารีน", + 'zh-tw': "海藍寶石", + 'zh-cn': "海藍寶石" + }, + + damage: 280, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/032.ts b/data-asia/SV/SV8a/032.ts new file mode 100644 index 000000000..ea3d9d21c --- /dev/null +++ b/data-asia/SV/SV8a/032.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ワニノコ", + id: "Totodile", + th: "วานิโนโกะ", + 'zh-tw': "小鋸鱷", + 'zh-cn': "小鋸鱷" + }, + + illustrator: "MINAMINAMI Take", + rarity: "None", + category: "Pokemon", + dexId: [158], + hp: 70, + types: ["Water"], + + description: { + ja: "小さいながらも 暴れん坊。 目の前で 動くものが あれば とにかく かみついてくる。", + id: "Meskipun kecil, Totodile itu perusuh. Jika ada sesuatu yang bergerak di hadapannya, ia akan langsung menggigitnya.", + th: "แม้ตัวจะเล็ก แต่ก็เป็นจอมเกเร หากมีอะไรเคลื่อนไหวอยู่ตรงหน้า มันก็จะเข้าไปกัดไว้ก่อนเลย", + 'zh-tw': "個子雖小但是個性粗暴。 只要眼前有東西在動, 就會先上去咬一口再說。", + 'zh-cn': "個子雖小但是個性粗暴。 只要眼前有東西在動, 就會先上去咬一口再說。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "かじりつく", + id: "Menggerogoti Erat-erat", + th: "กัด", + 'zh-tw': "咬緊", + 'zh-cn': "咬緊" + }, + + damage: 10, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。", + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/033.ts b/data-asia/SV/SV8a/033.ts new file mode 100644 index 000000000..f09e770dd --- /dev/null +++ b/data-asia/SV/SV8a/033.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アリゲイツ", + id: "Croconaw", + th: "อัลลิเกต", + 'zh-tw': "藍鱷", + 'zh-cn': "藍鱷" + }, + + illustrator: "Jerky", + rarity: "None", + category: "Pokemon", + dexId: [159], + hp: 90, + types: ["Water"], + + description: { + ja: "キバは 抜けても 次から 次に 生えてくる。いつも 口の中には 48本の キバが そろっている。", + id: "Meskipun copot, taring Croconaw akan terus-menerus tumbuh. Di dalam mulutnya, selalu ada 48 taring lengkap.", + th: "แม้เขี้ยวจะหลุดไป ก็จะงอกขึ้นมาใหม่เรื่อย ๆ ในปากจึงมีเขี้ยวครบ 48 ซี่เสมอ", + 'zh-tw': "即使牙齒掉了也會 不斷重新長出來。 嘴裡總是長滿著48顆牙齒。", + 'zh-cn': "即使牙齒掉了也會 不斷重新長出來。 嘴裡總是長滿著48顆牙齒。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "ぎゃくふんしゃ", + id: "Dorongan Balik", + th: "พ่นน้ำสวนทาง", + 'zh-tw': "逆向噴射", + 'zh-cn': "逆向噴射" + }, + + damage: 30, + + effect: { + ja: "このポケモンをベンチポケモンと入れ替える。", + id: "Tukar Pokémon ini dengan Pokémon Cadangan.", + th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์", + 'zh-tw': "將這隻寶可夢與備戰寶可夢互換。", + 'zh-cn': "將這隻寶可夢與備戰寶可夢互換。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/034.ts b/data-asia/SV/SV8a/034.ts new file mode 100644 index 000000000..a7dcc1700 --- /dev/null +++ b/data-asia/SV/SV8a/034.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーダイル", + id: "Feraligatr", + th: "ออไดล์", + 'zh-tw': "大力鱷", + 'zh-cn': "大力鱷" + }, + + illustrator: "Kurata So", + rarity: "None", + category: "Pokemon", + dexId: [160], + hp: 180, + types: ["Water"], + + description: { + ja: "普段は ゆっくりとした 動きだが 獲物に かみつくときは 目にも 止まらない スピードだ。", + id: "Biasanya, pergerakan Feraligatr lamban. Namun, kecepatannya saat menggigit mangsa tidak dapat ditangkap oleh mata.", + th: "โดยปกติแล้วจะขยับตัวช้า ๆ แต่ตอนที่จะเข้ากัดขย้ำเหยื่อนั้นจะรวดเร็วจนมองไม่ทัน", + 'zh-tw': "雖然平時動作慢吞吞的, 但在撲咬獵物的時候, 速度卻快到無法看清。", + 'zh-cn': "雖然平時動作慢吞吞的, 但在撲咬獵物的時候, 速度卻快到無法看清。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + ja: "トレントハート", + id: "Torrent Heart", + th: "หัวใจไหลเชี่ยว", + 'zh-tw': "奔流之心", + 'zh-cn': "奔流之心" + }, + + effect: { + ja: "自分の番に1回使える。このポケモンにダメカンを5個のせる。その場合、この番、このポケモンが使うワザの、相手のバトルポケモンへのダメージは「+120」される。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Letakkan 5 Token Kerusakan pada Pokémon ini. Jika dilakukan, pada giliran ini, kerusakan akibat serangan yang digunakan oleh Pokémon ini kepada Pokémon Bertarung lawan bertambah sejumlah 120.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา วางตัวนับแดเมจ 5 ตัวบนโปเกมอนนี้ เมื่อทำเช่นนั้นแล้ว เทิร์นนี้ แดเมจของท่าต่อสู้ที่โปเกมอนนี้ ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+120]", + 'zh-tw': "在自己的回合時可使用1次。在這隻寶可夢身上放置5個傷害指示物。這個情況下,在這個回合,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+120」點。", + 'zh-cn': "在自己的回合時可使用1次。在這隻寶可夢身上放置5個傷害指示物。這個情況下,在這個回合,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+120」點。" + } + }], + + attacks: [{ + cost: ["Water", "Water"], + + name: { + ja: "おおなみ", + id: "Ombak Besar", + th: "คลื่นลูกใหญ่", + 'zh-tw': "駭浪", + 'zh-cn': "駭浪" + }, + + damage: 160, + + effect: { + ja: "次の自分の番、このポケモンは「おおなみ」が使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Ombak Besar.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [คลื่นลูกใหญ่] ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「駭浪」。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「駭浪」。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/035.ts b/data-asia/SV/SV8a/035.ts new file mode 100644 index 000000000..de6b7d16b --- /dev/null +++ b/data-asia/SV/SV8a/035.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ヒンバス", + id: "Feebas", + th: "ฮินบาส", + 'zh-tw': "醜醜魚", + 'zh-cn': "醜醜魚" + }, + + illustrator: "Scav", + rarity: "None", + category: "Pokemon", + dexId: [349], + hp: 30, + types: ["Water"], + + description: { + ja: "一番 みすぼらしい ポケモン。 水草の 多い 川底で 大勢 集まって 暮らしている。", + id: "Pokémon yang paling lusuh. Feebas berkumpul dalam jumlah besar dan tinggal di dasar sungai yang banyak tanaman airnya.", + th: "โปเกมอนที่ดูโทรมที่สุด อาศัยอยู่กันเป็นฝูงที่ก้นแม่น้ำที่มีพืชน้ำมากมาย", + 'zh-tw': "最寒酸的寶可夢。 在有許多水草的河底 群聚而居。", + 'zh-cn': "最寒酸的寶可夢。 在有許多水草的河底 群聚而居。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "じたばた", + id: "Berontak", + th: "กระเสือกกระสน", + 'zh-tw': "抓狂", + 'zh-cn': "抓狂" + }, + + damage: "10×", + + effect: { + ja: "このポケモンにのっているダメカンの数×10ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini.", + th: "แดเมจจะเท่ากับจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10", + 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×10點傷害。", + 'zh-cn': "造成這隻寶可夢身上放置的傷害指示物的數量×10點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/036.ts b/data-asia/SV/SV8a/036.ts new file mode 100644 index 000000000..ec3d43577 --- /dev/null +++ b/data-asia/SV/SV8a/036.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ミロカロス", + id: "Milotic", + th: "มิโลคารอส", + 'zh-tw': "美納斯", + 'zh-cn': "美納斯" + }, + + illustrator: "Taira Akitsu", + rarity: "None", + category: "Pokemon", + dexId: [350], + hp: 120, + types: ["Water"], + + description: { + ja: "澄んだ 湖の 底に 棲む。 戦争が 起こるとき 現れ 人々の 心を いやす。", + id: "Pokémon yang tinggal di dasar danau yang jernih. Ia akan muncul pada saat peperangan terjadi untuk menyembuhkan hati orang-orang.", + th: "อาศัยอยู่ก้นทะเลสาบที่ใสสะอาด จะปรากฏตัวเมื่อเกิดสงครามเพื่อเยียวยาจิตใจของผู้คน", + 'zh-tw': "棲息在清澈的湖底。 在發生戰爭時出現, 治癒人們的心。", + 'zh-cn': "棲息在清澈的湖底。 在發生戰爭時出現, 治癒人們的心。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "なぎのきょうち", + id: "Kondisi Kalem", + th: "สภาวะสงบนิ่ง", + 'zh-tw': "平穩境地", + 'zh-cn': "平穩境地" + }, + + effect: { + ja: "このポケモンがいるかぎり、相手の場のポケモンと、そのポケモンについているすべてのカードは、手札にもどせない。", + id: "Selama Pokémon ini ada di Arena, Pokémon di Arena lawan dan semua kartu yang dikenakan Pokémon tersebut tidak dapat dikembalikan ke Kartu Pegangan.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ โปเกมอนบนกระดานฝ่ายตรงข้าม และการ์ดทั้งหมดที่ติดอยู่กับโปเกมอนนั้น จะนำกลับขึ้นมือไม่ได้", + 'zh-tw': "只要這隻寶可夢在場上,對手的場上寶可夢與那隻寶可夢身上附加的所有卡,無法放回手牌。", + 'zh-cn': "只要這隻寶可夢在場上,對手的場上寶可夢與那隻寶可夢身上附加的所有卡,無法放回手牌。" + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + ja: "ハイドロスプラッシュ", + id: "Hydro Splash", + th: "ไฮโดรสแปลช", + 'zh-tw': "水炮濺射", + 'zh-cn': "水炮濺射" + }, + + damage: 100 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/037.ts b/data-asia/SV/SV8a/037.ts new file mode 100644 index 000000000..24779ba65 --- /dev/null +++ b/data-asia/SV/SV8a/037.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ユキワラシ", + id: "Snorunt", + th: "ยูกิวาราชิ", + 'zh-tw': "雪童子", + 'zh-cn': "雪童子" + }, + + illustrator: "Mékayu", + rarity: "None", + category: "Pokemon", + dexId: [361], + hp: 60, + types: ["Water"], + + description: { + ja: "ユキワラシが 訪れた 家は お金持ちに なると 言われている。 マイナス 100度でも へっちゃら。", + id: "Dikatakan bahwa rumah yang dikunjungi Snorunt akan menjadi makmur. Suhu -100 ℃ tidak masalah bagi Pokémon ini.", + th: "ว่ากันว่าบ้านที่ยูกิวาราชิมาเยือนจะมั่งคั่ง แม้จะอยู่ในที่ที่อากาศติดลบ 100 องศาเซลเซียสก็ยังสบาย ๆ", + 'zh-tw': "據說雪童子到訪過的家 將會變得富有。對牠來說 零下100度根本不算什麼。", + 'zh-cn': "據說雪童子到訪過的家 將會變得富有。對牠來說 零下100度根本不算什麼。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + ja: "おどろかす", + id: "Mengejutkan", + th: "ทำให้ตกใจ", + 'zh-tw': "驚嚇", + 'zh-cn': "驚嚇" + }, + + damage: 20, + + effect: { + ja: "相手の手札からオモテを見ないで1枚選び、そのカードのオモテを見て、相手の山札にもどして切る。", + id: "Pilih 1 kartu dari Kartu Pegangan lawan tanpa melihat sisi depan, lihat sisi depan kartu tersebut, lalu kocok kembali ke Deck lawan.", + th: "เลือกการ์ด 1 ใบจากบนมือฝ่ายตรงข้ามโดยไม่ดูหน้าการ์ด หลังจากดูหน้าการ์ดนั้นแล้ว ใส่กลับไปในสำรับการ์ดฝ่ายตรงข้ามแล้วสับ", + 'zh-tw': "在不看正面的情況下,從對手的手牌選擇1張,查看那張卡的正面後放回對手的牌庫並重洗。", + 'zh-cn': "在不看正面的情況下,從對手的手牌選擇1張,查看那張卡的正面後放回對手的牌庫並重洗。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/038.ts b/data-asia/SV/SV8a/038.ts new file mode 100644 index 000000000..a3055c944 --- /dev/null +++ b/data-asia/SV/SV8a/038.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ユキメノコ", + id: "Froslass", + th: "ยูกิเมโนโกะ", + 'zh-tw': "雪妖女", + 'zh-cn': "雪妖女" + }, + + illustrator: "mingo", + rarity: "None", + category: "Pokemon", + dexId: [478], + hp: 90, + types: ["Water"], + + description: { + ja: "マイナス50度の 息を 吹きかけ 凍らせた 獲物を 秘密の 場所に 飾っていると 言われる。", + id: "Dikatakan bahwa Froslass menghias tempat rahasianya dengan mangsanya yang dibekukan menggunakan embusan napas bersuhu -50 ℃.", + th: "ว่ากันว่าเอาเหยื่อที่แช่แข็งด้วยการเป่าไอเย็นติดลบ 50 องศาเซลเซียสใส่ไปวางตกแต่งในสถานที่ลับ", + 'zh-tw': "據說會吐出零下50度的 氣息凍結獵物,然後帶到 秘密的地方裝飾起來。", + 'zh-cn': "據說會吐出零下50度的 氣息凍結獵物,然後帶到 秘密的地方裝飾起來。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "いてつくとばり", + id: "Tudung Pembeku", + th: "ฉากกั้นแช่แข็ง", + 'zh-tw': "冰冷之帳", + 'zh-cn': "冰冷之帳" + }, + + effect: { + ja: "このポケモンがいるかぎり、ポケモンチェックのたび、おたがいの特性を持つポケモン(「ユキメノコ」をのぞく)全員に、それぞれダメカンを1個のせる。", + id: "Selama Pokémon ini ada di Arena, tiap kali Pokémon Check, letakkan masing-masing sejumlah 1 Token Kerusakan pada semua Pokémon kedua pemain yang memiliki Ability (selain Froslass).", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ ทุกครั้งที่ตรวจสอบโปเกมอน ให้วางตัวนับแดเมจบนโปเกมอนที่มีความสามารถของทั้งสองฝ่ายทุกตัว (ยกเว้น [ยูกิเมโนโกะ]) ตัวละ 1 ตัว", + 'zh-tw': "只要這隻寶可夢在場上,每次寶可夢檢查時,在雙方的擁有特性的所有寶可夢(「雪妖女」除外)身上各放置1個傷害指示物。", + 'zh-cn': "只要這隻寶可夢在場上,每次寶可夢檢查時,在雙方的擁有特性的所有寶可夢(「雪妖女」除外)身上各放置1個傷害指示物。" + } + }], + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + ja: "フロストスマッシュ", + id: "Frost Smash", + th: "ฟรอสต์สแมช", + 'zh-tw': "冰霜粉碎", + 'zh-cn': "冰霜粉碎" + }, + + damage: 60 + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/039.ts b/data-asia/SV/SV8a/039.ts new file mode 100644 index 000000000..dfcb1e913 --- /dev/null +++ b/data-asia/SV/SV8a/039.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ガブリアスex", + id: "Garchomp ex", + th: "กาเบรียสex", + 'zh-tw': "烈咬陸鯊ex", + 'zh-cn': "烈咬陸鯊ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 320, + types: ["Water"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "ハイドロランダー", + id: "Hydro Lander", + th: "ไฮโดรแลนเดอร์", + 'zh-tw': "水炮著陸", + 'zh-cn': "水炮著陸" + }, + + damage: 160, + + effect: { + ja: "自分のトラッシュから「基本エネルギー」を3枚まで選び、ベンチポケモンに好きなようにつける。", + id: "Pilih paling banyak 3 lembar Energi Dasar {Petarung} dari Trash sendiri, lalu kenakan sesukanya pada Pokémon Cadangan.", + th: "เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] ได้สูงสุด 3 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนบนเบนช์ตามชอบ", + 'zh-tw': "從自己的棄牌區選擇最多3張「基本【鬥】能量」卡,以任意方式附於備戰寶可夢身上。", + 'zh-cn': "從自己的棄牌區選擇最多3張「基本【鬥】能量」卡,以任意方式附於備戰寶可夢身上。" + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + ja: "ソニックダイブ", + id: "Sonic Dive", + th: "โซนิคไดฟ์", + 'zh-tw': "音波奇襲", + 'zh-cn': "音波奇襲" + }, + + effect: { + ja: "このポケモンについているエネルギーを2個トラッシュし、相手のポケモン1匹に、120ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + id: "Buang 2 Energi yang dikenakan pada Pokémon ini ke Trash, serangan ini memberikan kerusakan sejumlah 120 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูกที่ตำแหน่งทิ้งการ์ด ทำแดเมจ 120 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + 'zh-tw': "將2個這隻寶可夢身上附加的能量丟棄,對手的1隻寶可夢受到120點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "將2個這隻寶可夢身上附加的能量丟棄,對手的1隻寶可夢受到120點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 0, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/040.ts b/data-asia/SV/SV8a/040.ts new file mode 100644 index 000000000..a0a7e09ed --- /dev/null +++ b/data-asia/SV/SV8a/040.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "グレイシア", + id: "Glaceon", + th: "กราเซีย", + 'zh-tw': "冰伊布", + 'zh-cn': "冰伊布" + }, + + illustrator: "Keisin", + rarity: "None", + category: "Pokemon", + dexId: [471], + hp: 120, + types: ["Water"], + + description: { + ja: "体温を 下げることで 全身の 体毛を 凍らせて 鋭く 尖った 針のようにして 飛ばす。", + id: "Dengan menurunkan suhu tubuhnya, Glaceon membekukan bulu badannya menjadi seperti jarum yang lancip dan tajam lalu menerbangkannya.", + th: "ทำให้ตัวเย็นลงเพื่อให้ขนแข็งคมราวเข็มแล้วสะบัดออกไป", + 'zh-tw': "透過使體溫下降, 讓全身的體毛結凍, 並像尖銳的針一般發射。", + 'zh-cn': "透過使體溫下降, 讓全身的體毛結凍, 並像尖銳的針一般發射。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "しみいるれいき", + id: "Hawa Dingin Meresap", + th: "ไอเย็นซึมลึก", + 'zh-tw': "滲透寒氣", + 'zh-cn': "滲透寒氣" + }, + + damage: 30, + + effect: { + ja: "次の相手の番の終わりに、このワザを受けたポケモンにダメカンを9個のせる。", + id: "Pada akhir giliran lawan berikutnya, letakkan 9 Token Kerusakan pada Pokémon yang menerima serangan ini.", + th: "เมื่อจบเทิร์นถัดไปของฝ่ายตรงข้าม วางตัวนับแดเมจ 9 ตัวบนโปเกมอนที่ได้รับท่าต่อสู้นี้", + 'zh-tw': "在下個對手的回合結束時,在受到這個招式的寶可夢身上放置9個傷害指示物。", + 'zh-cn': "在下個對手的回合結束時,在受到這個招式的寶可夢身上放置9個傷害指示物。" + } + }, { + cost: ["Water", "Colorless"], + + name: { + ja: "つららミサイル", + id: "Misil Pilar Es", + th: "มิสไซล์แท่งน้ำแข็ง", + 'zh-tw': "冰柱飛彈", + 'zh-cn': "冰柱飛彈" + }, + + damage: 70 + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/041.ts b/data-asia/SV/SV8a/041.ts new file mode 100644 index 000000000..8dd88c652 --- /dev/null +++ b/data-asia/SV/SV8a/041.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "グレイシアex", + id: "Glaceon ex", + th: "กราเซียex", + 'zh-tw': "冰伊布ex", + 'zh-cn': "冰伊布ex" + }, + + illustrator: "aky CG Works", + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + ja: "フロストバレット", + id: "Frost Bullet", + th: "ฟรอสต์บูลเล็ต", + 'zh-tw': "冰霜子彈", + 'zh-cn': "冰霜子彈" + }, + + damage: 110, + + effect: { + ja: "相手のベンチポケモン1匹にも、30ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + id: "Serangan ini juga memberikan kerusakan sejumlah 30 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "โปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ก็จะได้รับแดเมจ 30 ด้วย {โปเกมอน บนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + 'zh-tw': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }, { + cost: ["Grass", "Water", "Darkness"], + + name: { + ja: "ユークレース", + id: "Euclase", + th: "ยูเคลส", + 'zh-tw': "藍柱石", + 'zh-cn': "藍柱石" + }, + + effect: { + ja: "ダメカンが6個のっている相手のポケモンを1匹選び、きぜつさせる。", + id: "Pilih 1 Pokémon lawan yang memiliki Token Kerusakan sejumlah 6, Pokémon tersebut KO.", + th: "เลือกโปเกมอนฝ่ายตรงข้าม 1 ตัวที่มีตัวนับแดเมจวางอยู่ 6 ตัว ทำให้[หมดสภาพ]", + 'zh-tw': "選擇1隻對手的身上放置有6個傷害指示物的寶可夢,將其【昏厥】。", + 'zh-cn': "選擇1隻對手的身上放置有6個傷害指示物的寶可夢,將其【昏厥】。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/042.ts b/data-asia/SV/SV8a/042.ts new file mode 100644 index 000000000..fa961b318 --- /dev/null +++ b/data-asia/SV/SV8a/042.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ウミディグダ", + id: "Wiglett", + th: "อุมิดิกดา", + 'zh-tw': "海地鼠", + 'zh-cn': "海地鼠" + }, + + illustrator: "OKUBO", + rarity: "None", + category: "Pokemon", + dexId: [960], + hp: 60, + types: ["Water"], + + description: { + ja: "20メートル先の ミガルーサが 放つ 匂いも 嗅ぎとって 砂の中に 身を 隠すのだ。", + id: "Wiglett dapat mencium bau yang dikeluarkan Veluza yang berada dalam jarak 20 m, lalu bersembunyi di dalam pasir.", + th: "จะหลบซ่อนตัวในทรายเมื่อได้กลิ่นที่มิกาลูซาปล่อยออกมาแม้จะห่างออกไปกว่า 20 เมตร", + 'zh-tw': "就算身處於20公尺外, 牠都能嗅出輕身鱈散發出 的氣味,躲進沙子裡面藏身。", + 'zh-cn': "就算身處於20公尺外, 牠都能嗅出輕身鱈散發出 的氣味,躲進沙子裡面藏身。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "ほりだしもの", + id: "Barang yang Menguntungkan", + th: "ของเลหลัง", + 'zh-tw': "挖到寶", + 'zh-cn': "挖到寶" + }, + + effect: { + ja: "自分の山札からグッズを1枚選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Pilih 1 lembar Item dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดไอเท็ม 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "從自己的牌庫選擇1張物品卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇1張物品卡,在給對手看過後加入手牌。並且重洗牌庫。" + } + }, { + cost: ["Water", "Water"], + + name: { + ja: "アクアボム", + id: "Aqua Bomb", + th: "อควาบอมบ์", + 'zh-tw': "水炸彈", + 'zh-cn': "水炸彈" + }, + + damage: 40, + + effect: { + ja: "このポケモンにも20ダメージ。", + id: "Pokémon ini juga menerima kerusakan sejumlah 20.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 20 ด้วย", + 'zh-tw': "這隻寶可夢也受到20點傷害。", + 'zh-cn': "這隻寶可夢也受到20點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/043.ts b/data-asia/SV/SV8a/043.ts new file mode 100644 index 000000000..d1a4932c2 --- /dev/null +++ b/data-asia/SV/SV8a/043.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ウミトリオ", + id: "Wugtrio", + th: "อุมิทริโอ", + 'zh-tw': "三海地鼠", + 'zh-cn': "三海地鼠" + }, + + illustrator: "Kouki Saitou", + rarity: "None", + category: "Pokemon", + dexId: [961], + hp: 90, + types: ["Water"], + + description: { + ja: "見かけによらず 気性が 荒い。 長い 体で 獲物を 締め上げ 巣穴に 引きずりこむぞ。", + id: "Berbanding terbalik dengan penampilannya, sifat Wugtrio kasar. Dengan tubuh panjangnya, Pokémon ini melilit dan menarik mangsa ke dalam sarangnya.", + th: "มีนิสัยโหดร้ายขัดกับรูปลักษณ์ภายนอก ใช้ร่างกายที่ยาวของมันกอดรัดเหยื่อและลากเข้าไปในรัง", + 'zh-tw': "有別於外表,性格非常粗暴。 會用長長的身體勒緊獵物, 然後拖進自己的巢穴裡。", + 'zh-cn': "有別於外表,性格非常粗暴。 會用長長的身體勒緊獵物, 然後拖進自己的巢穴裡。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "でたとこチョイス", + id: "Pilihan Masuk Spontan", + th: "เลือกฉับพลัน", + 'zh-tw': "臨場選擇", + 'zh-cn': "臨場選擇" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分の山札から「ポケモンのどうぐ」を3枚まで選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Pilih paling banyak 3 lembar Pokémon Tool dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง เลือกการ์ด [ไอเท็มติดโปเกมอน] ได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。從自己的牌庫選擇最多3張「寶可夢道具」卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。從自己的牌庫選擇最多3張「寶可夢道具」卡,在給對手看過後加入手牌。並且重洗牌庫。" + } + }], + + attacks: [{ + cost: ["Water", "Water"], + + name: { + ja: "さんれんのムチ", + id: "Cambuk Tiga Kali", + th: "ฟาดแส้สามครั้ง", + 'zh-tw': "三連鞭", + 'zh-cn': "三連鞭" + }, + + damage: "70×", + + effect: { + ja: "コインを3回投げ、オモテの数×70ダメージ。", + id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 70 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x70", + 'zh-tw': "擲3次硬幣,造成正面出現的次數×70點傷害。", + 'zh-cn': "擲3次硬幣,造成正面出現的次數×70點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/044.ts b/data-asia/SV/SV8a/044.ts new file mode 100644 index 000000000..cc252cdc8 --- /dev/null +++ b/data-asia/SV/SV8a/044.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ナミイルカ", + id: "Finizen", + th: "นามิอิรุกะ", + 'zh-tw': "波普海豚", + 'zh-cn': "波普海豚" + }, + + illustrator: "Narumi Sato", + rarity: "None", + category: "Pokemon", + dexId: [963], + hp: 70, + types: ["Water"], + + description: { + ja: "水のリングは 頭の 穴から 出る 粘着液と 海の水を 混ぜて 作り出したものなのだ。", + id: "Ring air Finizen terbentuk dari campuran air laut dan cairan perekat yang dikeluarkan dari lubang di kepalanya.", + th: "วงแหวนน้ำถูกสร้างขึ้นมาจากการผสมกันของของเหลวเหนียวหนืดที่ออกมาจากรูที่หัวและน้ำทะเล", + 'zh-tw': "牠的水環是頭部的洞 冒出來的黏膠與海水 混合後製造出來的。", + 'zh-cn': "牠的水環是頭部的洞 冒出來的黏膠與海水 混合後製造出來的。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "アクアスラッシュ", + id: "Aqua Slash", + th: "อควาสแลช", + 'zh-tw': "水流斬", + 'zh-cn': "水流斬" + }, + + damage: 30, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/045.ts b/data-asia/SV/SV8a/045.ts new file mode 100644 index 000000000..e77e08570 --- /dev/null +++ b/data-asia/SV/SV8a/045.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イルカマン", + id: "Palafin", + th: "อิรุกะแมน", + 'zh-tw': "海豚俠", + 'zh-cn': "海豚俠" + }, + + illustrator: "Ligton", + rarity: "None", + category: "Pokemon", + dexId: [964], + hp: 100, + types: ["Water"], + + description: { + ja: "身体能力は ナミイルカと 変わらないが 仲間の ピンチには 変身して パワーアップするぞ。", + id: "Kemampuan fisiknya tidak jauh berbeda dari Finizen, tetapi Palafin akan berubah wujud dan meningkatkan kekuatannya ketika kawannya berada dalam bahaya.", + th: "ความสามารถทางกายภาพนั้นไม่ต่างจากนามิอิรุกะ แต่เมื่อเพื่อนพ้องตกอยู่ในอันตรายจะแปลงร่างและแข็งแกร่งขึ้น", + 'zh-tw': "體能與波普海豚不相上下, 但一旦夥伴陷入了危機, 就會變身來提高自己的力量。", + 'zh-cn': "體能與波普海豚不相上下, 但一旦夥伴陷入了危機, 就會變身來提高自己的力量。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "マイティチェンジ", + id: "Menjadi Perkasa", + th: "แปลงร่างขั้นสุดยอด", + 'zh-tw': "全能變身", + 'zh-cn': "全能變身" + }, + + effect: { + ja: "自分の番に、このポケモンがバトル場からベンチにもどったとき、1回使える。自分の山札から「イルカマンex」を1枚選び、このカードと入れ替える(ついているカード・ダメカン・特殊状態・効果などは、すべて引きつぐ)。入れ替えたなら、このカードは山札にもどす。そして山札を切る。", + id: "Dapat digunakan 1 kali pada giliran sendiri saat Pokémon ini kembali dari Arena Bertarung ke Cadangan. Pilih 1 lembar Palafin {ex} dari Deck sendiri, lalu tukar dengan kartu ini (Semua kartu yang dikenakan, Token Kerusakan, Kondisi Khusus, efek yang dialami, dan lainnya diteruskan ke Pokémon tersebut). Jika ditukar, kembalikan kartu ini ke Deck. Kemudian, kocok Deck.", + th: "ในเทิร์นฝ่ายเรา เมื่อโปเกมอนนี้ออกจากตำแหน่งต่อสู้กลับมาบนเบนช์ ใช้ได้ 1 ครั้ง เลือกการ์ด [อิรุกะแมน【ex】] 1 ใบจากสำรับการ์ดฝ่ายเรา สลับกับการ์ดนี้ (การ์ดที่ติดอยู่ ตัวนับแดเมจ สภาวะผิดปกติ เอฟเฟกต์ทั้งหมดยังคงอยู่ต่อไป) ถ้าสลับแล้ว นำการ์ดนี้ใส่กลับไปในสำรับการ์ด แล้วสับสำรับการ์ด", + 'zh-tw': "在自己的回合,這隻寶可夢從戰鬥場回到備戰區時,可使用1次。從自己的牌庫選擇1張「海豚俠【ex】」,與這張卡互換(所附加的卡・傷害指示物・特殊狀態・效果等全部保留)。若互換了,則這張卡放回牌庫。並且重洗牌庫。", + 'zh-cn': "在自己的回合,這隻寶可夢從戰鬥場回到備戰區時,可使用1次。從自己的牌庫選擇1張「海豚俠【ex】」,與這張卡互換(所附加的卡・傷害指示物・特殊狀態・效果等全部保留)。若互換了,則這張卡放回牌庫。並且重洗牌庫。" + } + }], + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + ja: "スプラッシュ", + id: "Splash", + th: "สแปลช", + 'zh-tw': "飛濺", + 'zh-cn': "飛濺" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/046.ts b/data-asia/SV/SV8a/046.ts new file mode 100644 index 000000000..415738c40 --- /dev/null +++ b/data-asia/SV/SV8a/046.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イルカマンex", + id: "Palafin ex", + th: "อิรุกะแมนex", + 'zh-tw': "海豚俠ex", + 'zh-cn': "海豚俠ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Double rare", + category: "Pokemon", + hp: 340, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "マイティソウル", + id: "Jiwa Perkasa", + th: "ไมตี้โซล", + 'zh-tw': "全能靈魂", + 'zh-cn': "全能靈魂" + }, + + effect: { + ja: "このカードは、「イルカマン」の特性「マイティチェンジ」の効果によってしか場に出せない。", + id: "Kartu ini hanya dapat dimasukkan ke Arena menggunakan efek dari Ability Menjadi Perkasa Palafin.", + th: "การ์ดนี้ สามารถวางบนกระดานได้ด้วยเอฟเฟกต์ของความสามารถ [แปลงร่างขั้นสุดยอด] ของ [อิรุกะแมน] เท่านั้น", + 'zh-tw': "這張卡只可依據「海豚俠」的特性「全能變身」的效果放置於場上。", + 'zh-cn': "這張卡只可依據「海豚俠」的特性「全能變身」的效果放置於場上。" + } + }], + + attacks: [{ + cost: ["Water"], + + name: { + ja: "ギガインパクト", + id: "Giga Impact", + th: "กิก้าอิมแพกต์", + 'zh-tw': "終極衝擊", + 'zh-cn': "終極衝擊" + }, + + damage: 250, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/047.ts b/data-asia/SV/SV8a/047.ts new file mode 100644 index 000000000..6622d6fd8 --- /dev/null +++ b/data-asia/SV/SV8a/047.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノツツミ", + id: "Iron Bundle", + th: "ถุงเหล็ก", + 'zh-tw': "鐵包袱", + 'zh-cn': "鐵包袱" + }, + + illustrator: "Lee HyunJung", + rarity: "None", + category: "Pokemon", + dexId: [991], + hp: 100, + types: ["Water"], + + description: { + ja: "古い 書物に 登場する 謎の 物体に 似た ポケモン。 目撃例は 過去 2件のみ。", + id: "Pokémon yang mirip dengan objek misterius yang terdaftar dalam sebuah buku kuno. Hanya terdapat 2 laporan kesaksian atas Pokémon ini.", + th: "เป็นโปเกมอนที่มีความคล้ายคลึงกับวัตถุลึกลับที่ปรากฏในบันทึกเก่าแก่ ในอดีตมีข้อมูลว่ามีผู้พบเห็นเพียง 2 ครั้งเท่านั้น", + 'zh-tw': "與古書裡記載的神秘物體 長得很相像的寶可夢。 過去只被目擊過2次。", + 'zh-cn': "與古書裡記載的神秘物體 長得很相像的寶可夢。 過去只被目擊過2次。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ハイパーブロアー", + id: "Hyper Blower", + th: "ไฮเปอร์โบลเวอร์", + 'zh-tw': "高級出風機", + 'zh-cn': "高級出風機" + }, + + effect: { + ja: "このポケモンがベンチにいるなら、自分の番に1回使える。相手のバトルポケモンをベンチポケモンと入れ替える(バトル場に出すポケモンは相手が選ぶ)。その後、このポケモンと、ついているすべてのカードを、トラッシュする。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini ada di Cadangan. Tukar Pokémon Bertarung lawan dengan Pokémon Cadangan. (Pokémon yang akan dimasukkan ke Arena Bertarung dipilih oleh lawan.) Setelah itu, buang Pokémon ini dan semua kartu yang dikenakannya ke Trash.", + th: "ถ้าโปเกมอนนี้อยู่บนเบนช์ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามกับโปเกมอนบนเบนช์ (ฝ่ายตรงข้ามเลือกโปเกมอนที่จะวางบนตำแหน่งต่อสู้) หลังจากนั้น ทิ้งโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "若這隻寶可夢在備戰區,則在自己的回合時可使用1次。將對手的戰鬥寶可夢與備戰寶可夢互換(由對手選擇放置於戰鬥場的寶可夢)。然後,將這隻寶可夢與附加的卡全部丟棄。", + 'zh-cn': "若這隻寶可夢在備戰區,則在自己的回合時可使用1次。將對手的戰鬥寶可夢與備戰寶可夢互換(由對手選擇放置於戰鬥場的寶可夢)。然後,將這隻寶可夢與附加的卡全部丟棄。" + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + ja: "れいきゃくジェット", + id: "Jet Pendingin", + th: "ไอพ่นคลายร้อน", + 'zh-tw': "冷卻噴射", + 'zh-cn': "冷卻噴射" + }, + + damage: 80, + + effect: { + ja: "次の相手の番、このワザを受けた進化ポケモンは、ワザが使えない。", + id: "Pada giliran lawan berikutnya, Pokémon Evolusi yang menerima serangan ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนวิวัฒนาการที่ได้รับท่าต่อสู้นี้ จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個對手的回合,受到這個招式的進化寶可夢無法使用招式。", + 'zh-cn': "在下個對手的回合,受到這個招式的進化寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/048.ts b/data-asia/SV/SV8a/048.ts new file mode 100644 index 000000000..48d683fc8 --- /dev/null +++ b/data-asia/SV/SV8a/048.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "パオジアン", + id: "Chien-Pao", + th: "เป้าเจี้ยน", + 'zh-tw': "古劍豹", + 'zh-cn': "古劍豹" + }, + + illustrator: "Anesaki Dynamic", + rarity: "None", + category: "Pokemon", + dexId: [1002], + hp: 120, + types: ["Water"], + + description: { + ja: "大昔に 剣によって 露と消えた 者たちの 憎しみが 雪を まとい ポケモンになった。", + id: "Chien-Pao adalah kebencian orang-orang yang meninggal oleh pedang pada zaman dahulu. Ia menyelimuti dirinya dengan salju, lalu berubah menjadi Pokémon.", + th: "ความชิงชังของผู้ที่ลาโลกไปด้วยคมดาบเมื่อนานมาแล้วถูกห่อหุ้มด้วยหิมะ จนกลายเป็นโปเกมอน", + 'zh-tw': "遙遠過去喪命於劍下者 的憎恨之情纏繞在雪上, 變成了寶可夢。", + 'zh-cn': "遙遠過去喪命於劍下者 的憎恨之情纏繞在雪上, 變成了寶可夢。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "スノーブリング", + id: "Snow Bring", + th: "เบิกหิมะ", + 'zh-tw': "雪之到來", + 'zh-cn': "雪之到來" + }, + + effect: { + ja: "自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモン1匹につける。", + id: "Pilih paling banyak 2 lembar Energi Dasar {Air} dari Trash sendiri, lalu kenakan pada 1 Pokémon sendiri.", + th: "เลือกการ์ด [พลังงานพื้นฐาน[น้ำ]] ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา 1 ตัว", + 'zh-tw': "從自己的棄牌區選擇最多2張「基本【水】能量」卡,附於自己的1隻寶可夢身上。", + 'zh-cn': "從自己的棄牌區選擇最多2張「基本【水】能量」卡,附於自己的1隻寶可夢身上。" + } + }, { + cost: ["Water", "Water", "Colorless"], + + name: { + ja: "ラースブレード", + id: "Wrath Blade", + th: "ดาบโกรธเกรี้ยว", + 'zh-tw': "氣忿利刃", + 'zh-cn': "氣忿利刃" + }, + + damage: 130, + + effect: { + ja: "このポケモンについているエネルギーを2個選び、トラッシュする。", + id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/049.ts b/data-asia/SV/SV8a/049.ts new file mode 100644 index 000000000..468fdf753 --- /dev/null +++ b/data-asia/SV/SV8a/049.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ウネルミナモex", + id: "Walking Wake ex", + th: "คลื่นน้ำกระเพื่อมex", + 'zh-tw': "波盪水ex", + 'zh-cn': "波盪水ex" + }, + + illustrator: "takuyoa", + rarity: "Double rare", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "こんぺきはとう", + id: "Ombak Besar Biru Tua", + th: "คลื่นยักษ์น้ำเงินคราม", + 'zh-tw': "藏青浪濤", + 'zh-cn': "藏青浪濤" + }, + + effect: { + ja: "このポケモンが使うワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。", + id: "Kerusakan akibat serangan yang digunakan oleh Pokémon ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan.", + th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้ใช้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด", + 'zh-tw': "這隻寶可夢使用招式的傷害,不計算對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這隻寶可夢使用招式的傷害,不計算對手的戰鬥寶可夢身上的附加效果。" + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + ja: "カタルシスロアー", + id: "Catharsis Roar", + th: "แผดเสียงระบายอารมณ์", + 'zh-tw': "宣洩吼嘯", + 'zh-cn': "宣洩吼嘯" + }, + + damage: "120+", + + effect: { + ja: "相手のバトルポケモンが特殊状態なら、120ダメージ追加。", + id: "Jika Pokémon Bertarung lawan mengalami Kondisi Khusus, kerusakan yang diberikan bertambah sejumlah 120.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะผิดปกติ การโจมตีนี้จะเพิ่มแดเมจอีก 120", + 'zh-tw': "若對手的戰鬥寶可夢處於特殊狀態,則增加120點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢處於特殊狀態,則增加120點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/050.ts b/data-asia/SV/SV8a/050.ts new file mode 100644 index 000000000..3960cc959 --- /dev/null +++ b/data-asia/SV/SV8a/050.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーガポン いどのめんex", + id: "Ogerpon Topeng Sumur ex", + th: "โอการ์ปอง หน้ากากบ่อน้ำex", + 'zh-tw': "厄鬼椪 水井面具ex", + 'zh-cn': "厄鬼椪 水井面具ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "すすりなく", + id: "Menangis Sesenggukan", + th: "สะอึกสะอื้น", + 'zh-tw': "啜泣", + 'zh-cn': "啜泣" + }, + + damage: 20, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。", + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + } + }, { + cost: ["Water", "Colorless", "Colorless"], + + name: { + ja: "げきりゅうポンプ", + id: "Pompa Arus Deras", + th: "ปั๊มพ์น้ำเชี่ยว", + 'zh-tw': "激流水泵", + 'zh-cn': "激流水泵" + }, + + damage: 100, + + effect: { + ja: "のぞむなら、このポケモンについているエネルギーを3個選び、山札にもどして切る。その場合、相手のベンチポケモン1匹にも、120ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + id: "Pemain dapat memilih 3 Energi yang dikenakan pada Pokémon ini, lalu mengocoknya kembali ke Deck. Jika dilakukan, serangan ini juga memberikan kerusakan sejumlah 120 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "หากต้องการ เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 3 ลูก ใส่กลับไปในสำรับการ์ดแล้วสับ เมื่อทำเช่นนั้นแล้ว โปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ก็จะได้รับแดเมจ 120 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + 'zh-tw': "若希望,選擇3個這隻寶可夢身上附加的能量,放回牌庫並重洗。這個情況下,對手的1隻備戰寶可夢也受到120點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "若希望,選擇3個這隻寶可夢身上附加的能量,放回牌庫並重洗。這個情況下,對手的1隻備戰寶可夢也受到120點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/051.ts b/data-asia/SV/SV8a/051.ts new file mode 100644 index 000000000..d8c82a430 --- /dev/null +++ b/data-asia/SV/SV8a/051.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "サンダース", + id: "Jolteon", + th: "ธันเดอร์ส", + 'zh-tw': "雷伊布", + 'zh-cn': "雷伊布" + }, + + illustrator: "Nisota Niso", + rarity: "None", + category: "Pokemon", + dexId: [135], + hp: 110, + types: ["Lightning"], + + description: { + ja: "細胞が 出している 弱い 電気を ひとまとめにして 強力な 電撃を 放つ。", + id: "Jolteon mengumpulkan listrik berdaya kecil yang dikeluarkan oleh sel-sel tubuhnya, lalu menembakkan serangan listrik yang kuat.", + th: "รวบรวมพลังไฟฟ้าอ่อน ๆ ที่เซลล์ปล่อยออกมา แล้วยิงกระแสไฟฟ้าอันทรงพลัง", + 'zh-tw': "會把細胞發出的 微弱電流都集中起來 釋放強力的電擊。", + 'zh-cn': "會把細胞發出的 微弱電流都集中起來 釋放強力的電擊。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Lightning"], + + name: { + ja: "ちょくげきだん", + id: "Serangan Linear", + th: "ยิงตรง", + 'zh-tw': "直擊彈", + 'zh-cn': "直擊彈" + }, + + effect: { + ja: "相手のポケモン1匹に、30ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + id: "Serangan ini memberikan kerusakan sejumlah 30 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "ทำแดเมจ 30 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + 'zh-tw': "對手的1隻寶可夢受到30點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻寶可夢受到30點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }, { + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + ja: "とうしのいかずち", + id: "Guntur Semangat Petarung", + th: "สายฟ้านักสู้", + 'zh-tw': "鬥志雷霆", + 'zh-cn': "鬥志雷霆" + }, + + damage: "90+", + + effect: { + ja: "相手のバトルポケモンが「ポケモンex・V」なら、90ダメージ追加。", + id: "Jika Pokémon Bertarung lawan adalah Pokémon {ex}/{V}, kerusakan yang diberikan bertambah sejumlah 90.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】 /【V】] การโจมตีนี้จะเพิ่มแดเมจอีก 90", + 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加90點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加90點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 0, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/052.ts b/data-asia/SV/SV8a/052.ts new file mode 100644 index 000000000..f855fdbfe --- /dev/null +++ b/data-asia/SV/SV8a/052.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "サンダースex", + id: "Jolteon ex", + th: "ธันเดอร์สex", + 'zh-tw': "雷伊布ex", + 'zh-cn': "雷伊布ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + ja: "フラッシュスピア", + id: "Flash Spear", + th: "แฟลชสเปียร์", + 'zh-tw': "閃光尖矛", + 'zh-cn': "閃光尖矛" + }, + + damage: "60+", + + effect: { + ja: "のぞむなら、自分のベンチポケモンについている基本エネルギーを2枚までトラッシュし、その枚数×90ダメージ追加。", + id: "Pemain dapat membuang paling banyak 2 lembar Energi Dasar yang dikenakan pada Pokémon Cadangan sendiri ke Trash, kerusakan yang diberikan bertambah sejumlah 90 untuk tiap lembarnya.", + th: "หากต้องการ ทิ้งพลังงานพื้นฐานที่ติดอยู่กับโปเกมอนบนเบนช์ฝ่ายเราได้สูงสุด 2 ใบที่ตำแหน่งทิ้งการ์ด แดเมจจะเพิ่มตามจำนวนการ์ดนั้น x90", + 'zh-tw': "若希望,將最多2張自己的備戰寶可夢身上附加的基本能量卡丟棄,增加其張數×90點傷害。", + 'zh-cn': "若希望,將最多2張自己的備戰寶可夢身上附加的基本能量卡丟棄,增加其張數×90點傷害。" + } + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + ja: "ドラバイト", + id: "Dravite", + th: "ดราไวต์", + 'zh-tw': "棕碧璽", + 'zh-cn': "棕碧璽" + }, + + damage: 280, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/053.ts b/data-asia/SV/SV8a/053.ts new file mode 100644 index 000000000..ff8d4690f --- /dev/null +++ b/data-asia/SV/SV8a/053.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ゼラオラ", + id: "Zeraora", + th: "เซราโอรา", + 'zh-tw': "捷拉奧拉", + 'zh-cn': "捷拉奧拉" + }, + + illustrator: "Anesaki Dynamic", + rarity: "None", + category: "Pokemon", + dexId: [807], + hp: 120, + types: ["Lightning"], + + description: { + ja: "雷に 匹敵する スピードで 走り 大電圧を 発する ツメで 敵を 八つ裂きにする。", + id: "Zeraora berlari secepat kilat dan mencabik-cabik musuhnya dengan cakar yang memancarkan listrik bertegangan tinggi.", + th: "วิ่งด้วยความเร็วที่เทียบเท่าฟ้าแลบแล้วเข้าฉีกกระชากศัตรูด้วยกรงเล็บที่ปล่อยไฟฟ้าแรงสูง", + 'zh-tw': "以媲美閃電的速度奔跑, 用能釋放高壓電的爪子 將敵人撕得粉碎。", + 'zh-cn': "以媲美閃電的速度奔跑, 用能釋放高壓電的爪子 將敵人撕得粉碎。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + ja: "コンバットサンダー", + id: "Combat Thunder", + th: "คอมแบตธันเดอร์", + 'zh-tw': "鬥戰雷電", + 'zh-cn': "鬥戰雷電" + }, + + damage: "20+", + + effect: { + ja: "相手のベンチポケモンの数×20ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 20 untuk tiap Pokémon Cadangan lawan.", + th: "แดเมจจะเพิ่มตามจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้าม x20", + 'zh-tw': "增加對手的備戰寶可夢的數量×20點傷害。", + 'zh-cn': "增加對手的備戰寶可夢的數量×20點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/054.ts b/data-asia/SV/SV8a/054.ts new file mode 100644 index 000000000..eed9bfad5 --- /dev/null +++ b/data-asia/SV/SV8a/054.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノカイナex", + id: "Iron Hands ex", + th: "แขนเหล็กex", + 'zh-tw': "鐵臂膀ex", + 'zh-cn': "鐵臂膀ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + ja: "アームプレス", + id: "Arm Press", + th: "อาร์มเพรส", + 'zh-tw': "臂壓制", + 'zh-cn': "臂壓制" + }, + + damage: 160 + }, { + cost: ["Lightning", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "ごっつあんプリファイ", + id: "Amplifikasi Syukur", + th: "เครื่องขยายขอบใจหลาย", + 'zh-tw': "感激放大", + 'zh-cn': "感激放大" + }, + + damage: 120, + + effect: { + ja: "このワザのダメージで、相手のポケモンがきぜつしたなら、サイドを1枚多くとる。", + id: "Jika Pokémon lawan KO karena kerusakan akibat serangan ini, ambil Kartu Point 1 lembar lebih banyak.", + th: "ถ้าโปเกมอนฝ่ายตรงข้าม[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้นี้แล้ว หยิบการ์ดรางวัลเพิ่ม 1 ใบ", + 'zh-tw': "若對手的寶可夢因這個招式的傷害而【昏厥】了,則多獲得1張獎賞卡。", + 'zh-cn': "若對手的寶可夢因這個招式的傷害而【昏厥】了,則多獲得1張獎賞卡。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/055.ts b/data-asia/SV/SV8a/055.ts new file mode 100644 index 000000000..7532ab218 --- /dev/null +++ b/data-asia/SV/SV8a/055.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノイバラ", + id: "Iron Thorns", + th: "หนามเหล็ก", + 'zh-tw': "鐵荊棘", + 'zh-cn': "鐵荊棘" + }, + + illustrator: "Takeshi Nakamura", + rarity: "None", + category: "Pokemon", + dexId: [995], + hp: 140, + types: ["Lightning"], + + description: { + ja: "ある 探検記で テツノイバラと 紹介されている 物体と 一致する 特徴が ある。", + id: "Terdapat karakteristik yang cocok dengan objek bernama Iron Thorns yang diperkenalkan oleh sebuah jurnal ekspedisi pada Pokémon ini.", + th: "มีลักษณะเด่นตรงกับวัตถุที่แนะนำว่าเป็นหนามเหล็กในบันทึกการสำรวจเล่มหนึ่ง", + 'zh-tw': "有一部分的特徵與 某本探險記裡以鐵荊棘 來介紹的物體一致。", + 'zh-cn': "有一部分的特徵與 某本探險記裡以鐵荊棘 來介紹的物體一致。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + ja: "デスタプレッサー", + id: "Destructive Presser", + th: "บีบอัดแหลกลาญ", + 'zh-tw': "壊死壓榨", + 'zh-cn': "壊死壓榨" + }, + + damage: "70×", + + effect: { + ja: "自分の山札を上から5枚オモテにして、その中にある「未来」のカードの枚数×70ダメージ。オモテにした「未来」のカードはトラッシュし、残りのカードは山札にもどして切る。", + id: "Balikkan 5 kartu dari atas Deck sendiri sehingga sisi depannya menjadi menghadap ke atas, serangan ini memberikan kerusakan sejumlah 70 untuk tiap lembar kartu Futur yang ada di antaranya. Buang kartu Futur yang sisi depannya dijadikan menghadap ke atas tersebut ke Trash, lalu kocok kembali sisa kartu ke Deck.", + th: "หงายการ์ด 5 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา ทำแดเมจเท่ากับจำนวนการ์ด [อนาคต] ที่อยู่ในนั้น x70 ทิ้งการ์ด [อนาคต] ที่หงายไว้ที่ตำแหน่งทิ้งการ์ด การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ", + 'zh-tw': "將自己的牌庫上方5張卡翻到正面,造成其中的「未來」卡的張數×70點傷害。將翻到正面的「未來」卡丟棄,將剩餘卡放回牌庫並重洗。", + 'zh-cn': "將自己的牌庫上方5張卡翻到正面,造成其中的「未來」卡的張數×70點傷害。將翻到正面的「未來」卡丟棄,將剩餘卡放回牌庫並重洗。" + } + }, { + cost: ["Lightning", "Lightning", "Lightning", "Colorless"], + + name: { + ja: "メガトンラリアット", + id: "Megaton Lariat", + th: "เมกะตันแลเรียท", + 'zh-tw': "百萬噸金勾臂", + 'zh-cn': "百萬噸金勾臂" + }, + + damage: 140 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/056.ts b/data-asia/SV/SV8a/056.ts new file mode 100644 index 000000000..cea0b192f --- /dev/null +++ b/data-asia/SV/SV8a/056.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノイバラex", + id: "Iron Thorns ex", + th: "หนามเหล็กex", + 'zh-tw': "鐵荊棘ex", + 'zh-cn': "鐵荊棘ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "イニシャライズ", + id: "Initialize", + th: "อินิเชียไลซ์", + 'zh-tw': "初始化", + 'zh-cn': "初始化" + }, + + effect: { + ja: "このポケモンがバトル場にいるかぎり、おたがいの場の「ルールを持つポケモン」(「未来」のポケモンをのぞく)の特性は、すべてなくなる。", + id: "Selama Pokémon ini ada di Arena Bertarung, Pokémon yang memiliki Peraturan (selain Pokémon Futur) di Arena kedua pemain menjadi tidak memiliki Ability.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนตำแหน่งต่อสู้ ความสามารถของ [โปเกมอนที่มีกฎ] บนกระดานของทั้งสองฝ่าย (ยกเว้นโปเกมอน [อนาคต]) ทั้งหมดจะหายไป", + 'zh-tw': "只要這隻寶可夢在戰鬥場上,雙方場上「擁有規則的寶可夢」(「未來」寶可夢除外)的特性全部消除。", + 'zh-cn': "只要這隻寶可夢在戰鬥場上,雙方場上「擁有規則的寶可夢」(「未來」寶可夢除外)的特性全部消除。" + } + }], + + attacks: [{ + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + ja: "ボルトサイクロン", + id: "Bolt Cyclone", + th: "โวลต์ไซโคลน", + 'zh-tw': "伏特旋風", + 'zh-cn': "伏特旋風" + }, + + damage: 140, + + effect: { + ja: "このポケモンについているエネルギーを1個選び、ベンチポケモンにつけ替える。", + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu pindahkan ke Pokémon Cadangan.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ย้ายไปติดกับโปเกมอนบนเบนช์", + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,改附於備戰寶可夢身上。", + 'zh-cn': "選擇1個這隻寶可夢身上附加的能量,改附於備戰寶可夢身上。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/057.ts b/data-asia/SV/SV8a/057.ts new file mode 100644 index 000000000..83ac02c3c --- /dev/null +++ b/data-asia/SV/SV8a/057.ts @@ -0,0 +1,80 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ケーシィ", + id: "Abra", + th: "เคซี", + 'zh-tw': "凱西", + 'zh-cn': "凱西" + }, + + illustrator: "Kariya", + rarity: "None", + category: "Pokemon", + dexId: [63], + hp: 40, + types: ["Psychic"], + + description: { + ja: "寝ながら 超能力を 操る。 夢の 内容が 使う 力に 影響する。", + id: "Abra menggunakan kekuatan psikokinesisnya sambil tidur. Isi mimpinya dipengaruhi oleh kekuatan yang digunakan oleh Pokémon ini.", + th: "ขณะที่นอนอยู่ก็ใช้พลังจิตไปด้วย เรื่องในฝันจะส่งผลกระทบกับพลังที่จะใช้", + 'zh-tw': "會一邊睡覺一邊操控超能力。 夢的內容會影響牠使用的能力。", + 'zh-cn': "會一邊睡覺一邊操控超能力。 夢的內容會影響牠使用的能力。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "テレポーター", + id: "Teleporter", + th: "เทเลพอร์เตอร์", + 'zh-tw': "瞬間移動者", + 'zh-cn': "瞬間移動者" + }, + + effect: { + ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。このポケモンと、ついているすべてのカードを、自分の山札にもどして切る。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini ada di Arena Bertarung. Kocok kembali Pokémon ini dan semua kartu yang dikenakannya ke Deck sendiri.", + th: "ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา นำโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายเราแล้วสับ", + 'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。", + 'zh-cn': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。" + } + }], + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "ビーム", + id: "Beam", + th: "ลำแสง", + 'zh-tw': "光束", + 'zh-cn': "光束" + }, + + damage: 10 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/058.ts b/data-asia/SV/SV8a/058.ts new file mode 100644 index 000000000..fc7672254 --- /dev/null +++ b/data-asia/SV/SV8a/058.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ユンゲラー", + id: "Kadabra", + th: "ยุนเกเรอร์", + 'zh-tw': "勇基拉", + 'zh-cn': "勇基拉" + }, + + illustrator: "Uninori", + rarity: "None", + category: "Pokemon", + dexId: [64], + hp: 80, + types: ["Psychic"], + + description: { + ja: "サイコパワーで 宙に 浮いたまま 眠る。 弾力に 優れた しっぽを 枕がわりに するぞ。", + id: "Kadabra tidur dalam kondisi tetap mengambang di udara menggunakan kekuatan psikokinesis. Pokémon ini menggunakan ekornya yang membal sebagai bantal.", + th: "ใช้พลังจิตเพื่อลอยตัวหลับอยู่ในอากาศ ใช้หางที่มีความยืดหยุ่นเป็นหมอน", + 'zh-tw': "會用精神力量浮在空中睡覺。 牠還會把彈力十足的尾巴 當成枕頭用喔。", + 'zh-cn': "會用精神力量浮在空中睡覺。 牠還會把彈力十足的尾巴 當成枕頭用喔。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "サイコキネシス", + id: "Psikis", + th: "ไซโคคิเนซิส", + 'zh-tw': "精神強念", + 'zh-cn': "精神強念" + }, + + damage: "10+", + + effect: { + ja: "相手のバトルポケモンについているエネルギーの数×30ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon Bertarung lawan.", + th: "แดเมจจะเพิ่มตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x30", + 'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。", + 'zh-cn': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/059.ts b/data-asia/SV/SV8a/059.ts new file mode 100644 index 000000000..27c8b2f69 --- /dev/null +++ b/data-asia/SV/SV8a/059.ts @@ -0,0 +1,86 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "フーディン", + id: "Alakazam", + th: "ฟูดิน", + 'zh-tw': "胡地", + 'zh-cn': "胡地" + }, + + illustrator: "Masako Tomii", + rarity: "None", + category: "Pokemon", + dexId: [65], + hp: 140, + types: ["Psychic"], + + description: { + ja: "非常に 高い 知能を 持つ。 生まれてから 死ぬまでの できごとを すべて 覚えている という。", + id: "Alakazam memiliki kecerdasan yang sangat tinggi. Ada yang mengatakan bahwa Pokémon ini ingat segala kejadian yang terjadi sejak lahir hingga mati.", + th: "มีสติปัญญาสูงมาก สามารถจำทุกสิ่งที่เกิดขึ้นได้ตั้งแต่เกิดจนเสียชีวิต", + 'zh-tw': "擁有非常高的智商。 據說牠能記住從出生到死 一輩子發生過的所有事情。", + 'zh-cn': "擁有非常高的智商。 據說牠能記住從出生到死 一輩子發生過的所有事情。" + }, + + stage: "Stage2", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "ストレンジハック", + id: "Strange Hack", + th: "สเตรนจ์แฮก", + 'zh-tw': "奇異駭入", + 'zh-cn': "奇異駭入" + }, + + effect: { + ja: "相手のバトルポケモンをこんらんにする。相手の場のポケモンにのっているダメカンを好きなだけ選び、相手の場のポケモンに好きなようにのせ替える。", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing. Pilih sesukanya Token Kerusakan yang dimiliki Pokémon di Arena lawan, lalu pindahkan sesukanya ke Pokémon di Arena lawan.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน] เลือกตัวนับแดเมจที่วางอยู่บนโปเกมอนบนกระดานฝ่ายตรงข้ามตามจำนวนที่ชอบ ย้ายไปวางที่โปเกมอนบนกระดานฝ่ายตรงข้ามตามชอบ", + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。選擇任意數量的對手的場上寶可夢身上放置的傷害指示物,以任意方式改放於對手的場上寶可夢身上。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。選擇任意數量的對手的場上寶可夢身上放置的傷害指示物,以任意方式改放於對手的場上寶可夢身上。" + } + }, { + cost: ["Psychic"], + + name: { + ja: "サイコキネシス", + id: "Psikis", + th: "ไซโคคิเนซิส", + 'zh-tw': "精神強念", + 'zh-cn': "精神強念" + }, + + damage: "10+", + + effect: { + ja: "相手のバトルポケモンについているエネルギーの数×50ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 50 untuk tiap Energi yang dikenakan pada Pokémon Bertarung lawan.", + th: "แดเมจจะเพิ่มตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x50", + 'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×50點傷害。", + 'zh-cn': "增加對手的戰鬥寶可夢身上附加的能量的數量×50點傷害。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/060.ts b/data-asia/SV/SV8a/060.ts new file mode 100644 index 000000000..55bd0c8f0 --- /dev/null +++ b/data-asia/SV/SV8a/060.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ネイティ", + id: "Natu", + th: "เนที", + 'zh-tw': "天然雀", + 'zh-cn': "天然雀" + }, + + illustrator: "ryoma uratsuka", + rarity: "None", + category: "Pokemon", + dexId: [177], + hp: 50, + types: ["Psychic"], + + description: { + ja: "羽が 育ちきって おらず 飛び跳ねるようにして 移動する。 いつも なにかを 見つめている。", + id: "Karena sayapnya belum tumbuh sempurna, Natu berpindah dengan cara melompat. Pokémon ini selalu memandangi sesuatu.", + th: "เคลื่อนที่ด้วยการกระโดดหยอย ๆ เพราะปีกยังโตไม่เต็มที่ มักจะจ้องมองอะไรบางอย่างอยู่ตลอดเวลา", + 'zh-tw': "翅膀還沒有完全長好, 所以只能一跳一跳地移動。 一直在注視著什麼。", + 'zh-cn': "翅膀還沒有完全長好, 所以只能一跳一跳地移動。 一直在注視著什麼。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "さんれんづき", + id: "Tusukan Tiga Kali", + th: "พุ่งชนสามครั้ง", + 'zh-tw': "三連撞", + 'zh-cn': "三連撞" + }, + + damage: "10×", + + effect: { + ja: "コインを3回投げ、オモテの数×10ダメージ。", + id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10", + 'zh-tw': "擲3次硬幣,造成正面出現的次數×10點傷害。", + 'zh-cn': "擲3次硬幣,造成正面出現的次數×10點傷害。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/061.ts b/data-asia/SV/SV8a/061.ts new file mode 100644 index 000000000..ee42cbdf0 --- /dev/null +++ b/data-asia/SV/SV8a/061.ts @@ -0,0 +1,80 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ネイティオ", + id: "Xatu", + th: "เนทิโอ", + 'zh-tw': "天然鳥", + 'zh-cn': "天然鳥" + }, + + illustrator: "GOSSAN", + rarity: "None", + category: "Pokemon", + dexId: [178], + hp: 100, + types: ["Psychic"], + + description: { + ja: "過去と 未来を 見通せる。 毎日 太陽の 動きを 見続けている 不思議な ポケモン。", + id: "Xatu melihat masa lalu dan masa depan. Pokémon misterius yang setiap hari terus melihat pergerakan matahari.", + th: "โปเกมอนแปลก ๆ ที่มองทะลุได้ทั้งอดีตและปัจจุบัน ทุกวันจะเฝ้ามองการเคลื่อนที่ของดวงอาทิตย์อยู่ตลอด", + 'zh-tw': "能夠看穿過去和未來。 日復一日注視著太陽 動向的奇異寶可夢。", + 'zh-cn': "能夠看穿過去和未來。 日復一日注視著太陽 動向的奇異寶可夢。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "アカシックセンス", + id: "Akashic Sense", + th: "สัมผัสซิกซ์เซนส์", + 'zh-tw': "虛寂意識", + 'zh-cn': "虛寂意識" + }, + + effect: { + ja: "自分の番に1回使える。自分の手札から「基本エネルギー」を1枚選び、ベンチポケモンにつける。その後、自分の山札を2枚引く。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 lembar Energi Dasar {Psychic} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon Cadangan. Setelah itu, ambil 2 kartu dari atas Deck sendiri.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[พลังจิต]] 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนบนเบนช์ หลังจากนั้น จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา", + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【超】能量」卡,附於備戰寶可夢身上。然後,從自己的牌庫抽出2張卡。", + 'zh-cn': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【超】能量」卡,附於備戰寶可夢身上。然後,從自己的牌庫抽出2張卡。" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "ちょうねんりき", + id: "Psikokinesis Super", + th: "ซูเปอร์โทรจิต", + 'zh-tw': "超念力", + 'zh-cn': "超念力" + }, + + damage: 80 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/062.ts b/data-asia/SV/SV8a/062.ts new file mode 100644 index 000000000..79507cb97 --- /dev/null +++ b/data-asia/SV/SV8a/062.ts @@ -0,0 +1,88 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "エーフィ", + id: "Espeon", + th: "เอฟี", + 'zh-tw': "太陽伊布", + 'zh-cn': "太陽伊布" + }, + + illustrator: "Kariya", + rarity: "None", + category: "Pokemon", + dexId: [196], + hp: 110, + types: ["Psychic"], + + description: { + ja: "相手の 動きを 予知するとき ふたまたに なっている 尻尾の 先は 微妙に 揺れている。", + id: "Ujung ekor Espeon yang terbelah dua sedikit bergoyang ketika sedang membaca pergerakan lawan.", + th: "ตอนทำนายการเคลื่อนไหวของศัตรู ปลายหางสองแฉกจะสั่นไหวเล็กน้อย", + 'zh-tw': "預知對手的行動時, 分叉的尾巴前端就會 微妙地擺動。", + 'zh-cn': "預知對手的行動時, 分叉的尾巴前端就會 微妙地擺動。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "サイコダメージ", + id: "Psychodamage", + th: "ไซโคแดเมจ", + 'zh-tw': "精神傷害", + 'zh-cn': "精神傷害" + }, + + damage: "30+", + + effect: { + ja: "相手のバトルポケモンにのっているダメカンの数×10ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon Bertarung lawan.", + th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x10", + 'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×10點傷害。", + 'zh-cn': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×10點傷害。" + } + }, { + cost: ["Psychic", "Colorless"], + + name: { + ja: "ねんりき", + id: "Psikokinesis", + th: "จิตตานุภาพ", + 'zh-tw': "念力", + 'zh-cn': "念力" + }, + + damage: 60, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]", + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。", + 'zh-cn': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/063.ts b/data-asia/SV/SV8a/063.ts new file mode 100644 index 000000000..366f8dd29 --- /dev/null +++ b/data-asia/SV/SV8a/063.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "エーフィex", + id: "Espeon ex", + th: "เอฟีex", + 'zh-tw': "太陽伊布ex", + 'zh-cn': "太陽伊布ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "サイコアウト", + id: "Psyout", + th: "ไซโคเอาต์", + 'zh-tw': "精神出局", + 'zh-cn': "精神出局" + }, + + damage: 160, + + effect: { + ja: "相手の手札からオモテを見ないで1枚選び、トラッシュする。", + id: "Pilih 1 kartu dari Kartu Pegangan lawan tanpa melihat sisi depan, lalu buang ke Trash.", + th: "เลือกการ์ด 1 ใบจากบนมือฝ่ายตรงข้ามโดยไม่ดูหน้าการ์ด ทิ้งที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "在不看正面的情況下,從對手的手牌選擇1張,將其丟棄。", + 'zh-cn': "在不看正面的情況下,從對手的手牌選擇1張,將其丟棄。" + } + }, { + cost: ["Grass", "Psychic", "Darkness"], + + name: { + ja: "アマゼツ", + id: "Amazez", + th: "แอมะเซซ", + 'zh-tw': "阿賽斯特萊石", + 'zh-cn': "阿賽斯特萊石" + }, + + effect: { + ja: "相手の進化しているポケモン全員の上から、それぞれ「進化カード」を1枚ずつはがして退化させる。はがしたカードは、相手の山札にもどして切る。", + id: "Turunkan tingkat evolusi semua Pokémon lawan yang telah berevolusi dengan melepas masing-masing 1 lembar kartu evolusi dari atasnya. Kartu yang dilepas dikocok kembali ke Deck lawan.", + th: "ถอด [การ์ดวิวัฒนาการ] ออกจากด้านบนของโปเกมอนฝ่ายตรงข้ามที่วิวัฒนาการ แล้วทุกตัว แต่ละตัวตัวละ 1 ใบและทำให้วิวัฒนาการย้อนกลับ การ์ดที่ถอดออก มา ใส่กลับไปในสำรับการ์ดฝ่ายตรงข้ามแล้วสับ", + 'zh-tw': "從對手的所有進化的寶可夢身上,各移除1張「進化卡」使其退化。將移除的卡放回對手的牌庫並重洗。", + 'zh-cn': "從對手的所有進化的寶可夢身上,各移除1張「進化卡」使其退化。將移除的卡放回對手的牌庫並重洗。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/064.ts b/data-asia/SV/SV8a/064.ts new file mode 100644 index 000000000..c2829c14e --- /dev/null +++ b/data-asia/SV/SV8a/064.ts @@ -0,0 +1,78 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ヨマワル", + id: "Duskull", + th: "โยมาวารุ", + 'zh-tw': "夜巡靈", + 'zh-cn': "夜巡靈" + }, + + illustrator: "IKEDA Saki", + rarity: "None", + category: "Pokemon", + dexId: [355], + hp: 60, + types: ["Psychic"], + + description: { + ja: "真っ赤な ひとつ目で 睨みつけられ 生体エネルギーを 吸われるとき ひどい 寒気に 襲われる。", + id: "Ketika vitalitas terisap akibat dipelototi oleh mata tunggal merah padam Pokémon ini, rasa menggigil yang luar biasa akan menyerang.", + th: "จะรู้สึกหนาวสั่นอย่างรุนแรงตอนที่ถูกมันจ้องเขม็งด้วยนัยน์ตาเดียวสีแดงฉานและสูบพลังงานชีวิตไป", + 'zh-tw': "遭到牠鮮紅的獨眼瞪視 並且被吸取生物能量時, 會受到嚴重的寒氣侵襲。", + 'zh-cn': "遭到牠鮮紅的獨眼瞪視 並且被吸取生物能量時, 會受到嚴重的寒氣侵襲。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "むかえにいく", + id: "Pergi Menjemput", + th: "รับวิญญาณ", + 'zh-tw': "前往渡魂", + 'zh-cn': "前往渡魂" + }, + + effect: { + ja: "自分のトラッシュから「ヨマワル」を3枚まで選び、ベンチに出す。", + id: "Pilih paling banyak 3 lembar Duskull dari Trash sendiri, lalu masukkan ke Cadangan.", + th: "เลือกการ์ด [โยมาวารุ] ได้สูงสุด 3 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา วางบนเบนช์", + 'zh-tw': "從自己的棄牌區選擇最多3張「夜巡靈」,放置於備戰區。", + 'zh-cn': "從自己的棄牌區選擇最多3張「夜巡靈」,放置於備戰區。" + } + }, { + cost: ["Psychic", "Psychic"], + + name: { + ja: "つぶやく", + id: "Bergumam", + th: "งึมงำ", + 'zh-tw': "囈語", + 'zh-cn': "囈語" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/065.ts b/data-asia/SV/SV8a/065.ts new file mode 100644 index 000000000..6eee76ac2 --- /dev/null +++ b/data-asia/SV/SV8a/065.ts @@ -0,0 +1,80 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "サマヨール", + id: "Dusclops", + th: "ซามาโยรุ", + 'zh-tw': "彷徨夜靈", + 'zh-cn': "彷徨夜靈" + }, + + illustrator: "Aya Kusube", + rarity: "None", + category: "Pokemon", + dexId: [356], + hp: 90, + types: ["Psychic"], + + description: { + ja: "体の中で 燃えている 真っ赤な ひとつ目が サマヨールの 本体と いわれるが 誰も 見ていない。", + id: "Dikatakan bahwa mata merah padam tunggal yang sedang terbakar di dalam tubuhnya merupakan tubuh aslinya, tetapi tidak ada yang pernah melihatnya.", + th: "ว่ากันว่า นัยน์ตาเดียวสีแดงฉานที่ลุกไหม้อยู่ในตัวคือร่างที่แท้จริงของซามาโยรุ แต่ก็ไม่มีใครเคยเห็น", + 'zh-tw': "據說在體內燃燒著的鮮紅獨眼 是彷徨夜靈的本體, 但沒有人親眼見過。", + 'zh-cn': "據說在體內燃燒著的鮮紅獨眼 是彷徨夜靈的本體, 但沒有人親眼見過。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "カースドボム", + id: "Cursed Bomb", + th: "ระเบิดต้องสาป", + 'zh-tw': "咒詛炸彈", + 'zh-cn': "咒詛炸彈" + }, + + effect: { + ja: "自分の番に1回使えて、使ったなら、このポケモンをきぜつさせる。相手のポケモン1匹に、ダメカンを5個のせる。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pokémon ini KO jika menggunakan Ability ini. Letakkan 5 Token Kerusakan pada 1 Pokémon lawan.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เมื่อใช้แล้ว จะทำให้โปเกมอนนี้[หมดสภาพ] ‌วางตัวนับแดเมจ 5 ตัว บนโปเกมอนฝ่ายตรงข้าม 1 ตัว", + 'zh-tw': "在自己的回合時可使用1次,若使用,則將這隻寶可夢【昏厥】。在對手的1隻寶可夢身上放置5個傷害指示物。", + 'zh-cn': "在自己的回合時可使用1次,若使用,則將這隻寶可夢【昏厥】。在對手的1隻寶可夢身上放置5個傷害指示物。" + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic"], + + name: { + ja: "おにび", + id: "Api Hantu", + th: "ลูกไฟวิญญาณ", + 'zh-tw': "鬼火", + 'zh-cn': "鬼火" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/066.ts b/data-asia/SV/SV8a/066.ts new file mode 100644 index 000000000..5e543002f --- /dev/null +++ b/data-asia/SV/SV8a/066.ts @@ -0,0 +1,88 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ヨノワール", + id: "Dusknoir", + th: "โยนัวร์", + 'zh-tw': "黑夜魔靈", + 'zh-cn': "黑夜魔靈" + }, + + illustrator: "danciao", + rarity: "None", + category: "Pokemon", + dexId: [477], + hp: 160, + types: ["Psychic"], + + description: { + ja: "この世と あの世を 行ったり来たり。 さまよう 魂を 吸い込んで 運ぶと いわれ 恐れられている。", + id: "Pokémon yang datang dan pergi ke dunia fana dan alam baka. Konon ia mengisap roh gentayangan dan mengangkutnya sehingga ditakuti.", + th: "ไปกลับระหว่างโลกนี้และโลกหลังความตาย ผู้คนต่างหวาดกลัวเพราะเชื่อว่ามันจะดูดกลืนวิญญาณเร่ร่อนและพาไปด้วย", + 'zh-tw': "在這個世界與另一個世界間往返。 據說會吸入並帶走遊蕩的靈魂, 因此遭到人們畏懼。", + 'zh-cn': "在這個世界與另一個世界間往返。 據說會吸入並帶走遊蕩的靈魂, 因此遭到人們畏懼。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + ja: "カースドボム", + id: "Cursed Bomb", + th: "ระเบิดต้องสาป", + 'zh-tw': "咒詛炸彈", + 'zh-cn': "咒詛炸彈" + }, + + effect: { + ja: "自分の番に1回使えて、使ったなら、このポケモンをきぜつさせる。相手のポケモン1匹に、ダメカンを13個のせる。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pokémon ini KO jika menggunakan Ability ini. Letakkan 13 Token Kerusakan pada 1 Pokémon lawan.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เมื่อใช้แล้ว จะทำให้โปเกมอนนี้[หมดสภาพ] วางตัวนับแดเมจ 13 ตัว บนโปเกมอนฝ่ายตรงข้าม 1 ตัว", + 'zh-tw': "在自己的回合時可使用1次,若使用,則將這隻寶可夢【昏厥】。在對手的1隻寶可夢身上放置13個傷害指示物。", + 'zh-cn': "在自己的回合時可使用1次,若使用,則將這隻寶可夢【昏厥】。在對手的1隻寶可夢身上放置13個傷害指示物。" + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + ja: "かげしばり", + id: "Pengikat Bayangan", + th: "จับเงา", + 'zh-tw': "影子束縛", + 'zh-cn': "影子束縛" + }, + + damage: 150, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。", + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/067.ts b/data-asia/SV/SV8a/067.ts new file mode 100644 index 000000000..d01ecb9a4 --- /dev/null +++ b/data-asia/SV/SV8a/067.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ペロッパフ", + id: "Swirlix", + th: "เพร็อพพัฟ", + 'zh-tw': "綿綿泡芙", + 'zh-cn': "綿綿泡芙" + }, + + illustrator: "Akira Komayama", + rarity: "None", + category: "Pokemon", + dexId: [684], + hp: 50, + types: ["Psychic"], + + description: { + ja: "1日に 食べる 砂糖は 自分の 体重と 同じ。 糖分が 足りないと ひどく 不機嫌になる。", + id: "Dalam sehari, Swirlix memakan gula seberat berat badannya. Jika kekurangan gula, Pokémon ini akan menjadi sangat cemberut.", + th: "ปริมาณน้ำตาลที่กินต่อหนึ่งวันเทียบเท่ากับน้ำหนักตัวของมัน หากน้ำตาลไม่พอจะอารมณ์เสียมาก", + 'zh-tw': "每天要吃掉與自己體重 相同重量的砂糖, 糖分不夠就會鬧脾氣。", + 'zh-cn': "每天要吃掉與自己體重 相同重量的砂糖, 糖分不夠就會鬧脾氣。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "おまつりおんど", + id: "Orkes Festival", + th: "รำวงงานเทศกาล", + 'zh-tw': "祭典樂舞", + 'zh-cn': "祭典樂舞" + }, + + effect: { + ja: "場に「お祭り会場」が出ているなら、このポケモンは、持っているワザを2回連続で使える。(1回目のワザで相手のバトルポケモンがきぜつしたなら、次のバトルポケモンが出たあと、2回目のワザを使う。)", + id: "Jika ada Lokasi Festival di Arena, Pokémon ini dapat menggunakan serangan yang dimiliki 2 kali berturut-turut. (Jika Pokémon Bertarung lawan KO akibat serangan pertama, gunakan serangan kedua setelah Pokémon Bertarung berikutnya masuk.)", + th: "ถ้ามี [สถานที่จัดเทศกาล] อยู่บนกระดาน โปเกมอนนี้ จะใช้ท่าต่อสู้ที่มีต่อเนื่องกันได้ 2 ครั้ง (ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ]ด้วยท่าต่อสู้ครั้งที่ 1 หลังจากที่โปเกมอนบนตำแหน่งต่อสู้ตัวถัดไปออกมา ให้ใช้ท่าต่อสู้ครั้งที่ 2)", + 'zh-tw': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)", + 'zh-cn': "若場上有「祭典會場」,則這隻寶可夢可使用持有的招式2次。(若對手的戰鬥寶可夢因第1次的招式而【昏厥】了,則在下一隻寶可夢放置後,使用第2次的招式。)" + } + }], + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "そっとのせる", + id: "Letakkan Diam-diam", + th: "ค่อย ๆ วาง", + 'zh-tw': "悄聲加害", + 'zh-cn': "悄聲加害" + }, + + effect: { + ja: "相手のポケモン1匹に、ダメカンを2個のせる。", + id: "Letakkan 2 Token Kerusakan pada 1 Pokémon lawan.", + th: "วางตัวนับแดเมจ 2 ตัว บนโปเกมอนฝ่ายตรงข้าม 1 ตัว", + 'zh-tw': "在對手的1隻寶可夢身上放置2個傷害指示物。", + 'zh-cn': "在對手的1隻寶可夢身上放置2個傷害指示物。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/068.ts b/data-asia/SV/SV8a/068.ts new file mode 100644 index 000000000..1b4f92b61 --- /dev/null +++ b/data-asia/SV/SV8a/068.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ニンフィア", + id: "Sylveon", + th: "นิมเฟีย", + 'zh-tw': "仙子伊布", + 'zh-cn': "仙子伊布" + }, + + illustrator: "Susumu Maeya", + rarity: "None", + category: "Pokemon", + dexId: [700], + hp: 120, + types: ["Psychic"], + + description: { + ja: "触角を なびかせ 軽やかに 舞う 姿は 優雅だが 技は 鋭く 急所を 狙う。", + id: "Sosok Sylveon yang menari dan mengibarkan antenanya dengan luwes terlihat begitu anggun, namun serangan Pokémon ini mengincar titik kritis lawan dengan akurat.", + th: "หนวดสัมผัสพลิ้วไหวไปตามการเคลื่อนไหวที่ปราดเปรียวและสง่างาม แต่การโจมตีของมันนั้นเฉียบคมและเล็งตรงไปยังจุดอ่อน", + 'zh-tw': "搖曳著觸角跳著輕快 舞蹈的樣子相當優雅, 但招式卻會直搗對手要害。", + 'zh-cn': "搖曳著觸角跳著輕快 舞蹈的樣子相當優雅, 但招式卻會直搗對手要害。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "ミスティックリターン", + id: "Mystic Return", + th: "มิสติกรีเทิร์น", + 'zh-tw': "奧密迴旋", + 'zh-cn': "奧密迴旋" + }, + + effect: { + ja: "コインを1回投げオモテなら、相手のベンチポケモンを1匹選び、そのポケモンと、ついているすべてのカードを、相手の山札にもどして切る。", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Pokémon Cadangan lawan, lalu kocok kembali Pokémon tersebut dan semua kartu yang dikenakannya ke Deck lawan.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว นำโปเกมอนนั้น และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายตรงข้ามแล้วสับ", + 'zh-tw': "擲1次硬幣若為正面,則選擇1隻對手的備戰寶可夢,將那隻寶可夢與附加的卡全部放回對手的牌庫並重洗。", + 'zh-cn': "擲1次硬幣若為正面,則選擇1隻對手的備戰寶可夢,將那隻寶可夢與附加的卡全部放回對手的牌庫並重洗。" + } + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "チャームボイス", + id: "Charm Voice", + th: "เสียงทรงเสน่ห์", + 'zh-tw': "魅惑之聲", + 'zh-cn': "魅惑之聲" + }, + + damage: 90, + + effect: { + ja: "相手のバトルポケモンをこんらんにする。", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]", + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/069.ts b/data-asia/SV/SV8a/069.ts new file mode 100644 index 000000000..34650f4da --- /dev/null +++ b/data-asia/SV/SV8a/069.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ニンフィアex", + id: "Sylveon ex", + th: "นิมเฟียex", + 'zh-tw': "仙子伊布ex", + 'zh-cn': "仙子伊布ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "マジカルチャーム", + id: "Magical Charm", + th: "เสน่ห์แห่งเวทมนตร์", + 'zh-tw': "魔法魅惑", + 'zh-cn': "魔法魅惑" + }, + + damage: 160, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンが使うワザのダメージは「-100」される。", + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang digunakan oleh Pokémon yang menerima serangan ini berkurang sejumlah 100.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนที่ได้รับท่าต่อสู้ นี้ใช้จะถูก [-100]", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-100」點。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-100」點。" + } + }, { + cost: ["Water", "Lightning", "Psychic"], + + name: { + ja: "エンジェライト", + id: "Angelite", + th: "แองเจิลไลท์", + 'zh-tw': "天仙石", + 'zh-cn': "天仙石" + }, + + effect: { + ja: "相手のベンチポケモンを2匹選び、そのポケモンと、ついているすべてのカードを、山札にもどして切る。前の自分の番に、自分のポケモンが「エンジェライト」を使っていたなら、このワザは使えない。", + id: "Pilih 2 Pokémon Cadangan lawan, lalu kocok kembali Pokémon tersebut dan semua kartu yang dikenakannya ke Deck. Serangan ini tidak dapat digunakan jika pada giliran sendiri sebelumnya, Pokémon sendiri telah menggunakan Angelite.", + th: "เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 2 ตัว นำโปเกมอนนั้น และการ์ดทั้งหมดที่ ติดอยู่ ใส่กลับไปในสำรับการ์ดแล้วสับ ในเทิร์นก่อนของฝ่ายเรา ถ้าโปเกมอน ฝ่ายเราใช้ [แองเจิลไลท์] ไปแล้ว ท่าต่อสู้นี้จะใช้ไม่ได้", + 'zh-tw': "選擇2隻對手的備戰寶可夢,將那些寶可夢與附加的卡全部放回牌庫並重洗。在上個自己的回合,若自己的寶可夢使出了「天仙石」,則無法使用這個招式。", + 'zh-cn': "選擇2隻對手的備戰寶可夢,將那些寶可夢與附加的卡全部放回牌庫並重洗。在上個自己的回合,若自己的寶可夢使出了「天仙石」,則無法使用這個招式。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/070.ts b/data-asia/SV/SV8a/070.ts new file mode 100644 index 000000000..e111a5bac --- /dev/null +++ b/data-asia/SV/SV8a/070.ts @@ -0,0 +1,88 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ソウブレイズ", + id: "Ceruledge", + th: "โซเบลดส์", + 'zh-tw': "蒼炎刃鬼", + 'zh-cn': "蒼炎刃鬼" + }, + + illustrator: "Ryota Murayama", + rarity: "None", + category: "Pokemon", + dexId: [937], + hp: 140, + types: ["Psychic"], + + description: { + ja: "両腕の 炎の剣は 志半ばで 力つきた 剣士の 怨念で 燃え上がる。", + id: "Pedang api pada sepasang lengan Ceruledge membara dengan dendam kesatria yang meninggal sebelum tujuannya tercapai.", + th: "ดาบเพลิงที่แขนทั้งสองข้างเผาไหม้ด้วยความแค้นของนักดาบที่สิ้นลมไปก่อนที่จะบรรลุเป้าหมาย", + 'zh-tw': "雙臂的火焰之劍靠著 在得志前就亡命的 劍士怨念而燃燒。", + 'zh-cn': "雙臂的火焰之劍靠著 在得志前就亡命的 劍士怨念而燃燒。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ライフサッカー", + id: "Life Sucker", + th: "ไลฟ์ซัคเกอร์", + 'zh-tw': "生命之紗", + 'zh-cn': "生命之紗" + }, + + damage: 50, + + effect: { + ja: "このポケモンのHPを「30」回復する。", + id: "Pulihkan HP Pokémon ini sejumlah 30.", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]", + 'zh-tw': "將這隻寶可夢恢復「30」HP。", + 'zh-cn': "將這隻寶可夢恢復「30」HP。" + } + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "とうしのたいけん", + id: "Pedang Besar Semangat Petarung", + th: "ดาบยักษ์ของนักสู้", + 'zh-tw': "鬥士的巨劍", + 'zh-cn': "鬥士的巨劍" + }, + + damage: "100+", + + effect: { + ja: "相手のバトルポケモンが「ポケモンex・V」なら、100ダメージ追加。", + id: "Jika Pokémon Bertarung lawan adalah Pokémon {ex}/{V}, kerusakan yang diberikan bertambah sejumlah 100.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】 /【V】] การโจมตีนี้จะเพิ่มแดเมจอีก 100", + 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加100點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」,則增加100點傷害。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/071.ts b/data-asia/SV/SV8a/071.ts new file mode 100644 index 000000000..6cfdd6c16 --- /dev/null +++ b/data-asia/SV/SV8a/071.ts @@ -0,0 +1,78 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "サケブシッポ", + id: "Scream Tail", + th: "หางตะเบ็ง", + 'zh-tw': "吼叫尾", + 'zh-cn': "吼叫尾" + }, + + illustrator: "Ryota Murayama", + rarity: "None", + category: "Pokemon", + dexId: [985], + hp: 90, + types: ["Psychic"], + + description: { + ja: "目撃例は 過去 1件のみ。 古い 探検記に 記された 謎の 生物に 似た ポケモン。", + id: "Laporan kesaksian atas Pokémon ini hanya ada 1 di masa lalu. Sosoknya mirip dengan makhluk hidup misterius yang tertera dalam jurnal ekspedisi kuno.", + th: "ตามข้อมูลระบุว่าเคยมีผู้พบเห็นเพียงแค่ครั้งเดียว เป็นโปเกมอนที่คล้ายกับสิ่งมีชีวิตลึกลับที่ระบุไว้ในบันทึกการสำรวจเก่าแก่", + 'zh-tw': "過去只有過1次目擊紀錄。 是與古老的探險記裡記載的 神秘生物長得很像的寶可夢。", + 'zh-cn': "過去只有過1次目擊紀錄。 是與古老的探險記裡記載的 神秘生物長得很像的寶可夢。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "ビンタ", + id: "Menampar", + th: "ตบ", + 'zh-tw': "巴掌", + 'zh-cn': "巴掌" + }, + + damage: 30 + }, { + cost: ["Psychic", "Colorless"], + + name: { + ja: "ほえさけぶ", + id: "Berteriak Meraung-raung", + th: "ร้องตะเบ็ง", + 'zh-tw': "大吼大叫", + 'zh-cn': "大吼大叫" + }, + + effect: { + ja: "相手のポケモン1匹に、このポケモンにのっているダメカンの数×20ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + id: "Serangan ini memberikan kerusakan sejumlah 20 kepada 1 Pokémon lawan untuk tiap Token Kerusakan yang dimiliki Pokémon ini. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "ทำแดเมจกับโปเกมอนฝ่ายตรงข้าม 1 ตัว เท่ากับจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x20 {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + 'zh-tw': "對手的1隻寶可夢受到這隻寶可夢身上放置的傷害指示物的數量×20點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻寶可夢受到這隻寶可夢身上放置的傷害指示物的數量×20點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/072.ts b/data-asia/SV/SV8a/072.ts new file mode 100644 index 000000000..4eb32b902 --- /dev/null +++ b/data-asia/SV/SV8a/072.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ハバタクカミ", + id: "Flutter Mane", + th: "เกศากระพือ", + 'zh-tw': "振翼髮", + 'zh-cn': "振翼髮" + }, + + illustrator: "kodama", + rarity: "None", + category: "Pokemon", + dexId: [987], + hp: 90, + types: ["Psychic"], + + description: { + ja: "とある 書物に 登場する ハバタクカミという 生物と 似た 特徴を 持つ ポケモン。", + id: "Pokémon yang memiliki karakteristik yang mirip dengan makhluk hidup bernama Flutter Mane yang disebutkan dalam suatu buku.", + th: "โปเกมอนที่มีลักษณะเด่นเหมือนกับสิ่งมีชีวิตที่เรียกว่าเกศากระพือที่ปรากฏตัวในบันทึกเล่มหนึ่ง", + 'zh-tw': "與某本書裡記載的一種 叫做振翼髮的生物有著 相似特徵的寶可夢。", + 'zh-cn': "與某本書裡記載的一種 叫做振翼髮的生物有著 相似特徵的寶可夢。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "あんやのはばたき", + id: "Kepakan Malam Gelap", + th: "สยายปีกคืนเดือนมืด", + 'zh-tw': "暗夜羽擊", + 'zh-cn': "暗夜羽擊" + }, + + effect: { + ja: "このポケモンがバトル場にいるかぎり、相手のバトルポケモンの特性(「あんやのはばたき」をのぞく)は、すべてなくなる。", + id: "Selama Pokémon ini ada di Arena Bertarung, Pokémon Bertarung lawan menjadi tidak memiliki Ability (selain Kepakan Malam Gelap).", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนตำแหน่งต่อสู้ ความสามารถของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม (ยกเว้น [สยายปีกคืนเดือนมืด]) ทั้งหมดจะหายไป", + 'zh-tw': "只要這隻寶可夢在戰鬥場上,對手的戰鬥寶可夢的特性(「暗夜羽擊」除外)全部消除。", + 'zh-cn': "只要這隻寶可夢在戰鬥場上,對手的戰鬥寶可夢的特性(「暗夜羽擊」除外)全部消除。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "たたりとばす", + id: "Menerbangkan Kutukan", + th: "ปล่อยอาถรรพ์", + 'zh-tw': "飛來橫禍", + 'zh-cn': "飛來橫禍" + }, + + damage: 90, + + effect: { + ja: "ダメカン2個を、相手のベンチポケモンに好きなようにのせる。", + id: "Letakkan sejumlah 2 Token Kerusakan pada Pokémon Cadangan lawan sesukanya.", + th: "วางตัวนับแดเมจ 2 ตัว บนโปเกมอนบนเบนช์ฝ่ายตรงข้ามตามชอบ", + 'zh-tw': "將2個傷害指示物以任意方式放置於對手的備戰寶可夢身上。", + 'zh-cn': "將2個傷害指示物以任意方式放置於對手的備戰寶可夢身上。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/073.ts b/data-asia/SV/SV8a/073.ts new file mode 100644 index 000000000..c3efd33d2 --- /dev/null +++ b/data-asia/SV/SV8a/073.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "コレクレー", + id: "Gimmighoul", + th: "คอลเลคเรย์", + 'zh-tw': "索財靈", + 'zh-cn': "索財靈" + }, + + illustrator: "Kouki Saitou", + rarity: "None", + category: "Pokemon", + dexId: [999], + hp: 70, + types: ["Psychic"], + + description: { + ja: "およそ1500年前 宝箱の中で 生まれた。 宝を 盗む 不埒者の 生気を 吸い取る。", + id: "Sekitar 1500 tahun lalu, Gimmighoul terlahir di dalam kotak harta. Pokémon ini mengisap vitalitas orang jahat yang hendak mencuri hartanya.", + th: "เกิดในกล่องสมบัติเมื่อราว 1500 ปีก่อน สูบพลังชีวิตของคนร้ายที่มาขโมยสมบัติ", + 'zh-tw': "約1500年前出生在寶箱裡。 如果有惡棍打算偷走寶藏, 就會被牠吸走精氣。", + 'zh-cn': "約1500年前出生在寶箱裡。 如果有惡棍打算偷走寶藏, 就會被牠吸走精氣。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "れんぞくコインなげ", + id: "Lempar Koin Beruntun", + th: "ทอยเหรียญต่อเนื่อง", + 'zh-tw': "連續擲幣", + 'zh-cn': "連續擲幣" + }, + + damage: "20×", + + effect: { + ja: "ウラが出るまでコインを投げ、オモテの数×20ダメージ。", + id: "Lempar koin hingga hasilnya sisi belakang. Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญจนกว่าจะออกก้อย แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20", + 'zh-tw': "擲硬幣直到出現反面,造成正面出現的次數×20點傷害。", + 'zh-cn': "擲硬幣直到出現反面,造成正面出現的次數×20點傷害。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/074.ts b/data-asia/SV/SV8a/074.ts new file mode 100644 index 000000000..e7fa9d11f --- /dev/null +++ b/data-asia/SV/SV8a/074.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノブジンex", + id: "Iron Valiant ex", + th: "นักรบเหล็กex", + 'zh-tw': "鐵武者ex", + 'zh-cn': "鐵武者ex" + }, + + illustrator: "aky CG Works", + rarity: "Double rare", + category: "Pokemon", + hp: 220, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "タキオンビット", + id: "Tachyon Bit", + th: "แทคีออนบิต", + 'zh-tw': "超光速位元", + 'zh-cn': "超光速位元" + }, + + effect: { + ja: "自分の番に、このポケモンがベンチからバトル場に出たとき、1回使える。相手のポケモン1匹に、ダメカンを2個のせる。", + id: "Dapat digunakan 1 kali pada giliran sendiri saat Pokémon ini masuk dari Cadangan ke Arena Bertarung. Letakkan 2 Token Kerusakan pada 1 Pokémon lawan.", + th: "ในเทิร์นฝ่ายเรา เมื่อโปเกมอนนี้ออกจากเบนช์มาที่ตำแหน่งต่อสู้ ใช้ได้ 1 ครั้ง วางตัวนับแดเมจ 2 ตัว บนโปเกมอนฝ่ายตรงข้าม 1 ตัว", + 'zh-tw': "在自己的回合,從備戰區將這隻寶可夢放置於戰鬥場時,可使用1次。在對手的1隻寶可夢身上放置2個傷害指示物。", + 'zh-cn': "在自己的回合,從備戰區將這隻寶可夢放置於戰鬥場時,可使用1次。在對手的1隻寶可夢身上放置2個傷害指示物。" + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + ja: "レーザーブレード", + id: "Laser Blade", + th: "เลเซอร์เบลด", + 'zh-tw': "鐳射利刃", + 'zh-cn': "鐳射利刃" + }, + + damage: 200, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/075.ts b/data-asia/SV/SV8a/075.ts new file mode 100644 index 000000000..af072c10b --- /dev/null +++ b/data-asia/SV/SV8a/075.ts @@ -0,0 +1,88 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "マシマシラ", + id: "Munkidori", + th: "มาชิมาชิระ", + 'zh-tw': "願增猿", + 'zh-cn': "願增猿" + }, + + illustrator: "kodama", + rarity: "None", + category: "Pokemon", + dexId: [1015], + hp: 110, + types: ["Psychic"], + + description: { + ja: "安全な 場所から 強烈な めまいを 引き起こす 念力を 放って 敵を 翻弄する。", + id: "Ia memancarkan kekuatan psikokinesisnya yang menyebabkan pusing akut dan mempermainkan musuhnya sesuka hati dari tempat yang aman.", + th: "อยู่ในสถานที่ที่ปลอดภัยแล้วหยอกล้อศัตรูด้วยการปล่อยพลังจิตที่ทำให้เวียนหัวรุนแรงได้", + 'zh-tw': "會從安全的地方釋放出 能引起強烈頭暈的念力, 把敵手戲弄得團團轉。", + 'zh-cn': "會從安全的地方釋放出 能引起強烈頭暈的念力, 把敵手戲弄得團團轉。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "アドレナブレイン", + id: "Adrenaline Brain", + th: "อะดรีนาลีนเบรน", + 'zh-tw': "腎上腺腦力", + 'zh-cn': "腎上腺腦力" + }, + + effect: { + ja: "このポケモンにエネルギーがついているなら、自分の番に1回使える。自分の場のポケモン1匹にのっているダメカンを3個まで選び、相手の場のポケモン1匹にのせ替える。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini mengenakan Energi {Kegelapan}. Pilih paling banyak 3 Token Kerusakan yang dimiliki 1 Pokémon di Arena sendiri, lalu pindahkan ke 1 Pokémon di Arena lawan.", + th: "ถ้าโปเกมอนนี้มีพลังงาน[ความมืด]ติดอยู่ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกตัวนับแดเมจที่วางอยู่บนโปเกมอนบนกระดานฝ่ายเรา 1 ตัวได้สูงสุด 3 ตัว ย้ายไปวางที่โปเกมอนบนกระดานฝ่ายตรงข้าม 1 ตัว", + 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則在自己的回合時可使用1次。選擇最多3個自己的1隻場上寶可夢身上放置的傷害指示物,改放於對手的1隻場上寶可夢身上。", + 'zh-cn': "若這隻寶可夢身上附有【惡】能量卡,則在自己的回合時可使用1次。選擇最多3個自己的1隻場上寶可夢身上放置的傷害指示物,改放於對手的1隻場上寶可夢身上。" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "サイコトリップ", + id: "Psychotrip", + th: "ไซโคทริป", + 'zh-tw': "精神歪曲", + 'zh-cn': "精神歪曲" + }, + + damage: 60, + + effect: { + ja: "相手のバトルポケモンをこんらんにする。", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]", + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/076.ts b/data-asia/SV/SV8a/076.ts new file mode 100644 index 000000000..458439081 --- /dev/null +++ b/data-asia/SV/SV8a/076.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "キチキギス", + id: "Fezandipiti", + th: "คิจิคิกิสึ", + 'zh-tw': "吉雉雞", + 'zh-cn': "吉雉雞" + }, + + illustrator: "Kouki Saitou", + rarity: "None", + category: "Pokemon", + dexId: [1016], + hp: 120, + types: ["Psychic"], + + description: { + ja: "艶やかな 翼を 羽ばたかせて フェロモンを 振りまき 人や ポケモンを 蠱惑に 魅了する。", + id: "Ia merebut hati dan memikat manusia serta Pokémon dengan mengepakkan sayapnya yang ayu dan menebarkan feromon.", + th: "กระพือปีกที่แสนเย้ายวนเพื่อโปรยฟีโรโมนยั่วยวนคนและโปเกมอนให้หลงใหล", + 'zh-tw': "會拍動豔麗的翅膀散佈 費洛蒙,使人類和寶可夢 神魂顛倒,為牠著迷。", + 'zh-cn': "會拍動豔麗的翅膀散佈 費洛蒙,使人類和寶可夢 神魂顛倒,為牠著迷。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "アドレナフェロモン", + id: "Adrenaline Pheromone", + th: "อะดรีนาลีนฟีโรโมน", + 'zh-tw': "腎上腺費洛蒙", + 'zh-cn': "腎上腺費洛蒙" + }, + + effect: { + ja: "このポケモンにエネルギーがついているなら、このポケモンがワザのダメージを受けるとき、自分はコインを1回投げる。オモテなら、このポケモンはそのダメージを受けない。", + id: "Jika Pokémon ini mengenakan Energi {Kegelapan}, saat Pokémon ini menerima kerusakan akibat serangan, pemain melempar koin 1 kali. Jika hasilnya sisi depan, Pokémon ini tidak menerima kerusakan tersebut.", + th: "ถ้าโปเกมอนนี้มีพลังงาน[ความมืด]ติดอยู่ เมื่อโปเกมอนนี้ได้รับแดเมจของท่าต่อสู้ ฝ่ายเราทอยเหรียญ 1 ครั้ง ถ้าออกหัว โปเกมอนนี้จะไม่ได้รับแดเมจนั้น", + 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則這隻寶可夢受到招式的傷害時,自己擲1次硬幣。若為正面,則這隻寶可夢不會受到那個傷害。", + 'zh-cn': "若這隻寶可夢身上附有【惡】能量卡,則這隻寶可夢受到招式的傷害時,自己擲1次硬幣。若為正面,則這隻寶可夢不會受到那個傷害。" + } + }], + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "エナジーフェザー", + id: "Energy Feather", + th: "เอนเนอร์จี้ฟีเธอร์", + 'zh-tw': "能量羽毛", + 'zh-cn': "能量羽毛" + }, + + damage: "30×", + + effect: { + ja: "このポケモンについているエネルギーの数×30ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon ini.", + th: "แดเมจจะเท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนนี้ x30", + 'zh-tw': "造成這隻寶可夢身上附加的能量的數量×30點傷害。", + 'zh-cn': "造成這隻寶可夢身上附加的能量的數量×30點傷害。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/077.ts b/data-asia/SV/SV8a/077.ts new file mode 100644 index 000000000..a95900cfc --- /dev/null +++ b/data-asia/SV/SV8a/077.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノイワオ", + id: "Iron Boulder", + th: "ศิลาเหล็ก", + 'zh-tw': "鐵磐岩", + 'zh-cn': "鐵磐岩" + }, + + illustrator: "GIDORA", + rarity: "None", + category: "Pokemon", + dexId: [1022], + hp: 140, + types: ["Psychic"], + + description: { + ja: "金属質の ボディらしい。 名前は 古い 本に 記された 謎の 物体から つけられた。", + id: "Tampaknya Pokémon ini bertubuh metalik. Namanya diberikan berdasarkan objek misterius yang tercatat dalam buku kuno.", + th: "เหมือนว่าร่างกายจะมีคุณสมบัติเป็นโลหะ ถูกตั้งชื่อตามวัตถุลึกลับที่ถูกระบุไว้ในหนังสือเก่าแก่", + 'zh-tw': "身體似乎是由金屬構成。 牠的名字來自記載於 古老書籍裡的神秘物體。", + 'zh-cn': "身體似乎是由金屬構成。 牠的名字來自記載於 古老書籍裡的神秘物體。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "アジャストホーン", + id: "Adjust Horn", + th: "แอดจัสต์ฮอร์น", + 'zh-tw': "調整角擊", + 'zh-cn': "調整角擊" + }, + + damage: 170, + + effect: { + ja: "自分の手札と相手の手札が同じ枚数でないなら、このワザは失敗。", + id: "Jika jumlah Kartu Pegangan sendiri dan jumlah Kartu Pegangan lawan tidak sama, serangan ini gagal.", + th: "ถ้าจำนวนการ์ดบนมือฝ่ายเรากับจำนวนการ์ดบนมือฝ่ายตรงข้ามไม่เท่ากัน ท่าต่อสู้นี้จะล้มเหลว", + 'zh-tw': "若自己的手牌與對手的手牌不是相同張數,則這個招式失敗。", + 'zh-cn': "若自己的手牌與對手的手牌不是相同張數,則這個招式失敗。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/078.ts b/data-asia/SV/SV8a/078.ts new file mode 100644 index 000000000..04a2a40c4 --- /dev/null +++ b/data-asia/SV/SV8a/078.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノカシラex", + id: "Iron Crown ex", + th: "หัวเหล็กex", + 'zh-tw': "鐵頭殼ex", + 'zh-cn': "鐵頭殼ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 220, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "コバルトコマンド", + id: "Cobalt Command", + th: "โคบอลต์คอมมานด์", + 'zh-tw': "鈷藍指令", + 'zh-cn': "鈷藍指令" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分の「未来」のポケモン(「テツノカシラex」をのぞく)が使うワザの、相手のバトルポケモンへのダメージは「+20」される。", + id: "Selama Pokémon ini ada di Arena, kerusakan akibat serangan yang digunakan oleh Pokémon Futur sendiri (selain Iron Crown {ex}) kepada Pokémon Bertarung lawan bertambah sejumlah 20.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ แดเมจของท่าต่อสู้ที่โปเกมอน [อนาคต] ฝ่ายเรา (ยกเว้น [หัวเหล็ก【ex】]) ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+20]", + 'zh-tw': "只要這隻寶可夢在場上,自己的「未來」寶可夢(「鐵頭殼【ex】」除外)使用的招式,對對手的戰鬥寶可夢造成的傷害「+20」點。", + 'zh-cn': "只要這隻寶可夢在場上,自己的「未來」寶可夢(「鐵頭殼【ex】」除外)使用的招式,對對手的戰鬥寶可夢造成的傷害「+20」點。" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "ツインショーテル", + id: "Twin Shotel", + th: "ดาบโค้งคู่", + 'zh-tw': "雙刃劍", + 'zh-cn': "雙刃劍" + }, + + effect: { + ja: "相手のポケモン2匹に、それぞれ50ダメージ。このワザのダメージは、弱点・抵抗力と、ダメージを受けるポケモンにかかっている効果を計算しない。", + id: "Serangan ini memberikan kerusakan masing-masing sejumlah 50 kepada 2 Pokémon lawan. Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan, Resistansi, dan efek yang sedang dialami Pokémon yang menerima kerusakan.", + th: "โปเกมอนฝ่ายตรงข้าม 2 ตัว จะได้รับแดเมจตัวละ 50 แดเมจของท่าต่อสู้นี้ จะไม่นำจุดอ่อน ความต้านทาน และเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนที่ได้รับแดเมจมาคิด", + 'zh-tw': "對手的2隻寶可夢各受到50點傷害。這個招式的傷害不計算弱點・抵抗力與受到傷害的寶可夢身上的附加效果。", + 'zh-cn': "對手的2隻寶可夢各受到50點傷害。這個招式的傷害不計算弱點・抵抗力與受到傷害的寶可夢身上的附加效果。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/079.ts b/data-asia/SV/SV8a/079.ts new file mode 100644 index 000000000..cc1b7459c --- /dev/null +++ b/data-asia/SV/SV8a/079.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ジーランス", + id: "Relicanth", + th: "จีแลนซ์", + 'zh-tw': "古空棘魚", + 'zh-cn': "古空棘魚" + }, + + illustrator: "Mina Nakai", + rarity: "None", + category: "Pokemon", + dexId: [369], + hp: 100, + types: ["Fighting"], + + description: { + ja: "岩のように 硬い ウロコと 脂の 詰まった 浮袋で 深海の 水圧に 耐える。", + id: "Relicanth bertahan mengatasi tekanan air laut dalam menggunakan sisiknya yang sekeras bebatuan dan kantong apungnya yang penuh tertimbun lemak.", + th: "ด้วยเกล็ดที่แข็งดั่งหินผาและถุงลมที่อัดแน่นไปด้วยไขมันจึงสามารถทนทานต่อแรงดันน้ำลึกได้", + 'zh-tw': "如岩石般堅硬的鱗片 以及裝滿了油脂的鰾囊, 讓牠能承受深海的水壓。", + 'zh-cn': "如岩石般堅硬的鱗片 以及裝滿了油脂的鰾囊, 讓牠能承受深海的水壓。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "きおくにもぐる", + id: "Menyelami Ingatan", + th: "ซุกซ่อนในความทรงจำ", + 'zh-tw': "潛入記憶", + 'zh-cn': "潛入記憶" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分の進化しているポケモン全員は、進化前に持っていたワザを、すべて使える。[ワザを使うためのエネルギーは必要。]", + id: "Selama Pokémon ini ada di Arena, semua Pokémon sendiri yang telah berevolusi dapat menggunakan semua serangan yang dimiliki sebelum evolusi. [Pemain tetap membutuhkan Energi untuk menggunakan serangan tersebut.]", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ โปเกมอนฝ่ายเราที่วิวัฒนาการแล้วทุกตัว สามารถใช้ท่าต่อสู้ที่มีก่อนวิวัฒนาการได้ทั้งหมด {จำเป็นต้องใช้พลังงานสำหรับใช้ท่าต่อสู้}", + 'zh-tw': "只要這隻寶可夢在場上,自己的所有進化寶可夢,可使用進化前持有的所有招式。[需要有足夠使用招式的能量。]", + 'zh-cn': "只要這隻寶可夢在場上,自己的所有進化寶可夢,可使用進化前持有的所有招式。[需要有足夠使用招式的能量。]" + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + ja: "ひれカッター", + id: "Sirip Pemotong", + th: "ครีบใบมีด", + 'zh-tw': "鰭快刀", + 'zh-cn': "鰭快刀" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/080.ts b/data-asia/SV/SV8a/080.ts new file mode 100644 index 000000000..f95fabd5d --- /dev/null +++ b/data-asia/SV/SV8a/080.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "グラードン", + id: "Groudon", + th: "กราดอน", + 'zh-tw': "固拉多", + 'zh-cn': "固拉多" + }, + + illustrator: "Uta", + rarity: "None", + category: "Pokemon", + dexId: [383], + hp: 130, + types: ["Fighting"], + + description: { + ja: "カイオーガと 死闘の末 長い 眠りに ついた。大地の 化身と 言われる 伝説の ポケモン。", + id: "Setelah pertarungan mematikan dengan Kyogre, Groudon tidur panjang. Pokémon legendaris yang dikenal sebagai Jelmaan Daratan.", + th: "เข้าสู่ห้วงนิทราอันยาวนานหลังจากต่อสู้อย่างเอาเป็นเอาตายกับไคออกา เป็นโปเกมอนในตำนานที่เล่าขานกันว่าเป็นร่างแปลงของพิภพ", + 'zh-tw': "與蓋歐卡殊死戰鬥後, 便一直沉睡著。 被稱為大地化身的傳說的寶可夢。", + 'zh-cn': "與蓋歐卡殊死戰鬥後, 便一直沉睡著。 被稱為大地化身的傳說的寶可夢。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "みなぎるちから", + id: "Kekuatan Bergejolak", + th: "พลังท่วมท้น", + 'zh-tw': "充溢之力", + 'zh-cn': "充溢之力" + }, + + effect: { + ja: "自分の手札から「基本エネルギー」を1枚選び、自分のポケモンにつける。", + id: "Pilih 1 lembar Energi Dasar {Petarung} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon sendiri.", + th: "เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา", + 'zh-tw': "從自己的手牌選擇1張「基本【鬥】能量」卡,附於自己的寶可夢身上。", + 'zh-cn': "從自己的手牌選擇1張「基本【鬥】能量」卡,附於自己的寶可夢身上。" + } + }, { + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + ja: "マグマパージ", + id: "Magma Purge", + th: "แม็กมาเพิร์จ", + 'zh-tw': "熔岩光芒", + 'zh-cn': "熔岩光芒" + }, + + damage: "60×", + + effect: { + ja: "自分の場のポケモンについているエネルギーを4枚までトラッシュし、その枚数×60ダメージ。", + id: "Buang paling banyak 4 lembar Energi yang dikenakan pada Pokémon di Arena sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 60 untuk tiap lembarnya.", + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเราได้สูงสุด 4 ใบที่ตำแหน่งทิ้งการ์ด แดเมจจะเท่ากับจำนวนการ์ดนั้น x60", + 'zh-tw': "將最多4張自己的場上寶可夢身上附加的能量卡丟棄,造成其張數×60點傷害。", + 'zh-cn': "將最多4張自己的場上寶可夢身上附加的能量卡丟棄,造成其張數×60點傷害。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/081.ts b/data-asia/SV/SV8a/081.ts new file mode 100644 index 000000000..e72e25e62 --- /dev/null +++ b/data-asia/SV/SV8a/081.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "フカマル", + id: "Gible", + th: "ฟุคามารุ", + 'zh-tw': "圓陸鯊", + 'zh-cn': "圓陸鯊" + }, + + illustrator: "saino misaki", + rarity: "None", + category: "Pokemon", + dexId: [443], + hp: 70, + types: ["Fighting"], + + description: { + ja: "穴倉に 潜み 獲物や 敵が 横切ると 飛びだして 噛みつく。 勢い余り 歯が 欠けることも。", + id: "Gible menerjang lalu menggigit mangsa dan musuh yang melewati sarangnya. Terkadang giginya terlepas akibat menggigit terlalu kuat.", + th: "ซ่อนตัวอยู่ในหลุมใต้ดิน ถ้ามีเหยื่อหรือศัตรูผ่านมาจะกระโดดกัด ใส่แรงมากไปจนบางครั้งฟันหัก", + 'zh-tw': "潛伏在地洞內,如果有獵物 或敵人經過,就會撲出來咬住。 有時會用力過猛而咬壞牙齒。", + 'zh-cn': "潛伏在地洞內,如果有獵物 或敵人經過,就會撲出來咬住。 有時會用力過猛而咬壞牙齒。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "かみつく", + id: "Menggigit", + th: "กัดติด", + 'zh-tw': "咬住", + 'zh-cn': "咬住" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/082.ts b/data-asia/SV/SV8a/082.ts new file mode 100644 index 000000000..5e4288b70 --- /dev/null +++ b/data-asia/SV/SV8a/082.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ガバイト", + id: "Gabite", + th: "กาไบต์", + 'zh-tw': "尖牙陸鯊", + 'zh-cn': "尖牙陸鯊" + }, + + illustrator: "Nisota Niso", + rarity: "None", + category: "Pokemon", + dexId: [444], + hp: 100, + types: ["Fighting"], + + description: { + ja: "まれに 脱皮し ウロコが 剥げる。 その成分が 含まれる 薬は 疲れた 体を ギンギンにする。", + id: "Terkadang Gabite berganti kulit dan sisiknya terkelupas. Kandungan dalam sisik Pokémon ini dijadikan obat yang berkhasiat membuat tubuh lelah menjadi segar bugar.", + th: "นาน ๆ ทีจะลอกคราบทำให้เกล็ดหลุดออกมา เกล็ดนั้นมีส่วนประกอบที่ถ้าเอาไปผสมยาจะช่วยให้ร่างกายที่อ่อนล้ากระปรี้กระเปร่าขึ้น", + 'zh-tw': "偶爾脫皮,鱗片會脫落。 含有其成分的藥可以 讓疲勞的身體活力四射。", + 'zh-cn': "偶爾脫皮,鱗片會脫落。 含有其成分的藥可以 讓疲勞的身體活力四射。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "パワーブラスト", + id: "Power Blast", + th: "พาวเวอร์บลาสต์", + 'zh-tw': "力量爆破", + 'zh-cn': "力量爆破" + }, + + damage: 50, + + effect: { + ja: "このポケモンについているエネルギーを1個選び、トラッシュする。", + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/083.ts b/data-asia/SV/SV8a/083.ts new file mode 100644 index 000000000..cb14afc80 --- /dev/null +++ b/data-asia/SV/SV8a/083.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "モグリュー", + id: "Drilbur", + th: "โมกุริว", + 'zh-tw': "螺釘地鼠", + 'zh-cn': "螺釘地鼠" + }, + + illustrator: "Kariya", + rarity: "None", + category: "Pokemon", + dexId: [529], + hp: 70, + types: ["Fighting"], + + description: { + ja: "両手の ツメを 重ね合わせ 体を 高速回転 させると 獲物 めがけて 突っ込むのだ。", + id: "Drilbur merapatkan cakar di kedua tangannya, berputar dengan kecepatan tinggi, dan menabrakkan diri ke arah mangsanya.", + th: "ประกบเล็บมือทั้งสองข้างเข้าด้วยกัน แล้วหมุนตัวด้วยความรวดเร็ว แล้วพุ่งเข้าใส่เหยื่อ", + 'zh-tw': "會將雙掌上的爪子併攏, 並讓身體高速旋轉, 瞄準獵物衝過去。", + 'zh-cn': "會將雙掌上的爪子併攏, 並讓身體高速旋轉, 瞄準獵物衝過去。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ほりまくり", + id: "Menggali Terus", + th: "ขุดไม่หยุด", + 'zh-tw': "狂挖", + 'zh-cn': "狂挖" + }, + + effect: { + ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。自分の山札から「基本エネルギー」を3枚まで選び、トラッシュする。そして山札を切る。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 lembar Energi Dasar {Psychic} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon Cadangan. Setelah itu, ambil 2 kartu dari atas Deck sendiri.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] ได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา ทิ้งที่ตำแหน่งทิ้งการ์ด แล้วสับสำรับการ์ด", + 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。從自己的牌庫選擇最多3張「基本【鬥】能量」卡,將其丟棄。並且重洗牌庫。", + 'zh-cn': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。從自己的牌庫選擇最多3張「基本【鬥】能量」卡,將其丟棄。並且重洗牌庫。" + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + ja: "すなしぶき", + id: "Semburan Pasir", + th: "ละอองทราย", + 'zh-tw': "沙沫", + 'zh-cn': "沙沫" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/084.ts b/data-asia/SV/SV8a/084.ts new file mode 100644 index 000000000..5d4f714e8 --- /dev/null +++ b/data-asia/SV/SV8a/084.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ルチャブル", + id: "Hawlucha", + th: "ลูจาบูล", + 'zh-tw': "摔角鷹人", + 'zh-cn': "摔角鷹人" + }, + + illustrator: "GOSSAN", + rarity: "None", + category: "Pokemon", + dexId: [701], + hp: 70, + types: ["Fighting"], + + description: { + ja: "翼を 使い 軽やかに 跳び 相手を 華麗に 仕留める 技は 生まれ育った 森で 磨かれる。", + id: "Serangan Hawlucha untuk mengakhiri lawannya secara elok dengan terbang lincah menggunakan sayapnya diasah di hutan tempat ia lahir dan dibesarkan.", + th: "ทักษะการบินที่ปราดเปรียวและสามารถจัดการอีกฝ่ายอย่างสง่างามนั้นได้รับการขัดเกลาในป่าที่เกิดและเติบโต", + 'zh-tw': "使用翅膀輕盈地跳起後, 華麗地置對手於死地的招式 是在出生的森林磨練出來的。", + 'zh-cn': "使用翅膀輕盈地跳起後, 華麗地置對手於死地的招式 是在出生的森林磨練出來的。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "フライングエントリー", + id: "Flying Entry", + th: "ฟลายอิงเอ็นทรี", + 'zh-tw': "飛身進場", + 'zh-cn': "飛身進場" + }, + + effect: { + ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。相手のベンチポケモン2匹に、それぞれダメカンを1個のせる。", + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Letakkan masing-masing sejumlah 1 Token Kerusakan pada 2 Pokémon Cadangan lawan.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง วางตัวนับแดเมจ บนโปเกมอนบนเบนช์ฝ่ายตรงข้าม 2 ตัว ตัวละ 1 ตัว", + 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。在對手的2隻備戰寶可夢身上,各放置1個傷害指示物。", + 'zh-cn': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。在對手的2隻備戰寶可夢身上,各放置1個傷害指示物。" + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + ja: "つばさでうつ", + id: "Pukulan Sayap", + th: "โจมตีด้วยปีก", + 'zh-tw': "翅膀攻擊", + 'zh-cn': "翅膀攻擊" + }, + + damage: 70 + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/085.ts b/data-asia/SV/SV8a/085.ts new file mode 100644 index 000000000..28ec6a89f --- /dev/null +++ b/data-asia/SV/SV8a/085.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ガチグマ アカツキ", + id: "Ursaluna Bulan Merah", + th: "กาจิกุมะ พระจันทร์สีเลือด", + 'zh-tw': "月月熊 赫月", + 'zh-cn': "月月熊 赫月" + }, + + illustrator: "Souichirou Gunjima", + rarity: "None", + category: "Pokemon", + dexId: [901], + hp: 150, + types: ["Fighting"], + + description: { + ja: "鉄のように 硬い 泥で 身を 守り 闇を 見通す 左目を 持つ 特別な ガチグマ。", + id: "Ursaluna khusus yang melindungi tubuhnya dengan lumpur sekeras besi dan memiliki mata kiri yang dapat melihat tembus kegelapan.", + th: "กาจิกุมะพิเศษตัวนี้ป้องกันตัวด้วยโคลนที่แข็งราวกับเหล็ก และมีตาซ้ายที่สามารถมองเห็นในที่มืดได้", + 'zh-tw': "會用堅硬如鐵的泥巴保護身體, 且擁有能夠看穿黑暗的左眼。 是特別的月月熊。", + 'zh-cn': "會用堅硬如鐵的泥巴保護身體, 且擁有能夠看穿黑暗的左眼。 是特別的月月熊。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "けいけんそく", + id: "Aturan Menurut Pengalaman", + th: "กฎเกณฑ์จากประสบการณ์", + 'zh-tw': "經驗法則", + 'zh-cn': "經驗法則" + }, + + effect: { + ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。自分の手札から「基本エネルギー」を2枚まで選び、このポケモンにつける。", + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Pilih paling banyak 2 lembar Energi Dasar {Petarung} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon ini.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] ได้สูงสุด 2 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนนี้", + 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。從自己的手牌選擇最多2張「基本【鬥】能量」卡,附於這隻寶可夢身上。", + 'zh-cn': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。從自己的手牌選擇最多2張「基本【鬥】能量」卡,附於這隻寶可夢身上。" + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + ja: "マッドバイト", + id: "Mad Bite", + th: "แมดไบต์", + 'zh-tw': "瘋狂啃咬", + 'zh-cn': "瘋狂啃咬" + }, + + damage: "100+", + + effect: { + ja: "相手のバトルポケモンにのっているダメカンの数×30ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Token Kerusakan yang dimiliki Pokémon Bertarung lawan.", + th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม x30", + 'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×30點傷害。", + 'zh-cn': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×30點傷害。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/086.ts b/data-asia/SV/SV8a/086.ts new file mode 100644 index 000000000..f03e450fc --- /dev/null +++ b/data-asia/SV/SV8a/086.ts @@ -0,0 +1,73 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イダイナキバ", + id: "Great Tusk", + th: "งายักษ์", + 'zh-tw': "雄偉牙", + 'zh-cn': "雄偉牙" + }, + + illustrator: "GIDORA", + rarity: "None", + category: "Pokemon", + dexId: [984], + hp: 140, + types: ["Fighting"], + + description: { + ja: "近年 目撃例が ある。 イダイナキバという 名は ある本に 記された 生物から 取られた。", + id: "Terdapat laporan kesaksian atas Pokémon ini dalam beberapa tahun terakhir. Nama Great Tusk diambil dari nama makhluk hidup yang tercantum dalam suatu buku.", + th: "มีผู้พบเห็นเมื่อไม่กี่ปีที่ผ่านมานี้ ชื่องายักษ์นั้นได้มาจากชื่อของสิ่งมีชีวิตที่ระบุไว้ในหนังสือเล่มหนึ่ง", + 'zh-tw': "近年曾經有人目擊到牠。 雄偉牙這個名字來自於 某本書裡記載的生物。", + 'zh-cn': "近年曾經有人目擊到牠。 雄偉牙這個名字來自於 某本書裡記載的生物。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "じばんほうかい", + id: "Fondasi Runtuh", + th: "พสุธาทลาย", + 'zh-tw': "地盤崩壞", + 'zh-cn': "地盤崩壞" + }, + + effect: { + ja: "相手の山札を上から1枚トラッシュする。この番、手札から「古代」のサポートを出して使っていたなら、さらに3枚トラッシュする。", + id: "Buang 1 kartu dari atas Deck lawan ke Trash. Jika pada giliran ini, Supporter Purba telah dimainkan dari Kartu Pegangan, buang lagi 3 kartu tambahan ke Trash.", + th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด เทิร์นนี้ ถ้านำการ์ดซัพพอร์ต [โบราณ] จากบนมือออกมาใช้แล้ว จะทิ้งการ์ดเพิ่มได้ 3 ใบที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "將對手的牌庫上方1張卡丟棄。在這個回合,若從手牌使出了「古代」支援者卡,則再丟棄3張。", + 'zh-cn': "將對手的牌庫上方1張卡丟棄。在這個回合,若從手牌使出了「古代」支援者卡,則再丟棄3張。" + } + }, { + cost: ["Fighting", "Fighting", "Colorless", "Colorless"], + + name: { + ja: "きょだいなキバ", + id: "Taring Raksasa", + th: "เขี้ยวมหึมา", + 'zh-tw': "巨大之牙", + 'zh-cn': "巨大之牙" + }, + + damage: 160 + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/087.ts b/data-asia/SV/SV8a/087.ts new file mode 100644 index 000000000..45e7c3b05 --- /dev/null +++ b/data-asia/SV/SV8a/087.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "チヲハウハネ", + id: "Slither Wing", + th: "ปีกไล้พสุธา", + 'zh-tw': "爬地翅", + 'zh-cn': "爬地翅" + }, + + illustrator: "Shinji Kanda", + rarity: "None", + category: "Pokemon", + dexId: [988], + hp: 140, + types: ["Fighting"], + + description: { + ja: "古い 本で チヲハウハネと 紹介されている 生物に 似た点が ある 謎のポケモン。", + id: "Pokémon misterius yang memiliki kemiripan dengan makhluk hidup bernama Slither Wing yang diperkenalkan dalam sebuah buku kuno.", + th: "โปเกมอนปริศนาที่มีบางจุดคล้ายคลึงกับสิ่งมีชีวิตที่ถูกเรียกว่าปีกไล้พสุธาในหนังสือเก่าแก่", + 'zh-tw': "與古老書籍裡介紹的一種 叫做爬地翅的生物有著 相似點的神秘寶可夢。", + 'zh-cn': "與古老書籍裡介紹的一種 叫做爬地翅的生物有著 相似點的神秘寶可夢。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + ja: "てつつぶし", + id: "Pelumat Besi", + th: "บดเหล็ก", + 'zh-tw': "鐵碎", + 'zh-cn': "鐵碎" + }, + + damage: "20+", + + effect: { + ja: "相手の場に「未来」のポケモンがいるなら、120ダメージ追加。", + id: "Jika ada Pokémon Futur di Arena lawan, kerusakan yang diberikan bertambah sejumlah 120.", + th: "ถ้าบนกระดานฝ่ายตรงข้ามมีโปเกมอน [อนาคต] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 120", + 'zh-tw': "若對手的場上有「未來」寶可夢,則增加120點傷害。", + 'zh-cn': "若對手的場上有「未來」寶可夢,則增加120點傷害。" + } + }, { + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + ja: "スマッシュウイング", + id: "Smash Wing", + th: "สแมชวิง", + 'zh-tw': "粉碎之翼", + 'zh-cn': "粉碎之翼" + }, + + damage: 130, + + effect: { + ja: "このポケモンについているエネルギーを2個選び、トラッシュする。", + id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/088.ts b/data-asia/SV/SV8a/088.ts new file mode 100644 index 000000000..fba865281 --- /dev/null +++ b/data-asia/SV/SV8a/088.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "スナノケガワex", + id: "Sandy Shocks ex", + th: "ขนทรายex", + 'zh-tw': "沙鐵皮ex", + 'zh-cn': "沙鐵皮ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Double rare", + category: "Pokemon", + hp: 220, + types: ["Fighting"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "じりょくきゅうしゅう", + id: "Isapan Kekuatan Magnet", + th: "ดูดซับแรงแม่เหล็ก", + 'zh-tw': "磁力吸收", + 'zh-cn': "磁力吸收" + }, + + effect: { + ja: "相手のサイドの残り枚数が4枚以下なら、自分の番に1回使える。自分のトラッシュから「基本エネルギー」を1枚選び、このポケモンにつける。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika sisa Kartu Point lawan adalah 4 lembar atau kurang. Pilih 1 lembar Energi Dasar {Petarung} dari Trash sendiri, lalu kenakan pada Pokémon ini.", + th: "ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามน้อยกว่าหรือเท่ากับ 4 ใบ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนนี้", + 'zh-tw': "若對手剩餘獎賞卡的張數為4張以下,則在自己的回合時可使用1次。從自己的棄牌區選擇1張「基本【鬥】能量」卡,附於這隻寶可夢身上。", + 'zh-cn': "若對手剩餘獎賞卡的張數為4張以下,則在自己的回合時可使用1次。從自己的棄牌區選擇1張「基本【鬥】能量」卡,附於這隻寶可夢身上。" + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + ja: "グラウンドスパイク", + id: "Ground Spike", + th: "กราวนด์สไปก์", + 'zh-tw': "大地扣殺", + 'zh-cn': "大地扣殺" + }, + + damage: 200, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/089.ts b/data-asia/SV/SV8a/089.ts new file mode 100644 index 000000000..bb32c6a59 --- /dev/null +++ b/data-asia/SV/SV8a/089.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ディンルー", + id: "Ting-Lu", + th: "ติ่งลู่", + 'zh-tw': "古鼎鹿", + 'zh-cn': "古鼎鹿" + }, + + illustrator: "AKIRA EGAWA", + rarity: "None", + category: "Pokemon", + dexId: [1003], + hp: 140, + types: ["Fighting"], + + description: { + ja: "古の 儀式で 使われた 器に 注がれた 恐怖が 土石を まとい ポケモンとなった。", + id: "Ting-Lu adalah rasa takut yang tertuang pada wadah yang digunakan dalam ritual kuno. Ia menyelimuti dirinya dengan tanah dan batu, lalu berubah menjadi Pokémon.", + th: "ความหวาดกลัวที่โดนเทลงในภาชนะที่ใช้ในพิธีกรรมเก่าแก่ถูกห่อหุ้มด้วยดินและหิน จนกลายเป็นโปเกมอน", + 'zh-tw': "古老儀式用的容器中注入的 恐懼把土石裹在自己身上, 變成了寶可夢。", + 'zh-cn': "古老儀式用的容器中注入的 恐懼把土石裹在自己身上, 變成了寶可夢。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + ja: "サンドブリング", + id: "Sand Bring", + th: "เบิกทราย", + 'zh-tw': "沙之到來", + 'zh-cn': "沙之到來" + }, + + effect: { + ja: "自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモン1匹につける。", + id: "Pilih paling banyak 2 lembar Energi Dasar {Petarung} dari Trash sendiri, lalu kenakan pada 1 Pokémon sendiri.", + th: "เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา 1 ตัว", + 'zh-tw': "從自己的棄牌區選擇最多2張「基本【鬥】能量」卡,附於自己的1隻寶可夢身上。", + 'zh-cn': "從自己的棄牌區選擇最多2張「基本【鬥】能量」卡,附於自己的1隻寶可夢身上。" + } + }, { + cost: ["Fighting", "Fighting", "Fighting"], + + name: { + ja: "ごうまんインパクト", + id: "Hantaman Kecongkakan", + th: "อวดดีพุ่งชน", + 'zh-tw': "傲慢衝擊", + 'zh-cn': "傲慢衝擊" + }, + + damage: 220, + + effect: { + ja: "このポケモンにダメカンが4個以上のっているなら、このワザは失敗。", + id: "Jika Pokémon ini memiliki Token Kerusakan sejumlah 4 atau lebih, serangan ini gagal.", + th: "ถ้าโปเกมอนนี้มีตัวนับแดเมจวางอยู่มากกว่าหรือเท่ากับ 4 ตัว ท่าต่อสู้นี้จะล้มเหลว", + 'zh-tw': "若這隻寶可夢身上放置有4個以上的傷害指示物,則這個招式失敗。", + 'zh-cn': "若這隻寶可夢身上放置有4個以上的傷害指示物,則這個招式失敗。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/090.ts b/data-asia/SV/SV8a/090.ts new file mode 100644 index 000000000..02c80b6df --- /dev/null +++ b/data-asia/SV/SV8a/090.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イイネイヌ", + id: "Okidogi", + th: "อี้เนะอินุ", + 'zh-tw': "夠讚狗", + 'zh-cn': "夠讚狗" + }, + + illustrator: "Souichirou Gunjima", + rarity: "None", + category: "Pokemon", + dexId: [1014], + hp: 130, + types: ["Fighting"], + + description: { + ja: "すぐ 頭に 血が 上ってしまう 荒くれもの。 首の 鎖を 振り回し なんでも 叩き潰す。", + id: "Pokémon yang kasar dan mudah marah. Ia memukul habis segalanya dengan mengayunkan rantai di lehernya.", + th: "จอมอันธพาลที่มีอารมณ์รุนแรงและเลือดขึ้นหน้าได้ง่าย ทุบทำลายทุกสิ่งทุกอย่างด้วยการเหวี่ยงโซ่ที่คอ", + 'zh-tw': "動不動就會怒火沖天的 粗暴傢伙。會揮甩脖子的鎖鏈 一股腦兒地擊碎東西。", + 'zh-cn': "動不動就會怒火沖天的 粗暴傢伙。會揮甩脖子的鎖鏈 一股腦兒地擊碎東西。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "アドレナパワー", + id: "Adrenaline Power", + th: "อะดรีนาลีนพาวเวอร์", + 'zh-tw': "腎上腺力量", + 'zh-cn': "腎上腺力量" + }, + + effect: { + ja: "このポケモンにエネルギーがついているなら、このポケモンの最大HPは「+100」され、このポケモンが使うワザの、相手のバトルポケモンへのダメージは「+100」される。", + id: "Jika Pokémon ini mengenakan Energi {Kegelapan}, HP maksimal Pokémon ini bertambah sejumlah 100 dan kerusakan akibat serangan yang digunakan oleh Pokémon ini kepada Pokémon Bertarung lawan bertambah sejumlah 100.", + th: "ถ้าโปเกมอนนี้มีพลังงาน[ความมืด]ติดอยู่ HP สูงสุดของโปเกมอนนี้จะถูก [+100] แดเมจของท่าต่อสู้ที่โปเกมอนนี้ ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+100]", + 'zh-tw': "若這隻寶可夢身上附有【惡】能量卡,則這隻寶可夢的最大HP「+100」,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+100」點。", + 'zh-cn': "若這隻寶可夢身上附有【惡】能量卡,則這隻寶可夢的最大HP「+100」,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+100」點。" + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting"], + + name: { + ja: "グッドパンチ", + id: "Good Punch", + th: "กู้ดพันช์", + 'zh-tw': "好拳", + 'zh-cn': "好拳" + }, + + damage: 70 + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/091.ts b/data-asia/SV/SV8a/091.ts new file mode 100644 index 000000000..ce39d04fa --- /dev/null +++ b/data-asia/SV/SV8a/091.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーガポン いしずえのめんex", + id: "Ogerpon Topeng Fondasi ex", + th: "โอการ์ปอง หน้ากากฐานรากex", + 'zh-tw': "厄鬼椪 礎石面具ex", + 'zh-cn': "厄鬼椪 礎石面具ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Fighting"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "いしずえのかまえ", + id: "Kuda-kuda Fondasi", + th: "การเตรียมพร้อมของฐานราก", + 'zh-tw': "礎石之勢", + 'zh-cn': "礎石之勢" + }, + + effect: { + ja: "このポケモンは、相手の特性を持つポケモンからワザのダメージを受けない。", + id: "Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon lawan yang memiliki Ability.", + th: "โปเกมอนนี้ จะไม่ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้ามที่มีความสามารถ", + 'zh-tw': "這隻寶可夢不會受到對手的擁有特性的寶可夢招式的傷害。", + 'zh-cn': "這隻寶可夢不會受到對手的擁有特性的寶可夢招式的傷害。" + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + ja: "ぶちやぶる", + id: "Memecah Penuh Tenaga", + th: "ตีแตกพ่าย", + 'zh-tw': "打爆", + 'zh-cn': "打爆" + }, + + damage: 140, + + effect: { + ja: "このワザのダメージは、弱点・抵抗力と、相手のバトルポケモンにかかっている効果を計算しない。", + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan, Resistansi, dan efek yang sedang dialami Pokémon Bertarung lawan.", + th: "แดเมจของท่าต่อสู้นี้ จะไม่นำจุดอ่อน ความต้านทาน และเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด", + 'zh-tw': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/092.ts b/data-asia/SV/SV8a/092.ts new file mode 100644 index 000000000..4da7b64ad --- /dev/null +++ b/data-asia/SV/SV8a/092.ts @@ -0,0 +1,81 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブラッキー", + id: "Umbreon", + th: "แบล็กกี", + 'zh-tw': "月亮伊布", + 'zh-cn': "月亮伊布" + }, + + illustrator: "matazo", + rarity: "None", + category: "Pokemon", + dexId: [197], + hp: 110, + types: ["Darkness"], + + description: { + ja: "月の 波動を 体に 浴びると 輪っか模様が ほのかに 輝き 不思議な 力に 目覚めるのだ。", + id: "Ketika tubuhnya terpapar gelombang bulan, pola cincin pada tubuh Umbreon bercahaya samar-samar, lalu kekuatan misterius akan bangkit.", + th: "พอร่างกายได้อาบคลื่นจากดวงจันทร์ ลายวงทั่วตัวจะเรืองแสงเล็กน้อยและพลังลึกลับจะตื่นขึ้น", + 'zh-tw': "當身體沐浴了月亮波動後, 圓形花紋就會微微發光, 使神秘的力量因而覺醒。", + 'zh-cn': "當身體沐浴了月亮波動後, 圓形花紋就會微微發光, 使神秘的力量因而覺醒。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "だましうち", + id: "Serangan Tipuan", + th: "หลอกตี", + 'zh-tw': "出奇一擊", + 'zh-cn': "出奇一擊" + }, + + effect: { + ja: "相手のポケモン1匹に、50ダメージ。このワザのダメージは、弱点・抵抗力と、ダメージを受けるポケモンにかかっている効果を計算しない。", + id: "Serangan ini memberikan kerusakan sejumlah 50 kepada 1 Pokémon lawan. Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan, Resistansi, dan efek yang sedang dialami Pokémon yang menerima kerusakan.", + th: "ทำแดเมจ 50 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว แดเมจของท่าต่อสู้นี้ จะไม่นำจุดอ่อน ความต้านทาน และเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนที่ได้รับแดเมจมาคิด", + 'zh-tw': "對手的1隻寶可夢受到50點傷害。這個招式的傷害不計算弱點・抵抗力與受到傷害的寶可夢身上的附加效果。", + 'zh-cn': "對手的1隻寶可夢受到50點傷害。這個招式的傷害不計算弱點・抵抗力與受到傷害的寶可夢身上的附加效果。" + } + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + ja: "しっこくのやいば", + id: "Pisau Hitam Kelam", + th: "ดาบทมิฬ", + 'zh-tw': "漆黑利刃", + 'zh-cn': "漆黑利刃" + }, + + damage: 140, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/093.ts b/data-asia/SV/SV8a/093.ts new file mode 100644 index 000000000..ef13948bf --- /dev/null +++ b/data-asia/SV/SV8a/093.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブラッキーex", + id: "Umbreon ex", + th: "แบล็กกีex", + 'zh-tw': "月亮伊布ex", + 'zh-cn': "月亮伊布ex" + }, + + illustrator: "takuyoa", + rarity: "Double rare", + category: "Pokemon", + hp: 280, + types: ["Darkness"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + ja: "ムーンミラージュ", + id: "Moon Mirage", + th: "มูนมิราจ", + 'zh-tw': "月亮幻想", + 'zh-cn': "月亮幻想" + }, + + damage: 160, + + effect: { + ja: "相手のバトルポケモンをこんらんにする。", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]", + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。" + } + }, { + cost: ["Lightning", "Psychic", "Darkness"], + + name: { + ja: "オニキス", + id: "Onyx", + th: "โอนิกซ์", + 'zh-tw': "縞瑪瑙", + 'zh-cn': "縞瑪瑙" + }, + + effect: { + ja: "このポケモンについているエネルギーをすべてトラッシュし、自分のサイドを1枚とる。", + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash, lalu ambil 1 lembar Kartu Point sendiri.", + th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ทั้งหมดที่ตำแหน่งทิ้งการ์ด หยิบการ์ดรางวัล ฝ่ายเรา 1 ใบ", + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄,獲得1張自己的獎賞卡。", + 'zh-cn': "將這隻寶可夢身上附加的能量卡全部丟棄,獲得1張自己的獎賞卡。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/094.ts b/data-asia/SV/SV8a/094.ts new file mode 100644 index 000000000..b7ad2b542 --- /dev/null +++ b/data-asia/SV/SV8a/094.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ヤブクロン", + id: "Trubbish", + th: "ยาบุคุรอน", + 'zh-tw': "破破袋", + 'zh-cn': "破破袋" + }, + + illustrator: "Miki Tanaka", + rarity: "None", + category: "Pokemon", + dexId: [568], + hp: 70, + types: ["Darkness"], + + description: { + ja: "不衛生な 場所が 好き。 ゴミで 汚したまま 放っておくと 部屋にも 現れて 棲みつく。", + id: "Trubbish menyukai tempat yang tidak higienis. Jika kamar tidak dibersihkan dan dibiarkan dalam keadaan kotor oleh sampah, ia pun akan muncul dan menetap di kamar tersebut.", + th: "ชอบที่ไม่ถูกสุขอนามัย ถ้าทิ้งขยะให้สกปรกจะปรากฏตัวขึ้นและอาศัยอยู่ในห้อง", + 'zh-tw': "喜歡不衛生的地方。 如果不及時清理家裡的垃圾, 破破袋就會過來居住。", + 'zh-cn': "喜歡不衛生的地方。 如果不及時清理家裡的垃圾, 破破袋就會過來居住。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "ガスでつつむ", + id: "Gas yang Menyelimuti", + th: "ห่อหุ้มด้วยแก๊ส", + 'zh-tw': "瓦斯包圍", + 'zh-cn': "瓦斯包圍" + }, + + damage: 10 + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + ja: "ベノムヒット", + id: "Venom Hit", + th: "เวนอมฮิต", + 'zh-tw': "毒液一擊", + 'zh-cn': "毒液一擊" + }, + + damage: 30, + + effect: { + ja: "相手のバトルポケモンをどくにする。", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]", + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。", + 'zh-cn': "將對手的戰鬥寶可夢【中毒】。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/095.ts b/data-asia/SV/SV8a/095.ts new file mode 100644 index 000000000..e0f17bd2a --- /dev/null +++ b/data-asia/SV/SV8a/095.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ダストダス", + id: "Garbodor", + th: "ดัสต์ดาส", + 'zh-tw': "灰塵山", + 'zh-cn': "灰塵山" + }, + + illustrator: "Aya Kusube", + rarity: "None", + category: "Pokemon", + dexId: [569], + hp: 120, + types: ["Darkness"], + + description: { + ja: "右腕から 出す 毒液は 弱った 生物が 浴びれば 即死するほど 危険な シロモノ。", + id: "Cairan beracun yang dikeluarkan dari lengan kanan Garbodor sangat berbahaya sehingga makhluk hidup yang sedang lemah akan mati seketika jika bermandikan cairan tersebut.", + th: "ของเหลวพิษที่ออกมาจากแขนขวา ถ้าสิ่งมีชีวิตที่อ่อนแอโดนเข้าไปล่ะก็อันตรายถึงตายในทันที", + 'zh-tw': "從右臂噴出的毒液十分危險, 虛弱的生物只要一沾到, 立刻就會丟掉性命。", + 'zh-cn': "從右臂噴出的毒液十分危險, 虛弱的生物只要一沾到, 立刻就會丟掉性命。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "なげすて", + id: "Lempar Buang", + th: "ปาทิ้ง", + 'zh-tw': "丟棄", + 'zh-cn': "丟棄" + }, + + damage: "50×", + + effect: { + ja: "自分の手札から「ポケモンのどうぐ」を好きなだけトラッシュし、その枚数×50ダメージ。", + id: "Buang sesukanya Pokémon Tool dari Kartu Pegangan sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 50 untuk tiap lembarnya.", + th: "ทิ้งการ์ด [ไอเท็มติดโปเกมอน] จากบนมือฝ่ายเราตามจำนวนที่ชอบที่ตำแหน่งทิ้งการ์ด แดเมจจะเท่ากับจำนวนการ์ดนั้น x50", + 'zh-tw': "從自己的手牌將任意數量的「寶可夢道具」卡丟棄,造成其張數×50點傷害。", + 'zh-cn': "從自己的手牌將任意數量的「寶可夢道具」卡丟棄,造成其張數×50點傷害。" + } + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + ja: "ベノムヒット", + id: "Venom Hit", + th: "เวนอมฮิต", + 'zh-tw': "毒液一擊", + 'zh-cn': "毒液一擊" + }, + + damage: 80, + + effect: { + ja: "相手のバトルポケモンをどくにする。", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]", + 'zh-tw': "將對手的戰鬥寶可夢【中毒】。", + 'zh-cn': "將對手的戰鬥寶可夢【中毒】。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/096.ts b/data-asia/SV/SV8a/096.ts new file mode 100644 index 000000000..cd429cfab --- /dev/null +++ b/data-asia/SV/SV8a/096.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ゾロア", + id: "Zorua", + th: "โซรัว", + 'zh-tw': "索羅亞", + 'zh-cn': "索羅亞" + }, + + illustrator: "Yuu Nishida", + rarity: "None", + category: "Pokemon", + dexId: [570], + hp: 70, + types: ["Darkness"], + + description: { + ja: "人や ほかの ポケモンに 化ける。 自分の 正体を 隠すことで 危険から 身を 守っているのだ。", + id: "Zorua menjelma menjadi manusia atau Pokémon lain. Dengan menyembunyikan identitasnya, Pokémon ini melindungi dirinya dari bahaya.", + th: "แปลงกายเป็นคนหรือโปเกมอนตัวอื่น ซ่อนตัวตนที่แท้จริงเพื่อปกป้องตัวเองจากอันตราย", + 'zh-tw': "會化為人類或其他的寶可夢。 透過隱藏自己原本的面貌, 保護自己不遇危險。", + 'zh-cn': "會化為人類或其他的寶可夢。 透過隱藏自己原本的面貌, 保護自己不遇危險。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ふむ", + id: "Menginjak", + th: "เหยียบ", + 'zh-tw': "踩", + 'zh-cn': "踩" + }, + + damage: 10 + }, { + cost: ["Darkness", "Colorless"], + + name: { + ja: "ダブルひっかき", + id: "Cakaran Ganda", + th: "ข่วนทวีคูณ", + 'zh-tw': "雙重抓", + 'zh-cn': "雙重抓" + }, + + damage: "20×", + + effect: { + ja: "コインを2回投げ、オモテの数×20ダメージ。", + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20", + 'zh-tw': "擲2次硬幣,造成正面出現的次數×20點傷害。", + 'zh-cn': "擲2次硬幣,造成正面出現的次數×20點傷害。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/097.ts b/data-asia/SV/SV8a/097.ts new file mode 100644 index 000000000..ec97bbcf8 --- /dev/null +++ b/data-asia/SV/SV8a/097.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ゾロアーク", + id: "Zoroark", + th: "โซโรอาร์ค", + 'zh-tw': "索羅亞克", + 'zh-cn': "索羅亞克" + }, + + illustrator: "nagimiso", + rarity: "None", + category: "Pokemon", + dexId: [571], + hp: 120, + types: ["Darkness"], + + description: { + ja: "いっぺんに 大勢の 人を 化かす 力を 持つ。 幻の 景色を 見せて 棲み処を 守る。", + id: "Zoroark memiliki kekuatan untuk mengelabui orang banyak secara bersamaan. Pokémon ini memperlihatkan pemandangan ilusi untuk melindungi sarangnya.", + th: "มีพลังที่สามารถหลอกคนจำนวนมากได้พร้อม ๆ กัน จะสร้างภาพลวงตาขึ้นมาเพื่อปกป้องรัง", + 'zh-tw': "有著一口氣迷惑許多人的力量。 會讓人看見虛幻的景色, 以保護自己的居所。", + 'zh-cn': "有著一口氣迷惑許多人的力量。 會讓人看見虛幻的景色, 以保護自己的居所。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "げんえいジャック", + id: "Pembajakan Fantom", + th: "โจรกรรมลวงตา", + 'zh-tw': "幻影劫持", + 'zh-cn': "幻影劫持" + }, + + damage: "60×", + + effect: { + ja: "相手の場の「ポケモンex・V」の数×60ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 60 untuk tiap Pokémon {ex}/{V} di Arena lawan.", + th: "แดเมจจะเท่ากับจำนวน[โปเกมอน【ex】 /【V】] บนกระดานฝ่ายตรงข้าม x60", + 'zh-tw': "造成對手的場上的「寶可夢【ex】・【V】」的數量×60點傷害。", + 'zh-cn': "造成對手的場上的「寶可夢【ex】・【V】」的數量×60點傷害。" + } + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + ja: "ツメできりさく", + id: "Cakar Penyayat", + th: "กรงเล็บฉีกร่าง", + 'zh-tw': "利爪劈擊", + 'zh-cn': "利爪劈擊" + }, + + damage: 110 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/098.ts b/data-asia/SV/SV8a/098.ts new file mode 100644 index 000000000..5b5f1358e --- /dev/null +++ b/data-asia/SV/SV8a/098.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "モルペコ", + id: "Morpeko", + th: "โมรุเปโกะ", + 'zh-tw': "莫魯貝可", + 'zh-cn': "莫魯貝可" + }, + + illustrator: "Cona Nitanda", + rarity: "None", + category: "Pokemon", + dexId: [877], + hp: 70, + types: ["Darkness"], + + description: { + ja: "空腹ホルモンで 性質が 変化。 お腹が 満たされるまで 悪の 限りを つくす。", + id: "Sifat Morpeko berubah akibat hormon lapar. Pokémon ini mengamuk bagai makhluk kegelapan hingga perutnya kenyang.", + th: "นิสัยจะเปลี่ยนเพราะฮอร์โมนที่ออกมาตอนท้องว่าง จะทำความชั่วร้ายจนถึงขีดสุดจนกว่าท้องมันจะอิ่ม", + 'zh-tw': "饑餓荷爾蒙改變了牠的性情。 牠會做盡一切的壞事, 直到把肚子填飽為止。", + 'zh-cn': "饑餓荷爾蒙改變了牠的性情。 牠會做盡一切的壞事, 直到把肚子填飽為止。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "はらへりダッシュ", + id: "Lari Kencang Perut Lapar", + th: "ท้องกิ่วพุ่งพรวด", + 'zh-tw': "飢餓衝刺", + 'zh-cn': "飢餓衝刺" + }, + + effect: { + ja: "このポケモンにエネルギーがついていないなら、このポケモンのにげるためのエネルギーは、すべてなくなる。", + id: "Jika Pokémon ini tidak mengenakan Energi, Pokémon ini menjadi tidak membutuhkan Energi untuk Mundur.", + th: "ถ้าโปเกมอนนี้ไม่มีพลังงานติดอยู่ พลังงานสำหรับ[หนี]ของโปเกมอนนี้ ทั้งหมดจะหายไป", + 'zh-tw': "若這隻寶可夢身上沒有附加能量卡,則這隻寶可夢【撤退】所需的能量全部消除。", + 'zh-cn': "若這隻寶可夢身上沒有附加能量卡,則這隻寶可夢【撤退】所需的能量全部消除。" + } + }], + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + ja: "エネしゃりん", + id: "Roda Energi", + th: "กงล้อพลังงาน", + 'zh-tw': "能量車輪", + 'zh-cn': "能量車輪" + }, + + damage: 70, + + effect: { + ja: "このポケモンについているエネルギーを2個選び、ベンチポケモン1匹につけ替える。", + id: "Pilih 2 Energi {Kegelapan} yang dikenakan pada Pokémon ini, lalu pindahkan ke 1 Pokémon Cadangan.", + th: "เลือกพลังงาน[ความมืด]ที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ย้ายไปติดกับโปเกมอนบนเบนช์ 1 ตัว", + 'zh-tw': "選擇2個這隻寶可夢身上附加的【惡】能量,改附於1隻備戰寶可夢身上。", + 'zh-cn': "選擇2個這隻寶可夢身上附加的【惡】能量,改附於1隻備戰寶可夢身上。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/099.ts b/data-asia/SV/SV8a/099.ts new file mode 100644 index 000000000..2995aa5b9 --- /dev/null +++ b/data-asia/SV/SV8a/099.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アラブルタケ", + id: "Brute Bonnet", + th: "เห็ดคลุ้มคลั่ง", + 'zh-tw': "猛惡菇", + 'zh-cn': "猛惡菇" + }, + + illustrator: "Anesaki Dynamic", + rarity: "None", + category: "Pokemon", + dexId: [986], + hp: 120, + types: ["Darkness"], + + description: { + ja: "ある本の中で アラブルタケと 記されていた 生物は このポケモンの 可能性がある。", + id: "Terdapat kemungkinan bahwa Pokémon ini merupakan makhluk hidup yang tertera sebagai Brute Bonnet dalam suatu buku.", + th: "มีความเป็นไปได้ว่าโปเกมอนตัวนี้คือสิ่งมีชีวิตที่เรียกว่าเห็ดคลุ้มคลั่งซึ่งถูกระบุไว้ในหนังสือเล่มหนึ่ง", + 'zh-tw': "某本書裡記載的一種 叫做猛惡菇的生物, 有可能就是這隻寶可夢。", + 'zh-cn': "某本書裡記載的一種 叫做猛惡菇的生物, 有可能就是這隻寶可夢。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "もうどくふんじん", + id: "Bubuk Debu Racun Ekstrem", + th: "ผงฝุ่นพิษร้ายแรง", + 'zh-tw': "劇毒粉塵", + 'zh-cn': "劇毒粉塵" + }, + + effect: { + ja: "このポケモンに「ブーストエナジー 古代」がついているなら、自分の番に1回使える。おたがいのバトルポケモンを、それぞれどくにする。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini mengenakan Pemacu Energi Purba. Ubah kondisi Pokémon Bertarung kedua pemain masing-masing menjadi Racun.", + th: "ถ้าโปเกมอนนี้มี [บูสต์เอนเนอร์จี้ โบราณ] ติดอยู่ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ทำให้โปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่าย แต่ละตัวเป็นสภาวะ[พิษ]", + 'zh-tw': "若這隻寶可夢身上附有「驅勁能量 古代」,則在自己的回合時可使用1次。將雙方的戰鬥寶可夢【中毒】。", + 'zh-cn': "若這隻寶可夢身上附有「驅勁能量 古代」,則在自己的回合時可使用1次。將雙方的戰鬥寶可夢【中毒】。" + } + }], + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + ja: "あばれハンマー", + id: "Palu Mengamuk", + th: "ค้อนคลั่ง", + 'zh-tw': "暴亂之錘", + 'zh-cn': "暴亂之錘" + }, + + damage: 120, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/100.ts b/data-asia/SV/SV8a/100.ts new file mode 100644 index 000000000..50b46df37 --- /dev/null +++ b/data-asia/SV/SV8a/100.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "トドロクツキ", + id: "Roaring Moon", + th: "จันทร์คำรน", + 'zh-tw': "轟鳴月", + 'zh-cn': "轟鳴月" + }, + + illustrator: "hncl", + rarity: "None", + category: "Pokemon", + dexId: [1005], + hp: 140, + types: ["Darkness"], + + description: { + ja: "謎の 多い 探検記の中で トドロクツキという 名で 記された 生物の 可能性が ある。", + id: "Terdapat kemungkinan Pokémon ini adalah makhluk hidup bernama Roaring Moon yang tertulis dalam jurnal ekspedisi yang penuh misteri.", + th: "มีโอกาสที่จะเป็นสิ่งมีชีวิตที่บันทึกไว้ว่าชื่อจันทร์คำรนในบันทึกการสำรวจที่เต็มไปด้วยปริศนา", + 'zh-tw': "牠有可能就是在謎團重重的 探險記裡,以轟鳴月這個 名字被記載下來的生物。", + 'zh-cn': "牠有可能就是在謎團重重的 探險記裡,以轟鳴月這個 名字被記載下來的生物。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + ja: "あだうちやばね", + id: "Bulu Panah Pembalasan", + th: "ปีกลูกศรสนองแค้น", + 'zh-tw': "雪恨箭羽", + 'zh-cn': "雪恨箭羽" + }, + + damage: "70+", + + effect: { + ja: "自分のトラッシュにある「古代」のカードの枚数×10ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap lembar kartu Purba yang ada di Trash sendiri.", + th: "แดเมจจะเพิ่มตามจำนวนการ์ด [โบราณ] ที่อยู่บนตำแหน่งทิ้งการ์ดฝ่ายเรา x10", + 'zh-tw': "增加自己的棄牌區的「古代」卡的張數×10點傷害。", + 'zh-cn': "增加自己的棄牌區的「古代」卡的張數×10點傷害。" + } + }, { + cost: ["Darkness", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "スピードウイング", + id: "Speed Wing", + th: "สปีดวิง", + 'zh-tw': "高速之翼", + 'zh-cn': "高速之翼" + }, + + damage: 120 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/101.ts b/data-asia/SV/SV8a/101.ts new file mode 100644 index 000000000..ad89eb7eb --- /dev/null +++ b/data-asia/SV/SV8a/101.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "トドロクツキex", + id: "Roaring Moon ex", + th: "จันทร์คำรนex", + 'zh-tw': "轟鳴月ex", + 'zh-cn': "轟鳴月ex" + }, + + illustrator: "takuyoa", + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + ja: "くるいえぐる", + id: "Mengoyak Gila-gilaan", + th: "วิปลาสเจาะทะลวง", + 'zh-tw': "瘋癲攻擊", + 'zh-cn': "瘋癲攻擊" + }, + + effect: { + ja: "相手のバトルポケモンをきぜつさせる。その後、このポケモンに200ダメージ。", + id: "Pokémon Bertarung lawan KO. Setelah itu, berikan kerusakan sejumlah 200 kepada Pokémon ini.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ] หลังจากนั้น ทำแดเมจ 200 กับโปเกมอนนี้", + 'zh-tw': "將對手的戰鬥寶可夢【昏厥】。然後,這隻寶可夢受到200點傷害。", + 'zh-cn': "將對手的戰鬥寶可夢【昏厥】。然後,這隻寶可夢受到200點傷害。" + } + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + ja: "カラミティストーム", + id: "Calamity Storm", + th: "คาลามิตี้สตอร์ม", + 'zh-tw': "災厄風暴", + 'zh-cn': "災厄風暴" + }, + + damage: "100+", + + effect: { + ja: "のぞむなら、場に出ているスタジアムをトラッシュする。その場合、120ダメージ追加。", + id: "Pemain dapat membuang Stadium yang ada di Arena ke Trash. Jika dilakukan, kerusakan yang diberikan bertambah sejumlah 120.", + th: "หากต้องการ ทิ้งการ์ดสเตเดียมที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ด เมื่อทำเช่นนั้นแล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 120", + 'zh-tw': "若希望,將場上的競技場卡丟棄。這個情況下,增加120點傷害。", + 'zh-cn': "若希望,將場上的競技場卡丟棄。這個情況下,增加120點傷害。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/102.ts b/data-asia/SV/SV8a/102.ts new file mode 100644 index 000000000..93b715fca --- /dev/null +++ b/data-asia/SV/SV8a/102.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イイネイヌex", + id: "Okidogi ex", + th: "อี้เนะอินุex", + 'zh-tw': "夠讚狗ex", + 'zh-cn': "夠讚狗ex" + }, + + illustrator: "takuyoa", + rarity: "Double rare", + category: "Pokemon", + hp: 250, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ポイズンマッスル", + id: "Poison Muscle", + th: "พอยซันมัสเซิล", + 'zh-tw': "猛毒筋力", + 'zh-cn': "猛毒筋力" + }, + + effect: { + ja: "自分の山札から「基本エネルギー」を2枚まで選び、このポケモンにつける。そして山札を切る。つけた場合、このポケモンをどくにする。", + id: "Pilih paling banyak 2 lembar Energi Dasar {Kegelapan} dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck. Jika dikenakan, ubah kondisi Pokémon ini menjadi Racun.", + th: "เลือกการ์ด [พลังงานพื้นฐาน[ความมืด]] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด เมื่อติดแล้ว ทำให้โปเกมอนนี้เป็นสภาวะ[พิษ]", + 'zh-tw': "從自己的牌庫選擇最多2張「基本【惡】能量」卡,附於這隻寶可夢身上。並且重洗牌庫。附上卡的情況下,將這隻寶可夢【中毒】。", + 'zh-cn': "從自己的牌庫選擇最多2張「基本【惡】能量」卡,附於這隻寶可夢身上。並且重洗牌庫。附上卡的情況下,將這隻寶可夢【中毒】。" + } + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + ja: "クレイジーチェーン", + id: "Crazy Chain", + th: "‌เครซีเชน", + 'zh-tw': "瘋狂連鎖", + 'zh-cn': "瘋狂連鎖" + }, + + damage: "130+", + + effect: { + ja: "このポケモンがどくなら、130ダメージ追加。", + id: "Jika Pokémon ini mengalami kondisi Racun, kerusakan yang diberikan bertambah sejumlah 130.", + th: "ถ้าโปเกมอนนี้เป็นสภาวะ[พิษ] การโจมตีนี้จะเพิ่มแดเมจอีก 130", + 'zh-tw': "若這隻寶可夢【中毒】,則增加130點傷害。", + 'zh-cn': "若這隻寶可夢【中毒】,則增加130點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/103.ts b/data-asia/SV/SV8a/103.ts new file mode 100644 index 000000000..57fa13e11 --- /dev/null +++ b/data-asia/SV/SV8a/103.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "マシマシラex", + id: "Munkidori‌ ex", + th: "มาชิมาชิระex", + 'zh-tw': "願增猿ex", + 'zh-cn': "願增猿ex" + }, + + illustrator: "takuyoa", + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "ひょうしぬけ", + id: "Bikin Kecele", + th: "ผิดคาด", + 'zh-tw': "鬆口氣", + 'zh-cn': "鬆口氣" + }, + + effect: { + ja: "このポケモンが、相手のポケモンからワザのダメージを受けてきぜつしたとき、自分の場に「モモワロウex」がいるなら、とられるサイドは1枚少なくなる。", + id: "Jika ada Pecharunt {ex} di Arena sendiri saat Pokémon ini KO karena menerima kerusakan akibat serangan dari Pokémon lawan, Kartu Point yang diambil lawan berkurang 1 lembar.", + th: "เมื่อโปเกมอนนี้ ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้ามและ[หมดสภาพ]แล้ว ถ้าบนกระดานฝ่ายเรามี [โมโมวาโร่【ex】] อยู่ การ์ดรางวัลที่หยิบได้จะลดลง 1 ใบ", + 'zh-tw': "這隻寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,若自己的場上有「桃歹郎【ex】」,則被獲得的獎賞卡減少1張。", + 'zh-cn': "這隻寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,若自己的場上有「桃歹郎【ex】」,則被獲得的獎賞卡減少1張。" + } + }], + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + ja: "ダーティヘッド", + id: "Dirty Headbutt", + th: "‌เดอร์ตี้เฮด", + 'zh-tw': "惡劣頭擊", + 'zh-cn': "惡劣頭擊" + }, + + damage: 190, + + effect: { + ja: "次の自分の番、このポケモンは「ダーティヘッド」が使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Dirty Headbutt.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [เดอร์ตี้เฮด] ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「惡劣頭擊」。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「惡劣頭擊」。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/104.ts b/data-asia/SV/SV8a/104.ts new file mode 100644 index 000000000..4095b37e5 --- /dev/null +++ b/data-asia/SV/SV8a/104.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "キチキギスex", + id: "Fezandipiti ex", + th: "คิจิคิกิสึex", + 'zh-tw': "吉雉雞ex", + 'zh-cn': "吉雉雞ex" + }, + + illustrator: "takuyoa", + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "さかてにとる", + id: "Kesempatan dalam Kesempitan", + th: "‌ พลิกวิกฤต", + 'zh-tw': "扭轉乾坤", + 'zh-cn': "扭轉乾坤" + }, + + effect: { + ja: "前の相手の番に、自分のポケモンがきぜつしていたなら、自分の番に1回使える。自分の山札を3枚引く。この番、すでに別の「さかてにとる」を使っていたなら、この特性は使えない。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika pada giliran lawan sebelumnya, ada Pokémon sendiri yang KO. Ambil 3 kartu dari atas Deck sendiri. Jika pada giliran ini, Kesempatan dalam Kesempitan lainnya telah digunakan, Ability ini tidak dapat digunakan.", + th: "ในเทิร์นก่อนของฝ่ายตรงข้าม ถ้าโปเกมอนฝ่ายเรา[หมดสภาพ] ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา เทิร์นนี้ ถ้าใช้ [พลิกวิกฤต] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้", + 'zh-tw': "在上個對手的回合,若自己的寶可夢【昏厥】了,則在自己的回合時可使用1次。從自己的牌庫抽出3張卡。在這個回合,若已經使出了其他的「扭轉乾坤」,則這個特性無法使用。", + 'zh-cn': "在上個對手的回合,若自己的寶可夢【昏厥】了,則在自己的回合時可使用1次。從自己的牌庫抽出3張卡。在這個回合,若已經使出了其他的「扭轉乾坤」,則這個特性無法使用。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "クルーエルアロー", + id: "Cruel Arrow", + th: "ครูเอลแอร์โรว์", + 'zh-tw': "殘酷箭", + 'zh-cn': "殘酷箭" + }, + + effect: { + ja: "相手のポケモン1匹に、100ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + id: "Serangan ini memberikan kerusakan sejumlah 100 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "ทำแดเมจ 100 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + 'zh-tw': "對手的1隻寶可夢受到100點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻寶可夢受到100點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/105.ts b/data-asia/SV/SV8a/105.ts new file mode 100644 index 000000000..75ab9631f --- /dev/null +++ b/data-asia/SV/SV8a/105.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "モモワロウex", + id: "Pecharunt ex", + th: "โมโมวาโร่ex", + 'zh-tw': "桃歹郎ex", + 'zh-cn': "桃歹郎ex" + }, + + illustrator: "aky CG Works", + rarity: "Double rare", + category: "Pokemon", + hp: 190, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "しはいのくさり", + id: "Rantai Dominasi", + th: "‌‌ โซ่ครอบงำ", + 'zh-tw': "支配鎖鏈", + 'zh-cn': "支配鎖鏈" + }, + + effect: { + ja: "自分の番に1回使える。自分のベンチのポケモン(「モモワロウex」をのぞく)を1匹選び、バトルポケモンと入れ替える。その後、新しいバトルポケモンをどくにする。この番、すでに別の「しはいのくさり」を使っていたなら、この特性は使えない。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 Pokémon {Kegelapan} (selain Pecharunt {ex}) di Cadangan sendiri, lalu tukar dengan Pokémon Bertarung. Setelah itu, ubah kondisi Pokémon Bertarung yang baru menjadi Racun. Jika pada giliran ini, Rantai Dominasi lainnya telah digunakan, Ability ini tidak dapat digunakan.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกโปเกมอน[ความมืด]บนเบนช์ฝ่ายเรา (ยกเว้น [โมโมวาโร่【ex】]) 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้ หลังจากนั้น ทำให้โปเกมอนใหม่บนตำแหน่งต่อสู้เป็นสภาวะ[พิษ] เทิร์นนี้ ถ้าใช้ [โซ่ครอบงำ] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้", + 'zh-tw': "在自己的回合時可使用1次。選擇1隻自己的備戰區的【惡】寶可夢(「桃歹郎【ex】」除外),與戰鬥寶可夢互換。然後,將新的戰鬥寶可夢【中毒】。在這個回合,若已經使出了其他的「支配鎖鏈」,則這個特性無法使用。", + 'zh-cn': "在自己的回合時可使用1次。選擇1隻自己的備戰區的【惡】寶可夢(「桃歹郎【ex】」除外),與戰鬥寶可夢互換。然後,將新的戰鬥寶可夢【中毒】。在這個回合,若已經使出了其他的「支配鎖鏈」,則這個特性無法使用。" + } + }], + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + ja: "イライラバースト", + id: "Ledakan Marah-marah", + th: "หงุดหงิดระเบิด", + 'zh-tw': "煩煩爆炸", + 'zh-cn': "煩煩爆炸" + }, + + damage: "60×", + + effect: { + ja: "相手がすでにとったサイドの枚数×60ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 60 untuk tiap lembar Kartu Point yang telah diambil lawan.", + th: "แดเมจจะเท่ากับจำนวนการ์ดรางวัลที่ฝ่ายตรงข้ามหยิบไปแล้ว x60", + 'zh-tw': "造成對手已經獲得的獎賞卡的張數×60點傷害。", + 'zh-cn': "造成對手已經獲得的獎賞卡的張數×60點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/106.ts b/data-asia/SV/SV8a/106.ts new file mode 100644 index 000000000..270a26893 --- /dev/null +++ b/data-asia/SV/SV8a/106.ts @@ -0,0 +1,80 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ダンバル", + id: "Beldum", + th: "ดันบัล", + 'zh-tw': "鐵啞鈴", + 'zh-cn': "鐵啞鈴" + }, + + illustrator: "hatachu", + rarity: "None", + category: "Pokemon", + dexId: [374], + hp: 70, + types: ["Metal"], + + description: { + ja: "磁力を お尻から 発生させ 敵を 勢いよく 吸いよせて 鋭い ツメで 串刺しにする。", + id: "Beldum menghasilkan kekuatan magnet dari bagian belakang tubuhnya untuk mengisap musuh mendekat dengan kuat lalu menusuknya hingga tembus dengan cakarnya yang tajam.", + th: "ปล่อยอำนาจแม่เหล็กออกมาทางก้น ดูดเอาศัตรูให้พุ่งเข้าหาและเสียบทะลุด้วยกรงเล็บอันแหลมคม", + 'zh-tw': "會從臀部放出磁力 將敵人迅猛地吸到身邊, 再以銳利的爪子刺穿對方。", + 'zh-cn': "會從臀部放出磁力 將敵人迅猛地吸到身邊, 再以銳利的爪子刺穿對方。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + ja: "ツメをたてる", + id: "Memasang Cakar", + th: "กางกรงเล็บ", + 'zh-tw': "豎爪", + 'zh-cn': "豎爪" + }, + + damage: 10 + }, { + cost: ["Metal", "Colorless", "Colorless"], + + name: { + ja: "アイアンタックル", + id: "Iron Tackle", + th: "ไอออนแท็กเกิล", + 'zh-tw': "鐵之衝撞", + 'zh-cn': "鐵之衝撞" + }, + + damage: 50, + + effect: { + ja: "このポケモンにも10ダメージ。", + id: "Pokémon ini juga menerima kerusakan sejumlah 10.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย", + 'zh-tw': "這隻寶可夢也受到10點傷害。", + 'zh-cn': "這隻寶可夢也受到10點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/107.ts b/data-asia/SV/SV8a/107.ts new file mode 100644 index 000000000..0963d781a --- /dev/null +++ b/data-asia/SV/SV8a/107.ts @@ -0,0 +1,80 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "メタング", + id: "Metang", + th: "เมแทงก์", + 'zh-tw': "金屬怪", + 'zh-cn': "金屬怪" + }, + + illustrator: "Uta", + rarity: "None", + category: "Pokemon", + dexId: [375], + hp: 100, + types: ["Metal"], + + description: { + ja: "2匹の ダンバルが 磁力で くっついた。 2つの 脳みそにより サイコパワーは 2倍に 強化。", + id: "Dua ekor Beldum yang menempel menggunakan kekuatan magnet. Berkat dua otaknya, kekuatan psikokinesis Metang menguat dua kali lipat.", + th: "ดันบัล 2 ตัวที่เชื่อมติดกันด้วยอำนาจแม่เหล็ก ด้วยเนื้อเยื่อสมอง 2 ก้อนทำให้พลังจิตนั้นแข็งแกร่งขึ้น 2 เท่า", + 'zh-tw': "由2隻鐵啞鈴以磁力結合 而成。因為有2個大腦, 精神力量也強化成2倍了。", + 'zh-cn': "由2隻鐵啞鈴以磁力結合 而成。因為有2個大腦, 精神力量也強化成2倍了。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "メタルメーカー", + id: "Metal Maker", + th: "เมทัลเมกเกอร์", + 'zh-tw': "金屬製造者", + 'zh-cn': "金屬製造者" + }, + + effect: { + ja: "自分の番に1回使える。自分の山札を上から4枚見て、その中から「基本エネルギー」を好きなだけ選び、自分のポケモンに好きなようにつける。残りのカードはすべてウラにして切り、山札の下にもどす。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Lihat 4 kartu dari atas Deck sendiri, pilih sesukanya Energi Dasar {Logam} di antaranya, lalu kenakan sesukanya pada Pokémon sendiri. Kocok semua sisa kartu dengan sisi depan menghadap ke bawah, lalu kembalikan ke bawah Deck.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ดูการ์ด 4 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[โลหะ]] จากในนั้นตามจำนวนที่ชอบ ติดที่โปเกมอนฝ่ายเราตามชอบ สับการ์ดที่เหลือทั้งหมดโดยไม่ดูหน้าการ์ด ใส่กลับไปด้านล่างของสำรับการ์ด", + 'zh-tw': "在自己的回合時可使用1次。查看自己的牌庫上方4張卡,從其中選擇任意數量的「基本【鋼】能量」卡,以任意方式附於自己的寶可夢身上。將剩餘卡全部翻回反面並重洗,放回牌庫下方。", + 'zh-cn': "在自己的回合時可使用1次。查看自己的牌庫上方4張卡,從其中選擇任意數量的「基本【鋼】能量」卡,以任意方式附於自己的寶可夢身上。將剩餘卡全部翻回反面並重洗,放回牌庫下方。" + } + }], + + attacks: [{ + cost: ["Metal", "Colorless", "Colorless"], + + name: { + ja: "ビーム", + id: "Beam", + th: "ลำแสง", + 'zh-tw': "光束", + 'zh-cn': "光束" + }, + + damage: 60 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/108.ts b/data-asia/SV/SV8a/108.ts new file mode 100644 index 000000000..4faf676ca --- /dev/null +++ b/data-asia/SV/SV8a/108.ts @@ -0,0 +1,86 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ジラーチ", + id: "Jirachi", + th: "จิราชิ", + 'zh-tw': "基拉祈", + 'zh-cn': "基拉祈" + }, + + illustrator: "Naoyo Kimura", + rarity: "None", + category: "Pokemon", + dexId: [385], + hp: 70, + types: ["Metal"], + + description: { + ja: "1000年間で 7日だけ 目を 覚まし どんな 願い事でも かなえる 力を 使うという。", + id: "Dikatakan bahwa Jirachi bangun hanya 7 hari dalam 1000 tahun dan menggunakan kekuatan yang dapat mewujudkan harapan apa pun.", + th: "กล่าวกันว่าใน 1000 ปี มันจะลืมตาตื่นขึ้นมาเพียงแค่ 7 วัน และใช้พลังทำให้คำอธิษฐานใด ๆ เป็นจริงได้", + 'zh-tw': "據說牠在1000年之中 只有7天時間會醒過來, 使用能實現任何願望的力量。", + 'zh-cn': "據說牠在1000年之中 只有7天時間會醒過來, 使用能實現任何願望的力量。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ステラヴェール", + id: "Tudung Bintang", + th: "ม่านดาวจรัสแสง", + 'zh-tw': "恆星之幕", + 'zh-cn': "恆星之幕" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分のベンチポケモン全員は、相手のたねポケモンが使うワザの効果で、ダメカンがのらない。", + id: "Selama Pokémon ini ada di Arena, semua Pokémon Cadangan sendiri tidak menerima efek untuk meletakkan Token Kerusakan akibat serangan yang digunakan oleh Pokémon Basic lawan.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ โปเกมอนบนเบนช์ฝ่ายเราทุกตัว จะไม่ถูกวางตัวนับแดเมจ ด้วยเอฟเฟกต์ของท่าต่อสู้ที่โปเกมอน[พื้นฐาน]ฝ่ายตรงข้ามใช้", + 'zh-tw': "只要這隻寶可夢在場上,自己的所有備戰寶可夢,不會因對手的【基礎】寶可夢使用招式的效果而被放置傷害指示物。", + 'zh-cn': "只要這隻寶可夢在場上,自己的所有備戰寶可夢,不會因對手的【基礎】寶可夢使用招式的效果而被放置傷害指示物。" + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "エネチャージ", + id: "Energy Charge", + th: "เอนเนอร์จี้ชาร์จ", + 'zh-tw': "蓄能量", + 'zh-cn': "蓄能量" + }, + + effect: { + ja: "自分の山札から基本エネルギーを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "從自己的牌庫選擇最多2張基本能量卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張基本能量卡,在給對手看過後加入手牌。並且重洗牌庫。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/109.ts b/data-asia/SV/SV8a/109.ts new file mode 100644 index 000000000..af9c0ced4 --- /dev/null +++ b/data-asia/SV/SV8a/109.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ヒトツキ", + id: "Honedge", + th: "ฮิโตทซึกิ", + 'zh-tw': "獨劍鞘", + 'zh-cn': "獨劍鞘" + }, + + illustrator: "Nagomi Nijo", + rarity: "None", + category: "Pokemon", + dexId: [679], + hp: 60, + types: ["Metal"], + + description: { + ja: "剣の 鍔の 青い 目玉が ヒトツキの 本体。 古びた 布で 人の 生気を 吸い取る。", + id: "Tubuh asli Honedge adalah bola mata biru di gagang pedang. Pokémon ini mengisap vitalitas manusia menggunakan kain tuanya.", + th: "ตาสีฟ้าบนกระบังดาบคือตัวจริงของฮิโตทซึกิ ดูดเอาพลังชีวิตของคนไปด้วยผ้าเก่า ๆ", + 'zh-tw': "獨劍鞘護手上的 藍色眼珠是牠的本體。 會用陳舊的布吸取人類的精氣。", + 'zh-cn': "獨劍鞘護手上的 藍色眼珠是牠的本體。 會用陳舊的布吸取人類的精氣。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + ja: "とつげき", + id: "Menyerang", + th: "ประจัญบาน", + 'zh-tw': "突擊", + 'zh-cn': "突擊" + }, + + damage: 30, + + effect: { + ja: "このポケモンにも10ダメージ。", + id: "Pokémon ini juga menerima kerusakan sejumlah 10.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย", + 'zh-tw': "這隻寶可夢也受到10點傷害。", + 'zh-cn': "這隻寶可夢也受到10點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/110.ts b/data-asia/SV/SV8a/110.ts new file mode 100644 index 000000000..5ad49b8c2 --- /dev/null +++ b/data-asia/SV/SV8a/110.ts @@ -0,0 +1,80 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ニダンギル", + id: "Doublade", + th: "นิดังกิล", + 'zh-tw': "雙劍鞘", + 'zh-cn': "雙劍鞘" + }, + + illustrator: "Bun Toujo", + rarity: "None", + category: "Pokemon", + dexId: [680], + hp: 90, + types: ["Metal"], + + description: { + ja: "2本の 剣は 攻撃と 防御が 目まぐるしく 入れ替わる 戦法で 獲物を しとめる。", + id: "Doublade menggunakan strategi mengganti posisi menyerang dan bertahan kedua bilah pedang secara terus menerus untuk menghabisi mangsanya.", + th: "ดาบทั้งสองเล่มปราบเหยื่อลงได้ด้วยกลยุทธ์ในการต่อสู้แบบเปลี่ยนกันรุกและรับอย่างรวดเร็ว", + 'zh-tw': "2把劍會用令人眼花繚亂的 速度不斷交替攻擊和防禦, 藉以制服獵物。", + 'zh-cn': "2把劍會用令人眼花繚亂的 速度不斷交替攻擊和防禦, 藉以制服獵物。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "きりさく", + id: "Menyayat", + th: "ฟันแหลก", + 'zh-tw': "劈開", + 'zh-cn': "劈開" + }, + + damage: 20 + }, { + cost: ["Metal", "Colorless"], + + name: { + ja: "スラッシュダウン", + id: "Slash Down", + th: "สแลชดาวน์", + 'zh-tw': "猛擊在地", + 'zh-cn': "猛擊在地" + }, + + damage: 80, + + effect: { + ja: "次の自分の番、このポケモンは「スラッシュダウン」が使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Slash Down.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [สแลชดาวน์] ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「猛擊在地」。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「猛擊在地」。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/111.ts b/data-asia/SV/SV8a/111.ts new file mode 100644 index 000000000..98ca72406 --- /dev/null +++ b/data-asia/SV/SV8a/111.ts @@ -0,0 +1,88 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ギルガルド", + id: "Aegislash", + th: "กิลการ์ด", + 'zh-tw': "堅盾劍怪", + 'zh-cn': "堅盾劍怪" + }, + + illustrator: "Takeshi Nakamura", + rarity: "None", + category: "Pokemon", + dexId: [681], + hp: 150, + types: ["Metal"], + + description: { + ja: "強力な 霊力で 人や ポケモンを 操り ギルガルドに 都合の 良い 国を つくらせた。", + id: "Aegislash dengan kekuatan spiritualnya yang kuat mengendalikan manusia dan Pokémon untuk membuat negara yang menguntungkan baginya.", + th: "กิลการ์ดเคยควบคุมมนุษย์และโปเกมอนด้วยพลังวิญญาณที่แข็งแกร่งเพื่อ ให้สร้างดินแดนตามที่มันต้องการ", + 'zh-tw': "堅盾劍怪曾經用強大的靈力 控制人和寶可夢,建立了 適合自己生活的國家。", + 'zh-cn': "堅盾劍怪曾經用強大的靈力 控制人和寶可夢,建立了 適合自己生活的國家。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + ja: "しんぴのたて", + id: "Perisai Mistis", + th: "โล่ลึกลับ", + 'zh-tw': "神秘之盾", + 'zh-cn': "神秘之盾" + }, + + effect: { + ja: "このポケモンは、相手の「ポケモンex・V」からワザのダメージを受けない。", + id: "Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon {ex}/{V} lawan.", + th: "โปเกมอนนี้ จะไม่ได้รับแดเมจของท่าต่อสู้จาก [โปเกมอน【ex】 /【V】] ฝ่ายตรงข้าม", + 'zh-tw': "這隻寶可夢不會受到對手的「寶可夢【ex】・【V】」招式的傷害。", + 'zh-cn': "這隻寶可夢不會受到對手的「寶可夢【ex】・【V】」招式的傷害。" + } + }], + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + ja: "ハードバッシュ", + id: "Hard Bash", + th: "ตีแรง", + 'zh-tw': "堅硬猛擊", + 'zh-cn': "堅硬猛擊" + }, + + damage: 120, + + effect: { + ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。", + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan.", + th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ ฝ่ายตรงข้ามมาคิด", + 'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/112.ts b/data-asia/SV/SV8a/112.ts new file mode 100644 index 000000000..f25b25e8d --- /dev/null +++ b/data-asia/SV/SV8a/112.ts @@ -0,0 +1,80 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ジュラルドン", + id: "Duraludon", + th: "ดิวรัลดอน", + 'zh-tw': "鋁鋼龍", + 'zh-cn': "鋁鋼龍" + }, + + illustrator: "Takeshi Nakamura", + rarity: "None", + category: "Pokemon", + dexId: [884], + hp: 130, + types: ["Metal"], + + description: { + ja: "金属の ボディは 頑丈だが 熱が こもってしまうので 尻尾の スリットから 放熱している。", + id: "Tubuh logamnya kokoh, tetapi panas cenderung menumpuk sehingga ia selalu mengeluarkan panas dari celah ekornya.", + th: "ร่างกายที่เป็นโลหะนั้นทนทานมาก แต่เก็บความร้อน มันจึงต้องระบายความร้อนออกมาทางร่องที่หาง", + 'zh-tw': "金屬構成的身體雖然堅固 但無法散熱,因此牠會從 尾巴上的縫隙排出熱氣。", + 'zh-cn': "金屬構成的身體雖然堅固 但無法散熱,因此牠會從 尾巴上的縫隙排出熱氣。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + ja: "ぶちかます", + id: "Hantaman Penuh Tenaga", + th: "ตบหนัก", + 'zh-tw': "頭突", + 'zh-cn': "頭突" + }, + + damage: 30 + }, { + cost: ["Metal", "Metal", "Colorless"], + + name: { + ja: "レイジングハンマー", + id: "Raging Hammer", + th: "เรจจิงแฮมเมอร์", + 'zh-tw': "激怒之錘", + 'zh-cn': "激怒之錘" + }, + + damage: "80+", + + effect: { + ja: "このポケモンにのっているダメカンの数×10ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini.", + th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10", + 'zh-tw': "增加這隻寶可夢身上放置的傷害指示物的數量×10點傷害。", + 'zh-cn': "增加這隻寶可夢身上放置的傷害指示物的數量×10點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/113.ts b/data-asia/SV/SV8a/113.ts new file mode 100644 index 000000000..7c6654816 --- /dev/null +++ b/data-asia/SV/SV8a/113.ts @@ -0,0 +1,88 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブリジュラス", + id: "Archaludon", + th: "บริดิวรัส", + 'zh-tw': "鋁鋼橋龍", + 'zh-cn': "鋁鋼橋龍" + }, + + illustrator: "Oswaldo KATO", + rarity: "None", + category: "Pokemon", + dexId: [1018], + hp: 180, + types: ["Metal"], + + description: { + ja: "山中で 穴を 掘り エサを 探す。 落盤に 巻きこまれても へっちゃらなくらい 頑丈。", + id: "Pokémon yang mencari makan dengan menggali lubang di dalam gunung. Ia tangguh sehingga terlibat longsor sekalipun bukanlah masalah baginya.", + th: "ขุดรูในภูเขาเพื่อหาอาหาร มันทนทานมาก แม้จะติดอยู่ในอุโมงค์ถล่มก็ไม่สะเทือน", + 'zh-tw': "會在山裡挖洞來尋找食物。 身體非常堅硬,即使遇到 洞穴坍塌也絲毫不會在意。", + 'zh-cn': "會在山裡挖洞來尋找食物。 身體非常堅硬,即使遇到 洞穴坍塌也絲毫不會在意。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "はがねのかけはし", + id: "Jembatan Penghubung Baja", + th: "สะพานเชื่อมเหล็กกล้า", + 'zh-tw': "鋼之橋", + 'zh-cn': "鋼之橋" + }, + + effect: { + ja: "このポケモンがいるかぎり、エネルギーがついている自分のポケモン全員のにげるためのエネルギーは、すべてなくなる。", + id: "Selama Pokémon ini ada di Arena, semua Pokémon sendiri yang mengenakan Energi {Logam} menjadi tidak membutuhkan Energi untuk Mundur.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ พลังงานสำหรับ[หนี]ของโปเกมอนฝ่ายเราทุกตัวที่มีพลังงาน[โลหะ]ติดอยู่ ทั้งหมดจะหายไป", + 'zh-tw': "只要這隻寶可夢在場上,自己的所有身上附有【鋼】能量的寶可夢【撤退】所需的能量全部消除。", + 'zh-cn': "只要這隻寶可夢在場上,自己的所有身上附有【鋼】能量的寶可夢【撤退】所需的能量全部消除。" + } + }], + + attacks: [{ + cost: ["Metal", "Metal", "Colorless"], + + name: { + ja: "アイアンブラスター", + id: "Iron Blaster", + th: "ไอออนบลัสเตอร์", + 'zh-tw': "鐵之引爆", + 'zh-cn': "鐵之引爆" + }, + + damage: 160, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/114.ts b/data-asia/SV/SV8a/114.ts new file mode 100644 index 000000000..42823ffc2 --- /dev/null +++ b/data-asia/SV/SV8a/114.ts @@ -0,0 +1,78 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブロロン", + id: "Varoom", + th: "โบรรอน", + 'zh-tw': "噗隆隆", + 'zh-cn': "噗隆隆" + }, + + illustrator: "HAGIYA Kaoru", + rarity: "None", + category: "Pokemon", + dexId: [965], + hp: 70, + types: ["Metal"], + + description: { + ja: "鋼の 体が 本体。 岩に 張りつき その成分を エネルギーに 変えて 活動する。", + id: "Tubuh baja Varoom adalah tubuh aslinya. Pokémon ini menempel di batu, mengubah kandungan batu tersebut menjadi energinya, lalu beraktivitas.", + th: "ร่างที่แท้จริงคือส่วนที่เป็นเหล็กกล้า เกาะติดอยู่กับหินแล้วเปลี่ยนส่วนประกอบนั้นให้เป็นพลังงานที่ใช้ในการขับเคลื่อน", + 'zh-tw': "鋼鐵身軀才是本體。 會貼在岩石上將其成分 轉換成活動用的能量。", + 'zh-cn': "鋼鐵身軀才是本體。 會貼在岩石上將其成分 轉換成活動用的能量。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + ja: "こうちょく", + id: "Kaku", + th: "แข็งเกร็ง", + 'zh-tw': "硬化", + 'zh-cn': "硬化" + }, + + effect: { + ja: "次の相手の番、このポケモンが受けるワザのダメージは「-30」される。", + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-30]", + 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。", + 'zh-cn': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。" + } + }, { + cost: ["Metal", "Metal"], + + name: { + ja: "とびだしヘッド", + id: "Sundulan Meloncat", + th: "กระโดดโหม่ง", + 'zh-tw': "魯莽頭擊", + 'zh-cn': "魯莽頭擊" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/115.ts b/data-asia/SV/SV8a/115.ts new file mode 100644 index 000000000..16e7e7cde --- /dev/null +++ b/data-asia/SV/SV8a/115.ts @@ -0,0 +1,88 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブロロローム", + id: "Revavroom", + th: "โบรโรโรม", + 'zh-tw': "普隆隆姆", + 'zh-cn': "普隆隆姆" + }, + + illustrator: "Anesaki Dynamic", + rarity: "None", + category: "Pokemon", + dexId: [966], + hp: 140, + types: ["Metal"], + + description: { + ja: "毒素と 岩の 成分を 混ぜた ガスを 8つに 増えた シリンダーで 爆発させ エネルギーを 作る。", + id: "Revavroom menciptakan energi dengan cara meledakkan gas yang tercampur dari zat beracun dan komponen batu pada silinder motornya yang bertambah menjadi 8.", + th: "ทำให้แก๊สที่เกิดจากการผสมสารพิษกับส่วนประกอบของหินระเบิดด้วยกระบอกสูบที่เพิ่มเป็น 8 อันเพื่อสร้างพลังงาน", + 'zh-tw': "在增加到了8個的汽缸裡 引爆混有毒素和岩石成分的 氣體來製造能量。", + 'zh-cn': "在增加到了8個的汽缸裡 引爆混有毒素和岩石成分的 氣體來製造能量。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "ランブルエンジン", + id: "Rumble Engine", + th: "เครื่องยนต์กระหึ่ม", + 'zh-tw': "轟鳴引擎", + 'zh-cn': "轟鳴引擎" + }, + + effect: { + ja: "自分の番に、自分の手札からエネルギーを1枚トラッシュするなら、1回使える。自分の手札が6枚になるように、山札を引く。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika membuang 1 lembar Energi dari Kartu Pegangan sendiri ke Trash. Ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 6 lembar.", + th: "ในเทิร์นฝ่ายเรา ถ้าทิ้งการ์ดพลังงาน 1 ใบจากบนมือฝ่ายเราที่ตำแหน่งทิ้งการ์ด ใช้ได้ 1 ครั้ง จั่วการ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 6 ใบ", + 'zh-tw': "在自己的回合,若從自己的手牌將1張能量卡丟棄,則可使用1次。從牌庫抽卡直到自己的手牌滿6張為止。", + 'zh-cn': "在自己的回合,若從自己的手牌將1張能量卡丟棄,則可使用1次。從牌庫抽卡直到自己的手牌滿6張為止。" + } + }], + + attacks: [{ + cost: ["Metal", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "はねとばす", + id: "Menghempaskan", + th: "ตบกระเด็น", + 'zh-tw': "擊飛", + 'zh-cn': "擊飛" + }, + + damage: "90+", + + effect: { + ja: "コインを1回投げオモテなら、90ダメージ追加。", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 90.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 90", + 'zh-tw': "擲1次硬幣若為正面,則增加90點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加90點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/116.ts b/data-asia/SV/SV8a/116.ts new file mode 100644 index 000000000..10850c02e --- /dev/null +++ b/data-asia/SV/SV8a/116.ts @@ -0,0 +1,88 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノワダチ", + id: "Iron Treads", + th: "รอยล้อเหล็ก", + 'zh-tw': "鐵轍跡", + 'zh-cn': "鐵轍跡" + }, + + illustrator: "Tonji Matsuno", + rarity: "None", + category: "Pokemon", + dexId: [990], + hp: 130, + types: ["Metal"], + + description: { + ja: "近年 目撃例が ある。 古い 探検記に 記された 謎の 物体に 似た ポケモン。", + id: "Terdapat laporan kesaksian atas Pokémon ini dalam beberapa tahun terakhir. Pokémon yang mirip dengan objek misterius yang tertera dalam jurnal ekspedisi kuno.", + th: "มีผู้พบเห็นเมื่อไม่กี่ปีที่ผ่านมานี้ เป็นโปเกมอนที่มีลักษณะคล้ายกับวัตถุลึกลับที่ระบุไว้ในบันทึกการสำรวจเก่าแก่", + 'zh-tw': "近年曾經有人目擊到牠。 是與古老的探險記裡記載的 不明物體長得很像的寶可夢。", + 'zh-cn': "近年曾經有人目擊到牠。 是與古老的探險記裡記載的 不明物體長得很像的寶可夢。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "デュアルコア", + id: "Dual Core", + th: "ดูอัลคอร์", + 'zh-tw': "二重核心", + 'zh-cn': "二重核心" + }, + + effect: { + ja: "このポケモンに「ブーストエナジー 未来」がついているかぎり、このポケモンはとの2つのタイプになる。", + id: "Selama Pokémon ini mengenakan Pemacu Energi Futur, Pokémon ini menjadi 2 tipe yaitu {Petarung} dan {Logam}.", + th: "ตราบใดที่โปเกมอนนี้มี [บูสต์เอนเนอร์จี้ อนาคต] ติดอยู่ โปเกมอนนี้จะเป็น 2 ประเภทคือ[ต่อสู้]และ[โลหะ]", + 'zh-tw': "只要這隻寶可夢身上附有「驅勁能量 未來」,這隻寶可夢改為【鬥】與【鋼】2種屬性。", + 'zh-cn': "只要這隻寶可夢身上附有「驅勁能量 未來」,這隻寶可夢改為【鬥】與【鋼】2種屬性。" + } + }], + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + ja: "パスホイール", + id: "Pass Wheel", + th: "พาสวีล", + 'zh-tw': "路徑輪", + 'zh-cn': "路徑輪" + }, + + damage: 60, + + effect: { + ja: "このポケモンについているエネルギーを1個選び、ベンチポケモンにつけ替える。", + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu pindahkan ke Pokémon Cadangan.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ย้ายไปติดกับโปเกมอนบนเบนช์", + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,改附於備戰寶可夢身上。", + 'zh-cn': "選擇1個這隻寶可夢身上附加的能量,改附於備戰寶可夢身上。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/117.ts b/data-asia/SV/SV8a/117.ts new file mode 100644 index 000000000..7ff166c9b --- /dev/null +++ b/data-asia/SV/SV8a/117.ts @@ -0,0 +1,79 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "サーフゴーex", + id: "Gholdengo ex", + th: "ซาร์ฟโกex", + 'zh-tw': "賽富豪ex", + 'zh-cn': "賽富豪ex" + }, + + illustrator: "takuyoa", + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Metal"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "ボーナスコイン", + id: "Bonus Coin", + th: "เหรียญโบนัส", + 'zh-tw': "紅利硬幣", + 'zh-cn': "紅利硬幣" + }, + + effect: { + ja: "自分の番に1回使える。自分の山札を1枚引く。このポケモンがバトル場にいるなら、さらに1枚引く。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Ambil 1 kartu dari atas Deck sendiri. Jika Pokémon ini ada di Arena Bertarung, ambil lagi 1 kartu tambahan.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ จะจั่วการ์ดเพิ่มได้ 1 ใบ", + 'zh-tw': "在自己的回合時可使用1次。從自己的牌庫抽出1張卡。若這隻寶可夢在戰鬥場上,則再抽出1張卡。", + 'zh-cn': "在自己的回合時可使用1次。從自己的牌庫抽出1張卡。若這隻寶可夢在戰鬥場上,則再抽出1張卡。" + } + }], + + attacks: [{ + cost: ["Metal"], + + name: { + ja: "ゴールドラッシュ", + id: "Terjangan Emas", + th: "โปรยทอง", + 'zh-tw': "淘金潮", + 'zh-cn': "淘金潮" + }, + + damage: "50×", + + effect: { + ja: "自分の手札から基本エネルギーを好きなだけトラッシュし、その枚数×50ダメージ。", + id: "Buang sesukanya Energi Dasar dari Kartu Pegangan sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 50 untuk tiap lembarnya.", + th: "ทิ้งการ์ดพลังงานพื้นฐานจากบนมือฝ่ายเราตามจำนวนที่ชอบที่ตำแหน่งทิ้งการ์ด แดเมจจะเท่ากับจำนวนการ์ดนั้น x50", + 'zh-tw': "從自己的手牌將任意數量的基本能量卡丟棄,造成其張數×50點傷害。", + 'zh-cn': "從自己的手牌將任意數量的基本能量卡丟棄,造成其張數×50點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/118.ts b/data-asia/SV/SV8a/118.ts new file mode 100644 index 000000000..c6cddc7cb --- /dev/null +++ b/data-asia/SV/SV8a/118.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ドラメシヤ", + id: "Dreepy", + th: "โดราเมชิยะ", + 'zh-tw': "多龍梅西亞", + 'zh-cn': "多龍梅西亞" + }, + + illustrator: "Scav", + rarity: "None", + category: "Pokemon", + dexId: [885], + hp: 70, + types: ["Dragon"], + + description: { + ja: "食べもしないのに ウデッポウに 食らいつくのは 生きていたころの 行動の 名残りと 言われている。", + id: "Dikatakan bahwa alasan Dreepy menggigit erat Clauncher meskipun ia tidak memakannya adalah perilaku bawaan ketika ia masih hidup.", + th: "ว่ากันว่าที่มันชอบกัดอุเด็ปโปไว้ไม่ปล่อยแม้จะไม่กินเป็นอาหารนั้นเป็นการกระทำที่มันเคยทำตอนที่มันยังมีชีวิต", + 'zh-tw': "明明不吃卻又愛死咬著 鐵臂槍蝦不放,聽說是牠 生前殘留下來的活動習性。", + 'zh-cn': "明明不吃卻又愛死咬著 鐵臂槍蝦不放,聽說是牠 生前殘留下來的活動習性。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "ちょっとうらむ", + id: "Mendendam Sedikit", + th: "เจ็บแค้นหน่อย", + 'zh-tw': "咒怨一下", + 'zh-cn': "咒怨一下" + }, + + damage: 10 + }, { + cost: ["Fire", "Psychic"], + + name: { + ja: "かみつく", + id: "Menggigit", + th: "กัดติด", + 'zh-tw': "咬住", + 'zh-cn': "咬住" + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/119.ts b/data-asia/SV/SV8a/119.ts new file mode 100644 index 000000000..0173023e5 --- /dev/null +++ b/data-asia/SV/SV8a/119.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ドロンチ", + id: "Drakloak", + th: "โดรอนจิ", + 'zh-tw': "多龍奇", + 'zh-cn': "多龍奇" + }, + + illustrator: "cochi8i", + rarity: "None", + category: "Pokemon", + dexId: [886], + hp: 90, + types: ["Dragon"], + + description: { + ja: "肺に エネルギーを溜め 撃ち出す。 ドラメシヤが 立派に 育つまで 一緒に 戦い 世話もする。", + id: "Drakloak mengumpulkan energi di paru-parunya lalu menembakkannya. Ia merawat dan bertarung bersama Dreepy hingga Dreepy itu tumbuh dengan baik.", + th: "เก็บสะสมพลังงานไว้ในปอดแล้วยิงออกไป จะคอยช่วยเหลือและต่อสู้ร่วมกับโดราเมชิยะจนกว่าพวกมันจะเติบโตได้อย่างงดงาม", + 'zh-tw': "會用儲存在肺部的能量進行攻擊。 在多龍梅西亞能獨當一面前, 都會一起戰鬥並照顧起居。", + 'zh-cn': "會用儲存在肺部的能量進行攻擊。 在多龍梅西亞能獨當一面前, 都會一起戰鬥並照顧起居。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "ていさつしれい", + id: "Perintah Rekonaisans", + th: "คำสั่งสอดแนม", + 'zh-tw': "偵查指令", + 'zh-cn': "偵查指令" + }, + + effect: { + ja: "自分の番に1回使える。自分の山札を上から2枚見て、どちらか1枚を選び、手札に加える。残りのカードは、山札の下にもどす。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Lihat 2 kartu dari atas Deck sendiri, pilih salah satu, lalu tambahkan ke Kartu Pegangan. Kembalikan sisa kartu ke bawah Deck.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ดูการ์ด 2 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกใบใดใบหนึ่ง 1 ใบ นำขึ้นมือ การ์ดที่เหลือ ใส่กลับไปด้านล่างของสำรับการ์ด", + 'zh-tw': "在自己的回合時可使用1次。查看自己的牌庫上方2張卡,選擇其中1張,加入手牌。將剩餘卡放回牌庫下方。", + 'zh-cn': "在自己的回合時可使用1次。查看自己的牌庫上方2張卡,選擇其中1張,加入手牌。將剩餘卡放回牌庫下方。" + } + }], + + attacks: [{ + cost: ["Fire", "Psychic"], + + name: { + ja: "リューズヘッド", + id: "Sundulan Naga", + th: "หัวมังกรคู่", + 'zh-tw': "龍之頭擊", + 'zh-cn': "龍之頭擊" + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/120.ts b/data-asia/SV/SV8a/120.ts new file mode 100644 index 000000000..b9808da13 --- /dev/null +++ b/data-asia/SV/SV8a/120.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ドラパルトex", + id: "Dragapult ex", + th: "โดราพัลท์ex", + 'zh-tw': "多龍巴魯托ex", + 'zh-cn': "多龍巴魯托ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 320, + types: ["Dragon"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ジェットヘッド", + id: "Jet Head", + th: "เจ็ตเฮด", + 'zh-tw': "噴射頭擊", + 'zh-cn': "噴射頭擊" + }, + + damage: 70 + }, { + cost: ["Fire", "Psychic"], + + name: { + ja: "ファントムダイブ", + id: "Phantom Dive", + th: "แฟนธอมไดฟ์", + 'zh-tw': "幻影奇襲", + 'zh-cn': "幻影奇襲" + }, + + damage: 200, + + effect: { + ja: "ダメカン6個を、相手のベンチポケモンに好きなようにのせる。", + id: "Letakkan sejumlah 6 Token Kerusakan pada Pokémon Cadangan lawan sesukanya.", + th: "วางตัวนับแดเมจ 6 ตัว บนโปเกมอนบนเบนช์ฝ่ายตรงข้ามตามชอบ", + 'zh-tw': "將6個傷害指示物以任意方式放置於對手的備戰寶可夢身上。", + 'zh-cn': "將6個傷害指示物以任意方式放置於對手的備戰寶可夢身上。" + } + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/121.ts b/data-asia/SV/SV8a/121.ts new file mode 100644 index 000000000..1ad3058d5 --- /dev/null +++ b/data-asia/SV/SV8a/121.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "シャリタツ", + id: "Tatsugiri", + th: "ชาริทัตสึ", + 'zh-tw': "米立龍", + 'zh-cn': "米立龍" + }, + + illustrator: "Shimaris Yukichi", + rarity: "None", + category: "Pokemon", + dexId: [978], + hp: 70, + types: ["Dragon"], + + description: { + ja: "非常に 悪賢い ポケモン。 弱ったふりで 獲物を おびき寄せ 仲間の ポケモンに 襲わせる。", + id: "Pokémon yang sangat licik. Tatsugiri pura-pura melemah untuk memancing mangsanya, lalu memerintah Pokémon rekannya untuk menyerang mangsa tersebut.", + th: "โปเกมอนที่เจ้าเล่ห์เป็นอย่างมาก แสร้งทำเป็นอ่อนแอเพื่อดึงดูดให้เหยื่อเข้ามาใกล้ แล้วให้โปเกมอนที่เป็นพวกพ้องโจมตีใส่", + 'zh-tw': "極為奸詐狡猾的寶可夢。 會假裝虛弱來吸引獵物接近, 接著讓同夥的寶可夢發動攻擊。", + 'zh-cn': "極為奸詐狡猾的寶可夢。 會假裝虛弱來吸引獵物接近, 接著讓同夥的寶可夢發動攻擊。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "きゃくよせ", + id: "Memanggil Pelanggan", + th: "ดึงดูดลูกค้า", + 'zh-tw': "集客", + 'zh-cn': "集客" + }, + + effect: { + ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。自分の山札を上から6枚見て、その中からサポートを1枚選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini ada di Arena Bertarung. Lihat 6 kartu dari atas Deck sendiri, pilih 1 lembar Supporter di antaranya, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck.", + th: "ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ดูการ์ด 6 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดซัพพอร์ต 1 ใบจากในนั้น ให้ฝ่ายตรงข้ามดู นำขึ้นมือ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ", + 'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。查看自己的牌庫上方6張卡,從其中選擇1張支援者卡,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。", + 'zh-cn': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。查看自己的牌庫上方6張卡,從其中選擇1張支援者卡,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。" + } + }], + + attacks: [{ + cost: ["Fire", "Water"], + + name: { + ja: "なみのり", + id: "Berselancar", + th: "โต้คลื่น", + 'zh-tw': "衝浪", + 'zh-cn': "衝浪" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/122.ts b/data-asia/SV/SV8a/122.ts new file mode 100644 index 000000000..2b6adc03b --- /dev/null +++ b/data-asia/SV/SV8a/122.ts @@ -0,0 +1,78 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "コライドン", + id: "Koraidon", + th: "โคไรดอน", + 'zh-tw': "故勒頓", + 'zh-cn': "故勒頓" + }, + + illustrator: "Anesaki Dynamic", + rarity: "None", + category: "Pokemon", + dexId: [1007], + hp: 140, + types: ["Dragon"], + + description: { + ja: "拳で 大地を 引き裂いたと 古い 探検記に 記された ツバサノオウの 正体らしい。", + id: "Kabarnya, identitas asli Winged King yang membelah tanah dengan tinjunya seperti yang tertulis dalam jurnal ekspedisi kuno adalah Koraidon.", + th: "ดูเหมือนว่าจะเป็นร่างที่แท้จริงของราชาแห่งปีกที่ในบันทึกการสำรวจเก่ากล่าวว่ามันเคยแยกแผ่นดินด้วยกำปั้น", + 'zh-tw': "牠似乎就是古老的探險記裡 提到的翼大王的真面目。 據記載,牠曾以拳頭擊裂大地。", + 'zh-cn': "牠似乎就是古老的探險記裡 提到的翼大王的真面目。 據記載,牠曾以拳頭擊裂大地。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + ja: "げんせいらんだ", + id: "Pukulan Kacau Primitif", + th: "ตีไม่ยั้งแต่บรรพกาล", + 'zh-tw': "原生亂打", + 'zh-cn': "原生亂打" + }, + + damage: "30×", + + effect: { + ja: "自分の場の「古代」のポケモンの数×30ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 30 untuk tiap Pokémon Purba di Arena sendiri.", + th: "แดเมจจะเท่ากับจำนวนโปเกมอน [โบราณ] บนกระดานฝ่ายเรา x30", + 'zh-tw': "造成自己的場上的「古代」寶可夢的數量×30點傷害。", + 'zh-cn': "造成自己的場上的「古代」寶可夢的數量×30點傷害。" + } + }, { + cost: ["Fire", "Fighting", "Colorless"], + + name: { + ja: "ひきさく", + id: "Merobek", + th: "ฉีกกระจุย", + 'zh-tw': "撕裂", + 'zh-cn': "撕裂" + }, + + damage: 130, + + effect: { + ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。", + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan.", + th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด", + 'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。" + } + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/123.ts b/data-asia/SV/SV8a/123.ts new file mode 100644 index 000000000..6d0a9c79d --- /dev/null +++ b/data-asia/SV/SV8a/123.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ミライドン", + id: "Miraidon", + th: "มิไรดอน", + 'zh-tw': "密勒頓", + 'zh-cn': "密勒頓" + }, + + illustrator: "akagi", + rarity: "None", + category: "Pokemon", + dexId: [1008], + hp: 110, + types: ["Dragon"], + + description: { + ja: "古い 書物に 名が ある テツノオロチらしい。 雷で 大地を 灰に 変えたという。", + id: "Tampaknya Miraidon tertera di buku kuno dengan nama Iron Serpent. Dikabarkan Pokémon ini mengubah tanah lapang menjadi abu dengan petir.", + th: "ดูเหมือนว่าจะเป็นนาคเหล็กซึ่งมีชื่อในบันทึกเก่าแก่ ว่ากันว่ามันใช้สายฟ้าทำให้ผืนดินกลายเป็นเถ้าถ่าน", + 'zh-tw': "牠似乎就是古書裡所提及的 鐵大蛇。傳說牠曾用雷電 將大地化成了一片灰。", + 'zh-cn': "牠似乎就是古書裡所提及的 鐵大蛇。傳說牠曾用雷電 將大地化成了一片灰。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "アクセルピーク", + id: "Accel Peak", + th: "แอกเซลพีก", + 'zh-tw': "暴衝高點", + 'zh-cn': "暴衝高點" + }, + + damage: 40, + + effect: { + ja: "自分の山札から基本エネルギーを2枚まで選び、自分の「未来」のポケモンに好きなようにつける。そして山札を切る。", + id: "Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, lalu kenakan sesukanya pada Pokémon Futur sendiri. Kemudian, kocok Deck.", + th: "เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอน [อนาคต] ฝ่ายเราตามชอบ แล้วสับสำรับการ์ด", + 'zh-tw': "從自己的牌庫選擇最多2張基本能量卡,以任意方式附於自己的「未來」寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張基本能量卡,以任意方式附於自己的「未來」寶可夢身上。並且重洗牌庫。" + } + }, { + cost: ["Lightning", "Lightning", "Psychic"], + + name: { + ja: "スパーキングアタック", + id: "Sparking Attack", + th: "สปาร์กกิงแอทแทก", + 'zh-tw': "閃雷攻擊", + 'zh-cn': "閃雷攻擊" + }, + + damage: 160 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/124.ts b/data-asia/SV/SV8a/124.ts new file mode 100644 index 000000000..a2e2838ad --- /dev/null +++ b/data-asia/SV/SV8a/124.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "タケルライコex", + id: "Raging Bolt ex", + th: "ฟ้าคะนองคลั่งex", + 'zh-tw': "猛雷鼓ex", + 'zh-cn': "猛雷鼓ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Double rare", + category: "Pokemon", + hp: 240, + types: ["Dragon"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "はじけるほうこう", + id: "Letusan Raungan", + th: "เสียงคำรามระเบิด", + 'zh-tw': "濺射咆哮", + 'zh-cn': "濺射咆哮" + }, + + effect: { + ja: "自分の手札をすべてトラッシュし、山札を6枚引く。", + id: "Buang semua Kartu Pegangan sendiri ke Trash, lalu ambil 6 kartu dari atas Deck.", + th: "ทิ้งการ์ดบนมือฝ่ายเราทั้งหมดที่ตำแหน่งทิ้งการ์ด จั่วการ์ด 6 ใบจากสำรับการ์ด", + 'zh-tw': "將自己的手牌全部丟棄,從牌庫抽出6張卡。", + 'zh-cn': "將自己的手牌全部丟棄,從牌庫抽出6張卡。" + } + }, { + cost: ["Lightning", "Fighting"], + + name: { + ja: "きょくらいごう", + id: "Guntur Membahana Ekstrem", + th: "ฟ้าคำรามสุดขีด", + 'zh-tw': "極降駕", + 'zh-cn': "極降駕" + }, + + damage: "70×", + + effect: { + ja: "自分の場のポケモンについている基本エネルギーを好きなだけトラッシュし、その枚数×70ダメージ。", + id: "Buang sesukanya Energi Dasar yang dikenakan pada Pokémon di Arena sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 70 untuk tiap lembarnya.", + th: "ทิ้งพลังงานพื้นฐานที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเราตามจำนวนที่ชอบที่ตำแหน่งทิ้งการ์ด แดเมจจะเท่ากับจำนวนการ์ดนั้น x70", + 'zh-tw': "將自己的場上寶可夢身上附加的任意數量的基本能量卡丟棄,造成其張數×70點傷害。", + 'zh-cn': "將自己的場上寶可夢身上附加的任意數量的基本能量卡丟棄,造成其張數×70點傷害。" + } + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/125.ts b/data-asia/SV/SV8a/125.ts new file mode 100644 index 000000000..6b1b00a04 --- /dev/null +++ b/data-asia/SV/SV8a/125.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イーブイ", + id: "Eevee", + th: "อีวุย", + 'zh-tw': "伊布", + 'zh-cn': "伊布" + }, + + illustrator: "Naoyo Kimura", + rarity: "None", + category: "Pokemon", + dexId: [133], + hp: 50, + types: ["Colorless"], + + description: { + ja: "不規則な 遺伝子を 持つ。 石から出る 放射線によって 体が 突然変異を 起こす。", + id: "Eevee memiliki susunan genetik yang tidak teratur. Tubuhnya akan bermutasi ketika terkena radiasi yang dikeluarkan batu elemen.", + th: "มีหน่วยพันธุกรรมที่ผิดปกติ รังสีจากหินทำให้ร่างกายกลายพันธุ์อย่าง ฉับพลัน", + 'zh-tw': "有著不規則的基因。 石頭散發出的放射線, 會使牠的身體發生突變。", + 'zh-cn': "有著不規則的基因。 石頭散發出的放射線, 會使牠的身體發生突變。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ブーストしんか", + id: "Evolusi Terpacu", + th: "เสริมกำลังวิวัฒนาการ", + 'zh-tw': "提升進化", + 'zh-cn': "提升進化" + }, + + effect: { + ja: "このポケモンは、バトル場にいるかぎり、最初の自分の番や、出したばかりの番でも進化できる。", + id: "Selama Pokémon ini ada di Arena Bertarung, Pokémon ini juga dapat dievolusikan pada giliran pertama pemain dan pada giliran Pokémon ini dimasukkan.", + th: "โปเกมอนนี้ ตราบใดที่ยังอยู่บนตำแหน่งต่อสู้ แม้จะเป็นเทิร์นแรกสุดของฝ่ายเรา หรือเทิร์นที่เพิ่งออกมาก็สามารถวิวัฒนาการได้", + 'zh-tw': "只要這隻寶可夢在戰鬥場上,就算在自己的最初回合或者剛使出的回合,也可進化。", + 'zh-cn': "只要這隻寶可夢在戰鬥場上,就算在自己的最初回合或者剛使出的回合,也可進化。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "とつげき", + id: "Menyerang", + th: "ประจัญบาน", + 'zh-tw': "突擊", + 'zh-cn': "突擊" + }, + + damage: 30, + + effect: { + ja: "このポケモンにも10ダメージ。", + id: "Pokémon ini juga menerima kerusakan sejumlah 10.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย", + 'zh-tw': "這隻寶可夢也受到10點傷害。", + 'zh-cn': "這隻寶可夢也受到10點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/126.ts b/data-asia/SV/SV8a/126.ts new file mode 100644 index 000000000..a7fbd33fb --- /dev/null +++ b/data-asia/SV/SV8a/126.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イーブイex", + id: "Eevee ex", + th: "อีวุยex", + 'zh-tw': "伊布ex", + 'zh-cn': "伊布ex" + }, + + illustrator: "aky CG Works", + rarity: "Double rare", + category: "Pokemon", + hp: 200, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "にじいろDNA", + id: "DNA Warna Pelangi", + th: "DNA สีรุ้ง", + 'zh-tw': "虹色DNA", + 'zh-cn': "虹色DNA" + }, + + effect: { + ja: "このポケモンは、「イーブイ」から進化する「ポケモンex」を手札から出して、このポケモンにのせて進化できる。(最初の自分の番や、出したばかりの番には進化できない。)", + id: "Pokémon ini dapat berevolusi dengan memasukkan Pokémon {ex} yang merupakan evolusi dari Eevee dari Kartu Pegangan, lalu meletakkannya pada Pokémon ini. (Tidak dapat dievolusikan pada giliran pertama pemain dan pada giliran Pokémon ini dimasukkan.)", + th: "โปเกมอนนี้ สามารถนำการ์ด [โปเกมอน【ex】] ที่จะวิวัฒนาการจาก [อีวุย] จาก บนมือออกมา วางบนโปเกมอนนี้เพื่อวิวัฒนาการได้ (ไม่สามารถวิวัฒนาการ ได้ในเทิร์นแรกสุดของฝ่ายเรา และเทิร์นที่เพิ่งออกมา)", + 'zh-tw': "這隻寶可夢可從手牌使出從「伊布」進化而來的「寶可夢【ex】」,放置於這隻寶可夢身上完成進化。(在自己的最初回合或者剛使出的回合無法進化。)", + 'zh-cn': "這隻寶可夢可從手牌使出從「伊布」進化而來的「寶可夢【ex】」,放置於這隻寶可夢身上完成進化。(在自己的最初回合或者剛使出的回合無法進化。)" + } + }], + + attacks: [{ + cost: ["Fire", "Water", "Lightning"], + + name: { + ja: "クォーツシャイン", + id: "Quartz Shine", + th: "ควอตซ์ไชน์", + 'zh-tw': "石英閃耀", + 'zh-cn': "石英閃耀" + }, + + damage: 200 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/127.ts b/data-asia/SV/SV8a/127.ts new file mode 100644 index 000000000..2a7c20286 --- /dev/null +++ b/data-asia/SV/SV8a/127.ts @@ -0,0 +1,80 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ホーホー", + id: "Hoothoot", + th: "โฮโฮ", + 'zh-tw': "咕咕", + 'zh-cn': "咕咕" + }, + + illustrator: "Nakamura Ippan", + rarity: "None", + category: "Pokemon", + dexId: [163], + hp: 80, + types: ["Colorless"], + + description: { + ja: "正確に 時を 告げることから 世界の ことわりを わきまえた 知恵の神様 とする 国もある。", + id: "Dikarenakan ia dapat memberitahukan waktu dengan tepat, terdapat negara yang memuja Pokémon ini sebagai Dewa Kebijaksanaan yang maha tahu tentang kebenaran dunia.", + th: "เพราะบอกเวลาได้อย่างเที่ยงตรง จึงมีดินแดนที่เชื่อว่ามันเป็นเทพแห่ง ปัญญาผู้รู้ซึ้งถึงสัจจะของโลก", + 'zh-tw': "由於能準確地報時, 因此在某些國家被視為是 明白世間一切事理的智慧之神。", + 'zh-cn': "由於能準確地報時, 因此在某些國家被視為是 明白世間一切事理的智慧之神。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ふみん", + id: "Insomnia", + th: "นอนไม่หลับ", + 'zh-tw': "不眠", + 'zh-cn': "不眠" + }, + + effect: { + ja: "このポケモンはねむりにならない。", + id: "Pokémon ini tidak akan menjadi Tidur.", + th: "โปเกมอนนี้จะไม่เป็นสภาวะ[หลับ]", + 'zh-tw': "這隻寶可夢不會【睡眠】。", + 'zh-cn': "這隻寶可夢不會【睡眠】。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "たいあたり", + id: "Serudukan", + th: "พุ่งเข้าชน", + 'zh-tw': "撞擊", + 'zh-cn': "撞擊" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/128.ts b/data-asia/SV/SV8a/128.ts new file mode 100644 index 000000000..10f718c5b --- /dev/null +++ b/data-asia/SV/SV8a/128.ts @@ -0,0 +1,80 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ヨルノズク", + id: "Noctowl", + th: "โยรุโนะซึคุ", + 'zh-tw': "貓頭夜鷹", + 'zh-cn': "貓頭夜鷹" + }, + + illustrator: "matazo", + rarity: "None", + category: "Pokemon", + dexId: [164], + hp: 100, + types: ["Colorless"], + + description: { + ja: "非常に 柔らかい 羽は 飛ぶとき 音を 出さないので こっそり 獲物に 近づける。", + id: "Karena sayapnya yang sangat lembut tidak mengeluarkan suara ketika terbang, ia dapat mendekati mangsanya dengan diam-diam.", + th: "เพราะปีกที่อ่อนนุ่มมากทำให้ไม่เกิดเสียงในยามที่บิน จึงแอบเข้าใกล้เหยื่อได้โดยที่เหยื่อไม่รู้ตัว", + 'zh-tw': "極為柔軟的翅膀讓牠在 飛行時不發一絲聲響, 因此可以悄悄地接近獵物。", + 'zh-cn': "極為柔軟的翅膀讓牠在 飛行時不發一絲聲響, 因此可以悄悄地接近獵物。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "ほうせきさがし", + id: "Mencari Permata", + th: "ค้นหาอัญมณี", + 'zh-tw': "搜尋寶石", + 'zh-cn': "搜尋寶石" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、自分の場に「テラスタル」のポケモンがいるなら、1回使える。自分の山札からトレーナーズを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika ada Pokémon Terastal di Arena sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Pilih paling banyak 2 lembar Trainer dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ถ้าบนกระดานฝ่ายเรามีโปเกมอน [เทรัสตัล] อยู่ ใช้ได้ 1 ครั้ง เลือกการ์ดเทรนเนอร์ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,若自己的場上有「太晶」寶可夢,則可使用1次。從自己的牌庫選擇最多2張訓練家卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,若自己的場上有「太晶」寶可夢,則可使用1次。從自己的牌庫選擇最多2張訓練家卡,在給對手看過後加入手牌。並且重洗牌庫。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "スピードウイング", + id: "Speed Wing", + th: "สปีดวิง", + 'zh-tw': "高速之翼", + 'zh-cn': "高速之翼" + }, + + damage: 60 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/129.ts b/data-asia/SV/SV8a/129.ts new file mode 100644 index 000000000..738bd7991 --- /dev/null +++ b/data-asia/SV/SV8a/129.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ノコッチ", + id: "Dunsparce", + th: "โนก็อจจิ", + 'zh-tw': "土龍弟弟", + 'zh-cn': "土龍弟弟" + }, + + illustrator: "Sanosuke Sakuma", + rarity: "None", + category: "Pokemon", + dexId: [206], + hp: 60, + types: ["Colorless"], + + description: { + ja: "暗い場所に 迷路を 作る。 だれかに みられると 尻尾で 地面を 掘って 逃げようとする。", + id: "Dunsparce membuat labirin di tempat gelap. Jika ada yang melihatnya, Pokémon ini akan melarikan diri dengan menggali lubang menggunakan ekornya.", + th: "สร้างทางวงกตในที่มืด พอมีคนเจอก็จะใช้หางขุดมุดดินหนี", + 'zh-tw': "會在陰暗處做出迷宮。 只要被誰看見就會 用尾巴挖掘地面逃走。", + 'zh-cn': "會在陰暗處做出迷宮。 只要被誰看見就會 用尾巴挖掘地面逃走。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "かじる", + id: "Menggerogot", + th: "แทะ", + 'zh-tw': "咬", + 'zh-cn': "咬" + }, + + damage: 10 + }, { + cost: ["Colorless", "Colorless"], + + name: { + ja: "あなをほる", + id: "Menggali", + th: "ขุดรู", + 'zh-tw': "挖洞", + 'zh-cn': "挖洞" + }, + + damage: 30, + + effect: { + ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージや効果を受けない。", + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan dan efek akibat serangan.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจและเอฟเฟกต์ของท่าต่อสู้", + 'zh-tw': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。", + 'zh-cn': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/130.ts b/data-asia/SV/SV8a/130.ts new file mode 100644 index 000000000..293a78519 --- /dev/null +++ b/data-asia/SV/SV8a/130.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ノココッチ", + id: "Dudunsparce", + th: "โนโกก็อจจิ", + 'zh-tw': "土龍節節", + 'zh-cn': "土龍節節" + }, + + illustrator: "Teeziro", + rarity: "None", + category: "Pokemon", + dexId: [982], + hp: 140, + types: ["Colorless"], + + description: { + ja: "硬い 尻尾で 地中 深くの 岩盤を くり抜き 巣を 作る。 巣穴は 長さ10キロに およぶ。", + id: "Dudunsparce membuat sarangnya dengan melubangi batuan dasar jauh di bawah tanah menggunakan ekor kerasnya. Panjang sarangnya mencapai 10 km.", + th: "ขุดพื้นหินที่อยู่ลึกลงไปในดินด้วยหางสุดแข็งแล้วทำรัง โพรงมีความยาวกว่า 10 กิโลเมตร", + 'zh-tw': "會用堅硬的尾巴挖穿 地下深處的岩盤來築巢。 巢穴可以長達10公里。", + 'zh-cn': "會用堅硬的尾巴挖穿 地下深處的岩盤來築巢。 巢穴可以長達10公里。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "にげあしドロー", + id: "Ambil Kabur", + th: "จั่วแล้ววิ่งหนี", + 'zh-tw': "逃跑抽出", + 'zh-cn': "逃跑抽出" + }, + + effect: { + ja: "自分の番に1回使える。自分の山札を3枚引く。その後、このポケモンと、ついているすべてのカードを、山札にもどして切る。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Ambil 3 kartu dari atas Deck sendiri. Setelah itu, kocok kembali Pokémon ini dan semua kartu yang dikenakannya ke Deck.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา หลังจากนั้น นำโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดแล้วสับ", + 'zh-tw': "在自己的回合時可使用1次。從自己的牌庫抽出3張卡。然後,將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。", + 'zh-cn': "在自己的回合時可使用1次。從自己的牌庫抽出3張卡。然後,將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ランドクラッシュ", + id: "Land Crush", + th: "แลนด์ครัช", + 'zh-tw': "大地粉碎", + 'zh-cn': "大地粉碎" + }, + + damage: 90 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/131.ts b/data-asia/SV/SV8a/131.ts new file mode 100644 index 000000000..e587946c8 --- /dev/null +++ b/data-asia/SV/SV8a/131.ts @@ -0,0 +1,88 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "スピンロトム", + id: "Rotom Kipas", + th: "สปินโรตอม", + 'zh-tw': "旋轉洛托姆", + 'zh-cn': "旋轉洛托姆" + }, + + illustrator: "Toshinao Aoki", + rarity: "None", + category: "Pokemon", + dexId: [479], + hp: 70, + types: ["Colorless"], + + description: { + ja: "ロトムが 入れる 家電製品は いくつか あるが いちばん 初めに 開発されたのは 扇風機だ。", + id: "Terdapat beberapa perabotan elektronik yang dapat dimasuki Rotom, namun kipas angin adalah perabotan yang paling pertama dikembangkan.", + th: "เครื่องใช้ไฟฟ้าในครัวเรือนที่โรตอมสามารถเข้าไปได้มีหลายชิ้น แต่เครื่องใช้ไฟฟ้าชิ้นแรกที่ได้รับการพัฒนาคือพัดลม", + 'zh-tw': "雖然能讓洛托姆鑽進去的 家電用品有好幾種, 但最先被研發出的是電風扇。", + 'zh-cn': "雖然能讓洛托姆鑽進去的 家電用品有好幾種, 但最先被研發出的是電風扇。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ファンコール", + id: "Fan Call", + th: "แฟนคอล", + 'zh-tw': "風扇呼喚", + 'zh-cn': "風扇呼喚" + }, + + effect: { + ja: "最初の自分の番にだけ1回使える。自分の山札から、HPが「100」以下のポケモンを3枚まで選び、相手に見せて、手札に加える。そして山札を切る。この番、すでに別の「ファンコール」を使っていたなら、この特性は使えない。", + id: "Hanya dapat digunakan 1 kali pada giliran pertama sendiri. Pilih paling banyak 3 lembar Pokémon {Bening} dengan HP 100 atau kurang dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck. Jika pada giliran ini, Fan Call lainnya telah digunakan, Ability ini tidak dapat digunakan.", + th: "ใช้ได้ 1 ครั้งในเทิร์นแรกสุดของฝ่ายเราเท่านั้น เลือกการ์ดโปเกมอน[ไร้สี]ที่มี HP น้อยกว่าหรือเท่ากับ [100] ได้สูงสุด 3 ใบ จากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด เทิร์นนี้ ถ้าใช้ [แฟนคอล] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้", + 'zh-tw': "只有在自己的最初回合可使用1次。從自己的牌庫選擇最多3張HP為「100」以下的【無】寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。在這個回合,若已經使出了其他的「風扇呼喚」,則這個特性無法使用。", + 'zh-cn': "只有在自己的最初回合可使用1次。從自己的牌庫選擇最多3張HP為「100」以下的【無】寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。在這個回合,若已經使出了其他的「風扇呼喚」,則這個特性無法使用。" + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "とつげきランディング", + id: "Pendaratan Menyerang", + th: "ลงจอดประจัญบาน", + 'zh-tw': "突擊著地", + 'zh-cn': "突擊著地" + }, + + damage: 70, + + effect: { + ja: "場にスタジアムが出ていないなら、このワザは失敗。", + id: "Jika tidak ada Stadium di Arena, serangan ini gagal.", + th: "ถ้าไม่มีการ์ดสเตเดียมอยู่บนกระดาน ท่าต่อสู้นี้จะล้มเหลว", + 'zh-tw': "若場上沒有競技場卡,則這個招式失敗。", + 'zh-cn': "若場上沒有競技場卡,則這個招式失敗。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/132.ts b/data-asia/SV/SV8a/132.ts new file mode 100644 index 000000000..292d81af0 --- /dev/null +++ b/data-asia/SV/SV8a/132.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "レジギガス", + id: "Regigigas", + th: "เรจิกิกัส", + 'zh-tw': "雷吉奇卡斯", + 'zh-cn': "雷吉奇卡斯" + }, + + illustrator: "chibi", + rarity: "None", + category: "Pokemon", + dexId: [486], + hp: 160, + types: ["Colorless"], + + description: { + ja: "特殊な 氷山や 岩石 マグマから 自分の 姿に 似た ポケモンを つくったと 言われる。", + id: "Dikatakan bahwa Regigigas dapat membuat Pokémon yang wujudnya mirip dengan dirinya dari gunung es dan bebatuan magma khusus.", + th: "ว่ากันว่าจะสร้างโปเกมอนที่มีรูปร่างคล้ายตนจากแม็กมา หินผา และ ภูเขาน้ำแข็งพิเศษ", + 'zh-tw': "據說牠以特殊的冰山、 岩石和熔岩做出了 神似自己的寶可夢。", + 'zh-cn': "據說牠以特殊的冰山、 岩石和熔岩做出了 神似自己的寶可夢。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "ジュエルブレイク", + id: "Jewel Break", + th: "จิวเวลเบรก", + 'zh-tw': "寶石破壞", + 'zh-cn': "寶石破壞" + }, + + damage: "100+", + + effect: { + ja: "相手のバトルポケモンが「テラスタル」のポケモンなら、230ダメージ追加。", + id: "Jika Pokémon Bertarung lawan adalah Pokémon Terastal, kerusakan yang diberikan bertambah sejumlah 230.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นโปเกมอน [เทรัสตัล] การโจมตี นี้จะเพิ่มแดเมจอีก 230", + 'zh-tw': "若對手的戰鬥寶可夢為「太晶」寶可夢,則增加230點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為「太晶」寶可夢,則增加230點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/133.ts b/data-asia/SV/SV8a/133.ts new file mode 100644 index 000000000..68931b6c4 --- /dev/null +++ b/data-asia/SV/SV8a/133.ts @@ -0,0 +1,83 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "バッフロン", + id: "Bouffalant", + th: "บัฟฟรอน", + 'zh-tw': "爆炸頭水牛", + 'zh-cn': "爆炸頭水牛" + }, + + illustrator: "Tonji Matsuno", + rarity: "None", + category: "Pokemon", + dexId: [626], + hp: 100, + types: ["Colorless"], + + description: { + ja: "頭突きだけで 車を 潰す。 頭の 毛が 大きいほど 群れでの 地位が 上がるのだ。", + id: "Bouffalant dapat menghancurkan mobil cukup dengan serudukan kepalanya. Makin besar rambut di kepalanya, makin tinggi pula posisinya di antara kelompoknya.", + th: "เพียงแค่พุ่งหัวชนก็สามารถบดทำลายรถยนต์ได้ ยิ่งมีขนที่หัวมากก็ยิ่งได้รับการยอมรับจากพวกพ้องในฝูง", + 'zh-tw': "只用頭錘就能壓扁汽車。 頭部的那團毛越大一團, 在群體裡的地位就會越高。", + 'zh-cn': "只用頭錘就能壓扁汽車。 頭部的那團毛越大一團, 在群體裡的地位就會越高。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "カーリーウォール", + id: "Curly Wall", + th: "เคอร์ลีวอลล์", + 'zh-tw': "‌捲牆", + 'zh-cn': "‌捲牆" + }, + + effect: { + ja: "このポケモンと、自分の別の「バッフロン」がいるかぎり、自分のタイプのたねポケモン全員が、相手のポケモンから受けるワザのダメージは「-60」される。この効果は、この特性を持つポケモンが何匹いても、重ならない。", + id: "Selama Pokémon ini dan Bouffalant sendiri lainnya ada di Arena, kerusakan akibat serangan dari Pokémon lawan yang diterima semua Pokémon Basic tipe {Bening} sendiri berkurang sejumlah 60. Efek ini tidak berlaku kelipatan meskipun ada Pokémon lain yang memiliki Ability yang sama.", + th: "ตราบใดที่โปเกมอนนี้และ [บัฟฟรอน] ตัวอื่นของฝ่ายเรายังอยู่ แดเมจของท่าต่อสู้ที่โปเกมอน[พื้นฐาน]ประเภท[ไร้สี]ฝ่ายเราทุกตัว จะได้รับจากโปเกมอนฝ่ายตรงข้ามจะถูก [-60] แม้จะมีโปเกมอนที่มีความสามารถนี้กี่ตัวก็ตาม เอฟเฟกต์นี้จะไม่เกิดผลซ้ำ", + 'zh-tw': "只要這隻寶可夢與自己的其他「爆炸頭水牛」在場上,自己的所有【無】屬性的【基礎】寶可夢受到對手的寶可夢招式的傷害「-60」點。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。", + 'zh-cn': "只要這隻寶可夢與自己的其他「爆炸頭水牛」在場上,自己的所有【無】屬性的【基礎】寶可夢受到對手的寶可夢招式的傷害「-60」點。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "そこぢから", + id: "Kekuatan Laten", + th: "พลังแฝง", + 'zh-tw': "潛力", + 'zh-cn': "潛力" + }, + + damage: 130, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/134.ts b/data-asia/SV/SV8a/134.ts new file mode 100644 index 000000000..bec217191 --- /dev/null +++ b/data-asia/SV/SV8a/134.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ガチグマ アカツキex", + id: "Ursaluna Bulan Merah ex", + th: "กาจิกุมะ พระจันทร์สีเลือดex", + 'zh-tw': "月月熊 赫月ex", + 'zh-cn': "月月熊 赫月ex" + }, + + illustrator: "aky CG Works", + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "ろうれんのわざ", + id: "Jurus Terlatih", + th: "ทักษะเจนจัด", + 'zh-tw': "老練招式", + 'zh-cn': "老練招式" + }, + + effect: { + ja: "相手がすでにとったサイドの枚数ぶん、このポケモンが「ブラッドムーン」を使うためのエネルギーは少なくなる。", + id: "Energi {Bening} yang dibutuhkan oleh Pokémon ini untuk menggunakan Bulan Darah berkurang untuk tiap lembar Kartu Point yang telah diambil lawan.", + th: "พลังงาน[ไร้สี]สำหรับใช้ [บลัดมูน] ของโปเกมอนนี้จะลดลง ตามจำนวนการ์ดรางวัลที่ฝ่ายตรงข้ามหยิบไปแล้ว", + 'zh-tw': "這隻寶可夢使用「血月」所需的【無】能量,減少對手已經獲得的獎賞卡的張數數量。", + 'zh-cn': "這隻寶可夢使用「血月」所需的【無】能量,減少對手已經獲得的獎賞卡的張數數量。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "ブラッドムーン", + id: "Bulan Darah", + th: "บลัดมูน", + 'zh-tw': "血月", + 'zh-cn': "血月" + }, + + damage: 240, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/135.ts b/data-asia/SV/SV8a/135.ts new file mode 100644 index 000000000..bffde760a --- /dev/null +++ b/data-asia/SV/SV8a/135.ts @@ -0,0 +1,86 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノコウベ", + id: "Iron Jugulis", + th: "คอเหล็ก", + 'zh-tw': "鐵脖頸", + 'zh-cn': "鐵脖頸" + }, + + illustrator: "Souichirou Gunjima", + rarity: "None", + category: "Pokemon", + dexId: [993], + hp: 130, + types: ["Colorless"], + + description: { + ja: "古い 書物に 記された テツノコウベという 物体は このポケモンかも しれない。", + id: "Kemungkinan Pokémon ini adalah objek bernama Iron Jugulis yang tertera dalam buku kuno.", + th: "วัตถุที่เรียกว่าคอเหล็กที่ระบุในบันทึกเก่าแก่อาจเป็นโปเกมอนตัวนี้", + 'zh-tw': "古書裡所記載的 叫做鐵脖頸的物體, 說不定就是這隻寶可夢。", + 'zh-cn': "古書裡所記載的 叫做鐵脖頸的物體, 說不定就是這隻寶可夢。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ホーミングヘッド", + id: "Homing Head", + th: "โฮมมิงเฮด", + 'zh-tw': "自動導向頭擊", + 'zh-cn': "自動導向頭擊" + }, + + effect: { + ja: "ダメカンがのっている相手のポケモン3匹に、それぞれ50ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + id: "Serangan ini memberikan kerusakan masing-masing sejumlah 50 kepada 3 Pokémon lawan yang memiliki Token Kerusakan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "โปเกมอนฝ่ายตรงข้าม 3 ตัวที่มีตัวนับแดเมจวางอยู่ จะได้รับแดเมจตัวละ 50 {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}", + 'zh-tw': "對手的身上放置有傷害指示物的3隻寶可夢各受到50點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的身上放置有傷害指示物的3隻寶可夢各受到50點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }, { + cost: ["Colorless", "Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "バリオンビーム", + id: "Baryon Beam", + th: "แบรีออนบีม", + 'zh-tw': "重子光束", + 'zh-cn': "重子光束" + }, + + damage: 150, + + effect: { + ja: "このワザは、このポケモンに「ブーストエナジー 未来」がついているなら、エネルギー3個で使える。", + id: "Jika Pokémon ini mengenakan Pemacu Energi Futur, serangan ini dapat digunakan dengan 3 Energi {Bening}.", + th: "ท่าต่อสู้นี้ ถ้าโปเกมอนนี้มี [บูสต์เอนเนอร์จี้ อนาคต] ติดอยู่ สามารถใช้ได้ด้วยพลังงาน[ไร้สี] 3 ลูก", + 'zh-tw': "若這隻寶可夢身上附有「驅勁能量 未來」,則這個招式只需要3個【無】能量即可使用。", + 'zh-cn': "若這隻寶可夢身上附有「驅勁能量 未來」,則這個招式只需要3個【無】能量即可使用。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/136.ts b/data-asia/SV/SV8a/136.ts new file mode 100644 index 000000000..a06ccd403 --- /dev/null +++ b/data-asia/SV/SV8a/136.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テラパゴスex", + id: "Terapagos ex", + th: "เทราปากอสex", + 'zh-tw': "太樂巴戈斯ex", + 'zh-cn': "太樂巴戈斯ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ユニオンビート", + id: "Union Beat", + th: "ยูเนียนบีต", + 'zh-tw': "聯盟擊", + 'zh-cn': "聯盟擊" + }, + + damage: "30×", + + effect: { + ja: "このワザは、後攻プレイヤーの最初の番には使えない。自分のベンチポケモンの数×30ダメージ。", + id: "Serangan ini tidak dapat digunakan pada giliran pertama Pemain Kedua. Serangan ini memberikan kerusakan sejumlah 30 untuk tiap Pokémon Cadangan sendiri.", + th: "ท่าต่อสู้นี้ ไม่สามารถใช้ได้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเล่นทีหลัง แดเมจจะเท่ากับจำนวนโปเกมอนบนเบนช์ฝ่ายเรา x30", + 'zh-tw': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。", + 'zh-cn': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。" + } + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + ja: "クラウンオパール", + id: "Crown Opal", + th: "คราวน์โอปอล", + 'zh-tw': "皇冠蛋白石", + 'zh-cn': "皇冠蛋白石" + }, + + damage: 180, + + effect: { + ja: "次の相手の番、このポケモンはたねポケモン(ポケモンをのぞく)からワザのダメージを受けない。", + id: "Pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon Basic (selain Pokémon {Bening}).", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[พื้นฐาน] (ยกเว้นโปเกมอน[ไร้สี])", + 'zh-tw': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。", + 'zh-cn': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/137.ts b/data-asia/SV/SV8a/137.ts new file mode 100644 index 000000000..e8f631cc2 --- /dev/null +++ b/data-asia/SV/SV8a/137.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "鬼の仮面", + id: "Topeng Oni", + th: "หน้ากากยักษ์", + 'zh-tw': "鬼之假面", + 'zh-cn': "鬼之假面" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分のトラッシュから、名前に「オーガポン」とつく「ポケモンex」を1枚選び、自分の場の、名前に「オーガポン」とつく「ポケモンex」1匹と入れ替える(ついているカード・ダメカン・特殊状態・効果などは、すべて引きつぐ)。入れ替えたポケモンはトラッシュする。", + id: "Pilih 1 lembar Pokémon {ex} yang pada namanya terdapat kata Ogerpon dari Trash sendiri, lalu tukar dengan 1 Pokémon {ex} yang pada namanya terdapat kata Ogerpon di Arena sendiri (Semua kartu yang dikenakan, Token Kerusakan, Kondisi Khusus, efek yang dialami, dan lainnya diteruskan ke Pokémon tersebut). Pokémon yang ditukar dibuang ke Trash.", + th: "เลือกการ์ด [โปเกมอน【ex】] ที่มีคำว่า [โอการ์ปอง] บนชื่อ 1 ใบ จากตำแหน่งทิ้งการ์ดฝ่ายเรา สลับกับ [โปเกมอน【ex】] ที่มีคำว่า [โอการ์ปอง] บนชื่อ บนกระดานฝ่ายเรา 1 ตัว (การ์ดที่ติดอยู่ ตัวนับแดเมจ สภาวะผิดปกติ เอฟเฟกต์ทั้งหมดยังคงอยู่ต่อไป) ทิ้งโปเกมอนที่สลับที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "從自己的棄牌區選擇1張名稱中有「厄鬼椪」的「寶可夢【ex】」卡,與自己的場上的1隻名稱中有「厄鬼椪」的「寶可夢【ex】」互換(所附加的卡・傷害指示物・特殊狀態・效果等全部保留)。將換下的寶可夢丟棄。", + 'zh-cn': "從自己的棄牌區選擇1張名稱中有「厄鬼椪」的「寶可夢【ex】」卡,與自己的場上的1隻名稱中有「厄鬼椪」的「寶可夢【ex】」互換(所附加的卡・傷害指示物・特殊狀態・效果等全部保留)。將換下的寶可夢丟棄。" + }, + + trainerType: "Item", + regulationMark: "H", + energyType: "Normal" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/138.ts b/data-asia/SV/SV8a/138.ts new file mode 100644 index 000000000..96e7c42a1 --- /dev/null +++ b/data-asia/SV/SV8a/138.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "改造ハンマー", + id: "Palu Luar Biasa", + th: "ค้อนสลายพลังงาน", + 'zh-tw': "改造之錘", + 'zh-cn': "改造之錘" + }, + + illustrator: "Eske Yoshinob", + rarity: "None", + category: "Trainer", + + effect: { + ja: "相手の場のポケモンについている特殊エネルギーを1個選び、トラッシュする。", + id: "Pilih 1 Energi Spesial yang dikenakan pada Pokémon di Arena lawan, lalu buang ke Trash.", + th: "เลือกพลังงานพิเศษที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "選擇1個對手的場上寶可夢身上附加的特殊能量,將其丟棄。", + 'zh-cn': "選擇1個對手的場上寶可夢身上附加的特殊能量,將其丟棄。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/139.ts b/data-asia/SV/SV8a/139.ts new file mode 100644 index 000000000..6bca917f6 --- /dev/null +++ b/data-asia/SV/SV8a/139.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "カウンターキャッチャー", + id: "Counter Catcher", + th: "เคาน์เตอร์ แคชเชอร์", + 'zh-tw': "反擊捕捉器", + 'zh-cn': "反擊捕捉器" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、自分のサイドの残り枚数が、相手のサイドの残り枚数より多いときにしか使えない。\n\n相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。", + id: "Kartu ini hanya dapat digunakan saat sisa Kartu Point sendiri lebih banyak dari sisa Kartu Point lawan. Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung.", + th: "การ์ดนี้ จะใช้ได้แค่ตอนที่จำนวนการ์ดรางวัลที่เหลือของฝ่ายเรา มากกว่าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้าม เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้", + 'zh-tw': "這張卡只有在自己剩餘獎賞卡的張數比對手剩餘獎賞卡的張數多時才可使用。 選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。", + 'zh-cn': "這張卡只有在自己剩餘獎賞卡的張數比對手剩餘獎賞卡的張數多時才可使用。 選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。" + }, + + trainerType: "Item", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/140.ts b/data-asia/SV/SV8a/140.ts new file mode 100644 index 000000000..c3571d9fc --- /dev/null +++ b/data-asia/SV/SV8a/140.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ガラスのラッパ", + id: "Terompet Kaca", + th: "ทรัมเป็ตแก้ว", + 'zh-tw': "玻璃喇叭", + 'zh-cn': "玻璃喇叭" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、自分の場に「テラスタル」のポケモンがいるときにしか使えない。\n\n自分のベンチのポケモンを2匹まで選び、トラッシュから基本エネルギーを1枚ずつつける。", + id: "Kartu ini hanya dapat digunakan saat ada Pokémon Terastal di Arena sendiri. Pilih paling banyak 2 Pokémon {Bening} di Cadangan sendiri, lalu kenakan Energi Dasar masing-masing 1 lembar dari Trash.", + th: "การ์ดนี้ จะใช้ได้แค่ตอนที่บนกระดานฝ่ายเรามีโปเกมอน [เทรัสตัล] เลือกโปเกมอน[ไร้สี]บนเบนช์ฝ่ายเราได้สูงสุด 2 ตัว นำการ์ดพลังงานพื้นฐานจากตำแหน่งทิ้งการ์ดมาติดตัวละ 1 ใบ", + 'zh-tw': "這張卡只有在自己的場上有「太晶」寶可夢時才可使用。 選擇最多2隻自己的備戰區的【無】寶可夢,從棄牌區附給那些寶可夢各1張基本能量卡。", + 'zh-cn': "這張卡只有在自己的場上有「太晶」寶可夢時才可使用。 選擇最多2隻自己的備戰區的【無】寶可夢,從棄牌區附給那些寶可夢各1張基本能量卡。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/141.ts b/data-asia/SV/SV8a/141.ts new file mode 100644 index 000000000..7fe8b4e1a --- /dev/null +++ b/data-asia/SV/SV8a/141.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "スーパーエネルギー回収", + id: "Pemulihan Energi Super", + th: "กู้คืนพลังงานแบบพิเศษ", + 'zh-tw': "超級能量回收", + 'zh-cn': "超級能量回收" + }, + + illustrator: "Studio Bora Inc.", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を2枚トラッシュしなければ使えない。\n\n自分のトラッシュから基本エネルギーを4枚まで選び、相手に見せて、手札に加える。(このカードの効果でトラッシュしたエネルギーは選べない。)", + id: "Kartu ini dapat digunakan jika pemain membuang 2 lembar Kartu Pegangan sendiri ke Trash. Pilih paling banyak 4 lembar Energi Dasar dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. (Tidak dapat memilih Energi yang dibuang ke Trash akibat efek kartu ini.)", + th: "การ์ดนี้ ถ้าไม่ทิ้งการ์ดบนมือฝ่ายเรา 2 ใบที่ตำแหน่งทิ้งการ์ดจะใช้ไม่ได้ เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 4 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ (เลือกการ์ดพลังงานที่ทิ้งบนตำแหน่งทิ้งการ์ดด้วยเอฟเฟกต์ของการ์ดนี้ไม่ได้)", + 'zh-tw': "這張卡必須將自己的2張手牌丟棄才可使用。 從自己的棄牌區選擇最多4張基本能量卡,在給對手看過後加入手牌。(不可選擇因這張卡的效果而丟棄的能量卡。)", + 'zh-cn': "這張卡必須將自己的2張手牌丟棄才可使用。 從自己的棄牌區選擇最多4張基本能量卡,在給對手看過後加入手牌。(不可選擇因這張卡的效果而丟棄的能量卡。)" + }, + + trainerType: "Item", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/142.ts b/data-asia/SV/SV8a/142.ts new file mode 100644 index 000000000..314729d34 --- /dev/null +++ b/data-asia/SV/SV8a/142.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "つりざおMAX", + id: "Kail MAX", + th: "คันเบ็ด MAX", + 'zh-tw': "釣竿MAX", + 'zh-cn': "釣竿MAX" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分のトラッシュからポケモンと基本エネルギーを合計5枚まで選び、相手に見せて、手札に加える。", + id: "Pilih paling banyak total 5 lembar Pokémon dan Energi Dasar dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan.", + th: "เลือกการ์ดโปเกมอนและการ์ดพลังงานพื้นฐานรวมกันได้สูงสุด 5 ใบ จากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ", + 'zh-tw': "從自己的棄牌區選擇寶可夢卡與基本能量卡合計最多5張,在給對手看過後加入手牌。", + 'zh-cn': "從自己的棄牌區選擇寶可夢卡與基本能量卡合計最多5張,在給對手看過後加入手牌。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/143.ts b/data-asia/SV/SV8a/143.ts new file mode 100644 index 000000000..8683b1aa2 --- /dev/null +++ b/data-asia/SV/SV8a/143.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "大地の器", + id: "Wadah Daratan", + th: "ภาชนะแห่งผืนปฐพี", + 'zh-tw': "大地之容器", + 'zh-cn': "大地之容器" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を1枚トラッシュしなければ使えない。\n\n自分の山札から基本エネルギーを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Kartu ini dapat digunakan jika pemain membuang 1 lembar Kartu Pegangan sendiri ke Trash. Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "การ์ดนี้ ถ้าไม่ทิ้งการ์ดบนมือฝ่ายเรา 1 ใบที่ตำแหน่งทิ้งการ์ดจะใช้ไม่ได้ เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "這張卡必須將自己的1張手牌丟棄才可使用。 從自己的牌庫選擇最多2張基本能量卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "這張卡必須將自己的1張手牌丟棄才可使用。 從自己的牌庫選擇最多2張基本能量卡,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + trainerType: "Item", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/144.ts b/data-asia/SV/SV8a/144.ts new file mode 100644 index 000000000..f39471fc1 --- /dev/null +++ b/data-asia/SV/SV8a/144.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テクノレーダー", + id: "Techno Radar", + th: "เทคโนเรดาร์", + 'zh-tw': "高科技雷達", + 'zh-cn': "高科技雷達" + }, + + illustrator: "inose yukie", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を1枚トラッシュしなければ使えない。\n\n自分の山札から「未来」のポケモンを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Kartu ini dapat digunakan jika pemain membuang 1 lembar Kartu Pegangan sendiri ke Trash. Pilih paling banyak 2 lembar Pokémon Futur dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "การ์ดนี้ ถ้าไม่ทิ้งการ์ดบนมือฝ่ายเรา 1 ใบที่ตำแหน่งทิ้งการ์ดจะใช้ไม่ได้ เลือกการ์ดโปเกมอน [อนาคต] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "這張卡必須將自己的1張手牌丟棄才可使用。 從自己的牌庫選擇最多2張「未來」寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "這張卡必須將自己的1張手牌丟棄才可使用。 從自己的牌庫選擇最多2張「未來」寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + trainerType: "Item", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/145.ts b/data-asia/SV/SV8a/145.ts new file mode 100644 index 000000000..b0e6cf57b --- /dev/null +++ b/data-asia/SV/SV8a/145.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テラスタルオーブ", + id: "Terastal Orb", + th: "ลูกแก้วเทรัสตัล", + 'zh-tw': "太晶珠", + 'zh-cn': "太晶珠" + }, + + illustrator: "Ayaka Yoshida", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札から「テラスタル」のポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Pilih 1 lembar Pokémon Terastal dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดโปเกมอน [เทรัสตัล] 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "從自己的牌庫選擇1張「太晶」寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇1張「太晶」寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/146.ts b/data-asia/SV/SV8a/146.ts new file mode 100644 index 000000000..7cdea466d --- /dev/null +++ b/data-asia/SV/SV8a/146.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "トレジャーガジェット", + id: "Treasure Gadget", + th: "เทรเชอร์แกดเจ็ต", + 'zh-tw': "珍寶配件", + 'zh-cn': "珍寶配件" + }, + + illustrator: "inose yukie", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札から「ポケモンのどうぐ」を5枚まで選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Pilih paling banyak 5 lembar Pokémon Tool dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ด [ไอเท็มติดโปเกมอน] ได้สูงสุด 5 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "從自己的牌庫選擇最多5張「寶可夢道具」卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多5張「寶可夢道具」卡,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/147.ts b/data-asia/SV/SV8a/147.ts new file mode 100644 index 000000000..750ca1b2b --- /dev/null +++ b/data-asia/SV/SV8a/147.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "なかよしポフィン", + id: "Poffin Bersahabat", + th: "โปฟฟินมิตรภาพ", + 'zh-tw': "好友寶芬", + 'zh-cn': "好友寶芬" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札から、HPが「70」以下のたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。", + id: "Pilih paling banyak 2 lembar Pokémon Basic dengan HP 70 atau kurang dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดโปเกมอน[พื้นฐาน]ที่มี HP น้อยกว่าหรือเท่ากับ [70] ได้สูงสุด 2 ใบ จากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด", + 'zh-tw': "從自己的牌庫選擇最多2張HP為「70」以下的【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張HP為「70」以下的【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/148.ts b/data-asia/SV/SV8a/148.ts new file mode 100644 index 000000000..a0d81e43a --- /dev/null +++ b/data-asia/SV/SV8a/148.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "プライムキャッチャー", + id: "Prime Catcher", + th: "ไพรม์แคชเชอร์", + 'zh-tw': "頂尖捕捉器", + 'zh-cn': "頂尖捕捉器" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。その後、自分のバトルポケモンをベンチポケモンと入れ替える。", + id: "Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, tukar Pokémon Bertarung sendiri dengan Pokémon Cadangan.", + th: "เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้ หลังจากนั้น สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายเรากับโปเกมอนบนเบนช์", + 'zh-tw': "選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。然後,將自己的戰鬥寶可夢與備戰寶可夢互換。", + 'zh-cn': "選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。然後,將自己的戰鬥寶可夢與備戰寶可夢互換。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/149.ts b/data-asia/SV/SV8a/149.ts new file mode 100644 index 000000000..04341003e --- /dev/null +++ b/data-asia/SV/SV8a/149.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ポケモン回収サイクロン", + id: "Siklon Pengangkat Pokémon", + th: "ไซโคลนเก็บคืนโปเกมอน", + 'zh-tw': "寶可夢旋風回收機", + 'zh-cn': "寶可夢旋風回收機" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の場のポケモンを1匹選び、そのポケモンと、ついているすべてのカードを、手札にもどす。", + id: "Pilih 1 Pokémon di Arena sendiri, lalu kembalikan Pokémon tersebut dan semua kartu yang dikenakannya ke Kartu Pegangan.", + th: "เลือกโปเกมอนบนกระดานฝ่ายเรา 1 ตัว นำโปเกมอนนั้น และการ์ดทั้งหมดที่ติดอยู่ กลับขึ้นมือ", + 'zh-tw': "選擇1隻自己的場上寶可夢,將那隻寶可夢與附加的卡,全部放回手牌。", + 'zh-cn': "選擇1隻自己的場上寶可夢,將那隻寶可夢與附加的卡,全部放回手牌。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/150.ts b/data-asia/SV/SV8a/150.ts new file mode 100644 index 000000000..110cc8a08 --- /dev/null +++ b/data-asia/SV/SV8a/150.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "むしとりセット", + id: "Set Penangkap Serangga", + th: "ชุดจับแมลง", + 'zh-tw': "捕蟲組合", + 'zh-cn': "捕蟲組合" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札を上から7枚見て、その中からポケモンと「基本エネルギー」を合計2枚まで選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。", + id: "Lihat 7 kartu dari atas Deck sendiri, pilih paling banyak total 2 lembar Pokémon {Daun} dan Energi Dasar {Daun} di antaranya, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck.", + th: "ดูการ์ด 7 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดโปเกมอน[หญ้า]และการ์ด [พลังงานพื้นฐาน[หญ้า]] รวมกันได้สูงสุด 2 ใบจากในนั้น ให้ฝ่ายตรงข้ามดู นำขึ้นมือ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ", + 'zh-tw': "查看自己的牌庫上方7張卡,從其中選擇【草】寶可夢卡與「基本【草】能量」卡合計最多2張,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。", + 'zh-cn': "查看自己的牌庫上方7張卡,從其中選擇【草】寶可夢卡與「基本【草】能量」卡合計最多2張,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/151.ts b/data-asia/SV/SV8a/151.ts new file mode 100644 index 000000000..26fd1c1b1 --- /dev/null +++ b/data-asia/SV/SV8a/151.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "夜のタンカ", + id: "Tandu Malam‌", + th: "เปลหามยามราตรี", + 'zh-tw': "夜間擔架", + 'zh-cn': "夜間擔架" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分のトラッシュからポケモンまたは基本エネルギーを1枚選び、相手に見せて、手札に加える。", + id: "Pilih 1 lembar Pokémon atau Energi Dasar dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan.", + th: "เลือกการ์ดโปเกมอนหรือการ์ดพลังงานพื้นฐาน 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ", + 'zh-tw': "從自己的棄牌區選擇1張寶可夢卡或者基本能量卡,在給對手看過後加入手牌。", + 'zh-cn': "從自己的棄牌區選擇1張寶可夢卡或者基本能量卡,在給對手看過後加入手牌。" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/152.ts b/data-asia/SV/SV8a/152.ts new file mode 100644 index 000000000..5ad5d7218 --- /dev/null +++ b/data-asia/SV/SV8a/152.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "きらめく結晶", + id: "Kristal Gemerlap‌", + th: "ผลึกระยิบระยับ", + 'zh-tw': "璀璨結晶", + 'zh-cn': "璀璨結晶" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードをつけている「テラスタル」のポケモンがワザを使うとき、そのワザを使うためのエネルギーは、1個ぶん少なくなる。(少なくなるのは、どのタイプのエネルギーでもよい。)", + id: "Saat Pokémon Terastal yang mengenakan kartu ini menggunakan serangan, Energi yang dibutuhkan untuk menggunakan serangan tersebut berkurang 1. (Dapat memilih Energi tipe apa pun sebagai Energi yang berkurang.)", + th: "เมื่อโปเกมอน [เทรัสตัล] ที่ติดการ์ดนี้อยู่จะใช้ท่าต่อสู้ พลังงานสำหรับใช้ท่าต่อสู้นั้น จะลดลง 1 ลูก (พลังงานที่ลดลงจะเป็นประเภทไหนก็ได้)", + 'zh-tw': "附有這張卡的「太晶」寶可夢使用招式時,使用那個招式所需的能量減少1個。(減少的能量任何屬性皆可。)", + 'zh-cn': "附有這張卡的「太晶」寶可夢使用招式時,使用那個招式所需的能量減少1個。(減少的能量任何屬性皆可。)" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/153.ts b/data-asia/SV/SV8a/153.ts new file mode 100644 index 000000000..1faaa7804 --- /dev/null +++ b/data-asia/SV/SV8a/153.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "緊急ボード", + id: "Emergency Board", + th: "บอร์ดฉุกเฉิน", + 'zh-tw': "緊急滑板", + 'zh-cn': "緊急滑板" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンは、にげるためのエネルギーが1個ぶん少なくなる。そのポケモンの残りHPが「30」以下なら、にげるためのエネルギーは、すべてなくなる。", + id: "Energi yang dibutuhkan oleh Pokémon yang mengenakan kartu ini untuk Mundur berkurang 1. Jika sisa HP Pokémon tersebut adalah 30 atau kurang, Pokémon tersebut menjadi tidak membutuhkan Energi untuk Mundur.", + th: "โปเกมอนที่ติดการ์ดนี้อยู่ พลังงานสำหรับ[หนี]จะลดลง 1 ลูก ถ้าโปเกมอนนั้นมี HP เหลือน้อยกว่าหรือเท่ากับ [30] พลังงานสำหรับ[หนี] ทั้งหมดจะหายไป", + 'zh-tw': "附有這張卡的寶可夢,【撤退】所需的能量減少1個。若那隻寶可夢的剩餘HP為「30」以下,則【撤退】所需的能量全部消除。", + 'zh-cn': "附有這張卡的寶可夢,【撤退】所需的能量減少1個。若那隻寶可夢的剩餘HP為「30」以下,則【撤退】所需的能量全部消除。" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/154.ts b/data-asia/SV/SV8a/154.ts new file mode 100644 index 000000000..ff734e2e5 --- /dev/null +++ b/data-asia/SV/SV8a/154.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "くさりもち", + id: "Moci Rantai‌", + th: "โมจิอันทุ", + 'zh-tw': "鎖鏈糬", + 'zh-cn': "鎖鏈糬" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードをつけているどくのポケモンが使うワザの、相手のバトルポケモンへのダメージは「+40」される。", + id: "Kerusakan akibat serangan yang digunakan oleh Pokémon yang mengalami kondisi Racun dan mengenakan kartu ini kepada Pokémon Bertarung lawan bertambah sejumlah 40.", + th: "แดเมจของท่าต่อสู้ที่โปเกมอนที่เป็นสภาวะ[พิษ]ที่ติดการ์ดนี้อยู่ ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+40]", + 'zh-tw': "附有這張卡的【中毒】的寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+40」點。", + 'zh-cn': "附有這張卡的【中毒】的寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+40」點。" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/155.ts b/data-asia/SV/SV8a/155.ts new file mode 100644 index 000000000..e5e146a10 --- /dev/null +++ b/data-asia/SV/SV8a/155.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ゴージャスマント", + id: "Gorgeous Mantle", + th: "ผ้าคลุมหรูหรา", + 'zh-tw': "豪華斗篷", + 'zh-cn': "豪華斗篷" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモン(「ルールを持つポケモン」をのぞく)の最大HPは「+100」され、そのポケモンが、相手のポケモンからワザのダメージを受けてきぜつしたとき、とられるサイドは1枚多くなる。", + id: "HP maksimal Pokémon (selain Pokémon yang memiliki Peraturan) yang mengenakan kartu ini bertambah sejumlah 100 dan saat Pokémon tersebut KO karena menerima kerusakan akibat serangan dari Pokémon lawan, Kartu Point yang diambil lawan bertambah 1 lembar.", + th: "HP สูงสุดของโปเกมอนที่ติดการ์ดนี้อยู่ (ยกเว้น [โปเกมอนที่มีกฎ]) จะถูก [+100] เมื่อโปเกมอนนั้น ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้ามและ[หมดสภาพ]แล้ว การ์ดรางวัลที่หยิบได้จะเพิ่มขึ้น 1 ใบ", + 'zh-tw': "附有這張卡的寶可夢(「擁有規則的寶可夢」除外)的最大HP「+100」,那隻寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,被獲得的獎賞卡的張數增加1張。", + 'zh-cn': "附有這張卡的寶可夢(「擁有規則的寶可夢」除外)的最大HP「+100」,那隻寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,被獲得的獎賞卡的張數增加1張。" + }, + + trainerType: "Tool", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/156.ts b/data-asia/SV/SV8a/156.ts new file mode 100644 index 000000000..cf346ef42 --- /dev/null +++ b/data-asia/SV/SV8a/156.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ハバンのみ", + id: "Beri Haban", + th: "ผลฮาบัน", + 'zh-tw': "莓榴果", + 'zh-cn': "莓榴果" + }, + + illustrator: "Studio Bora Inc.", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンが、相手のポケモンからワザのダメージを受けるとき、そのダメージは「-60」され、このカードをトラッシュする。", + id: "Saat Pokémon yang mengenakan kartu ini menerima kerusakan akibat serangan dari Pokémon {Naga} lawan, kerusakan tersebut berkurang sejumlah 60, lalu buang kartu ini ke Trash.", + th: "เมื่อโปเกมอนที่ติดการ์ดนี้อยู่ ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[มังกร]ฝ่าย ตรงข้าม แดเมจนั้นจะถูก [-60] ทิ้งการ์ดนี้ที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "附有這張卡的寶可夢受到對手的【龍】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。", + 'zh-cn': "附有這張卡的寶可夢受到對手的【龍】寶可夢招式的傷害時,那個傷害「-60」點,將這張卡丟棄。" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/157.ts b/data-asia/SV/SV8a/157.ts new file mode 100644 index 000000000..7e5372684 --- /dev/null +++ b/data-asia/SV/SV8a/157.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブーストエナジー 古代", + id: "Pemacu Energi Purba", + th: "บูสต์เอนเนอร์จี้ โบราณ", + 'zh-tw': "驅勁能量 古代", + 'zh-cn': "驅勁能量 古代" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードをつけている「古代」のポケモンは、最大HPが「+60」され、そのポケモンは、特殊状態にならず、受けている特殊状態は、すべて回復する。", + id: "HP maksimal Pokémon Purba yang mengenakan kartu ini bertambah sejumlah 60, Pokémon tersebut tidak akan menjadi Kondisi Khusus, dan jika sedang mengalami Kondisi Khusus, pulihkan semua Kondisi Khusus yang dialami Pokémon tersebut.", + th: "โปเกมอน [โบราณ] ที่ติดการ์ดนี้อยู่ HP สูงสุดจะถูก [+60] โปเกมอนนั้น จะไม่เป็นสภาวะผิดปกติ และจะหายจากสภาวะผิดปกติทั้งหมดที่ได้รับมา", + 'zh-tw': "附有這張卡的「古代」寶可夢的最大HP「+60」,那隻寶可夢不會陷入特殊狀態,並將受到的特殊狀態全部恢復。", + 'zh-cn': "附有這張卡的「古代」寶可夢的最大HP「+60」,那隻寶可夢不會陷入特殊狀態,並將受到的特殊狀態全部恢復。" + }, + + trainerType: "Tool", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/158.ts b/data-asia/SV/SV8a/158.ts new file mode 100644 index 000000000..97096d3bf --- /dev/null +++ b/data-asia/SV/SV8a/158.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブーストエナジー 未来", + id: "Pemacu Energi Futur", + th: "บูสต์เอนเนอร์จี้ อนาคต", + 'zh-tw': "驅勁能量 未來", + 'zh-cn': "驅勁能量 未來" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードをつけている「未来」のポケモンは、にげるためのエネルギーがすべてなくなり、そのポケモンが使うワザの、相手のバトルポケモンへのダメージは「+20」される。", + id: "Pokémon Futur yang mengenakan kartu ini menjadi tidak membutuhkan Energi untuk Mundur dan kerusakan akibat serangan yang digunakan oleh Pokémon tersebut kepada Pokémon Bertarung lawan bertambah sejumlah 20.", + th: "โปเกมอน [อนาคต] ที่ติดการ์ดนี้อยู่ พลังงานสำหรับ[หนี]ทั้งหมดจะหายไป แดเมจของท่าต่อสู้ที่โปเกมอนนั้น ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+20]", + 'zh-tw': "附有這張卡的「未來」寶可夢【撤退】所需的能量全部消除,那隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+20」點。", + 'zh-cn': "附有這張卡的「未來」寶可夢【撤退】所需的能量全部消除,那隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+20」點。" + }, + + trainerType: "Tool", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/159.ts b/data-asia/SV/SV8a/159.ts new file mode 100644 index 000000000..a93cd1f3c --- /dev/null +++ b/data-asia/SV/SV8a/159.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "マキシマムベルト", + id: "Sabuk Maksimum", + th: "เข็มขัดแมกซิมัม", + 'zh-tw': "極限腰帶", + 'zh-cn': "極限腰帶" + }, + + illustrator: "inose yukie", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンが使うワザの、相手のバトル場の「ポケモンex」へのダメージは「+50」される。", + id: "Kerusakan akibat serangan yang digunakan oleh Pokémon yang mengenakan kartu ini kepada Pokémon {ex} di Arena Bertarung lawan bertambah sejumlah 50.", + th: "แดเมจของท่าต่อสู้ที่โปเกมอนที่ติดการ์ดนี้อยู่ ใช้ทำกับ [โปเกมอน【ex】] บนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+50]", + 'zh-tw': "附有這張卡的寶可夢使用的招式,對對手的戰鬥場的「寶可夢【ex】」造成的傷害「+50」點。", + 'zh-cn': "附有這張卡的寶可夢使用的招式,對對手的戰鬥場的「寶可夢【ex】」造成的傷害「+50」點。" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/160.ts b/data-asia/SV/SV8a/160.ts new file mode 100644 index 000000000..356142dec --- /dev/null +++ b/data-asia/SV/SV8a/160.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ワザマシン エヴォリューション", + id: "MJ Evolution", + th: "แมชชีนท่าต่อสู้ อีโวลูชัน", + 'zh-tw': "招式學習器 演進", + 'zh-cn': "招式學習器 演進" + }, + + illustrator: "Studio Bora Inc.", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンは、このカードに書かれているワザを使える。[ワザを使うためのエネルギーは必要。]\nポケモンについているこのカードは、自分の番の終わりにトラッシュする。", + id: "Pokémon yang mengenakan kartu ini dapat menggunakan serangan yang tertulis pada kartu ini. [Pemain tetap membutuhkan Energi untuk menggunakan serangan tersebut.] Kartu ini yang dikenakan pada Pokémon dibuang ke Trash pada akhir giliran sendiri.", + th: "โปเกมอนที่ติดการ์ดนี้อยู่ สามารถใช้ท่าต่อสู้ที่เขียนอยู่บนการ์ดนี้ได้ {จำเป็นต้องใช้พลังงานสำหรับใช้ท่าต่อสู้} การ์ดนี้ที่ติดอยู่กับโปเกมอน จะทิ้งที่ตำแหน่งทิ้งการ์ดเมื่อจบเทิร์นฝ่ายเรา", + 'zh-tw': "附有這張卡的寶可夢,可使用這張卡上寫的招式。[需要有足夠使用招式的能量。] 將附於寶可夢身上的這張卡,在自己的回合結束時丟棄。", + 'zh-cn': "附有這張卡的寶可夢,可使用這張卡上寫的招式。[需要有足夠使用招式的能量。] 將附於寶可夢身上的這張卡,在自己的回合結束時丟棄。" + }, + + trainerType: "Tool", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/161.ts b/data-asia/SV/SV8a/161.ts new file mode 100644 index 000000000..56e89578a --- /dev/null +++ b/data-asia/SV/SV8a/161.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ワザマシン デヴォリューション", + id: "MJ Devolution", + th: "แมชชีนท่าต่อสู้ ดีโวลูชัน", + 'zh-tw': "招式學習器 ‌衰退", + 'zh-cn': "招式學習器 ‌衰退" + }, + + illustrator: "Studio Bora Inc.", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンは、このカードに書かれているワザを使える。[ワザを使うためのエネルギーは必要。]\nポケモンについているこのカードは、自分の番の終わりにトラッシュする。", + id: "Pokémon yang mengenakan kartu ini dapat menggunakan serangan yang tertulis pada kartu ini. [Pemain tetap membutuhkan Energi untuk menggunakan serangan tersebut.] Kartu ini yang dikenakan pada Pokémon dibuang ke Trash pada akhir giliran sendiri.", + th: "โปเกมอนที่ติดการ์ดนี้อยู่ สามารถใช้ท่าต่อสู้ที่เขียนอยู่บนการ์ดนี้ได้ {จำเป็นต้องใช้พลังงานสำหรับใช้ท่าต่อสู้} การ์ดนี้ที่ติดอยู่กับโปเกมอน จะทิ้งที่ตำแหน่งทิ้งการ์ดเมื่อจบเทิร์นฝ่ายเรา", + 'zh-tw': "附有這張卡的寶可夢,可使用這張卡上寫的招式。[需要有足夠使用招式的能量。] 將附於寶可夢身上的這張卡,在自己的回合結束時丟棄。", + 'zh-cn': "附有這張卡的寶可夢,可使用這張卡上寫的招式。[需要有足夠使用招式的能量。] 將附於寶可夢身上的這張卡,在自己的回合結束時丟棄。" + }, + + trainerType: "Tool", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/162.ts b/data-asia/SV/SV8a/162.ts new file mode 100644 index 000000000..748a46bcd --- /dev/null +++ b/data-asia/SV/SV8a/162.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アオキの手際", + id: "Kecekatan Dafin", + th: "ฝีมือช่ำชองของอาโอกิ", + 'zh-tw': "青木的手法", + 'zh-cn': "青木的手法" + }, + + illustrator: "hncl", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の手札をすべてトラッシュし、自分の山札から「ポケモン」「サポート」「基本エネルギー」を1枚ずつ選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Buang semua Kartu Pegangan sendiri ke Trash, pilih Pokémon, Supporter, dan Energi Dasar masing-masing 1 lembar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "ทิ้งการ์ดบนมือฝ่ายเราทั้งหมดที่ตำแหน่งทิ้งการ์ด เลือกการ์ด [โปเกมอน] การ์ด [ซัพพอร์ต] การ์ด [พลังงานพื้นฐาน] อย่างละ 1 ใบจากสำรับการ์ด ฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "將自己的手牌全部丟棄,從自己的牌庫選擇「寶可夢」卡「支援者」卡「基本能量」卡各1張,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "將自己的手牌全部丟棄,從自己的牌庫選擇「寶可夢」卡「支援者」卡「基本能量」卡各1張,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/163.ts b/data-asia/SV/SV8a/163.ts new file mode 100644 index 000000000..6030e1776 --- /dev/null +++ b/data-asia/SV/SV8a/163.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アカマツ", + id: "Akamatsu", + th: "อาคามัตสึ", + 'zh-tw': "赤松", + 'zh-cn': "赤松" + }, + + illustrator: "GIDORA", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札から、それぞれちがうタイプの基本エネルギーを2枚まで選び、相手に見せて、どちらか1枚を手札に加え、残りのエネルギーを自分のポケモンにつける。そして山札を切る。", + id: "Pilih paling banyak 2 lembar Energi Dasar yang masing-masing berbeda tipenya dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan salah satu ke Kartu Pegangan dan kenakan sisa Energi pada Pokémon sendiri. Kemudian, kocok Deck.", + th: "เลือกการ์ดพลังงานพื้นฐานที่แต่ละใบต่างประเภทกันได้สูงสุด 2 ใบ จากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำใบใดใบหนึ่ง 1 ใบขึ้นมือ ติดการ์ดพลังงานที่เหลือที่โปเกมอนฝ่ายเรา แล้วสับสำรับการ์ด", + 'zh-tw': "從自己的牌庫選擇最多2張各不同屬性的基本能量卡,在給對手看過後,其中1張加入手牌,剩餘的能量卡附於自己的寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張各不同屬性的基本能量卡,在給對手看過後,其中1張加入手牌,剩餘的能量卡附於自己的寶可夢身上。並且重洗牌庫。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/164.ts b/data-asia/SV/SV8a/164.ts new file mode 100644 index 000000000..e36bd8ced --- /dev/null +++ b/data-asia/SV/SV8a/164.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アクロマの執念", + id: "Obsesi Colress‌", + th: "จิตยึดติดของอโครมา", + 'zh-tw': "阿克羅瑪的執著", + 'zh-cn': "阿克羅瑪的執著" + }, + + illustrator: "hncl", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札からスタジアムとエネルギーを1枚ずつ選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Pilih Stadium dan Energi masing-masing 1 lembar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดสเตเดียมและการ์ดพลังงานอย่างละ 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด", + 'zh-tw': "從自己的牌庫選擇競技場卡與能量卡各1張,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇競技場卡與能量卡各1張,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/165.ts b/data-asia/SV/SV8a/165.ts new file mode 100644 index 000000000..4119daa6c --- /dev/null +++ b/data-asia/SV/SV8a/165.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "暗号マニアの解読", + id: "Penelaahan Maniak Sandi", + th: "การถอดรหัสของผู้คลั่งไคล้รหัสลับ", + 'zh-tw': "暗碼迷的解讀", + 'zh-cn': "暗碼迷的解讀" + }, + + illustrator: "Taira Akitsu", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札から好きなカードを2枚選ぶ。残りの山札を切り、選んだカードを好きな順番に入れ替えて、山札の上にもどす。", + id: "Pilih 2 kartu sesukanya dari Deck sendiri. Kocok sisa Deck, tukar urutan kartu yang telah dipilih sesukanya, lalu kembalikan ke atas Deck.", + th: "เลือกการ์ดที่ชอบ 2 ใบจากสำรับการ์ดฝ่ายเรา สับสำรับการ์ดที่เหลือ เรียงการ์ดที่เลือกตามลำดับที่ชอบ ใส่กลับไปด้านบนของสำรับการ์ด", + 'zh-tw': "從自己的牌庫任意選擇2張卡。重洗剩餘牌庫,將所選的卡以任意順序排列,放回牌庫上方。", + 'zh-cn': "從自己的牌庫任意選擇2張卡。重洗剩餘牌庫,將所選的卡以任意順序排列,放回牌庫上方。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/166.ts b/data-asia/SV/SV8a/166.ts new file mode 100644 index 000000000..3244c3122 --- /dev/null +++ b/data-asia/SV/SV8a/166.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アンズの秘技", + id: "Teknik Rahasia Janine‌", + th: "เทคนิคลับของอันสุ", + 'zh-tw': "阿杏的秘招", + 'zh-cn': "阿杏的秘招" + }, + + illustrator: "Taira Akitsu", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分のポケモンを2匹まで選び、自分の山札から「基本エネルギー」を1枚ずつつける。そして山札を切る。バトルポケモンにつけた場合、そのポケモンをどくにする。", + id: "Pilih paling banyak 2 Pokémon {Kegelapan} sendiri, lalu kenakan Energi Dasar {Kegelapan} masing-masing 1 lembar dari Deck sendiri. Kemudian, kocok Deck. Jika dikenakan pada Pokémon Bertarung, ubah kondisi Pokémon tersebut menjadi Racun.", + th: "เลือกโปเกมอน[ความมืด]ฝ่ายเราได้สูงสุด 2 ตัว นำการ์ด [พลังงานพื้นฐาน[ความมืด]] จากสำรับการ์ดฝ่ายเรามาติดตัวละ 1 ใบ แล้วสับสำรับการ์ด เมื่อติดที่โปเกมอนบนตำแหน่งต่อสู้แล้ว ทำให้โปเกมอนนั้นเป็นสภาวะ[พิษ]", + 'zh-tw': "選擇最多2隻自己的【惡】寶可夢,從自己的牌庫附給那些寶可夢各1張「基本【惡】能量」卡。並且重洗牌庫。附於戰鬥寶可夢身上的情況下,將那隻寶可夢【中毒】。", + 'zh-cn': "選擇最多2隻自己的【惡】寶可夢,從自己的牌庫附給那些寶可夢各1張「基本【惡】能量」卡。並且重洗牌庫。附於戰鬥寶可夢身上的情況下,將那隻寶可夢【中毒】。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/167.ts b/data-asia/SV/SV8a/167.ts new file mode 100644 index 000000000..22edd765b --- /dev/null +++ b/data-asia/SV/SV8a/167.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーリム博士の気迫", + id: "Keintensan Profesor Olim", + th: "จิตมุ่งมั่นของศาสตราจารย์โอลิม", + 'zh-tw': "奧琳博士的氣魄", + 'zh-cn': "奧琳博士的氣魄" + }, + + illustrator: "Megumi Mizutani", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の「古代」のポケモンを2匹まで選び、トラッシュから基本エネルギーを1枚ずつつける。その後、自分の山札を3枚引く。", + id: "Pilih paling banyak 2 Pokémon Purba sendiri, lalu kenakan Energi Dasar masing-masing 1 lembar dari Trash. Setelah itu, ambil 3 kartu dari atas Deck sendiri.", + th: "เลือกโปเกมอน [โบราณ] ฝ่ายเราได้สูงสุด 2 ตัว นำการ์ดพลังงานพื้นฐานจากตำแหน่งทิ้งการ์ดมาติดตัวละ 1 ใบ หลังจากนั้น จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา", + 'zh-tw': "選擇最多2隻自己的「古代」寶可夢,從棄牌區附給那些寶可夢各1張基本能量卡。然後,從自己的牌庫抽出3張卡。", + 'zh-cn': "選擇最多2隻自己的「古代」寶可夢,從棄牌區附給那些寶可夢各1張基本能量卡。然後,從自己的牌庫抽出3張卡。" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/168.ts b/data-asia/SV/SV8a/168.ts new file mode 100644 index 000000000..6cd7cb53b --- /dev/null +++ b/data-asia/SV/SV8a/168.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "スイレンのお世話", + id: "Pelayanan Lana", + th: "การปรนนิบัติของซุยเรน", + 'zh-tw': "水蓮的照顧", + 'zh-cn': "水蓮的照顧" + }, + + illustrator: "Atsushi Furusawa", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分のトラッシュからポケモン(「ルールを持つポケモン」をのぞく)と基本エネルギーを合計3枚まで選び、相手に見せて、手札に加える。", + id: "Pilih paling banyak total 3 lembar Pokémon (selain Pokémon yang memiliki Peraturan) dan Energi Dasar dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan.", + th: "เลือกการ์ดโปเกมอน (ยกเว้น [โปเกมอนที่มีกฎ]) และการ์ดพลังงานพื้นฐานรวมกันได้สูงสุด 3 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ", + 'zh-tw': "從自己的棄牌區選擇寶可夢卡(「擁有規則的寶可夢」除外)與基本能量卡合計最多3張,在給對手看過後加入手牌。", + 'zh-cn': "從自己的棄牌區選擇寶可夢卡(「擁有規則的寶可夢」除外)與基本能量卡合計最多3張,在給對手看過後加入手牌。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/169.ts b/data-asia/SV/SV8a/169.ts new file mode 100644 index 000000000..12f129b01 --- /dev/null +++ b/data-asia/SV/SV8a/169.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "スグリ", + id: "Suguri", + th: "ซุกุริ", + 'zh-tw': "烏栗", + 'zh-cn': "烏栗" + }, + + illustrator: "GIDORA", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、2つの効果から1つを選んで使う。\n\n◆自分のバトルポケモンをベンチポケモンと入れ替える。\n\n◆この番、自分のポケモンが使うワザの、相手のバトル場の「ポケモンex・V」へのダメージは「+30」される。", + id: "Kartu ini digunakan dengan memilih salah satu dari dua efek berikut. ◆ Tukar Pokémon Bertarung sendiri dengan Pokémon Cadangan. ◆ Pada giliran ini, kerusakan akibat serangan yang digunakan oleh Pokémon sendiri kepada Pokémon {ex}/{V} di Arena Bertarung lawan bertambah sejumlah 30.", + th: "การ์ดนี้ เลือกใช้ 1 เอฟเฟกต์จาก 2 เอฟเฟกต์ ◆สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายเรากับโปเกมอนบนเบนช์ ◆เทิร์นนี้ แดเมจของท่าต่อสู้ที่โปเกมอนฝ่ายเรา ใช้ทำกับ [โปเกมอน【ex】 /【V】] บนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+30]", + 'zh-tw': "這張卡從2種效果中選擇1種使用。 ◆將自己的戰鬥寶可夢與備戰寶可夢互換。 ◆在這個回合,自己的寶可夢使用的招式,對對手的戰鬥場的「寶可夢【ex】・【V】」造成的傷害「+30」點。", + 'zh-cn': "這張卡從2種效果中選擇1種使用。 ◆將自己的戰鬥寶可夢與備戰寶可夢互換。 ◆在這個回合,自己的寶可夢使用的招式,對對手的戰鬥場的「寶可夢【ex】・【V】」造成的傷害「+30」點。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/170.ts b/data-asia/SV/SV8a/170.ts new file mode 100644 index 000000000..0251572b3 --- /dev/null +++ b/data-asia/SV/SV8a/170.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ゼイユ", + id: "Seile", + th: "เซย์ยุ", + 'zh-tw': "丹瑜", + 'zh-cn': "丹瑜" + }, + + illustrator: "kantaro", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、先攻プレイヤーの最初の番でも使える。\n\n自分の手札をすべてトラッシュし、山札を5枚引く。", + id: "Kartu ini juga dapat digunakan pada giliran pertama Pemain Pertama. Buang semua Kartu Pegangan sendiri ke Trash, lalu ambil 5 kartu dari atas Deck.", + th: "การ์ดนี้ แม้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเริ่มก่อนก็สามารถใช้ได้ ทิ้งการ์ดบนมือฝ่ายเราทั้งหมดที่ตำแหน่งทิ้งการ์ด จั่วการ์ด 5 ใบจากสำรับการ์ด", + 'zh-tw': "這張卡可在先攻玩家的最初回合使用。 將自己的手牌全部丟棄,從牌庫抽出5張卡。", + 'zh-cn': "這張卡可在先攻玩家的最初回合使用。 將自己的手牌全部丟棄,從牌庫抽出5張卡。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/171.ts b/data-asia/SV/SV8a/171.ts new file mode 100644 index 000000000..3ebd93633 --- /dev/null +++ b/data-asia/SV/SV8a/171.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "タロ", + id: "Tara", + th: "ทาโร่", + 'zh-tw': "紫竽", + 'zh-cn': "紫竽" + }, + + illustrator: "Sanosuke Sakuma", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の手札をすべて山札にもどして切る。その後、山札を4枚引く。相手のサイドの残り枚数が3枚以下なら、引く枚数は8枚になる。", + id: "Kocok kembali semua Kartu Pegangan sendiri ke Deck. Setelah itu, ambil 4 kartu dari atas Deck. Jika sisa Kartu Point lawan adalah 3 lembar atau kurang, jumlah kartu yang diambil menjadi 8 lembar.", + th: "นำการ์ดบนมือฝ่ายเราทั้งหมดใส่กลับไปในสำรับการ์ดแล้วสับ หลังจากนั้น จั่วการ์ด 4 ใบจากสำรับการ์ด ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามน้อยกว่าหรือเท่ากับ 3 ใบ จำนวนการ์ดที่จั่วจะเป็น 8 ใบ", + 'zh-tw': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出4張卡。若對手剩餘獎賞卡的張數為3張以下,則改爲抽出8張卡。", + 'zh-cn': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出4張卡。若對手剩餘獎賞卡的張數為3張以下,則改爲抽出8張卡。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/172.ts b/data-asia/SV/SV8a/172.ts new file mode 100644 index 000000000..dc78085ac --- /dev/null +++ b/data-asia/SV/SV8a/172.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "探検家の先導", + id: "Bimbingan Penjelajah", + th: "การนำทางของนักสำรวจ", + 'zh-tw': "探險家的嚮導", + 'zh-cn': "探險家的嚮導" + }, + + illustrator: "Hideki Ishikawa", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札を上から6枚見て、その中からカードを2枚選び、手札に加える。残りのカードはトラッシュする。", + id: "Lihat 6 kartu dari atas Deck sendiri, pilih 2 kartu di antaranya, lalu tambahkan ke Kartu Pegangan. Buang sisa kartu ke Trash.", + th: "ดูการ์ด 6 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ด 2 ใบจากในนั้น นำขึ้นมือ ทิ้งการ์ดที่เหลือที่ตำแหน่งทิ้งการ์ด", + 'zh-tw': "查看自己的牌庫上方6張卡,從其中選擇2張卡加入手牌。將剩餘卡丟棄。", + 'zh-cn': "查看自己的牌庫上方6張卡,從其中選擇2張卡加入手牌。將剩餘卡丟棄。" + }, + + trainerType: "Supporter", + regulationMark: "H", + energyType: "Normal" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/173.ts b/data-asia/SV/SV8a/173.ts new file mode 100644 index 000000000..de4dcbaac --- /dev/null +++ b/data-asia/SV/SV8a/173.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ネリネ", + id: "Nerine", + th: "เนริเนะ", + 'zh-tw': "納莉", + 'zh-cn': "納莉" + }, + + illustrator: "Akira Komayama", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札を4枚引く。このカードを使った番の終わりに、自分の手札が5枚以上あるなら、自分の手札をすべてトラッシュする。", + id: "Ambil 4 kartu dari atas Deck sendiri. Jika pada akhir giliran digunakannya kartu ini, ada 5 lembar atau lebih kartu di Kartu Pegangan sendiri, buang semua Kartu Pegangan sendiri ke Trash.", + th: "จั่วการ์ด 4 ใบจากสำรับการ์ดฝ่ายเรา เมื่อจบเทิร์นที่ใช้การ์ดนี้ ถ้าการ์ดบนมือ ฝ่ายเรามากกว่าหรือเท่ากับ 5 ใบ ทิ้งการ์ดบนมือฝ่ายเราทั้งหมดที่ตำแหน่ง ทิ้งการ์ด", + 'zh-tw': "從自己的牌庫抽出4張卡。在使用了這張卡的回合結束時,若自己的手牌有5張以上,則將自己的手牌全部丟棄。", + 'zh-cn': "從自己的牌庫抽出4張卡。在使用了這張卡的回合結束時,若自己的手牌有5張以上,則將自己的手牌全部丟棄。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/174.ts b/data-asia/SV/SV8a/174.ts new file mode 100644 index 000000000..fa3d8f81b --- /dev/null +++ b/data-asia/SV/SV8a/174.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "パルデアの仲間たち", + id: "Teman-teman Paldea", + th: "พวกพ้องในพัลเดีย", + 'zh-tw': "帕底亞的夥伴", + 'zh-cn': "帕底亞的夥伴" + }, + + illustrator: "Cona Nitanda", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札を3枚引く。", + id: "Ambil 3 kartu dari atas Deck sendiri.", + th: "จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา", + 'zh-tw': "從自己的牌庫抽出3張卡。", + 'zh-cn': "從自己的牌庫抽出3張卡。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/175.ts b/data-asia/SV/SV8a/175.ts new file mode 100644 index 000000000..9fe15bb00 --- /dev/null +++ b/data-asia/SV/SV8a/175.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "フトゥー博士のシナリオ", + id: "Skenario Profesor Futu", + th: "แผนการของศาสตราจารย์ฟูทูร์", + 'zh-tw': "弗圖博士的劇本", + 'zh-cn': "弗圖博士的劇本" + }, + + illustrator: "hncl", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の場のポケモンを1匹選び、手札にもどす。(ポケモン以外のカードは、すべてトラッシュする。)", + id: "Pilih 1 Pokémon di Arena sendiri, lalu kembalikan ke Kartu Pegangan. (Buang semua kartu selain Pokémon ke Trash.)", + th: "เลือกโปเกมอนบนกระดานฝ่ายเรา 1 ตัว นำกลับขึ้นมือ (ทิ้งการ์ดทุกใบที่ไม่ใช่โปเกมอนที่ตำแหน่งทิ้งการ์ด)", + 'zh-tw': "選擇1隻自己的場上寶可夢,放回手牌。(寶可夢以外的卡全部丟棄。)", + 'zh-cn': "選擇1隻自己的場上寶可夢,放回手牌。(寶可夢以外的卡全部丟棄。)" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/176.ts b/data-asia/SV/SV8a/176.ts new file mode 100644 index 000000000..3e862c5eb --- /dev/null +++ b/data-asia/SV/SV8a/176.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブライア", + id: "Briar", + th: "ไบรอาร์", + 'zh-tw': "白蕾雅", + 'zh-cn': "白蕾雅" + }, + + illustrator: "Naoki Saito", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、相手のサイドの残り枚数が2枚のときにしか使えない。\n\nこの番、自分の「テラスタル」のポケモンが使うワザのダメージで、相手のバトルポケモンがきぜつしたなら、サイドを1枚多くとる。", + id: "Kartu ini hanya dapat digunakan saat sisa Kartu Point lawan adalah 2 lembar. Pada giliran ini, jika Pokémon Bertarung lawan KO karena kerusakan akibat serangan yang digunakan oleh Pokémon Terastal sendiri, ambil Kartu Point 1 lembar lebih banyak.", + th: "การ์ดนี้ จะใช้ได้แค่ตอนที่จำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามมี 2 ใบ เทิร์นนี้ ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้ที่โปเกมอน [เทรัสตัล] ฝ่ายเราใช้ หยิบการ์ดรางวัลเพิ่ม 1 ใบ", + 'zh-tw': "這張卡只有在對手剩餘獎賞卡的張數為2張時才可使用。 在這個回合,若對手的戰鬥寶可夢因自己的「太晶」寶可夢使用的招式的傷害而【昏厥】了,則多獲得1張獎賞卡。", + 'zh-cn': "這張卡只有在對手剩餘獎賞卡的張數為2張時才可使用。 在這個回合,若對手的戰鬥寶可夢因自己的「太晶」寶可夢使用的招式的傷害而【昏厥】了,則多獲得1張獎賞卡。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/177.ts b/data-asia/SV/SV8a/177.ts new file mode 100644 index 000000000..1b4942d24 --- /dev/null +++ b/data-asia/SV/SV8a/177.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ベルのまごころ", + id: "Kemurnian Hati Bianca", + th: "ความจริงใจของเบล", + 'zh-tw': "白露的真心", + 'zh-cn': "白露的真心" + }, + + illustrator: "En Morikura", + rarity: "None", + category: "Trainer", + + effect: { + ja: "残りHPが「30」以下の自分のポケモン1匹のHPを、すべて回復する。", + id: "Pulihkan HP 1 Pokémon sendiri dengan sisa HP 30 atau kurang sepenuhnya.", + th: "ฟื้นฟู HP ทั้งหมดของโปเกมอนฝ่ายเรา 1 ตัวที่มี HP เหลือน้อยกว่าหรือเท่ากับ [30]", + 'zh-tw': "將自己的1隻剩餘HP為「30」以下的寶可夢的HP全部恢復。", + 'zh-cn': "將自己的1隻剩餘HP為「30」以下的寶可夢的HP全部恢復。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/178.ts b/data-asia/SV/SV8a/178.ts new file mode 100644 index 000000000..1cf7404da --- /dev/null +++ b/data-asia/SV/SV8a/178.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "マツバの確信", + id: "Kepastian Morty", + th: "ความมั่นใจของมัตสึบะ", + 'zh-tw': "松葉的信心", + 'zh-cn': "松葉的信心" + }, + + illustrator: "GIDORA", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を1枚トラッシュしなければ使えない。\n\n相手のベンチポケモンの数ぶん、自分の山札を引く。", + id: "Kartu ini dapat digunakan jika pemain membuang 1 lembar Kartu Pegangan sendiri ke Trash. Ambil kartu dari atas Deck sendiri untuk tiap Pokémon Cadangan lawan.", + th: "การ์ดนี้ ถ้าไม่ทิ้งการ์ดบนมือฝ่ายเรา 1 ใบที่ตำแหน่งทิ้งการ์ดจะใช้ไม่ได้ จั่วการ์ดจากสำรับการ์ดฝ่ายเรา ตามจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้าม", + 'zh-tw': "這張卡必須將自己的1張手牌丟棄才可使用。 從自己的牌庫抽出與對手的備戰寶可夢相同數量的卡。", + 'zh-cn': "這張卡必須將自己的1張手牌丟棄才可使用。 從自己的牌庫抽出與對手的備戰寶可夢相同數量的卡。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/179.ts b/data-asia/SV/SV8a/179.ts new file mode 100644 index 000000000..8339c0b87 --- /dev/null +++ b/data-asia/SV/SV8a/179.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "メロコ", + id: "Mela", + th: "เมโลโก", + 'zh-tw': "梅洛可", + 'zh-cn': "梅洛可" + }, + + illustrator: "kirisAki", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、前の相手の番に、自分のポケモンがきぜつしていなければ使えない。\n\n自分のトラッシュから「基本エネルギー」を1枚選び、自分のポケモンにつける。その後、自分の手札が6枚になるように、山札を引く。", + id: "Kartu ini dapat digunakan jika pada giliran lawan sebelumnya, ada Pokémon sendiri yang KO. Pilih 1 lembar Energi Dasar {Api} dari Trash sendiri, lalu kenakan pada Pokémon sendiri. Setelah itu, ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 6 lembar.", + th: "การ์ดนี้ ในเทิร์นก่อนของฝ่ายตรงข้าม ถ้าโปเกมอนฝ่ายเราไม่[หมดสภาพ]จะใช้ไม่ได้ เลือกการ์ด [พลังงานพื้นฐาน[ไฟ]] 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา หลังจากนั้น จั่วการ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 6 ใบ", + 'zh-tw': "這張卡必須在上個對手的回合自己的寶可夢【昏厥】了才可使用。 從自己的棄牌區選擇1張「基本【火】能量」卡,附於自己的寶可夢身上。然後,從牌庫抽卡直到自己的手牌滿6張為止。", + 'zh-cn': "這張卡必須在上個對手的回合自己的寶可夢【昏厥】了才可使用。 從自己的棄牌區選擇1張「基本【火】能量」卡,附於自己的寶可夢身上。然後,從牌庫抽卡直到自己的手牌滿6張為止。" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/180.ts b/data-asia/SV/SV8a/180.ts new file mode 100644 index 000000000..ad1310285 --- /dev/null +++ b/data-asia/SV/SV8a/180.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "お祭り会場", + id: "Lokasi Festival", + th: "สถานที่จัดเทศกาล", + 'zh-tw': "祭典會場", + 'zh-cn': "祭典會場" + }, + + illustrator: "MARINA Chikazawa", + rarity: "None", + category: "Trainer", + + effect: { + ja: "エネルギーがついているおたがいのポケモン全員は、特殊状態にならず、受けている特殊状態は、すべて回復する。", + id: "Semua Pokémon kedua pemain yang mengenakan Energi tidak akan menjadi Kondisi Khusus dan jika ada yang sedang mengalami Kondisi Khusus, pulihkan semua Kondisi Khusus yang dialami Pokémon tersebut.", + th: "โปเกมอนของทั้งสองฝ่ายทุกตัวที่มีพลังงานติดอยู่ จะไม่เป็นสภาวะผิดปกติ และจะหายจากสภาวะผิดปกติทั้งหมดที่ได้รับมา", + 'zh-tw': "雙方的所有身上附有能量卡的寶可夢不會陷入特殊狀態,並將受到的特殊狀態全部恢復。", + 'zh-cn': "雙方的所有身上附有能量卡的寶可夢不會陷入特殊狀態,並將受到的特殊狀態全部恢復。" + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/181.ts b/data-asia/SV/SV8a/181.ts new file mode 100644 index 000000000..af2ded710 --- /dev/null +++ b/data-asia/SV/SV8a/181.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ジャミングタワー", + id: "Menara Pengacak", + th: "แจมมิงทาวเวอร์", + 'zh-tw': "阻礙之塔", + 'zh-cn': "阻礙之塔" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "None", + category: "Trainer", + + effect: { + ja: "おたがいのポケモン全員についている「ポケモンのどうぐ」の効果は、すべてなくなる。", + id: "Semua Pokémon Tool yang dikenakan pada semua Pokémon kedua pemain menjadi tidak memiliki efek.", + th: "เอฟเฟกต์ของ [ไอเท็มติดโปเกมอน] ที่ติดอยู่กับโปเกมอนของทั้งสองฝ่ายทุกตัว ทั้งหมดจะหายไป", + 'zh-tw': "雙方的所有寶可夢身上附加的「寶可夢道具」卡的效果全部消除。", + 'zh-cn': "雙方的所有寶可夢身上附加的「寶可夢道具」卡的效果全部消除。" + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/182.ts b/data-asia/SV/SV8a/182.ts new file mode 100644 index 000000000..fdbb8767c --- /dev/null +++ b/data-asia/SV/SV8a/182.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ゼロの大空洞", + id: "Gua Besar Zero", + th: "โพรงถ้ำใหญ่ซีโร่", + 'zh-tw': "零之大空洞", + 'zh-cn': "零之大空洞" + }, + + illustrator: "MARINA Chikazawa", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の場に「テラスタル」のポケモンがいるプレイヤーが、ベンチに出せるポケモンの数は8匹になる。\n\n(このカードがトラッシュされたときか、自分の場に「テラスタル」のポケモンがいなくなったとき、ベンチが5匹になるまでトラッシュする。おたがいにトラッシュするなら、このカードの持ち主から行う。)", + id: "Jumlah Pokémon yang dapat dimasukkan ke Cadangan pemain yang ada Pokémon Terastal di Arenanya sendiri menjadi 8. (Saat kartu ini dibuang ke Trash atau saat Pokémon Terastal menjadi tidak ada di Arena sendiri, buang ke Trash hingga jumlah Pokémon di Cadangan menjadi 5. Jika kedua pemain membuang ke Trash, pemilik kartu ini membuang Pokémon Cadangan ke Trash terlebih dahulu.)", + th: "ผู้เล่นที่มีโปเกมอน [เทรัสตัล] อยู่บนกระดานฝ่ายตัวเอง จำนวนโปเกมอนที่สามารถวางบนเบนช์ได้จะเป็น 8 ตัว (เมื่อการ์ดนี้ถูกทิ้งที่ตำแหน่งทิ้งการ์ดหรือ ไม่มีโปเกมอน [เทรัสตัล] บนกระดานฝ่ายตัวเองแล้ว ให้ทิ้งโปเกมอนบนเบนช์จนเหลือ 5 ตัวที่ตำแหน่งทิ้งการ์ด ถ้าทิ้งทั้งสองฝ่าย เจ้าของการ์ดนี้จะเริ่มทิ้งก่อน)", + 'zh-tw': "自己的場上有「太晶」寶可夢的玩家的可放置於備戰區的寶可夢數量改為8隻。 (這張卡被丟棄時,或自己的場上沒有了「太晶」寶可夢時,將備戰區的寶可夢丟棄直到變為5隻為止。若雙方都要丟棄,則這張卡的持有人先丟棄。)", + 'zh-cn': "自己的場上有「太晶」寶可夢的玩家的可放置於備戰區的寶可夢數量改為8隻。 (這張卡被丟棄時,或自己的場上沒有了「太晶」寶可夢時,將備戰區的寶可夢丟棄直到變為5隻為止。若雙方都要丟棄,則這張卡的持有人先丟棄。)" + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/183.ts b/data-asia/SV/SV8a/183.ts new file mode 100644 index 000000000..ef6276b19 --- /dev/null +++ b/data-asia/SV/SV8a/183.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "月明かりの丘", + id: "Bukit Cahaya Bulan", + th: "เนินแสงจันทร์", + 'zh-tw': "月光丘陵", + 'zh-cn': "月光丘陵" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "None", + category: "Trainer", + + effect: { + ja: "おたがいのプレイヤーは、自分の番ごとに1回、自分の手札から「基本エネルギー」を1枚トラッシュするなら、自分のポケモン全員のHPを、それぞれ「30」回復してよい。", + id: "Kedua pemain 1 kali pada tiap gilirannya sendiri dapat membuang 1 lembar Energi Dasar {Psychic} dari Kartu Pegangan sendiri ke Trash, lalu memulihkan HP semua Pokémon sendiri masing-masing sejumlah 30.", + th: "ผู้เล่นทั้งสองฝ่าย ในแต่ละเทิร์นของตัวเองทำได้ 1 ครั้ง ถ้าทิ้งการ์ด [พลังงานพื้นฐาน[พลังจิต]] 1 ใบจากบนมือฝ่ายตัวเองที่ตำแหน่งทิ้งการ์ด จะฟื้นฟู HP ของโปเกมอนฝ่ายตัวเองทุกตัว ตัวละ [30] ก็ได้", + 'zh-tw': "雙方玩家在每個自己的回合時,可使用1次,若從自己的手牌將1張「基本【超】能量」卡丟棄,則可將自己的所有寶可夢各恢復「30」HP。", + 'zh-cn': "雙方玩家在每個自己的回合時,可使用1次,若從自己的手牌將1張「基本【超】能量」卡丟棄,則可將自己的所有寶可夢各恢復「30」HP。" + }, + + trainerType: "Stadium", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/184.ts b/data-asia/SV/SV8a/184.ts new file mode 100644 index 000000000..17806deb7 --- /dev/null +++ b/data-asia/SV/SV8a/184.ts @@ -0,0 +1,31 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ニュートラルセンター", + id: "Neutral Center‌", + th: "นิวทรัลเซ็นเตอร์", + 'zh-tw': "中立中心", + 'zh-cn': "中立中心" + }, + + illustrator: "imoniii", + rarity: "None", + category: "Trainer", + + effect: { + ja: "おたがいのポケモン(「ルールを持つポケモン」をのぞく)全員は、相手の「ポケモンex・V」からワザのダメージを受けない。\n\nこのカードは、トラッシュにあるかぎり、手札に加えられず、山札にもどせない。", + id: "Semua Pokémon (selain Pokémon yang memiliki Peraturan) kedua pemain tidak menerima kerusakan akibat serangan dari Pokémon {ex}/{V} lawan. Selama kartu ini ada di Trash, kartu ini tidak dapat ditambahkan ke Kartu Pegangan dan tidak dapat dikembalikan ke Deck.", + th: "โปเกมอนของทั้งสองฝ่ายทุกตัว (ยกเว้น [โปเกมอนที่มีกฎ]) จะไม่ได้รับแดเมจของท่าต่อสู้จาก [โปเกมอน【ex】 /【V】] ฝ่ายตรงข้าม การ์ดนี้ ตราบใดที่ยังอยู่บนตำแหน่งทิ้งการ์ด จะนำขึ้นมือไม่ได้ และใส่กลับไปในสำรับการ์ดไม่ได้", + 'zh-tw': "雙方的所有寶可夢(「擁有規則的寶可夢」除外),不會受到對手的「寶可夢【ex】・【V】」招式的傷害。 這張卡只要在棄牌區,無法加入手牌,無法放回牌庫。", + 'zh-cn': "雙方的所有寶可夢(「擁有規則的寶可夢」除外),不會受到對手的「寶可夢【ex】・【V】」招式的傷害。 這張卡只要在棄牌區,無法加入手牌,無法放回牌庫。" + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/185.ts b/data-asia/SV/SV8a/185.ts new file mode 100644 index 000000000..c9f5e7e7e --- /dev/null +++ b/data-asia/SV/SV8a/185.ts @@ -0,0 +1,30 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ジェットエネルギー", + id: "Energi Jet", + th: "เจ็ตเอนเนอร์จี้", + 'zh-tw': "噴射能量", + 'zh-cn': "噴射能量" + }, + + rarity: "None", + category: "Energy", + + effect: { + ja: "このカードは、ポケモンについているかぎり、エネルギー1個ぶんとしてはたらく。\n\nこのカードを手札からベンチポケモンにつけたとき、このカードをつけたポケモンを、バトルポケモンと入れ替える。", + id: "Kartu ini berlaku sebagai 1 Energi {Bening} selama dikenakan pada Pokémon. Saat kartu ini dikenakan dari Kartu Pegangan pada Pokémon Cadangan, tukar Pokémon yang telah dikenakan kartu ini dengan Pokémon Bertarung.", + th: "การ์ดนี้ ตราบใดที่ติดอยู่กับโปเกมอน จะทำงานเทียบเท่าพลังงาน[ไร้สี] 1 ลูก เมื่อนำการ์ดนี้จากบนมือติดที่โปเกมอนบนเบนช์ สลับโปเกมอนที่ติดการ์ดนี้ กับโปเกมอนบนตำแหน่งต่อสู้", + 'zh-tw': "只要這張卡附於寶可夢身上,視為提供1個【無】能量。 從手牌將這張卡附於備戰寶可夢身上時,將附有這張卡的寶可夢與戰鬥寶可夢互換。", + 'zh-cn': "只要這張卡附於寶可夢身上,視為提供1個【無】能量。 從手牌將這張卡附於備戰寶可夢身上時,將附有這張卡的寶可夢與戰鬥寶可夢互換。" + }, + + energyType: "Special", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/186.ts b/data-asia/SV/SV8a/186.ts new file mode 100644 index 000000000..66e27ad6c --- /dev/null +++ b/data-asia/SV/SV8a/186.ts @@ -0,0 +1,30 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ミストエネルギー", + id: "Energi Kabut", + th: "มิสต์เอนเนอร์จี้", + 'zh-tw': "薄霧能量", + 'zh-cn': "薄霧能量" + }, + + rarity: "None", + category: "Energy", + + effect: { + ja: "このカードは、ポケモンについているかぎり、エネルギー1個ぶんとしてはたらく。\n\nこのカードをつけているポケモンは、相手のポケモンが使うワザの効果を受けない。(すでに受けている効果は、なくならない。)", + id: "Kartu ini berlaku sebagai 1 Energi {Bening} selama dikenakan pada Pokémon. Pokémon yang mengenakan kartu ini tidak menerima efek akibat serangan yang digunakan oleh Pokémon lawan. (Efek yang telah dialami tidak dipulihkan.)", + th: "การ์ดนี้ ตราบใดที่ติดอยู่กับโปเกมอน จะทำงานเทียบเท่าพลังงาน[ไร้สี] 1 ลูก โปเกมอนที่ติดการ์ดนี้อยู่ จะไม่ได้รับเอฟเฟกต์ของท่าต่อสู้ที่โปเกมอนฝ่ายตรงข้ามใช้ (เอฟเฟกต์ที่ได้รับไปแล้ว จะไม่หายไป)", + 'zh-tw': "只要這張卡附於寶可夢身上,視為提供1個【無】能量。 附有這張卡的寶可夢不會受到對手的寶可夢使用招式的效果的影響。(已經受到的效果不會消除。)", + 'zh-cn': "只要這張卡附於寶可夢身上,視為提供1個【無】能量。 附有這張卡的寶可夢不會受到對手的寶可夢使用招式的效果的影響。(已經受到的效果不會消除。)" + }, + + energyType: "Special", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/187.ts b/data-asia/SV/SV8a/187.ts new file mode 100644 index 000000000..e107f2350 --- /dev/null +++ b/data-asia/SV/SV8a/187.ts @@ -0,0 +1,30 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "レガシーエネルギー", + id: "Energi Legasi", + th: "พลังงานสืบทอด", + 'zh-tw': "古舊能量", + 'zh-cn': "古舊能量" + }, + + rarity: "None", + category: "Energy", + + effect: { + ja: "このカードは、ポケモンについているかぎり、すべてのタイプのエネルギー1個ぶんとしてはたらく。\n\nこのカードをつけているポケモンが、相手のポケモンからワザのダメージを受けてきぜつしたとき、とられるサイドは1枚少なくなる。対戦中、自分の「レガシーエネルギー」のこの効果は、1回しかはたらかない。", + id: "Kartu ini berlaku sebagai 1 Energi semua tipe selama dikenakan pada Pokémon. Saat Pokémon yang mengenakan kartu ini KO karena menerima kerusakan akibat serangan dari Pokémon lawan, Kartu Point yang diambil lawan berkurang 1 lembar. Efek ini yang berjalan berkat Energi Legasi sendiri hanya berjalan 1 kali dalam sebuah permainan.", + th: "การ์ดนี้ ตราบใดที่ติดอยู่กับโปเกมอน จะทำงานเทียบเท่าพลังงานทุกประเภท 1 ลูก เมื่อโปเกมอนที่ติดการ์ดนี้อยู่ ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้ามและ[หมดสภาพ]แล้ว การ์ดรางวัลที่หยิบได้จะลดลง 1 ใบ ในระหว่างการแบตเทิล เอฟเฟกต์นี้ของ [พลังงานสืบทอด] ฝ่ายเราจะทำงาน 1 ครั้งเท่านั้น", + 'zh-tw': "只要這張卡附於寶可夢身上,視為提供1個所有屬性的能量。 附有這張卡的寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,被獲得的獎賞卡減少1張。對戰中,自己的「古舊能量」的這個效果只生效1次。", + 'zh-cn': "只要這張卡附於寶可夢身上,視為提供1個所有屬性的能量。 附有這張卡的寶可夢受到對手的寶可夢招式的傷害而【昏厥】時,被獲得的獎賞卡減少1張。對戰中,自己的「古舊能量」的這個效果只生效1次。" + }, + + energyType: "Special", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/188.ts b/data-asia/SV/SV8a/188.ts new file mode 100644 index 000000000..9ff23f3aa --- /dev/null +++ b/data-asia/SV/SV8a/188.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アオキの手際", + id: "Kecekatan Dafin", + 'zh-tw': "青木的手法", + 'zh-cn': "青木的手法" + }, + + illustrator: "hncl", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の手札をすべてトラッシュし、自分の山札から「ポケモン」「サポート」「基本エネルギー」を1枚ずつ選び、相手に見せて、手札に加える。そして山札を切る。", + id: "Buang semua Kartu Pegangan sendiri ke Trash, pilih Pokémon, Supporter, dan Energi Dasar masing-masing 1 lembar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + 'zh-tw': "將自己的手牌全部丟棄,從自己的牌庫選擇「寶可夢」卡「支援者」卡「基本能量」卡各1張,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "將自己的手牌全部丟棄,從自己的牌庫選擇「寶可夢」卡「支援者」卡「基本能量」卡各1張,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/189.ts b/data-asia/SV/SV8a/189.ts new file mode 100644 index 000000000..c23234bf3 --- /dev/null +++ b/data-asia/SV/SV8a/189.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オルティガ", + id: "Orto", + 'zh-tw': "奧爾迪加", + 'zh-cn': "奧爾迪加" + }, + + illustrator: "Teeziro", + rarity: "None", + category: "Trainer", + + effect: { + ja: "相手の手札を見て、その中から好きなカードを1枚選び、相手の山札の下にもどす。その後、相手はのぞむなら、山札を1枚引く。", + id: "Lihat Kartu Pegangan lawan, pilih 1 kartu sesukanya di antaranya, lalu kembalikan ke bawah Deck lawan. Setelah itu, lawan dapat mengambil 1 kartu dari atas Deck.", + 'zh-tw': "查看對手的手牌,從其中任意選擇1張卡,放回對手的牌庫下方。然後,對手若希望,從牌庫抽出1張卡。", + 'zh-cn': "查看對手的手牌,從其中任意選擇1張卡,放回對手的牌庫下方。然後,對手若希望,從牌庫抽出1張卡。" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/190.ts b/data-asia/SV/SV8a/190.ts new file mode 100644 index 000000000..f2b0ed1a7 --- /dev/null +++ b/data-asia/SV/SV8a/190.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "コルサ", + id: "Brassio", + 'zh-tw': "寇沙", + 'zh-cn': "寇沙" + }, + + illustrator: "GIDORA", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の手札を数えたあと、すべて山札にもどして切る。その後、もどした枚数より1枚多くなるように、山札を引く。", + id: "Kocok kembali semua Kartu Pegangan ke Deck setelah menghitung jumlah Kartu Pegangan sendiri. Setelah itu, ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 1 lembar lebih banyak dari jumlah kartu yang dikembalikan.", + 'zh-tw': "將自己的所有手牌放回牌庫並重洗。然後,從牌庫抽出比放回張數多1張的卡。", + 'zh-cn': "將自己的所有手牌放回牌庫並重洗。然後,從牌庫抽出比放回張數多1張的卡。" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/191.ts b/data-asia/SV/SV8a/191.ts new file mode 100644 index 000000000..e5027de52 --- /dev/null +++ b/data-asia/SV/SV8a/191.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "シュウメイ", + id: "Rio", + 'zh-tw': "秋明", + 'zh-cn': "秋明" + }, + + illustrator: "kantaro", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、相手のバトルポケモンがどくのときにしか使えない。\n\n自分の手札をすべて山札にもどして切る。その後、山札を7枚引く。", + id: "Kartu ini hanya dapat digunakan saat Pokémon Bertarung lawan mengalami Racun. Kocok kembali semua Kartu Pegangan sendiri ke Deck. Setelah itu, ambil 7 kartu dari atas Deck.", + 'zh-tw': "這張卡只有在對手的戰鬥寶可夢【中毒】時才可使用。 將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出7張卡。", + 'zh-cn': "這張卡只有在對手的戰鬥寶可夢【中毒】時才可使用。 將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出7張卡。" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/192.ts b/data-asia/SV/SV8a/192.ts new file mode 100644 index 000000000..a029db051 --- /dev/null +++ b/data-asia/SV/SV8a/192.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "シュウメイ", + id: "Rio", + 'zh-tw': "秋明", + 'zh-cn': "秋明" + }, + + illustrator: "GIDORA", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、相手のバトルポケモンがどくのときにしか使えない。\n\n自分の手札をすべて山札にもどして切る。その後、山札を7枚引く。", + id: "Kartu ini hanya dapat digunakan saat Pokémon Bertarung lawan mengalami Racun. Kocok kembali semua Kartu Pegangan sendiri ke Deck. Setelah itu, ambil 7 kartu dari atas Deck.", + 'zh-tw': "這張卡只有在對手的戰鬥寶可夢【中毒】時才可使用。 將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出7張卡。", + 'zh-cn': "這張卡只有在對手的戰鬥寶可夢【中毒】時才可使用。 將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出7張卡。" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/193.ts b/data-asia/SV/SV8a/193.ts new file mode 100644 index 000000000..5a8045edd --- /dev/null +++ b/data-asia/SV/SV8a/193.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "タイム", + id: "Tima", + 'zh-tw': "泰姆", + 'zh-cn': "泰姆" + }, + + illustrator: "Yuu Nishida", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の手札からポケモンを1枚選び、そのポケモンの名前を相手に伝えてから、ウラにして置く。相手はそのポケモンのHPを答える。ウラにしたポケモンをオモテにして、正解なら、相手は山札を4枚引く。不正解なら、自分は山札を4枚引く。その後、置いたカードを自分の手札にもどす。", + id: "Pilih 1 lembar Pokémon dari Kartu Pegangan sendiri, beri tahu lawan nama Pokémon tersebut, lalu taruh dengan sisi depan menghadap ke bawah. Lawan menebak HP Pokémon tersebut. Balikkan Pokémon tersebut sehingga sisi depannya menjadi menghadap ke atas, jika benar, lawan mengambil 4 kartu dari atas Deck. Jika salah, pemain mengambil 4 kartu dari atas Deck. Setelah itu, kembalikan kartu yang ditaruh tersebut ke Kartu Pegangan sendiri.", + 'zh-tw': "從自己的手牌選擇1張寶可夢卡,向對手宣言那隻寶可夢的名稱後,翻到反面放置。對手回答那隻寶可夢的HP。將翻到反面的寶可夢卡翻到正面,若正確,則對手從牌庫抽出4張卡。若不正確,則自己從牌庫抽出4張卡。然後,將放置的卡放回自己的手牌。", + 'zh-cn': "從自己的手牌選擇1張寶可夢卡,向對手宣言那隻寶可夢的名稱後,翻到反面放置。對手回答那隻寶可夢的HP。將翻到反面的寶可夢卡翻到正面,若正確,則對手從牌庫抽出4張卡。若不正確,則自己從牌庫抽出4張卡。然後,將放置的卡放回自己的手牌。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/194.ts b/data-asia/SV/SV8a/194.ts new file mode 100644 index 000000000..ae86525c3 --- /dev/null +++ b/data-asia/SV/SV8a/194.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ネリネ", + id: "Nerine", + 'zh-tw': "納莉", + 'zh-cn': "納莉" + }, + + illustrator: "Akira Komayama", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札を4枚引く。このカードを使った番の終わりに、自分の手札が5枚以上あるなら、自分の手札をすべてトラッシュする。", + id: "Ambil 4 kartu dari atas Deck sendiri. Jika pada akhir giliran digunakannya kartu ini, ada 5 lembar atau lebih kartu di Kartu Pegangan sendiri, buang semua Kartu Pegangan sendiri ke Trash.", + 'zh-tw': "從自己的牌庫抽出4張卡。在使用了這張卡的回合結束時,若自己的手牌有5張以上,則將自己的手牌全部丟棄。", + 'zh-cn': "從自己的牌庫抽出4張卡。在使用了這張卡的回合結束時,若自己的手牌有5張以上,則將自己的手牌全部丟棄。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/195.ts b/data-asia/SV/SV8a/195.ts new file mode 100644 index 000000000..553aaf6c5 --- /dev/null +++ b/data-asia/SV/SV8a/195.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "パルデアの仲間たち", + id: "Teman-teman Paldea", + 'zh-tw': "帕底亞的夥伴", + 'zh-cn': "帕底亞的夥伴" + }, + + illustrator: "Cona Nitanda", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札を3枚引く。", + id: "Ambil 3 kartu dari atas Deck sendiri.", + 'zh-tw': "從自己的牌庫抽出3張卡。", + 'zh-cn': "從自己的牌庫抽出3張卡。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/196.ts b/data-asia/SV/SV8a/196.ts new file mode 100644 index 000000000..efdb64ac7 --- /dev/null +++ b/data-asia/SV/SV8a/196.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ピーニャ", + id: "Nanio", + 'zh-tw': "皮拿", + 'zh-cn': "皮拿" + }, + + illustrator: "GOSSAN", + rarity: "None", + category: "Trainer", + + effect: { + ja: "相手のポケモン全員についている特殊エネルギーをそれぞれ1個ずつ選び、トラッシュする。", + id: "Pilih Energi Spesial yang dikenakan pada semua Pokémon lawan masing-masing 1, lalu buang ke Trash.", + 'zh-tw': "選擇對手的所有寶可夢身上各自附加的特殊能量各1個,將其丟棄。", + 'zh-cn': "選擇對手的所有寶可夢身上各自附加的特殊能量各1個,將其丟棄。" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/197.ts b/data-asia/SV/SV8a/197.ts new file mode 100644 index 000000000..dd07259e1 --- /dev/null +++ b/data-asia/SV/SV8a/197.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ビワ", + id: "Eria", + 'zh-tw': "枇琶", + 'zh-cn': "枇琶" + }, + + illustrator: "Ryuta Fuse", + rarity: "None", + category: "Trainer", + + effect: { + ja: "相手の手札を見て、その中からグッズを2枚まで選び、トラッシュする。", + id: "Lihat Kartu Pegangan lawan, pilih paling banyak 2 lembar Item di antaranya, lalu buang ke Trash.", + 'zh-tw': "查看對手的手牌,從其中選擇最多2張物品卡,將其丟棄。", + 'zh-cn': "查看對手的手牌,從其中選擇最多2張物品卡,將其丟棄。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/198.ts b/data-asia/SV/SV8a/198.ts new file mode 100644 index 000000000..79b985016 --- /dev/null +++ b/data-asia/SV/SV8a/198.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "メロコ", + id: "Mela", + 'zh-tw': "梅洛可", + 'zh-cn': "梅洛可" + }, + + illustrator: "Naoki Saito", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、前の相手の番に、自分のポケモンがきぜつしていなければ使えない。\n\n自分のトラッシュから「基本エネルギー」を1枚選び、自分のポケモンにつける。その後、自分の手札が6枚になるように、山札を引く。", + id: "Kartu ini dapat digunakan jika pada giliran lawan sebelumnya, ada Pokémon sendiri yang KO. Pilih 1 lembar Energi Dasar {Api} dari Trash sendiri, lalu kenakan pada Pokémon sendiri. Setelah itu, ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 6 lembar.", + 'zh-tw': "這張卡必須在上個對手的回合自己的寶可夢【昏厥】了才可使用。 從自己的棄牌區選擇1張「基本【火】能量」卡,附於自己的寶可夢身上。然後,從牌庫抽卡直到自己的手牌滿6張為止。", + 'zh-cn': "這張卡必須在上個對手的回合自己的寶可夢【昏厥】了才可使用。 從自己的棄牌區選擇1張「基本【火】能量」卡,附於自己的寶可夢身上。然後,從牌庫抽卡直到自己的手牌滿6張為止。" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/199.ts b/data-asia/SV/SV8a/199.ts new file mode 100644 index 000000000..53c4d916e --- /dev/null +++ b/data-asia/SV/SV8a/199.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "レホール", + id: "Arasia", + 'zh-tw': "蕾荷", + 'zh-cn': "蕾荷" + }, + + illustrator: "hncl", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札を上から5枚見て、その中からカードを好きなだけ選び、トラッシュする。残りのカードは好きな順番に入れ替えて、山札の上にもどす。", + id: "Lihat 5 kartu dari atas Deck sendiri, pilih sesukanya kartu di antaranya, lalu buang ke Trash. Tukar urutan sisa kartu sesukanya, lalu kembalikan ke atas Deck.", + 'zh-tw': "查看自己的牌庫上方5張卡,從其中選擇任意數量的卡,將其丟棄。將剩餘卡以任意順序排列,放回牌庫上方。", + 'zh-cn': "查看自己的牌庫上方5張卡,從其中選擇任意數量的卡,將其丟棄。將剩餘卡以任意順序排列,放回牌庫上方。" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/200.ts b/data-asia/SV/SV8a/200.ts new file mode 100644 index 000000000..f57101468 --- /dev/null +++ b/data-asia/SV/SV8a/200.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "リーフィアex", + id: "Leafeon ex", + 'zh-tw': "葉伊布ex", + 'zh-cn': "葉伊布ex" + }, + + illustrator: "Jiro Sasumo", + rarity: "None", + category: "Pokemon", + hp: 270, + types: ["Grass"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + ja: "あおばのあらし", + id: "Badai Daun Segar", + 'zh-tw': "綠葉風暴", + 'zh-cn': "綠葉風暴" + }, + + damage: "60×", + + effect: { + ja: "相手のポケモン全員についているエネルギーの数×60ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 60 untuk tiap Energi yang dikenakan pada semua Pokémon lawan.", + 'zh-tw': "造成對手的所有寶可夢身上附加的能量的數量×60點傷害。", + 'zh-cn': "造成對手的所有寶可夢身上附加的能量的數量×60點傷害。" + } + }, { + cost: ["Grass", "Fire", "Water"], + + name: { + ja: "モスアゲート", + id: "Moss Agate", + 'zh-tw': "苔紋瑪瑙", + 'zh-cn': "苔紋瑪瑙" + }, + + damage: 230, + + effect: { + ja: "自分のベンチポケモン全員のHPを、それぞれ「100」回復する。", + id: "Pulihkan HP semua Pokémon Cadangan sendiri masing-masing sejumlah 100.", + 'zh-tw': "將自己的所有備戰寶可夢各恢復「100」HP。", + 'zh-cn': "將自己的所有備戰寶可夢各恢復「100」HP。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/201.ts b/data-asia/SV/SV8a/201.ts new file mode 100644 index 000000000..c8766a00c --- /dev/null +++ b/data-asia/SV/SV8a/201.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーガポン みどりのめんex", + id: "Ogerpon Topeng Teal ex", + 'zh-tw': "厄鬼椪 碧草面具ex", + 'zh-cn': "厄鬼椪 碧草面具ex" + }, + + illustrator: "Yukihiro Tada", + rarity: "None", + category: "Pokemon", + hp: 210, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "みどりのまい", + id: "Tarian Teal", + 'zh-tw': "碧綠之舞", + 'zh-cn': "碧綠之舞" + }, + + effect: { + ja: "自分の番に1回使える。自分の手札から「基本エネルギー」を1枚選び、このポケモンにつける。その後、自分の山札を1枚引く。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 lembar Energi Dasar {Daun} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon ini. Setelah itu, ambil 1 kartu dari atas Deck sendiri.", + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於這隻寶可夢身上。然後,從自己的牌庫抽出1張卡。", + 'zh-cn': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於這隻寶可夢身上。然後,從自己的牌庫抽出1張卡。" + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Grass"], + + name: { + ja: "まんようしぐれ", + id: "Hujan Ribuan Daun", + 'zh-tw': "萬葉陣雨", + 'zh-cn': "萬葉陣雨" + }, + + damage: "30+", + + effect: { + ja: "おたがいのバトルポケモンについているエネルギーの数×30ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon Bertarung kedua pemain.", + 'zh-tw': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。", + 'zh-cn': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/202.ts b/data-asia/SV/SV8a/202.ts new file mode 100644 index 000000000..58a860fb0 --- /dev/null +++ b/data-asia/SV/SV8a/202.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブースターex", + id: "Flareon ex", + 'zh-tw': "火伊布ex", + 'zh-cn': "火伊布ex" + }, + + illustrator: "Nurikabe", + rarity: "None", + category: "Pokemon", + hp: 270, + types: ["Fire"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + ja: "バーニングチャージ", + id: "Burning Charge", + 'zh-tw': "燃燒充能", + 'zh-cn': "燃燒充能" + }, + + damage: 130, + + effect: { + ja: "自分の山札から基本エネルギーを2枚まで選び、自分のポケモン1匹につける。そして山札を切る。", + id: "Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, lalu kenakan pada 1 Pokémon sendiri. Kemudian, kocok Deck.", + 'zh-tw': "從自己的牌庫選擇最多2張基本能量卡,附於自己的1隻寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張基本能量卡,附於自己的1隻寶可夢身上。並且重洗牌庫。" + } + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + ja: "カーネリアン", + id: "Carnelian", + 'zh-tw': "紅玉髓", + 'zh-cn': "紅玉髓" + }, + + damage: 280, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/203.ts b/data-asia/SV/SV8a/203.ts new file mode 100644 index 000000000..0a5b72a11 --- /dev/null +++ b/data-asia/SV/SV8a/203.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ソウブレイズex", + id: "Ceruledge ex", + 'zh-tw': "蒼炎刃鬼ex", + 'zh-cn': "蒼炎刃鬼ex" + }, + + illustrator: "akagi", + rarity: "None", + category: "Pokemon", + hp: 270, + types: ["Fire"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "しんえんほむら", + id: "Kobaran Api Jurang Dalam", + 'zh-tw': "深淵熾火", + 'zh-cn': "深淵熾火" + }, + + damage: "30+", + + effect: { + ja: "自分のトラッシュにあるエネルギーの枚数×20ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 20 untuk tiap lembar Energi yang ada di Trash sendiri.", + 'zh-tw': "增加自己的棄牌區的能量卡的張數×20點傷害。", + 'zh-cn': "增加自己的棄牌區的能量卡的張數×20點傷害。" + } + }, { + cost: ["Fire", "Psychic", "Metal"], + + name: { + ja: "アメジストレイジ", + id: "Amethyst Rage", + 'zh-tw': "紫水晶激怒", + 'zh-cn': "紫水晶激怒" + }, + + damage: 280, + + effect: { + ja: "このポケモンについているエネルギーを、すべてトラッシュする。", + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash.", + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。", + 'zh-cn': "將這隻寶可夢身上附加的能量卡全部丟棄。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/204.ts b/data-asia/SV/SV8a/204.ts new file mode 100644 index 000000000..4ebb0e2e4 --- /dev/null +++ b/data-asia/SV/SV8a/204.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーガポン かまどのめんex", + id: "Ogerpon Topeng Tungku ex", + 'zh-tw': "厄鬼椪 火灶面具ex", + 'zh-cn': "厄鬼椪 火灶面具ex" + }, + + illustrator: "Yukihiro Tada", + rarity: "None", + category: "Pokemon", + hp: 210, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + ja: "いかりがま", + id: "Tungku Kemarahan", + 'zh-tw': "憤怒之窯", + 'zh-cn': "憤怒之窯" + }, + + damage: "20×", + + effect: { + ja: "このポケモンにのっているダメカンの数×20ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang dimiliki Pokémon ini.", + 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。", + 'zh-cn': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。" + } + }, { + cost: ["Fire", "Fire", "Fire"], + + name: { + ja: "ダイナミックブレイズ", + id: "Dynamic Blaze", + 'zh-tw': "極限火焰", + 'zh-cn': "極限火焰" + }, + + damage: "140+", + + effect: { + ja: "相手のバトルポケモンが進化ポケモンなら、140ダメージ追加。その場合、このポケモンについているエネルギーを、すべてトラッシュする。", + id: "Jika Pokémon Bertarung lawan adalah Pokémon Evolusi, kerusakan yang diberikan bertambah sejumlah 140. Pada kondisi tersebut, buang semua Energi yang dikenakan pada Pokémon ini ke Trash.", + 'zh-tw': "若對手的戰鬥寶可夢為進化寶可夢,則增加140點傷害。這個情況下,將這隻寶可夢身上附加的能量卡全部丟棄。", + 'zh-cn': "若對手的戰鬥寶可夢為進化寶可夢,則增加140點傷害。這個情況下,將這隻寶可夢身上附加的能量卡全部丟棄。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/205.ts b/data-asia/SV/SV8a/205.ts new file mode 100644 index 000000000..bb967198e --- /dev/null +++ b/data-asia/SV/SV8a/205.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "シャワーズex", + id: "Vaporeon ex", + 'zh-tw': "水伊布ex", + 'zh-cn': "水伊布ex" + }, + + illustrator: "Narano", + rarity: "None", + category: "Pokemon", + hp: 280, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + ja: "ヘビースコール", + id: "Heavy Squall", + 'zh-tw': "重磅驟雨", + 'zh-cn': "重磅驟雨" + }, + + effect: { + ja: "相手の「ポケモンex」全員に、それぞれ60ダメージ。このワザのダメージは弱点・抵抗力を計算しない。", + id: "Serangan ini memberikan kerusakan masing-masing sejumlah 60 kepada semua Pokémon {ex} lawan. Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan dan Resistansi.", + 'zh-tw': "對手的所有「寶可夢【ex】」各受到60點傷害。這個招式的傷害不計算弱點・抵抗力。", + 'zh-cn': "對手的所有「寶可夢【ex】」各受到60點傷害。這個招式的傷害不計算弱點・抵抗力。" + } + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + ja: "アクアマリン", + id: "Aquamarine", + 'zh-tw': "海藍寶石", + 'zh-cn': "海藍寶石" + }, + + damage: 280, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/206.ts b/data-asia/SV/SV8a/206.ts new file mode 100644 index 000000000..a91d2e7c4 --- /dev/null +++ b/data-asia/SV/SV8a/206.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "グレイシアex", + id: "Glaceon ex", + 'zh-tw': "冰伊布ex", + 'zh-cn': "冰伊布ex" + }, + + illustrator: "Kamome Shirahama", + rarity: "None", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + ja: "フロストバレット", + id: "Frost Bullet", + 'zh-tw': "冰霜子彈", + 'zh-cn': "冰霜子彈" + }, + + damage: 110, + + effect: { + ja: "相手のベンチポケモン1匹にも、30ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + id: "Serangan ini juga memberikan kerusakan sejumlah 30 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + 'zh-tw': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }, { + cost: ["Grass", "Water", "Darkness"], + + name: { + ja: "ユークレース", + id: "Euclase", + 'zh-tw': "藍柱石", + 'zh-cn': "藍柱石" + }, + + effect: { + ja: "ダメカンが6個のっている相手のポケモンを1匹選び、きぜつさせる。", + id: "Pilih 1 Pokémon lawan yang memiliki Token Kerusakan sejumlah 6, Pokémon tersebut KO.", + 'zh-tw': "選擇1隻對手的身上放置有6個傷害指示物的寶可夢,將其【昏厥】。", + 'zh-cn': "選擇1隻對手的身上放置有6個傷害指示物的寶可夢,將其【昏厥】。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/207.ts b/data-asia/SV/SV8a/207.ts new file mode 100644 index 000000000..c334996f4 --- /dev/null +++ b/data-asia/SV/SV8a/207.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イルカマンex", + id: "Palafin ex", + 'zh-tw': "海豚俠ex", + 'zh-cn': "海豚俠ex" + }, + + illustrator: "Tetsuo Hara", + rarity: "None", + category: "Pokemon", + hp: 340, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "マイティソウル", + id: "Jiwa Perkasa", + 'zh-tw': "全能靈魂", + 'zh-cn': "全能靈魂" + }, + + effect: { + ja: "このカードは、「イルカマン」の特性「マイティチェンジ」の効果によってしか場に出せない。", + id: "Kartu ini hanya dapat dimasukkan ke Arena menggunakan efek dari Ability Menjadi Perkasa Palafin.", + 'zh-tw': "這張卡只可依據「海豚俠」的特性「全能變身」的效果放置於場上。", + 'zh-cn': "這張卡只可依據「海豚俠」的特性「全能變身」的效果放置於場上。" + } + }], + + attacks: [{ + cost: ["Water"], + + name: { + ja: "ギガインパクト", + id: "Giga Impact", + 'zh-tw': "終極衝擊", + 'zh-cn': "終極衝擊" + }, + + damage: 250, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/208.ts b/data-asia/SV/SV8a/208.ts new file mode 100644 index 000000000..555833e47 --- /dev/null +++ b/data-asia/SV/SV8a/208.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーガポン いどのめんex", + id: "Ogerpon Topeng Sumur ex", + 'zh-tw': "厄鬼椪 水井面具ex", + 'zh-cn': "厄鬼椪 水井面具ex" + }, + + illustrator: "Yukihiro Tada", + rarity: "None", + category: "Pokemon", + hp: 210, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "すすりなく", + id: "Menangis Sesenggukan", + 'zh-tw': "啜泣", + 'zh-cn': "啜泣" + }, + + damage: 20, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。", + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur.", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + } + }, { + cost: ["Water", "Colorless", "Colorless"], + + name: { + ja: "げきりゅうポンプ", + id: "Pompa Arus Deras", + 'zh-tw': "激流水泵", + 'zh-cn': "激流水泵" + }, + + damage: 100, + + effect: { + ja: "のぞむなら、このポケモンについているエネルギーを3個選び、山札にもどして切る。その場合、相手のベンチポケモン1匹にも、120ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + id: "Pemain dapat memilih 3 Energi yang dikenakan pada Pokémon ini, lalu mengocoknya kembali ke Deck. Jika dilakukan, serangan ini juga memberikan kerusakan sejumlah 120 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + 'zh-tw': "若希望,選擇3個這隻寶可夢身上附加的能量,放回牌庫並重洗。這個情況下,對手的1隻備戰寶可夢也受到120點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "若希望,選擇3個這隻寶可夢身上附加的能量,放回牌庫並重洗。這個情況下,對手的1隻備戰寶可夢也受到120點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/209.ts b/data-asia/SV/SV8a/209.ts new file mode 100644 index 000000000..01c7e85cc --- /dev/null +++ b/data-asia/SV/SV8a/209.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "サンダースex", + id: "Jolteon ex", + 'zh-tw': "雷伊布ex", + 'zh-cn': "雷伊布ex" + }, + + illustrator: "kantaro", + rarity: "None", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + ja: "フラッシュスピア", + id: "Flash Spear", + 'zh-tw': "閃光尖矛", + 'zh-cn': "閃光尖矛" + }, + + damage: "60+", + + effect: { + ja: "のぞむなら、自分のベンチポケモンについている基本エネルギーを2枚までトラッシュし、その枚数×90ダメージ追加。", + id: "Pemain dapat membuang paling banyak 2 lembar Energi Dasar yang dikenakan pada Pokémon Cadangan sendiri ke Trash, kerusakan yang diberikan bertambah sejumlah 90 untuk tiap lembarnya.", + 'zh-tw': "若希望,將最多2張自己的備戰寶可夢身上附加的基本能量卡丟棄,增加其張數×90點傷害。", + 'zh-cn': "若希望,將最多2張自己的備戰寶可夢身上附加的基本能量卡丟棄,增加其張數×90點傷害。" + } + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + ja: "ドラバイト", + id: "Dravite", + 'zh-tw': "棕碧璽", + 'zh-cn': "棕碧璽" + }, + + damage: 280, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/210.ts b/data-asia/SV/SV8a/210.ts new file mode 100644 index 000000000..b471059e8 --- /dev/null +++ b/data-asia/SV/SV8a/210.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノカイナex", + id: "Iron Hands ex", + 'zh-tw': "鐵臂膀ex", + 'zh-cn': "鐵臂膀ex" + }, + + illustrator: "Kazumasa Yasukuni", + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + ja: "アームプレス", + id: "Arm Press", + 'zh-tw': "臂壓制", + 'zh-cn': "臂壓制" + }, + + damage: 160 + }, { + cost: ["Lightning", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "ごっつあんプリファイ", + id: "Amplifikasi Syukur", + 'zh-tw': "感激放大", + 'zh-cn': "感激放大" + }, + + damage: 120, + + effect: { + ja: "このワザのダメージで、相手のポケモンがきぜつしたなら、サイドを1枚多くとる。", + id: "Jika Pokémon lawan KO karena kerusakan akibat serangan ini, ambil Kartu Point 1 lembar lebih banyak.", + 'zh-tw': "若對手的寶可夢因這個招式的傷害而【昏厥】了,則多獲得1張獎賞卡。", + 'zh-cn': "若對手的寶可夢因這個招式的傷害而【昏厥】了,則多獲得1張獎賞卡。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/211.ts b/data-asia/SV/SV8a/211.ts new file mode 100644 index 000000000..ae2b7cd9a --- /dev/null +++ b/data-asia/SV/SV8a/211.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "エーフィex", + id: "Espeon ex", + 'zh-tw': "太陽伊布ex", + 'zh-cn': "太陽伊布ex" + }, + + illustrator: "sui", + rarity: "None", + category: "Pokemon", + hp: 270, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "サイコアウト", + id: "Psyout", + 'zh-tw': "精神出局", + 'zh-cn': "精神出局" + }, + + damage: 160, + + effect: { + ja: "相手の手札からオモテを見ないで1枚選び、トラッシュする。", + id: "Pilih 1 kartu dari Kartu Pegangan lawan tanpa melihat sisi depan, lalu buang ke Trash.", + 'zh-tw': "在不看正面的情況下,從對手的手牌選擇1張,將其丟棄。", + 'zh-cn': "在不看正面的情況下,從對手的手牌選擇1張,將其丟棄。" + } + }, { + cost: ["Grass", "Psychic", "Darkness"], + + name: { + ja: "アマゼツ", + id: "Amazez", + 'zh-tw': "阿賽斯特萊石", + 'zh-cn': "阿賽斯特萊石" + }, + + effect: { + ja: "相手の進化しているポケモン全員の上から、それぞれ「進化カード」を1枚ずつはがして退化させる。はがしたカードは、相手の山札にもどして切る。", + id: "Turunkan tingkat evolusi semua Pokémon lawan yang telah berevolusi dengan melepas masing-masing 1 lembar kartu evolusi dari atasnya. Kartu yang dilepas dikocok kembali ke Deck lawan.", + 'zh-tw': "從對手的所有進化的寶可夢身上,各移除1張「進化卡」使其退化。將移除的卡放回對手的牌庫並重洗。", + 'zh-cn': "從對手的所有進化的寶可夢身上,各移除1張「進化卡」使其退化。將移除的卡放回對手的牌庫並重洗。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/212.ts b/data-asia/SV/SV8a/212.ts new file mode 100644 index 000000000..c5f19e84a --- /dev/null +++ b/data-asia/SV/SV8a/212.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ニンフィアex", + id: "Sylveon ex", + 'zh-tw': "仙子伊布ex", + 'zh-cn': "仙子伊布ex" + }, + + illustrator: "Cona Nitanda", + rarity: "None", + category: "Pokemon", + hp: 270, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "マジカルチャーム", + id: "Magical Charm", + 'zh-tw': "魔法魅惑", + 'zh-cn': "魔法魅惑" + }, + + damage: 160, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンが使うワザのダメージは「-100」される。", + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang digunakan oleh Pokémon yang menerima serangan ini berkurang sejumlah 100.", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-100」點。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-100」點。" + } + }, { + cost: ["Water", "Lightning", "Psychic"], + + name: { + ja: "エンジェライト", + id: "Angelite", + 'zh-tw': "天仙石", + 'zh-cn': "天仙石" + }, + + effect: { + ja: "相手のベンチポケモンを2匹選び、そのポケモンと、ついているすべてのカードを、山札にもどして切る。前の自分の番に、自分のポケモンが「エンジェライト」を使っていたなら、このワザは使えない。", + id: "Pilih 2 Pokémon Cadangan lawan, lalu kocok kembali Pokémon tersebut dan semua kartu yang dikenakannya ke Deck. Serangan ini tidak dapat digunakan jika pada giliran sendiri sebelumnya, Pokémon sendiri telah menggunakan Angelite.", + 'zh-tw': "選擇2隻對手的備戰寶可夢,將那些寶可夢與附加的卡全部放回牌庫並重洗。在上個自己的回合,若自己的寶可夢使出了「天仙石」,則無法使用這個招式。", + 'zh-cn': "選擇2隻對手的備戰寶可夢,將那些寶可夢與附加的卡全部放回牌庫並重洗。在上個自己的回合,若自己的寶可夢使出了「天仙石」,則無法使用這個招式。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/213.ts b/data-asia/SV/SV8a/213.ts new file mode 100644 index 000000000..eb97351f4 --- /dev/null +++ b/data-asia/SV/SV8a/213.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノブジンex", + id: "Iron Valiant ex", + 'zh-tw': "鐵武者ex", + 'zh-cn': "鐵武者ex" + }, + + illustrator: "danciao", + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "タキオンビット", + id: "Tachyon Bit", + 'zh-tw': "超光速位元", + 'zh-cn': "超光速位元" + }, + + effect: { + ja: "自分の番に、このポケモンがベンチからバトル場に出たとき、1回使える。相手のポケモン1匹に、ダメカンを2個のせる。", + id: "Dapat digunakan 1 kali pada giliran sendiri saat Pokémon ini masuk dari Cadangan ke Arena Bertarung. Letakkan 2 Token Kerusakan pada 1 Pokémon lawan.", + 'zh-tw': "在自己的回合,從備戰區將這隻寶可夢放置於戰鬥場時,可使用1次。在對手的1隻寶可夢身上放置2個傷害指示物。", + 'zh-cn': "在自己的回合,從備戰區將這隻寶可夢放置於戰鬥場時,可使用1次。在對手的1隻寶可夢身上放置2個傷害指示物。" + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + ja: "レーザーブレード", + id: "Laser Blade", + 'zh-tw': "鐳射利刃", + 'zh-cn': "鐳射利刃" + }, + + damage: 200, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/214.ts b/data-asia/SV/SV8a/214.ts new file mode 100644 index 000000000..1e3bb0877 --- /dev/null +++ b/data-asia/SV/SV8a/214.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノカシラex", + id: "Iron Crown ex", + 'zh-tw': "鐵頭殼ex", + 'zh-cn': "鐵頭殼ex" + }, + + illustrator: "OKUBO", + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "コバルトコマンド", + id: "Cobalt Command", + 'zh-tw': "鈷藍指令", + 'zh-cn': "鈷藍指令" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分の「未来」のポケモン(「テツノカシラex」をのぞく)が使うワザの、相手のバトルポケモンへのダメージは「+20」される。", + id: "Selama Pokémon ini ada di Arena, kerusakan akibat serangan yang digunakan oleh Pokémon Futur sendiri (selain Iron Crown {ex}) kepada Pokémon Bertarung lawan bertambah sejumlah 20.", + 'zh-tw': "只要這隻寶可夢在場上,自己的「未來」寶可夢(「鐵頭殼【ex】」除外)使用的招式,對對手的戰鬥寶可夢造成的傷害「+20」點。", + 'zh-cn': "只要這隻寶可夢在場上,自己的「未來」寶可夢(「鐵頭殼【ex】」除外)使用的招式,對對手的戰鬥寶可夢造成的傷害「+20」點。" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "ツインショーテル", + id: "Twin Shotel", + 'zh-tw': "雙刃劍", + 'zh-cn': "雙刃劍" + }, + + effect: { + ja: "相手のポケモン2匹に、それぞれ50ダメージ。このワザのダメージは、弱点・抵抗力と、ダメージを受けるポケモンにかかっている効果を計算しない。", + id: "Serangan ini memberikan kerusakan masing-masing sejumlah 50 kepada 2 Pokémon lawan. Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan, Resistansi, dan efek yang sedang dialami Pokémon yang menerima kerusakan.", + 'zh-tw': "對手的2隻寶可夢各受到50點傷害。這個招式的傷害不計算弱點・抵抗力與受到傷害的寶可夢身上的附加效果。", + 'zh-cn': "對手的2隻寶可夢各受到50點傷害。這個招式的傷害不計算弱點・抵抗力與受到傷害的寶可夢身上的附加效果。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/215.ts b/data-asia/SV/SV8a/215.ts new file mode 100644 index 000000000..0888418d9 --- /dev/null +++ b/data-asia/SV/SV8a/215.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "スナノケガワex", + id: "Sandy Shocks ex", + 'zh-tw': "沙鐵皮ex", + 'zh-cn': "沙鐵皮ex" + }, + + illustrator: "Tetsu Kayama", + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Fighting"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "じりょくきゅうしゅう", + id: "Isapan Kekuatan Magnet", + 'zh-tw': "磁力吸收", + 'zh-cn': "磁力吸收" + }, + + effect: { + ja: "相手のサイドの残り枚数が4枚以下なら、自分の番に1回使える。自分のトラッシュから「基本エネルギー」を1枚選び、このポケモンにつける。", + id: "Dapat digunakan 1 kali pada giliran sendiri jika sisa Kartu Point lawan adalah 4 lembar atau kurang. Pilih 1 lembar Energi Dasar {Petarung} dari Trash sendiri, lalu kenakan pada Pokémon ini.", + 'zh-tw': "若對手剩餘獎賞卡的張數為4張以下,則在自己的回合時可使用1次。從自己的棄牌區選擇1張「基本【鬥】能量」卡,附於這隻寶可夢身上。", + 'zh-cn': "若對手剩餘獎賞卡的張數為4張以下,則在自己的回合時可使用1次。從自己的棄牌區選擇1張「基本【鬥】能量」卡,附於這隻寶可夢身上。" + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + ja: "グラウンドスパイク", + id: "Ground Spike", + 'zh-tw': "大地扣殺", + 'zh-cn': "大地扣殺" + }, + + damage: 200, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/216.ts b/data-asia/SV/SV8a/216.ts new file mode 100644 index 000000000..39b921827 --- /dev/null +++ b/data-asia/SV/SV8a/216.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーガポン いしずえのめんex", + id: "Ogerpon Topeng Fondasi ex", + 'zh-tw': "厄鬼椪 礎石面具ex", + 'zh-cn': "厄鬼椪 礎石面具ex" + }, + + illustrator: "Yukihiro Tada", + rarity: "None", + category: "Pokemon", + hp: 210, + types: ["Fighting"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "いしずえのかまえ", + id: "Kuda-kuda Fondasi", + 'zh-tw': "礎石之勢", + 'zh-cn': "礎石之勢" + }, + + effect: { + ja: "このポケモンは、相手の特性を持つポケモンからワザのダメージを受けない。", + id: "Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon lawan yang memiliki Ability.", + 'zh-tw': "這隻寶可夢不會受到對手的擁有特性的寶可夢招式的傷害。", + 'zh-cn': "這隻寶可夢不會受到對手的擁有特性的寶可夢招式的傷害。" + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + ja: "ぶちやぶる", + id: "Memecah Penuh Tenaga", + 'zh-tw': "打爆", + 'zh-cn': "打爆" + }, + + damage: 140, + + effect: { + ja: "このワザのダメージは、弱点・抵抗力と、相手のバトルポケモンにかかっている効果を計算しない。", + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan, Resistansi, dan efek yang sedang dialami Pokémon Bertarung lawan.", + 'zh-tw': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/217.ts b/data-asia/SV/SV8a/217.ts new file mode 100644 index 000000000..e6a73b43a --- /dev/null +++ b/data-asia/SV/SV8a/217.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ブラッキーex", + id: "Umbreon ex", + 'zh-tw': "月亮伊布ex", + 'zh-cn': "月亮伊布ex" + }, + + illustrator: "YASHIRO Nanaco", + rarity: "None", + category: "Pokemon", + hp: 280, + types: ["Darkness"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + ja: "ムーンミラージュ", + id: "Moon Mirage", + 'zh-tw': "月亮幻想", + 'zh-cn': "月亮幻想" + }, + + damage: 160, + + effect: { + ja: "相手のバトルポケモンをこんらんにする。", + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing.", + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。" + } + }, { + cost: ["Lightning", "Psychic", "Darkness"], + + name: { + ja: "オニキス", + id: "Onyx", + 'zh-tw': "縞瑪瑙", + 'zh-cn': "縞瑪瑙" + }, + + effect: { + ja: "このポケモンについているエネルギーをすべてトラッシュし、自分のサイドを1枚とる。", + id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash, lalu ambil 1 lembar Kartu Point sendiri.", + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄,獲得1張自己的獎賞卡。", + 'zh-cn': "將這隻寶可夢身上附加的能量卡全部丟棄,獲得1張自己的獎賞卡。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/218.ts b/data-asia/SV/SV8a/218.ts new file mode 100644 index 000000000..be8084b71 --- /dev/null +++ b/data-asia/SV/SV8a/218.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "トドロクツキex", + id: "Roaring Moon ex", + 'zh-tw': "轟鳴月ex", + 'zh-cn': "轟鳴月ex" + }, + + illustrator: "Shinji Kanda", + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + ja: "くるいえぐる", + id: "Mengoyak Gila-gilaan", + 'zh-tw': "瘋癲攻擊", + 'zh-cn': "瘋癲攻擊" + }, + + effect: { + ja: "相手のバトルポケモンをきぜつさせる。その後、このポケモンに200ダメージ。", + id: "Pokémon Bertarung lawan KO. Setelah itu, berikan kerusakan sejumlah 200 kepada Pokémon ini.", + 'zh-tw': "將對手的戰鬥寶可夢【昏厥】。然後,這隻寶可夢受到200點傷害。", + 'zh-cn': "將對手的戰鬥寶可夢【昏厥】。然後,這隻寶可夢受到200點傷害。" + } + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + ja: "カラミティストーム", + id: "Calamity Storm", + 'zh-tw': "災厄風暴", + 'zh-cn': "災厄風暴" + }, + + damage: "100+", + + effect: { + ja: "のぞむなら、場に出ているスタジアムをトラッシュする。その場合、120ダメージ追加。", + id: "Pemain dapat membuang Stadium yang ada di Arena ke Trash. Jika dilakukan, kerusakan yang diberikan bertambah sejumlah 120.", + 'zh-tw': "若希望,將場上的競技場卡丟棄。這個情況下,增加120點傷害。", + 'zh-cn': "若希望,將場上的競技場卡丟棄。這個情況下,增加120點傷害。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/219.ts b/data-asia/SV/SV8a/219.ts new file mode 100644 index 000000000..baa9be161 --- /dev/null +++ b/data-asia/SV/SV8a/219.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "モモワロウex", + id: "Pecharunt ex", + 'zh-tw': "桃歹郎ex", + 'zh-cn': "桃歹郎ex" + }, + + illustrator: "osare", + rarity: "None", + category: "Pokemon", + hp: 190, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "しはいのくさり", + id: "Rantai Dominasi", + 'zh-tw': "支配鎖鏈", + 'zh-cn': "支配鎖鏈" + }, + + effect: { + ja: "自分の番に1回使える。自分のベンチのポケモン(「モモワロウex」をのぞく)を1匹選び、バトルポケモンと入れ替える。その後、新しいバトルポケモンをどくにする。この番、すでに別の「しはいのくさり」を使っていたなら、この特性は使えない。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 Pokémon {Kegelapan} (selain Pecharunt {ex}) di Cadangan sendiri, lalu tukar dengan Pokémon Bertarung. Setelah itu, ubah kondisi Pokémon Bertarung yang baru menjadi Racun. Jika pada giliran ini, Rantai Dominasi lainnya telah digunakan, Ability ini tidak dapat digunakan.", + 'zh-tw': "在自己的回合時可使用1次。選擇1隻自己的備戰區的【惡】寶可夢(「桃歹郎【ex】」除外),與戰鬥寶可夢互換。然後,將新的戰鬥寶可夢【中毒】。在這個回合,若已經使出了其他的「支配鎖鏈」,則這個特性無法使用。", + 'zh-cn': "在自己的回合時可使用1次。選擇1隻自己的備戰區的【惡】寶可夢(「桃歹郎【ex】」除外),與戰鬥寶可夢互換。然後,將新的戰鬥寶可夢【中毒】。在這個回合,若已經使出了其他的「支配鎖鏈」,則這個特性無法使用。" + } + }], + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + ja: "イライラバースト", + id: "Ledakan Marah-marah", + 'zh-tw': "煩煩爆炸", + 'zh-cn': "煩煩爆炸" + }, + + damage: "60×", + + effect: { + ja: "相手がすでにとったサイドの枚数×60ダメージ。", + id: "Serangan ini memberikan kerusakan sejumlah 60 untuk tiap lembar Kartu Point yang telah diambil lawan.", + 'zh-tw': "造成對手已經獲得的獎賞卡的張數×60點傷害。", + 'zh-cn': "造成對手已經獲得的獎賞卡的張數×60點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/220.ts b/data-asia/SV/SV8a/220.ts new file mode 100644 index 000000000..3b0c89929 --- /dev/null +++ b/data-asia/SV/SV8a/220.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "サーフゴーex", + id: "Gholdengo ex", + 'zh-tw': "賽富豪ex", + 'zh-cn': "賽富豪ex" + }, + + illustrator: "Shigenori Negishi", + rarity: "None", + category: "Pokemon", + hp: 260, + types: ["Metal"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "ボーナスコイン", + id: "Bonus Coin", + 'zh-tw': "紅利硬幣", + 'zh-cn': "紅利硬幣" + }, + + effect: { + ja: "自分の番に1回使える。自分の山札を1枚引く。このポケモンがバトル場にいるなら、さらに1枚引く。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Ambil 1 kartu dari atas Deck sendiri. Jika Pokémon ini ada di Arena Bertarung, ambil lagi 1 kartu tambahan.", + 'zh-tw': "在自己的回合時可使用1次。從自己的牌庫抽出1張卡。若這隻寶可夢在戰鬥場上,則再抽出1張卡。", + 'zh-cn': "在自己的回合時可使用1次。從自己的牌庫抽出1張卡。若這隻寶可夢在戰鬥場上,則再抽出1張卡。" + } + }], + + attacks: [{ + cost: ["Metal"], + + name: { + ja: "ゴールドラッシュ", + id: "Terjangan Emas", + 'zh-tw': "淘金潮", + 'zh-cn': "淘金潮" + }, + + damage: "50×", + + effect: { + ja: "自分の手札から基本エネルギーを好きなだけトラッシュし、その枚数×50ダメージ。", + id: "Buang sesukanya Energi Dasar dari Kartu Pegangan sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 50 untuk tiap lembarnya.", + 'zh-tw': "從自己的手牌將任意數量的基本能量卡丟棄,造成其張數×50點傷害。", + 'zh-cn': "從自己的手牌將任意數量的基本能量卡丟棄,造成其張數×50點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/221.ts b/data-asia/SV/SV8a/221.ts new file mode 100644 index 000000000..75ee56bc8 --- /dev/null +++ b/data-asia/SV/SV8a/221.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ドラパルトex", + id: "Dragapult ex", + 'zh-tw': "多龍巴魯托ex", + 'zh-cn': "多龍巴魯托ex" + }, + + illustrator: "Jerky", + rarity: "None", + category: "Pokemon", + hp: 320, + types: ["Dragon"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ジェットヘッド", + id: "Jet Head", + 'zh-tw': "噴射頭擊", + 'zh-cn': "噴射頭擊" + }, + + damage: 70 + }, { + cost: ["Fire", "Psychic"], + + name: { + ja: "ファントムダイブ", + id: "Phantom Dive", + 'zh-tw': "幻影奇襲", + 'zh-cn': "幻影奇襲" + }, + + damage: 200, + + effect: { + ja: "ダメカン6個を、相手のベンチポケモンに好きなようにのせる。", + id: "Letakkan sejumlah 6 Token Kerusakan pada Pokémon Cadangan lawan sesukanya.", + 'zh-tw': "將6個傷害指示物以任意方式放置於對手的備戰寶可夢身上。", + 'zh-cn': "將6個傷害指示物以任意方式放置於對手的備戰寶可夢身上。" + } + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/222.ts b/data-asia/SV/SV8a/222.ts new file mode 100644 index 000000000..78382eedc --- /dev/null +++ b/data-asia/SV/SV8a/222.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "タケルライコex", + id: "Raging Bolt ex", + 'zh-tw': "猛雷鼓ex", + 'zh-cn': "猛雷鼓ex" + }, + + illustrator: "Uninori", + rarity: "None", + category: "Pokemon", + hp: 240, + types: ["Dragon"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "はじけるほうこう", + id: "Letusan Raungan", + 'zh-tw': "濺射咆哮", + 'zh-cn': "濺射咆哮" + }, + + effect: { + ja: "自分の手札をすべてトラッシュし、山札を6枚引く。", + id: "Buang semua Kartu Pegangan sendiri ke Trash, lalu ambil 6 kartu dari atas Deck.", + 'zh-tw': "將自己的手牌全部丟棄,從牌庫抽出6張卡。", + 'zh-cn': "將自己的手牌全部丟棄,從牌庫抽出6張卡。" + } + }, { + cost: ["Lightning", "Fighting"], + + name: { + ja: "きょくらいごう", + id: "Guntur Membahana Ekstrem", + 'zh-tw': "極降駕", + 'zh-cn': "極降駕" + }, + + damage: "70×", + + effect: { + ja: "自分の場のポケモンについている基本エネルギーを好きなだけトラッシュし、その枚数×70ダメージ。", + id: "Buang sesukanya Energi Dasar yang dikenakan pada Pokémon di Arena sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 70 untuk tiap lembarnya.", + 'zh-tw': "將自己的場上寶可夢身上附加的任意數量的基本能量卡丟棄,造成其張數×70點傷害。", + 'zh-cn': "將自己的場上寶可夢身上附加的任意數量的基本能量卡丟棄,造成其張數×70點傷害。" + } + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/223.ts b/data-asia/SV/SV8a/223.ts new file mode 100644 index 000000000..314226ad1 --- /dev/null +++ b/data-asia/SV/SV8a/223.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イーブイex", + id: "Eevee ex", + 'zh-tw': "伊布ex", + 'zh-cn': "伊布ex" + }, + + illustrator: "tono", + rarity: "None", + category: "Pokemon", + hp: 200, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "にじいろDNA", + id: "DNA Warna Pelangi", + 'zh-tw': "虹色DNA", + 'zh-cn': "虹色DNA" + }, + + effect: { + ja: "このポケモンは、「イーブイ」から進化する「ポケモンex」を手札から出して、このポケモンにのせて進化できる。(最初の自分の番や、出したばかりの番には進化できない。)", + id: "Pokémon ini dapat berevolusi dengan memasukkan Pokémon {ex} yang merupakan evolusi dari Eevee dari Kartu Pegangan, lalu meletakkannya pada Pokémon ini. (Tidak dapat dievolusikan pada giliran pertama pemain dan pada giliran Pokémon ini dimasukkan.)", + 'zh-tw': "這隻寶可夢可從手牌使出從「伊布」進化而來的「寶可夢【ex】」,放置於這隻寶可夢身上完成進化。(在自己的最初回合或者剛使出的回合無法進化。)", + 'zh-cn': "這隻寶可夢可從手牌使出從「伊布」進化而來的「寶可夢【ex】」,放置於這隻寶可夢身上完成進化。(在自己的最初回合或者剛使出的回合無法進化。)" + } + }], + + attacks: [{ + cost: ["Fire", "Water", "Lightning"], + + name: { + ja: "クォーツシャイン", + id: "Quartz Shine", + 'zh-tw': "石英閃耀", + 'zh-cn': "石英閃耀" + }, + + damage: 200 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/224.ts b/data-asia/SV/SV8a/224.ts new file mode 100644 index 000000000..214a02862 --- /dev/null +++ b/data-asia/SV/SV8a/224.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "イーブイex", + id: "Eevee ex", + 'zh-tw': "伊布ex", + 'zh-cn': "伊布ex" + }, + + illustrator: "Natsuko Shoji été", + rarity: "None", + category: "Pokemon", + hp: 200, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "にじいろDNA", + id: "DNA Warna Pelangi", + 'zh-tw': "虹色DNA", + 'zh-cn': "虹色DNA" + }, + + effect: { + ja: "このポケモンは、「イーブイ」から進化する「ポケモンex」を手札から出して、このポケモンにのせて進化できる。(最初の自分の番や、出したばかりの番には進化できない。)", + id: "Pokémon ini dapat berevolusi dengan memasukkan Pokémon {ex} yang merupakan evolusi dari Eevee dari Kartu Pegangan, lalu meletakkannya pada Pokémon ini. (Tidak dapat dievolusikan pada giliran pertama pemain dan pada giliran Pokémon ini dimasukkan.)", + 'zh-tw': "這隻寶可夢可從手牌使出從「伊布」進化而來的「寶可夢【ex】」,放置於這隻寶可夢身上完成進化。(在自己的最初回合或者剛使出的回合無法進化。)", + 'zh-cn': "這隻寶可夢可從手牌使出從「伊布」進化而來的「寶可夢【ex】」,放置於這隻寶可夢身上完成進化。(在自己的最初回合或者剛使出的回合無法進化。)" + } + }], + + attacks: [{ + cost: ["Fire", "Water", "Lightning"], + + name: { + ja: "クォーツシャイン", + id: "Quartz Shine", + 'zh-tw': "石英閃耀", + 'zh-cn': "石英閃耀" + }, + + damage: 200 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/225.ts b/data-asia/SV/SV8a/225.ts new file mode 100644 index 000000000..aaa40f64b --- /dev/null +++ b/data-asia/SV/SV8a/225.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ガチグマ アカツキex", + id: "Ursaluna Bulan Merah ex", + 'zh-tw': "月月熊 赫月ex", + 'zh-cn': "月月熊 赫月ex" + }, + + illustrator: "Yano Keiji", + rarity: "None", + category: "Pokemon", + hp: 260, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "ろうれんのわざ", + id: "Jurus Terlatih", + 'zh-tw': "老練招式", + 'zh-cn': "老練招式" + }, + + effect: { + ja: "相手がすでにとったサイドの枚数ぶん、このポケモンが「ブラッドムーン」を使うためのエネルギーは少なくなる。", + id: "Energi {Bening} yang dibutuhkan oleh Pokémon ini untuk menggunakan Bulan Darah berkurang untuk tiap lembar Kartu Point yang telah diambil lawan.", + 'zh-tw': "這隻寶可夢使用「血月」所需的【無】能量,減少對手已經獲得的獎賞卡的張數數量。", + 'zh-cn': "這隻寶可夢使用「血月」所需的【無】能量,減少對手已經獲得的獎賞卡的張數數量。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "ブラッドムーン", + id: "Bulan Darah", + 'zh-tw': "血月", + 'zh-cn': "血月" + }, + + damage: 240, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/226.ts b/data-asia/SV/SV8a/226.ts new file mode 100644 index 000000000..6bb22ad8f --- /dev/null +++ b/data-asia/SV/SV8a/226.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テラパゴスex", + id: "Terapagos ex", + 'zh-tw': "太樂巴戈斯ex", + 'zh-cn': "太樂巴戈斯ex" + }, + + illustrator: "mashu", + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ユニオンビート", + id: "Union Beat", + 'zh-tw': "聯盟擊", + 'zh-cn': "聯盟擊" + }, + + damage: "30×", + + effect: { + ja: "このワザは、後攻プレイヤーの最初の番には使えない。自分のベンチポケモンの数×30ダメージ。", + id: "Serangan ini tidak dapat digunakan pada giliran pertama Pemain Kedua. Serangan ini memberikan kerusakan sejumlah 30 untuk tiap Pokémon Cadangan sendiri.", + 'zh-tw': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。", + 'zh-cn': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。" + } + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + ja: "クラウンオパール", + id: "Crown Opal", + 'zh-tw': "皇冠蛋白石", + 'zh-cn': "皇冠蛋白石" + }, + + damage: 180, + + effect: { + ja: "次の相手の番、このポケモンはたねポケモン(ポケモンをのぞく)からワザのダメージを受けない。", + id: "Pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon Basic (selain Pokémon {Bening}).", + 'zh-tw': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。", + 'zh-cn': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/227.ts b/data-asia/SV/SV8a/227.ts new file mode 100644 index 000000000..e9b99730e --- /dev/null +++ b/data-asia/SV/SV8a/227.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アカマツ", + id: "Akamatsu", + 'zh-tw': "赤松", + 'zh-cn': "赤松" + }, + + illustrator: "Tomowaka", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札から、それぞれちがうタイプの基本エネルギーを2枚まで選び、相手に見せて、どちらか1枚を手札に加え、残りのエネルギーを自分のポケモンにつける。そして山札を切る。", + id: "Pilih paling banyak 2 lembar Energi Dasar yang masing-masing berbeda tipenya dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan salah satu ke Kartu Pegangan dan kenakan sisa Energi pada Pokémon sendiri. Kemudian, kocok Deck.", + 'zh-tw': "從自己的牌庫選擇最多2張各不同屬性的基本能量卡,在給對手看過後,其中1張加入手牌,剩餘的能量卡附於自己的寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張各不同屬性的基本能量卡,在給對手看過後,其中1張加入手牌,剩餘的能量卡附於自己的寶可夢身上。並且重洗牌庫。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/228.ts b/data-asia/SV/SV8a/228.ts new file mode 100644 index 000000000..4daa2069c --- /dev/null +++ b/data-asia/SV/SV8a/228.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "アンズの秘技", + id: "Teknik Rahasia Janine‌", + 'zh-tw': "阿杏的秘招", + 'zh-cn': "阿杏的秘招" + }, + + illustrator: "Ligton", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分のポケモンを2匹まで選び、自分の山札から「基本エネルギー」を1枚ずつつける。そして山札を切る。バトルポケモンにつけた場合、そのポケモンをどくにする。", + id: "Pilih paling banyak 2 Pokémon {Kegelapan} sendiri, lalu kenakan Energi Dasar {Kegelapan} masing-masing 1 lembar dari Deck sendiri. Kemudian, kocok Deck. Jika dikenakan pada Pokémon Bertarung, ubah kondisi Pokémon tersebut menjadi Racun.", + 'zh-tw': "選擇最多2隻自己的【惡】寶可夢,從自己的牌庫附給那些寶可夢各1張「基本【惡】能量」卡。並且重洗牌庫。附於戰鬥寶可夢身上的情況下,將那隻寶可夢【中毒】。", + 'zh-cn': "選擇最多2隻自己的【惡】寶可夢,從自己的牌庫附給那些寶可夢各1張「基本【惡】能量」卡。並且重洗牌庫。附於戰鬥寶可夢身上的情況下,將那隻寶可夢【中毒】。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/229.ts b/data-asia/SV/SV8a/229.ts new file mode 100644 index 000000000..ae3b25eb5 --- /dev/null +++ b/data-asia/SV/SV8a/229.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "カキツバタ", + id: "Levigato", + 'zh-tw': "杜若", + 'zh-cn': "杜若" + }, + + illustrator: "Tomowaka", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札を上から7枚見て、その中からポケモンとトレーナーズを1枚ずつ選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。", + id: "Lihat 7 kartu dari atas Deck sendiri, pilih Pokémon dan Trainer di antaranya masing-masing 1 lembar, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck.", + 'zh-tw': "查看自己的牌庫上方7張卡,從其中選擇寶可夢卡與訓練家卡各1張,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。", + 'zh-cn': "查看自己的牌庫上方7張卡,從其中選擇寶可夢卡與訓練家卡各1張,在給對手看過後加入手牌。將剩餘卡放回牌庫並重洗。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/230.ts b/data-asia/SV/SV8a/230.ts new file mode 100644 index 000000000..0406cde06 --- /dev/null +++ b/data-asia/SV/SV8a/230.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "スグリ", + id: "Suguri", + 'zh-tw': "烏栗", + 'zh-cn': "烏栗" + }, + + illustrator: "Iori Suzuki", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、2つの効果から1つを選んで使う。\n\n◆自分のバトルポケモンをベンチポケモンと入れ替える。\n\n◆この番、自分のポケモンが使うワザの、相手のバトル場の「ポケモンex・V」へのダメージは「+30」される。", + id: "Kartu ini digunakan dengan memilih salah satu dari dua efek berikut. ◆ Tukar Pokémon Bertarung sendiri dengan Pokémon Cadangan. ◆ Pada giliran ini, kerusakan akibat serangan yang digunakan oleh Pokémon sendiri kepada Pokémon {ex}/{V} di Arena Bertarung lawan bertambah sejumlah 30.", + 'zh-tw': "這張卡從2種效果中選擇1種使用。 ◆將自己的戰鬥寶可夢與備戰寶可夢互換。 ◆在這個回合,自己的寶可夢使用的招式,對對手的戰鬥場的「寶可夢【ex】・【V】」造成的傷害「+30」點。", + 'zh-cn': "這張卡從2種效果中選擇1種使用。 ◆將自己的戰鬥寶可夢與備戰寶可夢互換。 ◆在這個回合,自己的寶可夢使用的招式,對對手的戰鬥場的「寶可夢【ex】・【V】」造成的傷害「+30」點。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/231.ts b/data-asia/SV/SV8a/231.ts new file mode 100644 index 000000000..103bb8ce5 --- /dev/null +++ b/data-asia/SV/SV8a/231.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "タロ", + id: "Tara", + 'zh-tw': "紫竽", + 'zh-cn': "紫竽" + }, + + illustrator: "Tomowaka", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の手札をすべて山札にもどして切る。その後、山札を4枚引く。相手のサイドの残り枚数が3枚以下なら、引く枚数は8枚になる。", + id: "Kocok kembali semua Kartu Pegangan sendiri ke Deck. Setelah itu, ambil 4 kartu dari atas Deck. Jika sisa Kartu Point lawan adalah 3 lembar atau kurang, jumlah kartu yang diambil menjadi 8 lembar.", + 'zh-tw': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出4張卡。若對手剩餘獎賞卡的張數為3張以下,則改爲抽出8張卡。", + 'zh-cn': "將自己的手牌全部放回牌庫並重洗。然後,從牌庫抽出4張卡。若對手剩餘獎賞卡的張數為3張以下,則改爲抽出8張卡。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/232.ts b/data-asia/SV/SV8a/232.ts new file mode 100644 index 000000000..05b605e21 --- /dev/null +++ b/data-asia/SV/SV8a/232.ts @@ -0,0 +1,29 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ネリネ", + id: "Nerine", + 'zh-tw': "納莉", + 'zh-cn': "納莉" + }, + + illustrator: "Tomowaka", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札を4枚引く。このカードを使った番の終わりに、自分の手札が5枚以上あるなら、自分の手札をすべてトラッシュする。", + id: "Ambil 4 kartu dari atas Deck sendiri. Jika pada akhir giliran digunakannya kartu ini, ada 5 lembar atau lebih kartu di Kartu Pegangan sendiri, buang semua Kartu Pegangan sendiri ke Trash.", + 'zh-tw': "從自己的牌庫抽出4張卡。在使用了這張卡的回合結束時,若自己的手牌有5張以上,則將自己的手牌全部丟棄。", + 'zh-cn': "從自己的牌庫抽出4張卡。在使用了這張卡的回合結束時,若自己的手牌有5張以上,則將自己的手牌全部丟棄。" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/233.ts b/data-asia/SV/SV8a/233.ts new file mode 100644 index 000000000..92d21eab7 --- /dev/null +++ b/data-asia/SV/SV8a/233.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テツノイサハex", + id: "Iron Leaves ex", + 'zh-tw': "鐵斑葉ex", + 'zh-cn': "鐵斑葉ex" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "ラピッドバーニア", + id: "Rapid Vernier", + 'zh-tw': "迅速游標", + 'zh-cn': "迅速游標" + }, + + effect: { + ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。このポケモンをバトルポケモンと入れ替える。入れ替えた場合、自分の場のポケモンについているエネルギーを好きなだけ選び、このポケモンにつけ替える。", + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Tukar Pokémon ini dengan Pokémon Bertarung. Jika ditukar, pilih sesukanya Energi yang dikenakan pada Pokémon di Arena sendiri, lalu pindahkan ke Pokémon ini.", + 'zh-tw': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。將這隻寶可夢與戰鬥寶可夢互換。互換的情況下,選擇自己的場上寶可夢身上附加的任意數量的能量卡,改附於這隻寶可夢身上。", + 'zh-cn': "在自己的回合,從手牌將這張卡放置於備戰區時,可使用1次。將這隻寶可夢與戰鬥寶可夢互換。互換的情況下,選擇自己的場上寶可夢身上附加的任意數量的能量卡,改附於這隻寶可夢身上。" + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Colorless"], + + name: { + ja: "プリズムエッジ", + id: "Prism Edge", + 'zh-tw': "稜鏡刀鋒", + 'zh-cn': "稜鏡刀鋒" + }, + + damage: 180, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/234.ts b/data-asia/SV/SV8a/234.ts new file mode 100644 index 000000000..96fb33d4f --- /dev/null +++ b/data-asia/SV/SV8a/234.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "オーガポン みどりのめんex", + id: "Ogerpon Topeng Teal ex", + 'zh-tw': "厄鬼椪 碧草面具ex", + 'zh-cn': "厄鬼椪 碧草面具ex" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Pokemon", + hp: 210, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "みどりのまい", + id: "Tarian Teal", + 'zh-tw': "碧綠之舞", + 'zh-cn': "碧綠之舞" + }, + + effect: { + ja: "自分の番に1回使える。自分の手札から「基本エネルギー」を1枚選び、このポケモンにつける。その後、自分の山札を1枚引く。", + id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 lembar Energi Dasar {Daun} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon ini. Setelah itu, ambil 1 kartu dari atas Deck sendiri.", + 'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於這隻寶可夢身上。然後,從自己的牌庫抽出1張卡。", + 'zh-cn': "在自己的回合時可使用1次。從自己的手牌選擇1張「基本【草】能量」卡,附於這隻寶可夢身上。然後,從自己的牌庫抽出1張卡。" + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Grass"], + + name: { + ja: "まんようしぐれ", + id: "Hujan Ribuan Daun", + 'zh-tw': "萬葉陣雨", + 'zh-cn': "萬葉陣雨" + }, + + damage: "30+", + + effect: { + ja: "おたがいのバトルポケモンについているエネルギーの数×30ダメージ追加。", + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon Bertarung kedua pemain.", + 'zh-tw': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。", + 'zh-cn': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/235.ts b/data-asia/SV/SV8a/235.ts new file mode 100644 index 000000000..83340303a --- /dev/null +++ b/data-asia/SV/SV8a/235.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ウネルミナモex", + id: "Walking Wake ex", + 'zh-tw': "波盪水ex", + 'zh-cn': "波盪水ex" + }, + + illustrator: "takuyoa", + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "こんぺきはとう", + id: "Ombak Besar Biru Tua", + 'zh-tw': "藏青浪濤", + 'zh-cn': "藏青浪濤" + }, + + effect: { + ja: "このポケモンが使うワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。", + id: "Kerusakan akibat serangan yang digunakan oleh Pokémon ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan.", + 'zh-tw': "這隻寶可夢使用招式的傷害,不計算對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這隻寶可夢使用招式的傷害,不計算對手的戰鬥寶可夢身上的附加效果。" + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + ja: "カタルシスロアー", + id: "Catharsis Roar", + 'zh-tw': "宣洩吼嘯", + 'zh-cn': "宣洩吼嘯" + }, + + damage: "120+", + + effect: { + ja: "相手のバトルポケモンが特殊状態なら、120ダメージ追加。", + id: "Jika Pokémon Bertarung lawan mengalami Kondisi Khusus, kerusakan yang diberikan bertambah sejumlah 120.", + 'zh-tw': "若對手的戰鬥寶可夢處於特殊狀態,則增加120點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢處於特殊狀態,則增加120點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/236.ts b/data-asia/SV/SV8a/236.ts new file mode 100644 index 000000000..d914d9082 --- /dev/null +++ b/data-asia/SV/SV8a/236.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "ピカチュウex", + id: "Pikachu ex", + 'zh-tw': "皮卡丘ex", + 'zh-cn': "皮卡丘ex" + }, + + illustrator: "aky CG Works", + rarity: "None", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "がんばりハート", + id: "Hati Pejuang", + 'zh-tw': "‌‌勤奮之心", + 'zh-cn': "‌‌勤奮之心" + }, + + effect: { + ja: "このポケモンのHPがまんたんの状態で、このポケモンがワザのダメージを受けてきぜつするとき、きぜつせず、残りHPが「10」の状態で場に残る。", + id: "Saat Pokémon ini KO karena menerima kerusakan akibat serangan ketika HP Pokémon ini masih penuh, Pokémon ini tidak KO dan tetap berada di Arena dengan kondisi sisa HP sejumlah 10.", + 'zh-tw': "‌這隻寶可夢的HP是全滿的狀態下,這隻寶可夢受到招式的傷害而【昏厥】時,這隻寶可夢不會【昏厥】,而是以剩餘HP為「10」的狀態留在場上。", + 'zh-cn': "‌這隻寶可夢的HP是全滿的狀態下,這隻寶可夢受到招式的傷害而【昏厥】時,這隻寶可夢不會【昏厥】,而是以剩餘HP為「10」的狀態留在場上。" + } + }], + + attacks: [{ + cost: ["Grass", "Lightning", "Metal"], + + name: { + ja: "トパーズボルト", + id: "Topaz Bolt", + 'zh-tw': "黃玉伏特", + 'zh-cn': "黃玉伏特" + }, + + damage: 300, + + effect: { + ja: "このポケモンについているエネルギーを3個選び、トラッシュする。", + id: "Pilih 3 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.", + 'zh-tw': "選擇3個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇3個這隻寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8a/237.ts b/data-asia/SV/SV8a/237.ts new file mode 100644 index 000000000..7ec684dc4 --- /dev/null +++ b/data-asia/SV/SV8a/237.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8a" + +const card: Card = { + set: Set, + + name: { + ja: "テラパゴスex", + id: "Terapagos ex", + 'zh-tw': "太樂巴戈斯ex", + 'zh-cn': "太樂巴戈斯ex" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ユニオンビート", + id: "Union Beat", + 'zh-tw': "聯盟擊", + 'zh-cn': "聯盟擊" + }, + + damage: "30×", + + effect: { + ja: "このワザは、後攻プレイヤーの最初の番には使えない。自分のベンチポケモンの数×30ダメージ。", + id: "Serangan ini tidak dapat digunakan pada giliran pertama Pemain Kedua. Serangan ini memberikan kerusakan sejumlah 30 untuk tiap Pokémon Cadangan sendiri.", + 'zh-tw': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。", + 'zh-cn': "這個招式在後攻玩家的最初回合無法使用。造成自己的備戰寶可夢的數量×30點傷害。" + } + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + ja: "クラウンオパール", + id: "Crown Opal", + 'zh-tw': "皇冠蛋白石", + 'zh-cn': "皇冠蛋白石" + }, + + damage: 180, + + effect: { + ja: "次の相手の番、このポケモンはたねポケモン(ポケモンをのぞく)からワザのダメージを受けない。", + id: "Pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon Basic (selain Pokémon {Bening}).", + 'zh-tw': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。", + 'zh-cn': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢(【無】寶可夢除外)招式的傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s.ts b/data-asia/SV/SV8s.ts new file mode 100644 index 000000000..4ce8d7ed4 --- /dev/null +++ b/data-asia/SV/SV8s.ts @@ -0,0 +1,22 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SV8s', + name: { + id: 'Kilat Rasi', + th: 'สเตลลาร์สายฟ้าฟาด' + }, + + serie: serie, + + cardCount: { + official: 182 + }, + releaseDate: { + id: '2024-11-29', + th: '2024-12-23' + } +} + +export default set diff --git a/data-asia/SV/SV8s/001.ts b/data-asia/SV/SV8s/001.ts new file mode 100644 index 000000000..3fb99bc6b --- /dev/null +++ b/data-asia/SV/SV8s/001.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Exeggcute", + th: "ทามะทามะ" + }, + + illustrator: "Tetsu Kayama", + category: "Pokemon", + hp: 30, + types: ["Grass"], + + description: { + id: "Karena saling mengirimkan telepati yang hanya diterima oleh Exeggcute, Pokémon ini selalu terkumpul 6 ekor pada saat apa pun.", + th: "เพราะมันส่งโทรจิตที่สื่อถึงกันได้เฉพาะในพวกทามะทามะด้วยกันเอง มันจึงสามารถรวมตัวกัน 6 ตัวได้ตลอดเวลา" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Evolusi Karbitan", + th: "วิวัฒนาการโตไว" + }, + + effect: { + id: "Serangan ini juga dapat digunakan pada giliran pertama Pemain Pertama. Pilih 1 kartu dari Deck sendiri yang merupakan evolusi dari Pokémon ini, lalu letakkan pada Pokémon ini untuk melakukan evolusi. Kemudian, kocok Deck.", + th: "ท่าต่อสู้นี้ แม้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเริ่มก่อนก็สามารถใช้ได้ เลือกการ์ด ที่จะวิวัฒนาการจากโปเกมอนนี้ 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนโปเกมอน นี้เพื่อวิวัฒนาการ แล้วสับสำรับการ์ด" + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/002.ts b/data-asia/SV/SV8s/002.ts new file mode 100644 index 000000000..cdef2cd99 --- /dev/null +++ b/data-asia/SV/SV8s/002.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Exeggcute", + th: "ทามะทามะ" + }, + + illustrator: "OKUBO", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + id: "Karena saling mengirimkan telepati yang hanya diterima oleh Exeggcute, Pokémon ini selalu terkumpul 6 ekor pada saat apa pun.", + th: "เพราะมันส่งโทรจิตที่สื่อถึงกันได้เฉพาะในพวกทามะทามะด้วยกันเอง มันจึงสามารถรวมตัวกัน 6 ตัวได้ตลอดเวลา" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menyerap", + th: "ดูดซับ" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 10.", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [10]" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/003.ts b/data-asia/SV/SV8s/003.ts new file mode 100644 index 000000000..8f1df365f --- /dev/null +++ b/data-asia/SV/SV8s/003.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Exeggutor", + th: "นัชชี" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + hp: 130, + types: ["Grass"], + + description: { + id: "Konon meskipun sangat jarang, salah satu kepalanya yang jatuh ke tanah akan berubah menjadi Exeggcute dan mulai bergerak.", + th: "ว่ากันว่า นาน ๆ ครั้งจะมีหัวของมันสักหัวหนึ่งตกลงพื้น และหัวนั้นก็จะ กลายเป็นทามะทามะ แล้วเริ่มเคลื่อนไหว" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Jam Melempar Bola", + th: "ชั่วโมงขว้างบอล" + }, + + effect: { + id: "Lempar koin untuk tiap Energi yang dikenakan pada Pokémon Bertarung kedua pemain. Serangan ini memberikan kerusakan sejumlah 60 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญตามจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ของทั้ง สองฝ่ายแดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x60" + }, + + damage: "60×", + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/004.ts b/data-asia/SV/SV8s/004.ts new file mode 100644 index 000000000..6d8a921b3 --- /dev/null +++ b/data-asia/SV/SV8s/004.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Durant ex", + th: "ไอแอนท์ex" + }, + + illustrator: "PLANETA Tsuji", + category: "Pokemon", + hp: 190, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Mengikis Tiba-tiba", + th: "ขูดออกฉับพลัน" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Buang 1 kartu dari atas Deck lawan ke Trash.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด" + } + }], + + attacks: [{ + name: { + id: "Revenge Crush", + th: "รีเวนจ์แครช" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap lembar Kartu Point yang telah diambil lawan.", + th: "แดเมจจะเพิ่มตามจำนวนการ์ดรางวัลที่ฝ่ายตรงข้ามหยิบไปแล้ว x30" + }, + + damage: "120+", + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/005.ts b/data-asia/SV/SV8s/005.ts new file mode 100644 index 000000000..3f7c855f5 --- /dev/null +++ b/data-asia/SV/SV8s/005.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Scatterbug", + th: "โคฟูคิมูชิ" + }, + + illustrator: "Iori Suzuki", + category: "Pokemon", + hp: 40, + types: ["Grass"], + + description: { + id: "Scatterbug mengusir musuhnya dengan menyebarkan bubuk beracun. Tumbuhan yang menjadi makanannya berbeda-beda tergantung daerah tempat ia tinggal.", + th: "โปรยผงพิษเพื่อขับไล่ศัตรู พืชที่กินเป็นอาหารจะแตกต่างกันไปตาม พื้นที่ที่อาศัยอยู่" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Memanggil Teman", + th: "เรียกเพื่อน" + }, + + effect: { + id: "Pilih 1 lembar Pokémon Basic dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้ว สับสำรับการ์ด" + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/006.ts b/data-asia/SV/SV8s/006.ts new file mode 100644 index 000000000..382036a34 --- /dev/null +++ b/data-asia/SV/SV8s/006.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Spewpa", + th: "โคฟูไร" + }, + + illustrator: "tono", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + description: { + id: "Spewpa tidak memiliki tempat tinggal yang tetap. Pokémon ini berjalan mengelilingi padang dan gunung mengikuti kata hatinya, mengumpulkan energi untuk berevolusi.", + th: "ไม่มีที่อยู่อาศัยที่แน่นอน เดินวนไปมาตามป่าเขาตามใจชอบ คอยสะสม พลังงานสำหรับวิวัฒนาการ" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Jalan Berkeliling", + th: "เดินวน" + }, + + effect: { + id: "Tukar Pokémon ini dengan Pokémon Cadangan.", + th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Serudukan", + th: "พุ่งเข้าชน" + }, + + damage: 30, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/007.ts b/data-asia/SV/SV8s/007.ts new file mode 100644 index 000000000..70088454f --- /dev/null +++ b/data-asia/SV/SV8s/007.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Vivillon", + th: "วิวิญอง" + }, + + illustrator: "Amelicart", + category: "Pokemon", + hp: 120, + types: ["Grass"], + + description: { + id: "Vivillon yang terlahir di wilayah ajaib. Pokémon ini bertarung dengan menyebarkan sisik toksik berwarna-warni dari sayapnya.", + th: "เกิดในบริเวณที่น่าพิศวง ต่อสู้โดยการโปรยเกล็ดพิษสีสดใสออกมาจาก ปีก" + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Evolution Powder", + th: "อีโวพาวเดอร์" + }, + + effect: { + id: "Pilih kartu yang merupakan evolusi dari tiap-tiap Pokémon Cadangan sendiri masing-masing 1 lembar dari Deck sendiri, lalu letakkan pada tiap-tiap Pokémon tersebut untuk melakukan evolusi. Kemudian, kocok Deck.", + th: "เลือกการ์ดแต่ละใบที่จะวิวัฒนาการจากโปเกมอนบนเบนช์ฝ่ายเราทุกตัว ตัวละ 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนโปเกมอนแต่ละตัวเพื่อวิวัฒนาการ แล้วสับ สำรับการ์ด" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Cutter Wind", + th: "คัตเตอร์วินด์" + }, + + damage: 90, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/008.ts b/data-asia/SV/SV8s/008.ts new file mode 100644 index 000000000..31317774a --- /dev/null +++ b/data-asia/SV/SV8s/008.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Morelull", + th: "เนมาชู" + }, + + illustrator: "Tomokazu Komiya", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + id: "Tudung jamur Morelull sangat lezat. Para Pokémon di hutan menyantapnya dan tudung ini akan tumbuh kembali dalam semalam.", + th: "หมวกเห็ดบนหัวนั้นอร่อยมาก ถูกเหล่าโปเกมอนในป่ากินแต่ก็งอกใหม่ ได้ภายในคืนเดียว" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menempel", + th: "ติดหนึบ" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/009.ts b/data-asia/SV/SV8s/009.ts new file mode 100644 index 000000000..f07e4e3b5 --- /dev/null +++ b/data-asia/SV/SV8s/009.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Shiinotic", + th: "มาเชโดะ" + }, + + illustrator: "Aya Kusube", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + description: { + id: "Shiinotic memikat mangsa menggunakan cahaya sporanya yang berkedip-kedip dan membuat mangsanya tidur. Pokémon ini mengisap vitalitas mangsa menggunakan ujung jarinya.", + th: "แสงของสปอร์ที่กะพริบจะเรียกเหยื่อให้เข้าใกล้ แล้วทำให้หลับ จะสูบ พลังชีวิตออกจากปลายนิ้ว" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Cahaya Ketenangan", + th: "แสงสงบใจ" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini ada di Arena Bertarung. Ubah kondisi Pokémon Bertarung lawan menjadi Tidur.", + th: "ถ้าโปเกมอนนี้อยู่บนตำแหน่งต่อสู้ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ทำให้โปเกมอน บนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]" + } + }], + + attacks: [{ + name: { + id: "Spiral Rush", + th: "สไปรัลรัช" + }, + + effect: { + id: "Lempar koin hingga hasilnya sisi belakang. Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญจนกว่าจะออกก้อย แดเมจจะเพิ่มตามจำนวนครั้งที่ออกหัว x30" + }, + + damage: "60+", + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/010.ts b/data-asia/SV/SV8s/010.ts new file mode 100644 index 000000000..388ab3585 --- /dev/null +++ b/data-asia/SV/SV8s/010.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Dhelmise", + th: "ดาดาริน" + }, + + illustrator: "Mori Yuu", + category: "Pokemon", + hp: 130, + types: ["Grass"], + + description: { + id: "Dhelmise adalah ganggang yang mengambang di dasar laut, menempel dan mengambil alih bagian dari kapal karam, lalu terlahir kembali sebagai Pokémon hantu.", + th: "เศษสาหร่ายที่ลอยอยู่ก้นทะเลนำพาชิ้นส่วนของซากเรือจมเข้ามารวม กันแล้วเกิดใหม่เป็นโปเกมอนผี" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Rescue Anchor", + th: "เรสคิวแองเคอร์" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Pokémon dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan.", + th: "เลือกการ์ดโปเกมอนได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่าย ตรงข้ามดู นำขึ้นมือ" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Jangkar Penghancur", + th: "สมอแห่งการทำลาย" + }, + + effect: { + id: "Sebelum memberikan kerusakan, buang Pokémon Tool yang dikenakan pada Pokémon Bertarung lawan ke Trash.", + th: "ก่อนจะทำแดเมจ ทิ้ง [ไอเท็มติดโปเกมอน] ที่ติดอยู่กับโปเกมอนบนตำแหน่ง ต่อสู้ฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 80, + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/011.ts b/data-asia/SV/SV8s/011.ts new file mode 100644 index 000000000..e2d6f6d41 --- /dev/null +++ b/data-asia/SV/SV8s/011.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Zarude", + th: "ซารู้ด" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 120, + types: ["Grass"], + + description: { + id: "Zarude hidup dalam hutan belantara secara berkelompok. Sangat agresif sehingga ditakuti oleh Pokémon lainnya yang tinggal di hutan.", + th: "สร้างฝูงอาศัยอยู่ในป่าทึบ มีนิสัยก้าวร้าวมากและเป็นที่หวาดกลัวของ เหล่าโปเกมอนที่อาศัยอยู่ในป่า" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Leaf Drain", + th: "ลีฟเดรน" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 20.", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]" + }, + + damage: 20, + cost: ["Grass"] + }, { + name: { + id: "Jungle Whip", + th: "จังเกิลวิป" + }, + + effect: { + id: "Pemain dapat mengembalikan semua Energi yang dikenakan pada Pokémon ini ke Kartu Pegangan, kerusakan yang diberikan bertambah sejumlah 80.", + th: "หากต้องการ นำพลังงานที่ติดอยู่กับโปเกมอนนี้ทั้งหมดกลับขึ้นมือ การโจมตีนี้จะ เพิ่มแดเมจอีก 80" + }, + + damage: "80+", + cost: ["Grass", "Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/012.ts b/data-asia/SV/SV8s/012.ts new file mode 100644 index 000000000..efe9f53fe --- /dev/null +++ b/data-asia/SV/SV8s/012.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Capsakid", + th: "แคปไซจิ" + }, + + illustrator: "Julie Hang", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + id: "Rasa masakan khas Paldea sangat pedas karena dibuat menggunakan gigi depan Capsakid yang lepas.", + th: "อาหารท้องถิ่นของพัลเดียมีรสชาติเผ็ดมาก เพราะใช้ฟันหน้าที่ร่วงหล่น ของแคปไซจิเป็นวัตถุดิบ" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Sundulan Meloncat", + th: "กระโดดโหม่ง" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/013.ts b/data-asia/SV/SV8s/013.ts new file mode 100644 index 000000000..d6a2c585e --- /dev/null +++ b/data-asia/SV/SV8s/013.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Rellor", + th: "ชิกาโรโค" + }, + + illustrator: "Toshinao Aoki", + category: "Pokemon", + hp: 40, + types: ["Grass"], + + description: { + id: "Rellor mematangkan energi evolusi sambil menggelindingkan bola lumpur. Pada akhirnya, waktu evolusi Pokémon ini akan tiba.", + th: "บ่มพลังงานที่ใช้ในการวิวัฒนาการให้สุกไปในขณะที่กลิ้งก้อนโคลน เพื่อ รอช่วงเวลาที่จะได้วิวัฒนาการ" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mengumpulkan", + th: "รวบรวม" + }, + + effect: { + id: "Ambil 1 kartu dari atas Deck sendiri.", + th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Menggelinding", + th: "กลิ้ง" + }, + + damage: 10, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/014.ts b/data-asia/SV/SV8s/014.ts new file mode 100644 index 000000000..463d682f1 --- /dev/null +++ b/data-asia/SV/SV8s/014.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Rabsca", + th: "เบราคาสุ" + }, + + illustrator: "Masako Tomii", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + id: "Bayi tertidur di dalam bola Rabsca. Pokémon ini menggelundungkan bola dengan kakinya dan menenangkan bayi tersebut agar dapat tidur nyenyak.", + th: "มีตัวอ่อนหลับใหลอยู่ภายในลูกบอล ใช้ขาหมุนลูกบอลเพื่อกล่อมให้ ตัวอ่อนนอนหลับสบาย" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Triple Draw", + th: "ทริปเปิ้ลดรอว์" + }, + + effect: { + id: "Ambil 3 kartu dari atas Deck sendiri.", + th: "จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Kondisi Berbalik", + th: "กลับตาลปัตร" + }, + + effect: { + id: "Jika sisa Deck sendiri adalah 3 lembar atau kurang, kerusakan yang diberikan bertambah sejumlah 200.", + th: "ถ้าจำนวนการ์ดที่เหลือในสำรับการ์ดฝ่ายเราน้อยกว่าหรือเท่ากับ 3 ใบ การ โจมตีนี้จะเพิ่มแดเมจอีก 200" + }, + + damage: "40+", + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/015.ts b/data-asia/SV/SV8s/015.ts new file mode 100644 index 000000000..36257ea8e --- /dev/null +++ b/data-asia/SV/SV8s/015.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Wo-Chien", + th: "ฉงเจี่ยน" + }, + + illustrator: "danciao", + category: "Pokemon", + hp: 130, + types: ["Grass"], + + description: { + id: "Wo-Chien mengisap energi tumbuhan. Hutan sekeliling Pokémon ini langsung menjadi tandus dan sawah-sawah menjadi gersang.", + th: "ดูดพลังงานของต้นไม้ใบหญ้า ทำให้ป่าไม้โดยรอบเหี่ยวเฉาอย่าง รวดเร็วและไร่นาไม่ค่อยออกผล" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Greed Hazard", + th: "โลภอันตราย" + }, + + effect: { + id: "Jika sisa Deck sendiri adalah 3 lembar atau kurang, serangan ini juga memberikan kerusakan masing-masing sejumlah 120 kepada 2 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "ถ้าจำนวนการ์ดที่เหลือในสำรับการ์ดฝ่ายเราน้อยกว่าหรือเท่ากับ 3 ใบ โปเกมอนบนเบนช์ฝ่ายตรงข้าม 2 ตัว ก็จะได้รับแดเมจตัวละ 120 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" + }, + + damage: 20, + cost: ["Grass", "Colorless"] + }, { + name: { + id: "Cambuk Melibatkan", + th: "แส้พันพัว" + }, + + effect: { + id: "Buang 3 kartu dari atas Deck sendiri ke Trash.", + th: "‌ทิ้งการ์ด 3 ใบจากด้านบนของสำรับการ์ดฝ่ายเราที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 130, + cost: ["Grass", "Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/016.ts b/data-asia/SV/SV8s/016.ts new file mode 100644 index 000000000..53b01e646 --- /dev/null +++ b/data-asia/SV/SV8s/016.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Vulpix", + th: "โรคอน" + }, + + illustrator: "Narumi Sato", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + id: "Enam ekornya yang hangat menjadi makin indah dan bulunya makin bagus seiring dengan pertumbuhan tubuhnya.", + th: "ขนของหางทั้ง 6 ที่แสนอบอุ่นนั้นจะค่อย ๆ เรียงสวยขึ้นและงดงาม ยิ่งขึ้นเมื่อร่างกายของมันเติบใหญ่" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menerjang", + th: "พุ่งเข้าใส่" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 10.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย" + }, + + damage: 30, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/017.ts b/data-asia/SV/SV8s/017.ts new file mode 100644 index 000000000..37f2a0e9d --- /dev/null +++ b/data-asia/SV/SV8s/017.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Ninetales", + th: "คิวคอน" + }, + + illustrator: "Kamome Shirahama", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + description: { + id: "Ia memiliki bulu yang berkilau keemasan dan 9 ekor yang panjang. Dikatakan bahwa ia hidup selama 1000 tahun.", + th: "มีขนที่เปล่งประกายสีทองและหางยาว 9 หาง ว่ากันว่ามีอายุถึง 1000 ปี" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Roh Api", + th: "ดวงวิญญาณไฟ" + }, + + effect: { + id: "Serangan ini juga memberikan kerusakan sejumlah 30 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "โปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ก็จะได้รับแดเมจ 30 ด้วย {โปเกมอน บนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" + }, + + damage: 50, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/018.ts b/data-asia/SV/SV8s/018.ts new file mode 100644 index 000000000..e581b1c5a --- /dev/null +++ b/data-asia/SV/SV8s/018.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Paldean Tauros", + th: "พัลเดีย เคนเทารอส" + }, + + illustrator: "Taiga Kasai", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + id: "Tauros ini diberi nama Varian Api karena mengembuskan napas bersuhu tinggi dari hidungnya. Pokémon ini mengikat 3 ekornya.", + th: "เพราะพ่นลมหายใจที่มีอุณหภูมิสูงจึงถูกตั้งชื่อว่าพันธุ์อัคคี หางทั้งสาม พันกันเป็นเกลียว" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tendangan Belakang", + th: "เตะกลับหลัง" + }, + + damage: 30, + cost: ["Fire"] + }, { + name: { + id: "Serudukan Tenaga Dalam", + th: "ฮึดสู้กระแทก" + }, + + effect: { + id: "Jika Pokémon Bertarung lawan adalah Pokémon Stage 1, kerusakan yang diberikan bertambah sejumlah 90.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นโปเกมอน[ร่าง1] การโจมตีนี้จะ เพิ่มแดเมจอีก 90" + }, + + damage: "90+", + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/019.ts b/data-asia/SV/SV8s/019.ts new file mode 100644 index 000000000..c154a5e51 --- /dev/null +++ b/data-asia/SV/SV8s/019.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Ho-Oh", + th: "โฮโอ" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + id: "Pokémon yang terdapat pada mitos dengan kisah tubuhnya bersinar tujuh warna dan pelangi muncul setelah ia terbang.", + th: "โปเกมอนที่ถูกเล่าขานในเทพนิยายว่าร่างกายเปล่งประกาย 7 สี และจะมีสายรุ้งปรากฏหลังจากที่มันโบยบินผ่านไป" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mengepak", + th: "ตีปีก" + }, + + damage: 50, + cost: ["Fire", "Colorless"] + }, { + name: { + id: "Shine Blaze", + th: "ไชน์เบลซ" + }, + + effect: { + id: "Jika ada Pokémon Terastal di Cadangan sendiri, kerusakan yang diberikan bertambah sejumlah 100.", + th: "ถ้าบนเบนช์ฝ่ายเรามีโปเกมอน [เทรัสตัล] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 100" + }, + + damage: "100+", + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/020.ts b/data-asia/SV/SV8s/020.ts new file mode 100644 index 000000000..94a07faf7 --- /dev/null +++ b/data-asia/SV/SV8s/020.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Castform Wujud Matahari", + th: "โปวาลุน ร่างพระอาทิตย์" + }, + + illustrator: "osare", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + id: "Wujud Castform pada hari yang cerah. Pada percobaan meletakkannya di depan pemanas, Pokémon ini tidak berubah menjadi wujud ini.", + th: "ร่างของโปวาลุนในวันที่อากาศแจ่มใส ในการทดลองที่วางมันไว้หน้า ฮีตเตอร์ มันก็ไม่เปลี่ยนเป็นร่างนี้" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menghanguskan", + th: "เผา" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]" + }, + + cost: ["Fire"] + }, { + name: { + id: "Sunny Assist", + th: "ซันนีแอสซิสต์" + }, + + effect: { + id: "Pindahkan semua Energi yang dikenakan pada Pokémon ini ke 1 Pokémon Cadangan.", + th: "นำพลังงานที่ติดอยู่กับโปเกมอนนี้ทั้งหมด ย้ายไปติดกับโปเกมอนบนเบนช์ 1 ตัว" + }, + + damage: 50, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/021.ts b/data-asia/SV/SV8s/021.ts new file mode 100644 index 000000000..e6a48eeda --- /dev/null +++ b/data-asia/SV/SV8s/021.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Victini", + th: "วิคทินี" + }, + + illustrator: "0313", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + id: "Pokémon pembawa kemenangan. Dikatakan bahwa pelatih yang membawa Victini selalu menang dalam pertarungan apa pun.", + th: "โปเกมอนที่นำพามาซึ่งชัยชนะ ว่ากันว่าเทรนเนอร์ที่พาวิคทินีมาด้วยจะ ชนะการประลองทุกอย่าง" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Victory Yell", + th: "วิกทอรีเยล" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena, kerusakan akibat serangan yang digunakan oleh Pokémon Evolusi tipe {Api} sendiri kepada Pokémon Bertarung lawan bertambah sejumlah 10.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ แดเมจของท่าต่อสู้ที่โปเกมอนวิวัฒนาการประเภท[ไฟ] ฝ่ายเรา ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+10]" + } + }], + + attacks: [{ + name: { + id: "Api", + th: "ไฟ" + }, + + damage: 30, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/022.ts b/data-asia/SV/SV8s/022.ts new file mode 100644 index 000000000..a1dd30eb9 --- /dev/null +++ b/data-asia/SV/SV8s/022.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Pansear", + th: "บาอปปุ" + }, + + illustrator: "Wintr Wandr", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + id: "Pansear sangat cerdas dan memiliki kebiasaan memanggang buah beri sebelum memakannya. Pokémon ini suka membantu orang.", + th: "มีปัญญาสูง และมีนิสัยชอบเผาผลไม้ก่อนกิน ชอบช่วยเหลือคน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Lidah Api", + th: "เผาไหม้" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/023.ts b/data-asia/SV/SV8s/023.ts new file mode 100644 index 000000000..581a88134 --- /dev/null +++ b/data-asia/SV/SV8s/023.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Simisear", + th: "บาอกกี" + }, + + illustrator: "Taiga Kasai", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + description: { + id: "Simisear membakar api di dalam tubuhnya, menyebarkan bara api dari kepala dan ekornya untuk menghanguskan musuhnya.", + th: "จะจุดเปลวเพลิงในร่างกายให้ลุกโชน แล้วโปรยผงไฟจากทางหัวหรือ หางเพื่อเผาศัตรูให้ไหม้เกรียม" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Double Smash", + th: "ดับเบิลสแมช" + }, + + effect: { + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 70 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x70" + }, + + damage: "70×", + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/024.ts b/data-asia/SV/SV8s/024.ts new file mode 100644 index 000000000..80f6cb5a1 --- /dev/null +++ b/data-asia/SV/SV8s/024.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Larvesta", + th: "เมลาร์วา" + }, + + illustrator: "MARINA Chikazawa", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + id: "Zaman dahulu kala, orang-orang memuja Larvesta sebagai utusan matahari, tetapi ia dibenci karena sering menyebabkan kebakaran gunung.", + th: "ในอดีตเคยถูกเคารพบูชาในฐานะบริวารของพระอาทิตย์ แต่เพราะ ชอบทำให้เกิดไฟป่าอยู่บ่อย ๆ เลยถูกเกลียดชังด้วยเช่นกัน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menyeruduk", + th: "กระแทก" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + id: "Memuntahkan Api", + th: "พ่นอัคคี" + }, + + damage: 20, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/025.ts b/data-asia/SV/SV8s/025.ts new file mode 100644 index 000000000..4b729aac2 --- /dev/null +++ b/data-asia/SV/SV8s/025.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Volcarona", + th: "อุลกามอธ" + }, + + illustrator: "matazo", + category: "Pokemon", + hp: 140, + types: ["Fire"], + + description: { + id: "Volcarona menyebarkan sisik berapinya. Habisnya pasokan oksigen di area sekitar itu lebih berbahaya dari pada udara panas membara yang ia sebabkan.", + th: "โปรยเกล็ดปีกไฟรอบ ๆ สิ่งที่อันตรายกว่าความร้อนสูงของเกล็ดคือ การที่ออกซิเจนโดยรอบจะค่อย ๆ หายไป" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Mengisap Darah", + th: "ดูดเลือด" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah kerusakan yang diberikan kepada Pokémon Bertarung lawan.", + th: "ฟื้นฟู HP ของโปเกมอนนี้ ตามจำนวนแดเมจที่ทำกับโปเกมอนบนตำแหน่งต่อสู้ ฝ่ายตรงข้าม" + }, + + damage: 30, + cost: ["Colorless"] + }, { + name: { + id: "Kepakan Ganas", + th: "สยายปีกโหมกระหน่ำ" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 50.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 50 ด้วย" + }, + + damage: 150, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/026.ts b/data-asia/SV/SV8s/026.ts new file mode 100644 index 000000000..d0befc2e0 --- /dev/null +++ b/data-asia/SV/SV8s/026.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Oricorio", + th: "โอโดริโดริ" + }, + + illustrator: "Heisuke Kitazawa", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + description: { + id: "Wujud Oricorio yang mengisap Nektar Merah. Pokémon ini melakukan step yang bergairah dan menciptakan api yang menggelora.", + th: "ร่างของโอโดริโดริที่ดูดน้ำหวานสีแดง เต้นรำอย่างร้อนแรงทำให้เกิด เปลวไฟลุกโหม" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Energy Assist", + th: "‌เอนเนอร์จี้แอสซิสต์" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Energi Dasar dari Trash sendiri, lalu kenakan pada 1 Pokémon Cadangan.", + th: "เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่ โปเกมอนบนเบนช์ 1 ตัว" + }, + + cost: ["Fire"] + }, { + name: { + id: "Bunga Api", + th: "สะเก็ดไฟ" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 30, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/027.ts b/data-asia/SV/SV8s/027.ts new file mode 100644 index 000000000..1ef21d8b2 --- /dev/null +++ b/data-asia/SV/SV8s/027.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Sizzlipede", + th: "ยาคุเดะ" + }, + + illustrator: "Minahamu", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + description: { + id: "Sizzlipede memancarkan panas menggunakan gas mudah terbakar yang dihimpun dalam tubuhnya. Bagian perutnya yang berwarna kuning merupakan bagian yang paling panas.", + th: "ปล่อยความร้อนจากแก๊สเผาไหม้ที่กักไว้ในร่าง โดยเฉพาะส่วน สีเหลืองตรงท้องนั้นร้อนมาก" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Nyala Api", + th: "เชื้อไฟ" + }, + + damage: 10, + cost: ["Fire"] + }, { + name: { + id: "Mengait", + th: "จับแขวน" + }, + + damage: 30, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/028.ts b/data-asia/SV/SV8s/028.ts new file mode 100644 index 000000000..6c792214c --- /dev/null +++ b/data-asia/SV/SV8s/028.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Centiskorch", + th: "มารุยาคุเดะ" + }, + + illustrator: "Aliya Chen", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + id: "Suhu tubuh Centiskorch saat memancarkan panas mencapai sekitar 800 ℃. Pokémon ini akan loncat menyerang sambil mengelokkan tubuhnya bagaikan pecut.", + th: "อุณหภูมิร่างยามปล่อยความร้อนประมาณ 800 องศาเซลเซียส โค้ง ร่างราวกับแส้แล้วพุ่งเข้าโจมตี" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Gelombang Panas Berkobar", + th: "คลื่นร้อนเผาไหม้" + }, + + effect: { + id: "Serangan ini juga memberikan kerusakan masing-masing sejumlah 30 kepada semua Pokémon Cadangan sendiri. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "โปเกมอนบนเบนช์ฝ่ายเราทุกตัว ก็จะได้รับแดเมจตัวละ 30 ด้วย {โปเกมอน บนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" + }, + + damage: 130, + cost: ["Fire"] + }, { + name: { + id: "Heat Blast", + th: "ฮีทบลาสต์" + }, + + damage: 80, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/029.ts b/data-asia/SV/SV8s/029.ts new file mode 100644 index 000000000..87b1123bc --- /dev/null +++ b/data-asia/SV/SV8s/029.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Fuecoco", + th: "โฮเกเตอร์" + }, + + illustrator: "Tomomi Ozaki", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + description: { + id: "Karena kantong api Fuecoco kecil, energi yang meluap dikeluarkan dari cekungan di kepalanya dan bergoyang-goyang.", + th: "ถุงไฟมีขนาดเล็ก ทำให้พลังงานนั้นเอ่อล้นออกมาจากร่องบนหัวและ สั่นไหวไปมา" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Panas Penghangus", + th: "เผาด้วยความร้อน" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]" + }, + + damage: 20, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/030.ts b/data-asia/SV/SV8s/030.ts new file mode 100644 index 000000000..87afba479 --- /dev/null +++ b/data-asia/SV/SV8s/030.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Crocalor", + th: "อาจิเกเตอร์" + }, + + illustrator: "Atsuya Uki", + category: "Pokemon", + hp: 110, + types: ["Fire"], + + description: { + id: "Katup pita suara dan kantong api Crocalor saling terhubung. Pokémon ini menyemburkan api sambil mengeluarkan suara serak.", + th: "เส้นเสียงและวาล์วของถุงไฟมีความสัมพันธ์กันอย่างใกล้ชิด พ่นไฟ ออกมาพร้อมกับส่งเสียงแหบ" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Heat Breath", + th: "ฮีทเบรธ" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 50.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 50" + }, + + damage: "30+", + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/031.ts b/data-asia/SV/SV8s/031.ts new file mode 100644 index 000000000..4544a6ebb --- /dev/null +++ b/data-asia/SV/SV8s/031.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Skeledirge", + th: "ลาวด์โบน" + }, + + illustrator: "akagi", + category: "Pokemon", + hp: 180, + types: ["Fire"], + + description: { + id: "Suara nyanyian lembut Skeledirge menenangkan jiwa orang-orang yang mendengarnya. Pokémon ini membakar hangus musuhnya dengan api bersuhu 3000 ℃.", + th: "เสียงร้องเพลงที่อ่อนโยนจะช่วยเยียวยาจิตวิญญาณของผู้ฟัง เผาคู่ต่อสู้ ให้เป็นจุณด้วยเปลวไฟที่ร้อน 3000 องศาเซลเซียส" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + id: "Bebal", + th: "ไม่รู้ตัว" + }, + + effect: { + id: "Pokémon ini tidak menerima efek akibat serangan yang digunakan oleh Pokémon lawan.", + th: "โปเกมอนนี้ จะไม่ได้รับเอฟเฟกต์ของท่าต่อสู้ที่โปเกมอนฝ่ายตรงข้ามใช้" + } + }], + + attacks: [{ + name: { + id: "Flare Recital", + th: "แฟลร์รีไซทัล" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 20 untuk tiap Pokémon Cadangan kedua pemain.", + th: "แดเมจจะเพิ่มตามจำนวนโปเกมอนบนเบนช์ของทั้งสองฝ่าย x20" + }, + + damage: "60+", + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/032.ts b/data-asia/SV/SV8s/032.ts new file mode 100644 index 000000000..e7778a037 --- /dev/null +++ b/data-asia/SV/SV8s/032.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Charcadet", + th: "คาร์โบ" + }, + + illustrator: "Mékayu", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + description: { + id: "Ketika bertarung, kekuatan api Charcadet meningkat dan suhunya mencapai 1000 ℃. Pokémon ini menyukai buah beri yang kaya akan kandungan minyak.", + th: "เมื่อถึงคราวต่อสู้ พลังไฟจะสูงขึ้นถึง 1000 องศาเซลเซียส ชอบ ผลไม้ที่มีน้ำมันเป็นส่วนประกอบเยอะ" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Memukul", + th: "ทุบตี" + }, + + damage: 10, + cost: ["Fire"] + }, { + name: { + id: "Semburan Api", + th: "พ่นไฟ" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 70, + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/033.ts b/data-asia/SV/SV8s/033.ts new file mode 100644 index 000000000..a2600a156 --- /dev/null +++ b/data-asia/SV/SV8s/033.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Armarouge", + th: "กุเร็นอาร์มา" + }, + + illustrator: "DOM", + category: "Pokemon", + hp: 140, + types: ["Fire"], + + description: { + id: "Armarouge mengenakan zirah yang diperkuat dengan tenaga api dan psikokinesis. Pokémon ini menembakkan bola api yang membara.", + th: "สวมใส่ชุดเกราะที่เสริมความแข็งแกร่งด้วยพลังจิตและพลังงานไฟ ปล่อยลูกบอลไฟที่แสนร้อนระอุได้" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Lidah Api", + th: "เผาไหม้" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Rouge Blaster", + th: "กุเร็นบลัสเตอร์" + }, + + effect: { + id: "Buang semua Energi {Api} yang dikenakan pada Pokémon ini ke Trash, serangan ini memberikan kerusakan sejumlah 180 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "ทิ้งพลังงาน[ไฟ]ที่ติดอยู่กับโปเกมอนนี้ทั้งหมดที่ตำแหน่งทิ้งการ์ด ทำแดเมจ 180 กับโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำจุดอ่อน และความต้านทานมาคิด}" + }, + + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/034.ts b/data-asia/SV/SV8s/034.ts new file mode 100644 index 000000000..a11e36eff --- /dev/null +++ b/data-asia/SV/SV8s/034.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Ceruledge", + th: "โซเบลดส์" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 140, + types: ["Fire"], + + description: { + id: "Wujud evolusi Charcadet menjadi Ceruledge oleh zirah kuno yang diselimuti dendam. Pokémon ini menebas musuhnya tanpa ampun.", + th: "ร่างที่วิวัฒนาการด้วยชุดเกราะเก่าแก่ที่เต็มไปด้วยความแค้น ฟาดฟัน ศัตรูอย่างไร้ความปรานี" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Blaze Curse", + th: "เปลวเพลิงสาป" + }, + + effect: { + id: "Buang semua Energi Spesial yang dikenakan pada semua Pokémon lawan ke Trash.", + th: "ทิ้งพลังงานพิเศษที่ติดอยู่กับโปเกมอนฝ่ายตรงข้ามทุกตัว ทั้งหมดที่ตำแหน่ง ทิ้งการ์ด" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Sabetan Api Hitam", + th: "เพลิงกาฬตัด" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้" + }, + + damage: 160, + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/035.ts b/data-asia/SV/SV8s/035.ts new file mode 100644 index 000000000..7f9f99bee --- /dev/null +++ b/data-asia/SV/SV8s/035.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Scovillain ex", + th: "สโกวิลเลินex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 260, + types: ["Fire"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Tipe Ganda", + th: "ดับเบิลไทป์" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena, Pokémon ini menjadi 2 tipe yaitu {Daun} dan {Api}.", + th: "โปเกมอนนี้ ตราบใดที่ยังอยู่บนกระดาน จะเป็น 2 ประเภทคือ[หญ้า]และ[ไฟ]" + } + }], + + attacks: [{ + name: { + id: "Spicy Rage", + th: "สไปซีเรจ" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 70 untuk tiap Token Kerusakan yang dimiliki Pokémon ini.", + th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x70" + }, + + damage: "10+", + cost: ["Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/036.ts b/data-asia/SV/SV8s/036.ts new file mode 100644 index 000000000..3b245b194 --- /dev/null +++ b/data-asia/SV/SV8s/036.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Gouging Fire", + th: "เพลิงทะลวง" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + description: { + id: "Laporan kesaksiannya hanya sedikit. Terdapat video singkat sosoknya yang menyemburkan pilar api dan mengamuk.", + th: "มีรายงานการพบเห็นสิ่งมีชีวิตนี้เพียงไม่กี่ครั้ง มีคลิปวิดีโอที่แสดงให้ เห็นร่างที่อาละวาดและสร้างเสาเพลิงพุ่งขึ้นมา" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mendorong Jatuh", + th: "พุ่งชน" + }, + + damage: 30, + cost: ["Fire"] + }, { + name: { + id: "Menyerang Terbakar", + th: "ลุกไหม้ประจัญบาน" + }, + + effect: { + id: "Jika sisa Kartu Point lawan adalah 4 lembar atau kurang, kerusakan yang diberikan bertambah sejumlah 70.", + th: "ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายตรงข้ามน้อยกว่าหรือเท่ากับ 4 ใบ การ โจมตีนี้จะเพิ่มแดเมจอีก 70" + }, + + damage: "100+", + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/037.ts b/data-asia/SV/SV8s/037.ts new file mode 100644 index 000000000..f4f6c95f3 --- /dev/null +++ b/data-asia/SV/SV8s/037.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Paldean Tauros", + th: "พัลเดีย เคนเทารอส" + }, + + illustrator: "toi8", + category: "Pokemon", + hp: 130, + types: ["Water"], + + description: { + id: "Pokémon ini berenang dengan menyemprotkan air dari tanduknya. Memiliki lemak yang banyak dan mudah mengapung adalah karakteristik dari Tauros Varian Air.", + th: "ว่ายน้ำโดยการพ่นน้ำออกมาจากเขา จุดเด่นของพันธุ์วารีคือมีส่วนที่ เป็นไขมันเยอะจึงลอยน้ำได้ง่าย" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tanduk Banting Naik", + th: "เขางัดเสย" + }, + + effect: { + id: "Pemain dapat memilih 2 Energi yang dikenakan pada Pokémon Stage 2 di Arena Bertarung lawan, lalu mengembalikannya ke Kartu Pegangan lawan.", + th: "หากต้องการ เลือกพลังงานที่ติดอยู่กับโปเกมอน[ร่าง2] บนตำแหน่งต่อสู้ฝ่าย ตรงข้าม 2 ลูก นำกลับขึ้นมือฝ่ายตรงข้าม" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Jet Head", + th: "เจ็ตเฮด" + }, + + damage: 100, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/038.ts b/data-asia/SV/SV8s/038.ts new file mode 100644 index 000000000..0d0a2d66f --- /dev/null +++ b/data-asia/SV/SV8s/038.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Mantine", + th: "แมนไทน์" + }, + + illustrator: "satoma", + category: "Pokemon", + hp: 110, + types: ["Water"], + + description: { + id: "Saat Mantine berenang dan kecepatannya mulai meninggi, ia akan mulai melompat ke atas ombak dan meluncur begitu saja hingga sejauh 100 m di udara.", + th: "เมื่อว่ายน้ำจนความเร็วถึงที่ จะกระโดดบินเหนือคลื่นและร่อนได้ถึง 100 เมตร" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Splash", + th: "สแปลช" + }, + + damage: 30, + cost: ["Water"] + }, { + name: { + id: "Water Dive", + th: "วอเตอร์ไดฟ์" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 50 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "ทำแดเมจ 50 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำ จุดอ่อนและความต้านทานมาคิด}" + }, + + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/039.ts b/data-asia/SV/SV8s/039.ts new file mode 100644 index 000000000..0f3433626 --- /dev/null +++ b/data-asia/SV/SV8s/039.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Feebas", + th: "ฮินบาส" + }, + + illustrator: "Kedamahadaitai Yawarakai", + category: "Pokemon", + hp: 30, + types: ["Water"], + + description: { + id: "Pokémon yang paling lusuh. Feebas berkumpul dalam jumlah besar dan tinggal di dasar sungai yang banyak tanaman airnya.", + th: "โปเกมอนที่ดูโทรมที่สุด อาศัยอยู่กันเป็นฝูงที่ก้นแม่น้ำที่มีพืชน้ำมากมาย" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Lompat Kabur", + th: "ดีดหนี" + }, + + effect: { + id: "Tukar Pokémon ini dengan Pokémon Cadangan.", + th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์" + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/040.ts b/data-asia/SV/SV8s/040.ts new file mode 100644 index 000000000..70eeebee5 --- /dev/null +++ b/data-asia/SV/SV8s/040.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Milotic ex", + th: "มิโลคารอสex" + }, + + illustrator: "hncl", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Sisik Gemerlap", + th: "เกล็ดส่องประกาย" + }, + + effect: { + id: "Pokémon ini tidak menerima kerusakan dan efek akibat serangan dari Pokémon Terastal lawan.", + th: "โปเกมอนนี้ จะไม่ได้รับแดเมจและเอฟเฟกต์ของท่าต่อสู้จากโปเกมอน [เทรัสตัล] ฝ่ายตรงข้าม" + } + }], + + attacks: [{ + name: { + id: "Hypnosplash", + th: "ฮิปโนสแปลช" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]" + }, + + damage: 160, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/041.ts b/data-asia/SV/SV8s/041.ts new file mode 100644 index 000000000..925869313 --- /dev/null +++ b/data-asia/SV/SV8s/041.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Spheal", + th: "ทามาซาราชิ" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + id: "Tubuh Spheal yang sangat bulat diselimuti oleh lemak yang tebal. Pokémon ini lebih cepat menggelinding daripada berjalan.", + th: "ร่างกายที่ถูกห่อหุ้มด้วยชั้นไขมันหนานั้นกลมปุ๊กได้อย่างน่าทึ่ง กลิ้งตัวได้ ไวกว่าเดิน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Bubuk Salju", + th: "ผงหิมะ" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]" + }, + + damage: 10, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/042.ts b/data-asia/SV/SV8s/042.ts new file mode 100644 index 000000000..6b2bab756 --- /dev/null +++ b/data-asia/SV/SV8s/042.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Sealeo", + th: "โทดอกเกลอร์" + }, + + illustrator: "Mina Nakai", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + id: "Sealeo hidup di atas es hanyut. Sambil berenang, Pokémon ini mencium bau mangsa, menemukan, dan menangkapnya.", + th: "ใช้ชีวิตอยู่บนธารน้ำแข็ง ดมกลิ่นคัดแยกเหยื่อระหว่างว่ายน้ำ ตามหา จนเจอและจับมัน" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Mendorong Jatuh", + th: "พุ่งชน" + }, + + damage: 30, + cost: ["Water"] + }, { + name: { + id: "Ice Ball", + th: "บอลน้ำแข็ง" + }, + + damage: 60, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/043.ts b/data-asia/SV/SV8s/043.ts new file mode 100644 index 000000000..13ee6f005 --- /dev/null +++ b/data-asia/SV/SV8s/043.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Walrein", + th: "โทโดเซรุกา" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 170, + types: ["Water"], + + description: { + id: "Walrein membentuk kelompok yang terdiri atas 20 sampai 30 ekor. Ketika diserang musuh, pemimpin kelompok mempertaruhkan nyawanya untuk melindungi kelompok.", + th: "สร้างฝูงราว 20-30 ตัว เมื่อถูกศัตรูโจมตีจ่าฝูงจะนำตัวเข้าแลกเพื่อ ปกป้องฝูง" + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Taring Beku", + th: "คมเขี้ยวเยือกแข็ง" + }, + + effect: { + id: "Pada giliran lawan berikutnya, semua Pokémon yang mengenakan 2 Energi atau kurang tidak dapat menggunakan serangan. (Termasuk Pokémon yang baru dimasukkan ke Arena.)", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนทุกตัวที่มีพลังงานติดอยู่น้อยกว่าหรือ เท่ากับ 2 ลูก จะใช้ท่าต่อสู้ไม่ได้ (รวมถึงโปเกมอนที่เพิ่งออกมาใหม่บน กระดาน)" + }, + + damage: 60, + cost: ["Water"] + }, { + name: { + id: "Megaton Fall", + th: "เมกะตันฟอล" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 50.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 50 ด้วย" + }, + + damage: 170, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/044.ts b/data-asia/SV/SV8s/044.ts new file mode 100644 index 000000000..01b5b6cbe --- /dev/null +++ b/data-asia/SV/SV8s/044.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Shellos", + th: "คารานะคูชิ" + }, + + illustrator: "Shinya Komatsu", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + id: "Shellos sering terlihat di tepi pantai. Jika hanya untuk beberapa jam, Pokémon ini juga dapat beraktivitas di darat.", + th: "มักพบเห็นบริเวณโขดหินริมหาด สามารถใช้ชีวิตบนบกได้ถ้าเป็นในช่วง ระยะเวลาไม่นานนัก" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Percikan Air", + th: "ราดน้ำ" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/045.ts b/data-asia/SV/SV8s/045.ts new file mode 100644 index 000000000..4c6dc7d00 --- /dev/null +++ b/data-asia/SV/SV8s/045.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Cryogonal", + th: "ฟรีจิโอ" + }, + + illustrator: "sui", + category: "Pokemon", + hp: 90, + types: ["Water"], + + description: { + id: "Cryogonal menggunakan rantainya yang terbuat dari es untuk mengikat dan membekukan lawan dengan sekaligus.", + th: "เมื่อใช้โซ่ที่ทำจากน้ำแข็งมัดฝ่ายตรงข้าม จะทำให้ฝ่ายตรงข้ามถูก แช่แข็งทั้งอย่างนั้นในอึดใจเดียว" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Call Sign", + th: "คอลไซน์" + }, + + effect: { + id: "Pilih 1 lembar Pokémon dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดโปเกมอน 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + cost: ["Water"] + }, { + name: { + id: "Sinar Pembeku", + th: "ลำแสงเยือกแข็ง" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม เป็นสภาวะ[ชา]" + }, + + damage: 30, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/046.ts b/data-asia/SV/SV8s/046.ts new file mode 100644 index 000000000..ce97fa6fa --- /dev/null +++ b/data-asia/SV/SV8s/046.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Kyurem Hitam ex", + th: "แบล็กคิวเรมex" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 230, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + id: "Ice Age", + th: "ไอซ์เอจ" + }, + + effect: { + id: "Jika Pokémon Bertarung lawan adalah Pokémon {Naga}, ubah kondisi Pokémon tersebut menjadi Lumpuh.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นโปเกมอน[มังกร] จะทำให้โปเกมอนนั้น เป็นสภาวะ[ชา]" + }, + + damage: 90, + cost: ["Colorless", "Colorless", "Colorless"] + }, { + name: { + id: "Black Frost", + th: "แบล็กฟรอสต์" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 30.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย" + }, + + damage: 250, + cost: ["Water", "Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/047.ts b/data-asia/SV/SV8s/047.ts new file mode 100644 index 000000000..549469de3 --- /dev/null +++ b/data-asia/SV/SV8s/047.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Bruxish", + th: "ฮากิกิชิริ" + }, + + illustrator: "Shibuzoh.", + category: "Pokemon", + hp: 110, + types: ["Water"], + + description: { + id: "Ketika cahaya matahari terpantul dengan gelombang yang dihasilkan oleh gemeretak gigi Bruxish, air di sekitarnya akan berkilau dengan warna psikedelik.", + th: "พอแสงอาทิตย์กระทบกับระลอกคลื่นที่เกิดจากการขบฟัน น้ำรอบ ๆ จะ ส่องประกายระยิบระยับ" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Serangan Balasan", + th: "ตีตอบโต้" + }, + + effect: { + id: "Saat Pokémon ini ada di Arena Bertarung dan menerima kerusakan akibat serangan dari Pokémon lawan, letakkan 3 Token Kerusakan pada Pokémon yang telah menggunakan serangan.", + th: "เมื่อโปเกมอนนี้ อยู่บนตำแหน่งต่อสู้และได้รับแดเมจของท่าต่อสู้จากโปเกมอน ฝ่ายตรงข้าม วางตัวนับแดเมจ 3 ตัวบนโปเกมอนที่ใช้ท่าต่อสู้" + } + }], + + attacks: [{ + name: { + id: "Menggerogoti Erat-erat", + th: "กัด" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" + }, + + damage: 50, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/048.ts b/data-asia/SV/SV8s/048.ts new file mode 100644 index 000000000..2e1f35714 --- /dev/null +++ b/data-asia/SV/SV8s/048.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Quaxly", + th: "แคว็กซ์" + }, + + illustrator: "Saboteri", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + id: "Quaxly memiliki kekuatan kaki yang membuatnya tetap dapat berenang dengan bebas di sungai berarus kencang sekalipun. Pokémon ini menyukai kebersihan dan sering berlebihan dalam berprasangka.", + th: "มีพลังขาที่แข็งแรง สามารถว่ายน้ำไปมาในแม่น้ำที่มีกระแสเชี่ยวกราก ได้อย่างอิสระ รักความสะอาดและชอบคิดมาก" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Jungkiran Walet", + th: "คมมีดบูมเมอแรง" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 20.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 20" + }, + + damage: "10+", + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/049.ts b/data-asia/SV/SV8s/049.ts new file mode 100644 index 000000000..e0bf31a15 --- /dev/null +++ b/data-asia/SV/SV8s/049.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Quaxwell", + th: "เวลคาโมะ" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + id: "Quaxwell adalah pekerja keras. Pokémon ini mengamati pergerakan Pokémon dan manusia dari berbagai macam daerah, lalu memasukkan gerakan tersebut ke dalam gerakan tariannya sendiri.", + th: "โปเกมอนที่มีความพยายามสูง คอยสังเกตท่าทางของโปเกมอนและ ผู้คนจากหลายภูมิภาค แล้วนำมาประยุกต์เข้ากับการเต้นรำของตน" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Aqua Edge", + th: "อควาเอดจ์" + }, + + damage: 40, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/050.ts b/data-asia/SV/SV8s/050.ts new file mode 100644 index 000000000..e1e0e5bbe --- /dev/null +++ b/data-asia/SV/SV8s/050.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Quaquaval", + th: "เวนิวัล" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 170, + types: ["Water"], + + description: { + id: "Dengan tariannya yang eksotis, Quaquaval memesona siapa pun yang melihatnya. Pokémon ini menyayat lawan dengan melambai-lambaikan bulu dekorasi yang terbuat dari air.", + th: "ทำให้ผู้ที่ดูการเต้นรำหลงใหลด้วยท่วงท่าที่เต็มไปด้วยกลิ่นอายจาก ต่างแดน สะบัดขนนกประดับที่ทำจากน้ำเพื่อเชือดเฉือนอีกฝ่าย" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + id: "Up Tempo", + th: "เร่งจังหวะ" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri jika mengembalikan 1 lembar Kartu Pegangan sendiri ke bawah Deck. Ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 5 lembar.", + th: "ในเทิร์นฝ่ายเรา ถ้านำการ์ดบนมือฝ่ายเรา 1 ใบใส่กลับไปด้านล่างของสำรับ การ์ด ใช้ได้ 1 ครั้ง จั่วการ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 5 ใบ" + } + }], + + attacks: [{ + name: { + id: "Hydro Splash", + th: "ไฮโดรสแปลช" + }, + + damage: 120, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/051.ts b/data-asia/SV/SV8s/051.ts new file mode 100644 index 000000000..f3a674486 --- /dev/null +++ b/data-asia/SV/SV8s/051.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Cetoddle", + th: "อารุคุจิระ" + }, + + illustrator: "Ayako Ozaki", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + id: "Cetoddle hidup dan membentuk kelompok dengan jumlah sekitar 5 ekor di daerah yang dingin. Pokémon ini sangat menyukai mineral yang terkandung pada salju dan es.", + th: "อาศัยอยู่เป็นฝูงประมาณ 5 ตัวในบริเวณที่มีอากาศหนาวเหน็บ ชอบ แร่ธาตุที่มีอยู่ในหิมะและน้ำแข็งเป็นอย่างมาก" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Drain Fin", + th: "เดรนฟิน" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 20.", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]" + }, + + damage: 20, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/052.ts b/data-asia/SV/SV8s/052.ts new file mode 100644 index 000000000..826e5340c --- /dev/null +++ b/data-asia/SV/SV8s/052.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Cetitan", + th: "ฮัลค์จิระ" + }, + + illustrator: "Uta", + category: "Pokemon", + hp: 180, + types: ["Water"], + + description: { + id: "Tanduk rahang atas Cetitan yang memusatkan energi es menjadi bersuhu sangat rendah dan membekukan sekitarnya.", + th: "พลังงานน้ำแข็งจะไปรวมอยู่ตรงเขาที่ขากรรไกรบนทำให้เขามีอุณหภูมิ ต่ำมากจนทำให้บริเวณโดยรอบแข็งตัวเป็นน้ำแข็งไปด้วย" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Tubuh Tegap", + th: "ร่างล่ำสัน" + }, + + effect: { + id: "Kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30.", + th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-30]" + } + }], + + attacks: [{ + name: { + id: "Danger Mouth", + th: "แดนเจอร์เมาท์" + }, + + damage: 150, + cost: ["Water", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/053.ts b/data-asia/SV/SV8s/053.ts new file mode 100644 index 000000000..78569137c --- /dev/null +++ b/data-asia/SV/SV8s/053.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Iron Bundle", + th: "ถุงเหล็ก" + }, + + illustrator: "rika", + category: "Pokemon", + hp: 100, + types: ["Water"], + + description: { + id: "Pokémon yang mirip dengan objek misterius yang terdaftar dalam sebuah buku kuno. Hanya terdapat 2 laporan kesaksian atas Pokémon ini.", + th: "โปเกมอนที่มีความคล้ายคลึงกับวัตถุลึกลับที่ปรากฏในบันทึกเก่าแก่ ใน อดีตมีข้อมูลว่ามีผู้พบเห็นเพียง 2 ครั้งเท่านั้น" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Gust Collision", + th: "ลมกระโชกประสานงา" + }, + + effect: { + id: "Kerusakan akibat serangan ini berkurang sejumlah 50 untuk tiap Energi yang dibutuhkan oleh Pokémon Bertarung lawan untuk Mundur.", + th: "แดเมจของท่าต่อสู้นี้จะลดลง ตามจำนวนพลังงานสำหรับ[หนี]ของโปเกมอนบน ตำแหน่งต่อสู้ฝ่ายตรงข้าม x50" + }, + + damage: "200-", + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/054.ts b/data-asia/SV/SV8s/054.ts new file mode 100644 index 000000000..41cd9f132 --- /dev/null +++ b/data-asia/SV/SV8s/054.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Chien-Pao", + th: "เป้าเจี้ยน" + }, + + illustrator: "Yuya Oka", + category: "Pokemon", + hp: 120, + types: ["Water"], + + description: { + id: "Chien-Pao adalah kebencian orang-orang yang meninggal oleh pedang pada zaman dahulu. Ia menyelimuti dirinya dengan salju, lalu berubah menjadi Pokémon.", + th: "ความชิงชังของผู้ที่ลาโลกไปด้วยคมดาบเมื่อนานมาแล้ว ถูกห่อหุ้มด้วย หิมะ จนกลายเป็นโปเกมอน" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Tenggelamkan Dalam Salju", + th: "จมหิมะ" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Buang Stadium yang ada di Arena ke Trash.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง ทิ้งการ์ด สเตเดียมที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ด" + } + }], + + attacks: [{ + name: { + id: "Icycle Loop", + th: "วงแหวนแท่งน้ำแข็ง" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu kembalikan ke Kartu Pegangan.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก นำกลับขึ้นมือ" + }, + + damage: 120, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/055.ts b/data-asia/SV/SV8s/055.ts new file mode 100644 index 000000000..5f65ff304 --- /dev/null +++ b/data-asia/SV/SV8s/055.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Pikachu ex", + th: "พิคาชูex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Hati Pejuang", + th: "หัวใจบากบั่น" + }, + + effect: { + id: "Saat Pokémon ini KO karena menerima kerusakan akibat serangan ketika HP Pokémon ini masih penuh, Pokémon ini tidak KO dan tetap berada di Arena dengan kondisi sisa HP sejumlah 10.", + th: "ในตอนที่โปเกมอนนี้มี HP เต็ม และโปเกมอนนี้ได้รับแดเมจของท่าต่อสู้และจะ [หมดสภาพ] โปเกมอนนี้จะไม่[หมดสภาพ] และจะอยู่บนกระดานด้วย HP ที่เหลือ [10]" + } + }], + + attacks: [{ + name: { + id: "Topaz Bolt", + th: "โทแพซโวลต์" + }, + + effect: { + id: "Pilih 3 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 3 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 300, + cost: ["Grass", "Lightning", "Metal"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/056.ts b/data-asia/SV/SV8s/056.ts new file mode 100644 index 000000000..12da3ea0f --- /dev/null +++ b/data-asia/SV/SV8s/056.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Magnemite", + th: "คอยล์" + }, + + illustrator: "Hoshino KURO", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + id: "Magnemite berpindah sambil tetap melayang di udara. Pokémon ini memancarkan gelombang elektromagnetik dan sebagainya dari unit sisi kiri dan kanan di tubuhnya.", + th: "ลอยและเคลื่อนที่กลางอากาศ แผ่คลื่นแม่เหล็กไฟฟ้าออกมาจากหน่วย ซ้ายขวา" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Bola Petir", + th: "ลูกกลมเจิดจ้า" + }, + + damage: 20, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/057.ts b/data-asia/SV/SV8s/057.ts new file mode 100644 index 000000000..7e16beb5d --- /dev/null +++ b/data-asia/SV/SV8s/057.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Magneton", + th: "แรคอยล์" + }, + + illustrator: "Nisota Niso", + category: "Pokemon", + hp: 100, + types: ["Lightning"], + + description: { + id: "Magneton terbentuk dari Magnemite yang menyatu. Dikatakan bahwa pada saat banyak bintik matahari, Pokémon ini akan bermunculan dalam jumlah yang banyak.", + th: "ว่ากันว่าคอยล์ชนิดเชื่อมติดกันจะปรากฏตัวเป็นจำนวนมากตอนที่เกิด จุดดับบนดวงอาทิตย์หลายจุด" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Pelepasan Listrik Berlebihan", + th: "คายประจุเกินขนาด" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri. Pokémon ini KO jika menggunakan Ability ini. Pilih paling banyak 3 lembar Energi Dasar dari Trash sendiri, lalu kenakan sesukanya pada Pokémon {Listrik} sendiri.", + th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เมื่อใช้แล้ว จะทำให้โปเกมอนนี้[หมดสภาพ] เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 3 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่ โปเกมอน[สายฟ้า]ฝ่ายเราตามชอบ" + } + }], + + attacks: [{ + name: { + id: "Lightning Ball", + th: "ไลท์นิงบอล" + }, + + damage: 40, + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/058.ts b/data-asia/SV/SV8s/058.ts new file mode 100644 index 000000000..c6f99e17e --- /dev/null +++ b/data-asia/SV/SV8s/058.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Magnezone", + th: "จิบะคอยล์" + }, + + illustrator: "Po-Suzuki", + category: "Pokemon", + hp: 170, + types: ["Lightning"], + + description: { + id: "Dengan medan magnet khusus, komponen molekul Magneton berubah, lalu berevolusi menjadi Magnezone.", + th: "โครงสร้างโมเลกุลของแรคอยล์จะถูกเรียงใหม่เมื่อเจอสนามแม่เหล็ก พิเศษ ทำให้มันวิวัฒนาการเป็นจิบะคอยล์" + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Medan Magnet Kuat", + th: "สนามแม่เหล็กพลังแรง" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing. Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน] เทิร์นถัดไปของ ฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" + }, + + damage: 80, + cost: ["Lightning", "Colorless", "Colorless"] + }, { + name: { + id: "Meriam Elektromagnetik", + th: "ปืนใหญ่แม่เหล็กไฟฟ้า" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Meriam Elektromagnetik.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [ปืนใหญ่แม่เหล็กไฟฟ้า] ไม่ได้" + }, + + damage: 180, + cost: ["Lightning", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/059.ts b/data-asia/SV/SV8s/059.ts new file mode 100644 index 000000000..1037b0791 --- /dev/null +++ b/data-asia/SV/SV8s/059.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Zapdos", + th: "ธันเดอร์" + }, + + illustrator: "Nisota Niso", + category: "Pokemon", + hp: 110, + types: ["Lightning"], + + description: { + id: "Zapdos mampu mengendalikan listrik sesukanya. Ada kisah yang menyampaikan bahwa sarangnya ada di dalam awan guntur gelap.", + th: "ควบคุมไฟฟ้าได้ดั่งใจนึก เป็นที่เล่าขานกันว่าภายในเมฆฝนฟ้าคะนอง สีดำสนิทนั้นมีรังของมันอยู่" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Serangan Lanjutan Voltase", + th: "สายฟ้าไล่ตี" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon Bertarung lawan.", + th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนบนตำแหน่งต่อสู้ ฝ่ายตรงข้าม x10" + }, + + damage: "20+", + cost: ["Lightning", "Colorless"] + }, { + name: { + id: "Patukan Bor", + th: "จะงอยสว่าน" + }, + + damage: 80, + cost: ["Lightning", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/060.ts b/data-asia/SV/SV8s/060.ts new file mode 100644 index 000000000..af71cb8f2 --- /dev/null +++ b/data-asia/SV/SV8s/060.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Rotom", + th: "โรตอม" + }, + + illustrator: "Shinya Mizuno", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + + description: { + id: "Rotom adalah Pokémon yang telah diteliti dalam jangka waktu panjang sebagai sumber tenaga penggerak motor khusus.", + th: "โปเกมอนที่ถูกวิจัยมายาวนานในฐานะแหล่งพลังงานขับเคลื่อนมอเตอร์ พิเศษ" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Crush Pulse", + th: "แครชพัลส์" + }, + + effect: { + id: "Lihat Kartu Pegangan lawan, lalu buang semua Item dan Pokémon Tool yang ada di antaranya ke Trash.", + th: "ดูการ์ดบนมือฝ่ายตรงข้าม ทิ้งการ์ด [ไอเท็ม] และ การ์ด [ไอเท็มติดโปเกมอน] ที่อยู่ในนั้น ทั้งหมดที่ตำแหน่งทิ้งการ์ด" + }, + + cost: ["Lightning"] + }, { + name: { + id: "Energy Short", + th: "เอนเนอร์จี้ช็อต" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Energi yang dikenakan pada Pokémon Bertarung lawan.", + th: "แดเมจจะเท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่าย ตรงข้าม x20" + }, + + damage: "20×", + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/061.ts b/data-asia/SV/SV8s/061.ts new file mode 100644 index 000000000..55e5427c9 --- /dev/null +++ b/data-asia/SV/SV8s/061.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Blitzle", + th: "ชิมามา" + }, + + illustrator: "kamonabe", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + id: "Ia menyukai wilayah tempat banyak petir menyambar. Ia menerima petir dengan surainya dan menyimpan listrik di tubuhnya.", + th: "ชอบพื้นที่ที่มีฟ้าผ่าบ่อย รับสายฟ้าด้วยแผงขนบนหัวแล้วสะสมไฟฟ้าไว้ใน ร่างกาย" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menggondol", + th: "คาบ" + }, + + effect: { + id: "Ambil 1 kartu dari atas Deck sendiri.", + th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Berpijar-pijar", + th: "ประกายไฟ" + }, + + damage: 20, + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/062.ts b/data-asia/SV/SV8s/062.ts new file mode 100644 index 000000000..27adc71f8 --- /dev/null +++ b/data-asia/SV/SV8s/062.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Zebstrika", + th: "ซีบรายกา" + }, + + illustrator: "Sanosuke Sakuma", + category: "Pokemon", + hp: 130, + types: ["Lightning"], + + description: { + id: "Begitu mendengar guntur, kelompok Pokémon ini mengejar awan petir agar Blitzle di dalam kelompoknya bisa mengecas dari petir.", + th: "เมื่อได้ยินเสียงฟ้าร้อง จะไล่ตามเมฆฝนฟ้าคะนองไปเป็นฝูง เพื่อให้ ชิมามาในฝูงชาร์จไฟจากสายฟ้าได้" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Kick", + th: "เตะ" + }, + + damage: 30, + cost: ["Lightning"] + }, { + name: { + id: "Mach Bolt", + th: "มัคโบลต์" + }, + + damage: 120, + cost: ["Lightning", "Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/063.ts b/data-asia/SV/SV8s/063.ts new file mode 100644 index 000000000..bbcc2dc24 --- /dev/null +++ b/data-asia/SV/SV8s/063.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Stunfisk", + th: "มักเกียว" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 110, + types: ["Lightning"], + + description: { + id: "Stunfisk tinggal di dataran lumpur. Berkat bakteri yang hidup di lumpur, organ untuk membuat listriknya jadi berkembang.", + th: "อาศัยอยู่บริเวณหาดโคลน เชื้อโรคที่อยู่ในโคลนทำให้ร่างกายพัฒนา อวัยวะสำหรับสร้างกระแสไฟฟ้าขึ้นมา" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Pijar Pelumpuh", + th: "เปรี๊ยะปวดชา" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh. Tambah lagi, pilih 1 Energi yang dikenakan pada Pokémon tersebut, lalu buang ke Trash.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม เป็นสภาวะ[ชา] นอกจากนั้น เลือกพลังงานที่ติดอยู่กับโปเกมอนนั้น 1 ลูก ทิ้งที่ ตำแหน่งทิ้งการ์ด" + }, + + damage: 50, + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/064.ts b/data-asia/SV/SV8s/064.ts new file mode 100644 index 000000000..00292334b --- /dev/null +++ b/data-asia/SV/SV8s/064.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Tapu Koko", + th: "คาปู โคเคโค" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + id: "Tapu Koko dikenal sebagai Dewa Pelindung, tapi juga merupakan Dewa Murka yang akan menyergap manusia atau Pokémon yang menyinggung perasaannya.", + th: "ถูกเรียกว่าเป็นเทพพิทักษ์ แต่บางครั้งก็กลายเป็นเทพดุร้ายที่เข้าโจมตี มนุษย์หรือโปเกมอนที่มาทำให้ตนอารมณ์เสีย" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Memanggil Guntur", + th: "เรียกฟ้าผ่า" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Pokémon {Listrik} dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดโปเกมอน[สายฟ้า]ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้าม ดู นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Side Counter", + th: "ไซด์เคาน์เตอร์" + }, + + effect: { + id: "Jika sisa Kartu Point sendiri lebih banyak dari sisa Kartu Point lawan, kerusakan yang diberikan bertambah sejumlah 90.", + th: "ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายเรา มากกว่าจำนวนการ์ดรางวัลที่เหลือ ของฝ่ายตรงข้าม การโจมตีนี้จะเพิ่มแดเมจอีก 90" + }, + + damage: "90+", + cost: ["Lightning", "Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/065.ts b/data-asia/SV/SV8s/065.ts new file mode 100644 index 000000000..a5e5d8b05 --- /dev/null +++ b/data-asia/SV/SV8s/065.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Wattrel", + th: "ไคเด็น" + }, + + illustrator: "Pani Kobayashi", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + id: "Wattrel membuat sarangnya pada tebing di pesisir pantai. Sarang Pokémon ini populer dengan tekstur dan rasanya yang renyah nan unik.", + th: "สร้างรังบนหน้าผาริมชายฝั่ง รังของมันเป็นอาหารแสนโอชะและเป็น ที่นิยมเนื่องจากเนื้อสัมผัสประหลาดที่จะแตกเปรี๊ยะภายในปาก" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Jungkiran Walet", + th: "คมมีดบูมเมอแรง" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 20.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 20" + }, + + damage: "10+", + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/066.ts b/data-asia/SV/SV8s/066.ts new file mode 100644 index 000000000..1fa07c9cf --- /dev/null +++ b/data-asia/SV/SV8s/066.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Kilowattrel", + th: "ไทไคเด็น" + }, + + illustrator: "KEIICHIRO ITO", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + id: "Kilowattrel menyimpan listrik yang dibuat menggunakan sayapnya di kantong tenggorokannya. Pokémon ini tidak pandai berenang karena kandungan minyak pada bulunya sangat sedikit.", + th: "สะสมไฟฟ้าที่สร้างจากปีกไว้ในถุงที่คอ ปริมาณน้ำมันในขนปีกนั้นน้อย มากจึงไม่ถนัดการว่ายน้ำ" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Melayang Rendah", + th: "ถลาลม" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Storm Bolt", + th: "สตอร์มโบลต์" + }, + + effect: { + id: "Pindahkan sesukanya semua Energi yang dikenakan pada Pokémon ini ke Pokémon Cadangan.", + th: "นำพลังงานที่ติดอยู่กับโปเกมอนนี้ทั้งหมด ย้ายไปติดกับโปเกมอนบนเบนช์ตาม ชอบ" + }, + + damage: 160, + cost: ["Lightning", "Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/067.ts b/data-asia/SV/SV8s/067.ts new file mode 100644 index 000000000..813f720e9 --- /dev/null +++ b/data-asia/SV/SV8s/067.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Miraidon", + th: "มิไรดอน" + }, + + illustrator: "Nurikabe", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + description: { + id: "Tampaknya Miraidon tertera di buku kuno dengan nama Iron Serpent. Dikabarkan Pokémon ini mengubah tanah lapang menjadi abu dengan petir.", + th: "ดูเหมือนว่าจะเป็นนาคเหล็กซึ่งมีชื่อในบันทึกเก่าแก่ ว่ากันว่ามันใช้ สายฟ้าทำให้ผืนดินกลายเป็นเถ้าถ่าน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Protect Code", + th: "โพรเทกโค้ด" + }, + + effect: { + id: "Pada giliran lawan berikutnya, semua Pokémon Futur sendiri tidak menerima kerusakan akibat serangan dari Pokémon {ex}. Jika Pokémon ini meninggalkan Arena Bertarung, efek ini menjadi tidak berlaku.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอน [อนาคต] ฝ่ายเราทุกตัว จะไม่ได้รับ แดเมจของท่าต่อสู้จาก [โปเกมอน【ex】] เมื่อโปเกมอนนี้ออกจากตำแหน่งต่อสู้ เอฟเฟกต์นี้จะหายไป" + }, + + damage: 40, + cost: ["Lightning", "Colorless"] + }, { + name: { + id: "Thunder Claw", + th: "ธันเดอร์คลอว์" + }, + + damage: 100, + cost: ["Lightning", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/068.ts b/data-asia/SV/SV8s/068.ts new file mode 100644 index 000000000..a41db4bcf --- /dev/null +++ b/data-asia/SV/SV8s/068.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Togepi", + th: "โทเกปี" + }, + + illustrator: "Yoko Hishida", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + + description: { + id: "Kabarnya cangkang Togepi dipenuhi dengan kebahagiaan dan Pokémon ini akan membagikan keberuntungan jika diperlakukan dengan lemah lembut.", + th: "ดูเหมือนว่าในเปลือกของมันจะเต็มไปด้วยความสุข ว่ากันว่า ถ้าใจดี ด้วยมันจะแบ่งความโชคดีมาให้" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tumbuk", + th: "ปัด" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/069.ts b/data-asia/SV/SV8s/069.ts new file mode 100644 index 000000000..e45b1119d --- /dev/null +++ b/data-asia/SV/SV8s/069.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Togetic", + th: "โทเกชิก" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + id: "Kabarnya Togetic menampakkan diri di hadapan orang yang hatinya lemah lembut untuk membawakan kebahagiaan kepada orang tersebut.", + th: "ว่ากันว่าจะปรากฏตัวต่อหน้าคนที่มีจิตใจดีเพื่อแบ่งความสุขให้" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Ciuman Penyerap", + th: "เดรนคิส" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 30.", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/070.ts b/data-asia/SV/SV8s/070.ts new file mode 100644 index 000000000..42722de65 --- /dev/null +++ b/data-asia/SV/SV8s/070.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Togekiss", + th: "โทเกคิส" + }, + + illustrator: "Narano", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + description: { + id: "Togekiss tidak menampakkan diri di tempat adanya pertengkaran dan perselisihan. Belakangan, Pokémon ini tidak pernah terlihat lagi.", + th: "จะไม่แสดงตัวในสถานที่ที่มีเรื่องทะเลาะเบาะแว้งกัน หมู่นี้ก็ไม่ค่อยเห็น" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + id: "Wonder Kiss", + th: "วันเดอร์คิส" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena, tiap kali Pokémon Bertarung lawan KO, pemain melempar koin 1 kali. Jika hasilnya sisi depan, ambil Kartu Point 1 lembar lebih banyak. Efek ini tidak berlaku kelipatan meskipun ada Pokémon lain yang memiliki Ability yang sama.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ ทุกครั้งที่โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม [หมดสภาพ] ฝ่ายเราทอยเหรียญ 1 ครั้ง ถ้าออกหัว หยิบการ์ดรางวัลเพิ่ม 1 ใบ แม้จะมีโปเกมอนที่มีความสามารถนี้กี่ตัวก็ตาม เอฟเฟกต์นี้จะไม่เกิดผลซ้ำ" + } + }], + + attacks: [{ + name: { + id: "Speed Wing", + th: "สปีดวิง" + }, + + damage: 140, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/071.ts b/data-asia/SV/SV8s/071.ts new file mode 100644 index 000000000..7fb107deb --- /dev/null +++ b/data-asia/SV/SV8s/071.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Marill", + th: "มาริล" + }, + + illustrator: "Shimaris Yukichi", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + id: "Karena ekor Marill yang berisi lemak berfungsi sebagai pengganti kantong apung, Pokémon ini baik-baik saja meskipun berada di sungai berarus deras.", + th: "หางที่เต็มไปด้วยไขมันข้างในทำหน้าที่เหมือนทุ่นลอยน้ำ แม้ลงแม่น้ำที่ ไหลเชี่ยวก็ไม่เป็นไร" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tubrukan Menggelinding", + th: "กลิ้งโจมตี" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/072.ts b/data-asia/SV/SV8s/072.ts new file mode 100644 index 000000000..ad556179d --- /dev/null +++ b/data-asia/SV/SV8s/072.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Azumarill", + th: "มาริลลิ" + }, + + illustrator: "Orca", + category: "Pokemon", + hp: 120, + types: ["Water"], + + description: { + id: "Dengan memfokuskan pendengarannya, Azumarill dapat mendengar apa saja yang ada di dalam sungai berarus deras.", + th: "ถ้าตั้งใจฟังดี ๆ จะสามารถแยกแยะได้ว่าอะไรอยู่ในแม่น้ำที่ไหลเชี่ยว" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Gelembung Kilau-mengilau", + th: "ฟองแวววาว" + }, + + effect: { + id: "Jika ada Pokémon Terastal di Arena sendiri, Energi yang dibutuhkan oleh Pokémon ini untuk menggunakan Serudukan Nekat menjadi 1 Energi {Psychic}.", + th: "ถ้าบนกระดานฝ่ายเรามีโปเกมอน [เทรัสตัล] อยู่ พลังงานสำหรับใช้ [กระแทก สุดแรง] ของโปเกมอนนี้ จะเป็นพลังงาน[พลังจิต] 1 ลูก" + } + }], + + attacks: [{ + name: { + id: "Serudukan Nekat", + th: "กระแทกสุดแรง" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 50.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 50 ด้วย" + }, + + damage: 230, + cost: ["Psychic", "Psychic", "Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/073.ts b/data-asia/SV/SV8s/073.ts new file mode 100644 index 000000000..478841cc2 --- /dev/null +++ b/data-asia/SV/SV8s/073.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Smoochum", + th: "มุจูล" + }, + + illustrator: "Saya Tsuruta", + category: "Pokemon", + hp: 30, + types: ["Psychic"], + + description: { + id: "Smoochum mandi begitu wajahnya kotor walau sedikit saja. Akan tetapi, tampaknya Pokémon ini tidak terlalu peduli pada kotoran di tubuhnya.", + th: "หากใบหน้าเปรอะเปื้อนแม้เพียงเล็กน้อยจะไปอาบน้ำ แต่ดูเหมือนว่า จะไม่ใส่ใจกับความสกปรกของร่างกาย" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Ciuman Hip Hip Hore", + th: "จูบครึ้มใจ" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Energi Dasar {Psychic} dari Deck sendiri, lalu kenakan pada 1 Pokémon Cadangan. Kemudian, kocok Deck.", + th: "เลือกการ์ด [พลังงานพื้นฐาน[พลังจิต]] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่ โปเกมอนบนเบนช์ 1 ตัว แล้วสับสำรับการ์ด" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/074.ts b/data-asia/SV/SV8s/074.ts new file mode 100644 index 000000000..f52c695ba --- /dev/null +++ b/data-asia/SV/SV8s/074.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Latias ex", + th: "ลาทิอาสex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 210, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Skyline", + th: "สกายไลน์" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena, semua Pokémon Basic sendiri menjadi tidak membutuhkan Energi untuk Mundur.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่ พลังงานสำหรับ[หนี]ของโปเกมอน[พื้นฐาน]ฝ่ายเรา ทุกตัว ทั้งหมดจะหายไป" + } + }], + + attacks: [{ + name: { + id: "Pisau Eon", + th: "คมดาบอนันต์" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้" + }, + + damage: 200, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/075.ts b/data-asia/SV/SV8s/075.ts new file mode 100644 index 000000000..0e3fed56b --- /dev/null +++ b/data-asia/SV/SV8s/075.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Latios", + th: "ลาทิโอส" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + id: "Pokémon yang memiliki kecerdasan tinggi. Jika ia melipat lengannya dan terbang, kecepatannya melampaui pesawat jet.", + th: "โปเกมอนที่มีสติปัญญาสูง เมื่อหุบแขนแล้วบินไปจะมีความเร็วที่สามารถ แซงเครื่องบินเจ็ทได้" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Terbang Linear", + th: "บินพุ่งชน" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 50 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "ทำแดเมจ 50 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำ จุดอ่อนและความต้านทานมาคิด}" + }, + + cost: ["Psychic", "Colorless"] + }, { + name: { + id: "Jet Head", + th: "เจ็ตเฮด" + }, + + damage: 110, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/076.ts b/data-asia/SV/SV8s/076.ts new file mode 100644 index 000000000..f3add1869 --- /dev/null +++ b/data-asia/SV/SV8s/076.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Uxie", + th: "ยุคซี" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + id: "Dikenal sebagai Dewa Pengetahuan. Uxie memiliki kekuatan untuk menghapus ingatan orang yang memandang matanya.", + th: "เรียกกันว่าเป็นเทพแห่งปัญญา ว่ากันว่ามีพลังลบความทรงจำของผู้ที่ สบตาด้วย" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Ingatan Rasa Sakit", + th: "ความทรงจำแห่งความเจ็บปวด" + }, + + effect: { + id: "Letakkan masing-masing sejumlah 2 Token Kerusakan pada semua Pokémon lawan.", + th: "วางตัวนับแดเมจบนโปเกมอนฝ่ายตรงข้ามทุกตัว ตัวละ 2 ตัว" + }, + + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/077.ts b/data-asia/SV/SV8s/077.ts new file mode 100644 index 000000000..fa46a5909 --- /dev/null +++ b/data-asia/SV/SV8s/077.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Mesprit", + th: "เอ็มริต" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + id: "Mesprit mengajarkan perihnya rasa sedih dan pentingnya rasa senang kepada manusia. Dikenal sebagai Dewa Emosi.", + th: "สอนให้ผู้คนได้รู้ถึงความทุกข์ทรมานของความเศร้าและคุณค่าของความ ยินดี ถูกเรียกว่าเป็นเทพแห่งอารมณ์" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Memuaskan Hati", + th: "เติมเต็มหัวใจ" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Energi Dasar {Psychic} dari Kartu Pegangan sendiri, lalu kenakan sesukanya pada Pokémon sendiri.", + th: "เลือกการ์ด [พลังงานพื้นฐาน[พลังจิต]] ได้สูงสุด 2 ใบจากบนมือฝ่ายเรา ติดที่ โปเกมอนฝ่ายเราตามชอบ" + }, + + cost: ["Colorless"] + }, { + name: { + id: "God Burst", + th: "ก็อดเบิสต์" + }, + + effect: { + id: "Jika tidak ada Uxie dan Azelf di Cadangan sendiri, serangan ini gagal.", + th: "ถ้าบนเบนช์ฝ่ายเราไม่มี [ยุคซี] [อักนอม] อยู่ ท่าต่อสู้นี้จะล้มเหลว" + }, + + damage: 160, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/078.ts b/data-asia/SV/SV8s/078.ts new file mode 100644 index 000000000..31da7b77a --- /dev/null +++ b/data-asia/SV/SV8s/078.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Azelf", + th: "อักนอม" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + id: "Dikenal sebagai Dewa Tekad. Azelf terus tidur di dasar danau untuk menjaga keseimbangan dunia.", + th: "ถูกเรียกว่าเป็นเทพแห่งเจตจำนง จะนอนอยู่ใต้ก้นทะเลสาบเพื่อรักษา สมดุลของโลก" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mind Kinesis", + th: "มายด์คิเนซิส" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki semua Pokémon lawan.", + th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนฝ่ายตรงข้ามทุกตัว x10" + }, + + damage: "10+", + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/079.ts b/data-asia/SV/SV8s/079.ts new file mode 100644 index 000000000..501f23cf6 --- /dev/null +++ b/data-asia/SV/SV8s/079.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Sigilyph", + th: "ซิมโบลา" + }, + + illustrator: "svlt", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + id: "Sigilyph terbang di udara menggunakan kekuatan psikokinesis. Dikenal sebagai dewa pelindung kota zaman purba atau juga utusan dewa.", + th: "บินบนท้องฟ้าด้วยพลังจิต ได้รับการเล่าขานว่าเป็นเทพหรือบริวารของ เทพที่ปกปักรักษาเมืองสมัยโบราณ" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Double Draw", + th: "ดับเบิลดรอว์" + }, + + effect: { + id: "Ambil 2 kartu dari atas Deck sendiri.", + th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Psikokinesis", + th: "จิตตานุภาพ" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม เป็นสภาวะ[ชา]" + }, + + damage: 60, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/080.ts b/data-asia/SV/SV8s/080.ts new file mode 100644 index 000000000..bb96375cc --- /dev/null +++ b/data-asia/SV/SV8s/080.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Yamask", + th: "เดธมาส" + }, + + illustrator: "IKEDA Saki", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + id: "Yamask gentayangan di reruntuhan pada malam hari. Kabarnya topeng yang dibawa oleh Pokémon ini adalah wajahnya saat masih hidup sebagai manusia.", + th: "เร่ร่อนไปตามโบราณสถานยามดึก ว่ากันว่าหน้ากากที่มีคือใบหน้าของ ตัวเองตอนเป็นคน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Bergumam", + th: "งึมงำ" + }, + + damage: 10, + cost: ["Psychic"] + }, { + name: { + id: "Mendendam Sedikit", + th: "เจ็บแค้นหน่อย" + }, + + damage: 20, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/081.ts b/data-asia/SV/SV8s/081.ts new file mode 100644 index 000000000..21c4c4eb6 --- /dev/null +++ b/data-asia/SV/SV8s/081.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Cofagrigus", + th: "เดธคาน" + }, + + illustrator: "Shiburingaru", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + id: "Tubuh Cofagrigus berupa emas mengilap. Kabarnya Pokémon ini sudah tidak ingat bahwa awalnya ia adalah manusia.", + th: "ร่างกายสีทองวิบวับ ว่ากันว่าลืมไปแล้วว่าเคยเป็นมนุษย์มาก่อน" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Aturan Baka", + th: "กฎเกณฑ์แห่งยมโลก" + }, + + effect: { + id: "Letakkan masing-masing sejumlah 6 Token Kerusakan pada semua Pokémon kedua pemain yang memiliki Ability.", + th: "วางตัวนับแดเมจบนโปเกมอนที่มีความสามารถของทั้งสองฝ่ายทุกตัว ตัวละ 6 ตัว" + }, + + cost: ["Psychic"] + }, { + name: { + id: "Hollow Shot", + th: "ฮอลโลว์ช็อต" + }, + + damage: 100, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/082.ts b/data-asia/SV/SV8s/082.ts new file mode 100644 index 000000000..56831ba37 --- /dev/null +++ b/data-asia/SV/SV8s/082.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Espurr", + th: "เนียสเปอร์" + }, + + illustrator: "Natsumi Yoshida", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + id: "Pokémon yang tidak berekspresi, tetapi di balik itu, ia sedang mati-matian menahan kekuatan psikokinesisnya.", + th: "แม้สีหน้าของมันจะไร้อารมณ์ หากแต่ภายในนั้นกำลังพยายามกักเก็บ พลังจิตอย่างเอาเป็นเอาตายอยู่" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Lihat Tembus", + th: "มองทะลุ" + }, + + effect: { + id: "Lihat Kartu Pegangan lawan.", + th: "ดูการ์ดบนมือฝ่ายตรงข้าม" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Psyshot", + th: "ไซโคช็อต" + }, + + damage: 20, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/083.ts b/data-asia/SV/SV8s/083.ts new file mode 100644 index 000000000..52718c819 --- /dev/null +++ b/data-asia/SV/SV8s/083.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Meowstic", + th: "เนียโอนิกซ์" + }, + + illustrator: "Yoriyuki Ikegami", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + id: "Jika Meowstic terus mengeluarkan kekuatan psikokinesisnya yang kuat, fisiknya juga akan mengalami kerusakan.", + th: "เมื่อเนียโอนิกซ์ปล่อยพลังจิตอันทรงพลังออกมาเรื่อย ๆ กายเนื้อของ มันก็จะได้รับความเสียหายไปด้วยเช่นกัน" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Ekor Mengundang", + th: "หางเชื้อเชิญ" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri jika membuang 1 lembar Mainan Santai dari Kartu Pegangan sendiri ke Trash. Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung.", + th: "ในเทิร์นฝ่ายเรา ถ้าทิ้งการ์ด [ไม้หยอกเรื่อยเฉื่อย] 1 ใบจากบนมือฝ่ายเรา ที่ตำแหน่งทิ้งการ์ด ใช้ได้ 1 ครั้ง เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้" + } + }], + + attacks: [{ + name: { + id: "Psyshot", + th: "ไซโคช็อต" + }, + + damage: 80, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/084.ts b/data-asia/SV/SV8s/084.ts new file mode 100644 index 000000000..11ede9bff --- /dev/null +++ b/data-asia/SV/SV8s/084.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Dedenne", + th: "เดเด็นเนะ" + }, + + illustrator: "Uninori", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + id: "Dedenne memancarkan sinyal dari kumis di pipinya dan berkomunikasi dengan kawannya. Pokémon ini membulat dan tertidur jika listriknya berkurang.", + th: "ปล่อยคลื่นไฟฟ้าจากหนวดที่แก้มเพื่อติดต่อสื่อสารกับพวกพ้อง พอไฟฟ้า ลดลงจะนอนขดตัวกลม" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Sonar Elektromagnetik", + th: "โซนาร์แม่เหล็กไฟฟ้า" + }, + + effect: { + id: "Pilih 1 lembar Trainer dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan.", + th: "เลือกการ์ดเทรนเนอร์ 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Menggerogot", + th: "แทะ" + }, + + damage: 30, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/085.ts b/data-asia/SV/SV8s/085.ts new file mode 100644 index 000000000..4cfb07b71 --- /dev/null +++ b/data-asia/SV/SV8s/085.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Xerneas", + th: "เซอเนียส" + }, + + illustrator: "Ryuta Fuse", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + + description: { + id: "Dikatakan bahwa Xerneas membagikan kehidupan abadi. Ia tidur selama 1000 tahun dalam wujud pohon, lalu bangkit kembali.", + th: "ว่ากันว่าสามารถแบ่งชีวิตที่เป็นนิรันดร์ให้ผู้อื่นได้ หลังจากหลับอยู่ใน ร่างต้นไม้มานาน 1000 ปี ก็คืนชีพขึ้นใหม่อีกครั้ง" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Aurora Gain", + th: "ออโรราเกน" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 30.", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]" + }, + + damage: 30, + cost: ["Psychic", "Colorless"] + }, { + name: { + id: "Giga Impact", + th: "กิก้าอิมแพกต์" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้" + }, + + damage: 130, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/086.ts b/data-asia/SV/SV8s/086.ts new file mode 100644 index 000000000..7f40699dd --- /dev/null +++ b/data-asia/SV/SV8s/086.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Oricorio", + th: "โอโดริโดริ" + }, + + illustrator: "saino misaki", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + id: "Wujud Oricorio yang mengisap Nektar Merah Muda. Pokémon ini meningkatkan mentalitasnya dengan stepnya yang lemah lembut, lalu melepaskan kekuatan psikokinesis.", + th: "ร่างที่ดูดน้ำหวานสีชมพู ขัดเกลาให้สมาธิสูงขึ้นด้วยจังหวะการเต้นที่ สบาย ๆ และปล่อยพลังจิต" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Energy Assist", + th: "‌เอนเนอร์จี้แอสซิสต์" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Energi Dasar dari Trash sendiri, lalu kenakan pada 1 Pokémon Cadangan.", + th: "เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่ โปเกมอนบนเบนช์ 1 ตัว" + }, + + cost: ["Psychic"] + }, { + name: { + id: "Tarian Menggoda", + th: "ระบำพิศวง" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]" + }, + + damage: 20, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/087.ts b/data-asia/SV/SV8s/087.ts new file mode 100644 index 000000000..042ad5335 --- /dev/null +++ b/data-asia/SV/SV8s/087.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Sandygast", + th: "ซึนาบา" + }, + + illustrator: "Koji Nakata", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + id: "Sandygast membutakan mangsanya dengan pasir dan hendak mendekatinya pada kesempatan itu, tetapi mangsa tersebut melarikan diri karena pergerakan Pokémon ini lambat.", + th: "สาดทรายเข้าตาเหยื่อ แล้วอาศัยจังหวะนั้นขยับเข้าไปใกล้ ๆ แต่ เพราะเคลื่อนไหวช้าเหยื่อเลยมักหนีไปได้" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Semburan Pasir", + th: "ละอองทราย" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/088.ts b/data-asia/SV/SV8s/088.ts new file mode 100644 index 000000000..4313b7932 --- /dev/null +++ b/data-asia/SV/SV8s/088.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Palossand ex", + th: "ชิโรเดซึนะex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 280, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + id: "Neraka Pasir", + th: "สุสานทรายดูด" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" + }, + + damage: 160, + cost: ["Colorless", "Colorless", "Colorless"] + }, { + name: { + id: "Baryte Jail", + th: "แบไรต์จองจำ" + }, + + effect: { + id: "Letakkan Token Kerusakan pada semua Pokémon Cadangan lawan hingga sisa HP masing-masing Pokémon tersebut menjadi sejumlah 100.", + th: "วางตัวนับแดเมจ บนโปเกมอนบนเบนช์ฝ่ายตรงข้ามทุกตัว ให้ HP ของแต่ละตัว เหลือเท่ากับ [100]" + }, + + cost: ["Water", "Psychic", "Fighting"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/089.ts b/data-asia/SV/SV8s/089.ts new file mode 100644 index 000000000..695b283df --- /dev/null +++ b/data-asia/SV/SV8s/089.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Tapu Lele", + th: "คาปู เทเทฟู" + }, + + illustrator: "Natsumi Yoshida", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + id: "Ia terbang berkeliling secara melambai dan menyebarkan debu sisik yang berkilau ajaib. Kabarnya, siapa pun yang menyentuh debu sisik tersebut akan segera semangat kembali.", + th: "บินพลิ้วไหวไปมาโปรยผงละอองที่ส่องประกายน่าพิศวง ว่ากันว่าผู้ที่ สัมผัสมันจะกลับมามีชีวิตชีวาในทันที" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mengecoh", + th: "ทำให้สับสน" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Mental Crush", + th: "เมนทัลแครช" + }, + + effect: { + id: "Jika Pokémon Bertarung lawan mengalami kondisi Pusing, kerusakan yang diberikan bertambah sejumlah 90.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน] การโจมตีนี้จะเพิ่ม แดเมจอีก 90" + }, + + damage: "90+", + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/090.ts b/data-asia/SV/SV8s/090.ts new file mode 100644 index 000000000..a37a9d08b --- /dev/null +++ b/data-asia/SV/SV8s/090.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Indeedee", + th: "อิเอซซัน" + }, + + illustrator: "Sekio", + category: "Pokemon", + hp: 100, + types: ["Psychic"], + + description: { + id: "Indeedee selalu berada di sisi pelatihnya. Pokémon ini menggunakan kekuatan psikokinesisnya untuk memprediksi aksi dan mengurus keseharian pelatihnya.", + th: "จะอยู่เคียงข้างเทรนเนอร์อยู่เสมอ ใช้พลังจิตในการคาดการณ์ พฤติกรรมและคอยดูแลชีวิตประจำวันของเทรนเนอร์" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Pemulihan Suka Merawat", + th: "ปรนนิบัติรักษา" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Pulihkan HP Pokémon Bertarung sendiri sejumlah 30, lalu pulihkan juga 1 Kondisi Khusus yang dialami Pokémon tersebut.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง ฟื้นฟู HP ของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายเรา [30] รักษาสภาวะผิดปกติ 1 สภาวะ ด้วย" + } + }], + + attacks: [{ + name: { + id: "Psikokinesis Super", + th: "ซูเปอร์โทรจิต" + }, + + damage: 50, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/091.ts b/data-asia/SV/SV8s/091.ts new file mode 100644 index 000000000..d1bbfd364 --- /dev/null +++ b/data-asia/SV/SV8s/091.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Flittle", + th: "ฮิราฮินะ" + }, + + illustrator: "buchi", + category: "Pokemon", + hp: 40, + types: ["Psychic"], + + description: { + id: "Flittle hidup dan berlari-lari di tanah gersang. Jika buah beri favoritnya diambil, Pokémon ini akan mengejar dan membalaskan dendamnya.", + th: "ใช้ชีวิตโดยวิ่งวนไปมาในดินแดนรกร้าง หากโดนแย่งผลไม้โปรดไปจะ ไล่ตามเพื่อล้างแค้น" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Lompat Menghindar", + th: "กระโดดหนี" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan dan efek akibat serangan.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ ได้รับแดเมจและเอฟเฟกต์ของท่าต่อสู้" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/092.ts b/data-asia/SV/SV8s/092.ts new file mode 100644 index 000000000..61d4cf061 --- /dev/null +++ b/data-asia/SV/SV8s/092.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Espathra", + th: "เควสพัตรา" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + id: "Espathra mengeluarkan kekuatan psikokinesis dari celah embel-embel warna-warninya, lalu berlari dengan kecepatan 200 km/jam.", + th: "ปล่อยพลังจิตออกจากช่องว่างของจีบระบายหลากสีสันและวิ่งด้วยความ เร็ว 200 กิโลเมตรต่อชั่วโมง" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Mystic Eye", + th: "มิสติกอาย" + }, + + effect: { + id: "Pilih 1 Pokémon lawan yang telah berevolusi, lalu turunkan tingkat evolusinya dengan melepas 1 lembar kartu evolusi. Kartu yang dilepas dikembalikan ke Kartu Pegangan lawan.", + th: "เลือกโปเกมอนฝ่ายตรงข้ามที่วิวัฒนาการแล้ว 1 ตัว ถอด [การ์ดวิวัฒนาการ] 1 ใบออกและทำให้วิวัฒนาการย้อนกลับ การ์ดที่ถอดออกมา นำกลับขึ้นมือฝ่าย ตรงข้าม" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Spiral Drain", + th: "สไปรัลเดรน" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 30.", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]" + }, + + damage: 60, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/093.ts b/data-asia/SV/SV8s/093.ts new file mode 100644 index 000000000..a6f7f8a18 --- /dev/null +++ b/data-asia/SV/SV8s/093.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Flutter Mane", + th: "เกศากระพือ" + }, + + illustrator: "Ebila", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + id: "Pokémon yang memiliki karakteristik yang mirip dengan makhluk hidup bernama Flutter Mane yang disebutkan dalam suatu buku.", + th: "โปเกมอนที่มีลักษณะเด่นเหมือนกับสิ่งมีชีวิตที่เรียกว่าเกศากระพือที่ ปรากฏตัวในบันทึกเล่มหนึ่ง" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mengecoh Memindahkan", + th: "หลอกย้าย" + }, + + effect: { + id: "Pilih 1 Pokémon Purba di Cadangan sendiri, lalu pindahkan semua Token Kerusakan yang dimiliki Pokémon yang telah dipilih ke Pokémon Bertarung lawan.", + th: "เลือกโปเกมอน [โบราณ] บนเบนช์ฝ่ายเรา 1 ตัว ย้ายตัวนับแดเมจที่วางอยู่ บนโปเกมอนที่เลือกทั้งหมด ไปวางที่โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม" + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Moon Force", + th: "มูนฟอร์ซ" + }, + + effect: { + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang digunakan oleh Pokémon yang menerima serangan ini berkurang sejumlah 30.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนที่ได้รับท่าต่อสู้ นี้ใช้จะถูก [-30]" + }, + + damage: 70, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/094.ts b/data-asia/SV/SV8s/094.ts new file mode 100644 index 000000000..4365f991a --- /dev/null +++ b/data-asia/SV/SV8s/094.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Gimmighoul", + th: "คอลเลคเรย์" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + id: "Gimmighoul tinggal di dalam kotak harta berkarat. Pernah ada yang meletakkannya di sudut toko peralatan tanpa menyadari bahwa ia adalah Pokémon.", + th: "อาศัยอยู่ในกล่องสมบัติเก่า ๆ บางครั้งก็ถูกเอาไปวางไว้ที่มุมของ ร้านขายเครื่องมือเพราะไม่มีใครรู้ว่าเป็นโปเกมอน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tugas Kecil", + th: "งานเล็กน้อย" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่าย ตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Serudukan", + th: "พุ่งเข้าชน" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/095.ts b/data-asia/SV/SV8s/095.ts new file mode 100644 index 000000000..4cf385947 --- /dev/null +++ b/data-asia/SV/SV8s/095.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Mankey", + th: "แมนคี" + }, + + illustrator: "Apios", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + id: "Meskipun kondisi hatinya biasanya baik, Mankey menakutkan karena ia akan tiba-tiba mengamuk hanya karena hal kecil.", + th: "ปกติจะอารมณ์ดี แต่น่ากลัวตรงที่ถ้ามีอะไรไปสะกิดนิดหน่อยก็จะ อาละวาดขึ้นมาทันที" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tebasan Ganda", + th: "ดับเบิลช็อป" + }, + + effect: { + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10" + }, + + damage: "10×", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/096.ts b/data-asia/SV/SV8s/096.ts new file mode 100644 index 000000000..7d766e4ad --- /dev/null +++ b/data-asia/SV/SV8s/096.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Primeape", + th: "โอโคริซารุ" + }, + + illustrator: "Felicia Chen", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + + description: { + id: "Menurut teori dari salah seorang peneliti, tampaknya Primeape juga mengamuk ketika berada di dalam Bola Pokémon.", + th: "มีทฤษฎีของนักวิจัยคนหนึ่งที่ว่าโอโคริซารุจะยังโกรธอยู่แม้ตอนอยู่ใน มอนสเตอร์บอลก็ตาม" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Sapuan Kaki", + th: "เตะตัดขา" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 30, + cost: ["Fighting"] + }, { + name: { + id: "Pukulan Megaton", + th: "เมกะตันพันช์" + }, + + damage: 70, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/097.ts b/data-asia/SV/SV8s/097.ts new file mode 100644 index 000000000..3aa6ee9ad --- /dev/null +++ b/data-asia/SV/SV8s/097.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Annihilape", + th: "โคโนะโยซารุ" + }, + + illustrator: "SIE NANAHARA", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + + description: { + id: "Annihilape mengerahkan kekuatan amarah yang tersembunyi di dalam hati ke tinjunya, lalu memukulkannya hingga tulang lawannya menjadi hancur berkeping-keping dari dalam.", + th: "อัดพลังแห่งความโกรธที่เก็บงำไว้ในใจลงในกำปั้น ฝ่ายตรงข้ามที่โดน กำปั้นนั้นฟาดใส่จะถูกบดขยี้จากไขกระดูก" + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Mengamuk", + th: "อาละวาดไปทั่ว" + }, + + effect: { + id: "Ubah kondisi Pokémon ini menjadi Pusing.", + th: "ทำให้โปเกมอนนี้เป็นสภาวะ[สับสน]" + }, + + damage: 130, + cost: ["Fighting"] + }, { + name: { + id: "Pertarungan Tumbang Bersama", + th: "สู้ตายไปตามกัน" + }, + + effect: { + id: "Pokémon Bertarung kedua pemain KO.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่าย[หมดสภาพ]" + }, + + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/098.ts b/data-asia/SV/SV8s/098.ts new file mode 100644 index 000000000..ec7c9db10 --- /dev/null +++ b/data-asia/SV/SV8s/098.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Paldean Tauros", + th: "พัลเดีย เคนเทารอส" + }, + + illustrator: "Uta", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + id: "Otot tebal bertenaga dan sifatnya yang kasar adalah karakteristiknya. Pokémon ini dikenal sebagai Tauros Varian Tempur.", + th: "จุดเด่นคือกล้ามเนื้อหนาอันทรงพลังและอารมณ์ที่รุนแรง เรียกกันว่า พันธุ์ประจัญบาน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tendangan Penghempas", + th: "ดีด" + }, + + damage: 40, + cost: ["Fighting", "Colorless"] + }, { + name: { + id: "Block Stomp", + th: "บล็อกแสตมป์" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon Basic yang menerima serangan ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอน[พื้นฐาน]ที่ได้รับท่าต่อสู้นี้ จะใช้ท่าต่อสู้ ไม่ได้" + }, + + damage: 90, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/099.ts b/data-asia/SV/SV8s/099.ts new file mode 100644 index 000000000..edd691a9b --- /dev/null +++ b/data-asia/SV/SV8s/099.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Phanpy", + th: "โกมาโซ" + }, + + illustrator: "ryoma uratsuka", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + id: "Phanpy jauh lebih kuat dibandingkan penampilannya. Putaran belalainya dapat mematahkan lengan manusia yang bersentuhan dengannya.", + th: "มีพละกำลังมากกว่าที่ตาเห็น ถ้าแขนไปโดนงวงที่แกว่งไปมาเข้าละก็ กระดูกหักแน่ ๆ" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tandukan Kepala", + th: "พุ่งหัวชน" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/100.ts b/data-asia/SV/SV8s/100.ts new file mode 100644 index 000000000..c210f2a21 --- /dev/null +++ b/data-asia/SV/SV8s/100.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Donphan", + th: "ดอนแฟน" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + description: { + id: "Biasanya selalu bersikap tenang. Tetapi, jika Donphan marah, ia akan membulatkan badannya, kemudian bergelinding menabrak lawan.", + th: "ปกติจะรักสงบ แต่ถ้าโกรธขึ้นมาจะม้วนตัวกลมแล้วกลิ้งชน" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Memukul Roboh", + th: "ตีให้ยับ" + }, + + effect: { + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan.", + th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ ฝ่ายตรงข้ามมาคิด" + }, + + damage: 40, + cost: ["Fighting"] + }, { + name: { + id: "Guard Rolling", + th: "การ์ดโรลลิง" + }, + + effect: { + id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash. Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 100.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด เทิร์นถัดไป ของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-100]" + }, + + damage: 120, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/101.ts b/data-asia/SV/SV8s/101.ts new file mode 100644 index 000000000..05d507bb1 --- /dev/null +++ b/data-asia/SV/SV8s/101.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Trapinch", + th: "นัคครา" + }, + + illustrator: "Taiga Kayama", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + id: "Ia menggali pasir sambil menghancurkan bebatuan yang menghalangi dengan rahang besarnya. Sarangnya berbentuk ulekan.", + th: "ขุดทรายพร้อมกับบดขยี้หินที่ขวางทางด้วยกรามอันใหญ่โตไปด้วย รูรัง ของมันเป็นรูปครกบด" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Memanggil Teman", + th: "เรียกเพื่อน" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Pokémon Basic dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดโปเกมอน[พื้นฐาน]ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Menggigit", + th: "กัดติด" + }, + + damage: 20, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/102.ts b/data-asia/SV/SV8s/102.ts new file mode 100644 index 000000000..8e8b72220 --- /dev/null +++ b/data-asia/SV/SV8s/102.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Vibrava", + th: "วิบราวา" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + + description: { + id: "Ia memvibrasikan sayapnya dengan sangat kencang untuk menghasilkan gelombang ultrasonik. Ia melelehkan mangsanya yang pingsan dengan cairan pencernaannya.", + th: "สร้างคลื่นเสียงความถี่สูงออกมาด้วยการกระพือปีกอย่างรุนแรง ละลายเหยื่อที่หมดสติด้วยน้ำย่อย" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Suara Melengking", + th: "เสียงสยอง" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, kerusakan akibat serangan yang diterima Pokémon yang menerima serangan ini bertambah sejumlah 50.", + th: "เทิร์นถัดไปของฝ่ายเรา แดเมจของท่าต่อสู้ที่โปเกมอนที่ได้รับท่าต่อสู้นี้จะได้รับ จะถูก [+50]" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Cutter Wind", + th: "คัตเตอร์วินด์" + }, + + damage: 50, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/103.ts b/data-asia/SV/SV8s/103.ts new file mode 100644 index 000000000..0022fcbff --- /dev/null +++ b/data-asia/SV/SV8s/103.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Flygon ex", + th: "ฟลายกอนex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 310, + types: ["Fighting"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + id: "Storm Back", + th: "สตอร์มแบ็ก" + }, + + effect: { + id: "Pemain dapat menukar Pokémon ini dengan Pokémon Cadangan.", + th: "หากต้องการ สลับโปเกมอนนี้กับโปเกมอนบนเบนช์" + }, + + damage: 130, + cost: ["Fighting"] + }, { + name: { + id: "Peridot Sonic", + th: "เพริดอตโซนิค" + }, + + effect: { + id: "Serangan ini memberikan kerusakan masing-masing sejumlah 100 kepada semua Pokémon {ex}/{V} lawan. Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan dan Resistansi.", + th: "[โปเกมอน【ex】 /【V】] ฝ่ายตรงข้ามทุกตัว จะได้รับแดเมจตัวละ 100 แดเมจของ ท่าต่อสู้นี้จะไม่นำจุดอ่อนและความต้านทานมาคิด" + }, + + cost: ["Water", "Fighting", "Metal"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/104.ts b/data-asia/SV/SV8s/104.ts new file mode 100644 index 000000000..961106971 --- /dev/null +++ b/data-asia/SV/SV8s/104.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Gastrodon", + th: "ไทรโทดอน" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + id: "Gastrodon muncul di pantai batu yang dangkal. Ketika berhasil menangkap mangsa, Pokémon ini melelehkannya secara perlahan dengan lendirnya, lalu menyeruputnya.", + th: "ปรากฏตัวตามแนวโขดหินน้ำตื้น พอจับเหยื่อได้จะค่อย ๆ ใช้เมือก ละลายแล้วซดเข้าไป" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Pengikat Lekat", + th: "มัดติดแน่น" + }, + + effect: { + id: "Selama Pokémon ini ada di Cadangan, Pokémon Stage 2 di Cadangan kedua pemain menjadi tidak memiliki Ability.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนเบนช์ ความสามารถของโปเกมอน[ร่าง2] บนเบนช์ ของทั้งสองฝ่าย ทั้งหมดจะหายไป" + } + }], + + attacks: [{ + name: { + id: "Mud Shot", + th: "มัดช็อต" + }, + + damage: 80, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/105.ts b/data-asia/SV/SV8s/105.ts new file mode 100644 index 000000000..d5bb470d1 --- /dev/null +++ b/data-asia/SV/SV8s/105.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Drilbur", + th: "โมกุริว" + }, + + illustrator: "Ounishi", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + id: "Drilbur dapat menggali sangat cepat di dalam tanah dengan cara merapatkan cakar di kedua tangannya dan memutar tubuh dengan kecepatan tinggi.", + th: "เมื่อผสานกรงเล็บบนมือทั้งสองเข้ากันแล้วหมุนตัวด้วยความเร็วสูง จะเจาะลงสู่ใต้พื้นดินด้วยความเร็วสูง" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Gali", + th: "ขุดขุด" + }, + + effect: { + id: "Buang 1 kartu dari atas Deck lawan ke Trash.", + th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Semprotan Lumpur", + th: "สาดโคลน" + }, + + damage: 10, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/106.ts b/data-asia/SV/SV8s/106.ts new file mode 100644 index 000000000..f03805793 --- /dev/null +++ b/data-asia/SV/SV8s/106.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Excadrill", + th: "โดริวซึ" + }, + + illustrator: "Yuya Oka", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + + description: { + id: "Bor Excadrill yang berevolusi menjadi baja memiliki kekuatan untuk menembus papan besi. Pokémon ini berandil besar dalam konstruksi terowongan.", + th: "สว่านที่มีวิวัฒนาการจนเป็นเหล็กกล้านั้นมีพลังทำลายล้างขนาดทะลวง แผ่นเหล็กได้ มีประโยชน์ยิ่งในงานก่อสร้างอุโมงค์" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Cakar Penggali Lubang", + th: "กรงเล็บนักขุด" + }, + + effect: { + id: "Buang 1 kartu dari atas Deck lawan ke Trash.", + th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 20, + cost: ["Colorless"] + }, { + name: { + id: "Drill Smash", + th: "ดริลสแมช" + }, + + effect: { + id: "Jika ada Pokémon {Logam} di Cadangan sendiri, kerusakan yang diberikan bertambah sejumlah 80.", + th: "ถ้าบนเบนช์ฝ่ายเรามีโปเกมอน[โลหะ]อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 80" + }, + + damage: "60+", + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/107.ts b/data-asia/SV/SV8s/107.ts new file mode 100644 index 000000000..337c38e73 --- /dev/null +++ b/data-asia/SV/SV8s/107.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Landorus", + th: "แลนโดลอส" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + id: "Tempat-tempat yang dikunjungi oleh Landorus menghasilkan panen yang melimpah sehingga Pokémon ini disebut sebagai Dewa Ladang.", + th: "แผ่นดินที่แลนโดลอสไปเยือนจะเกิดผลผลิตมากมาย จึงถูกเรียกว่าเป็น เทพแห่งไร่สวน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tinju Tenaga Dalam", + th: "กำปั้นฮึดสู้" + }, + + effect: { + id: "Pilih 1 lembar Energi dari Trash sendiri, lalu kenakan pada Pokémon ini.", + th: "เลือกการ์ดพลังงาน 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนนี้" + }, + + damage: 30, + cost: ["Fighting"] + }, { + name: { + id: "Buster Swing", + th: "บัสเตอร์สวิง" + }, + + effect: { + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Resistansi.", + th: "แดเมจของท่าต่อสู้นี้จะไม่นำความต้านทานมาคิด" + }, + + damage: 130, + cost: ["Fighting", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/108.ts b/data-asia/SV/SV8s/108.ts new file mode 100644 index 000000000..4fdef61f4 --- /dev/null +++ b/data-asia/SV/SV8s/108.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Passimian", + th: "นาเกสึเคซารุ" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + + description: { + id: "Sepuluh Passimian yang dipilih oleh bos pergi berburu, lalu makanan yang didapat akan dibagi secara merata kepada kawan-kawan sekelompoknya.", + th: "10 ตัวที่หัวหน้าฝูงเลือกจะออกล่าหาอาหารโดยอาหารที่หามาได้จะ แบ่งกันในฝูงอย่างเท่าเทียม" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Pelemparan Kerja Tim", + th: "ประสานมือขว้าง" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Pokémon Basic di Arena sendiri.", + th: "แดเมจจะเท่ากับจำนวนโปเกมอน[พื้นฐาน]บนกระดานฝ่ายเรา x20" + }, + + damage: "20×", + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/109.ts b/data-asia/SV/SV8s/109.ts new file mode 100644 index 000000000..82d17b164 --- /dev/null +++ b/data-asia/SV/SV8s/109.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Clobbopus", + th: "ทาทักโกะ" + }, + + illustrator: "Shimaris Yukichi", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + id: "Clobbopus naik ke darat untuk mencari makanan. Penuh rasa ingin tahu sehingga saat melihat sesuatu, Pokémon ini memukulnya terlebih dahulu dengan tentakelnya.", + th: "ออกมาบนพื้นดินเพื่อหาอาหาร เต็มไปด้วยความอยากรู้อยากเห็น สิ่งที่ เห็นจะถูกตีด้วยหนวดก่อนเป็นอันดับแรก" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Gasak Sedikit", + th: "จุ้นจ้านหน่อย" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 10.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย" + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/110.ts b/data-asia/SV/SV8s/110.ts new file mode 100644 index 000000000..e259e0ea2 --- /dev/null +++ b/data-asia/SV/SV8s/110.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Grapploct", + th: "โอโทสพัส" + }, + + illustrator: "KEIICHIRO ITO", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + + description: { + id: "Seluruh tubuh Grapploct terbentuk dari otot-otot kekar. Jurus pitingan yang dilakukan menggunakan tentakelnya memiliki kekuatan yang dahsyat.", + th: "ทั่วร่างคือมวลกล้ามเนื้อ พละกำลังจากท่าบีบรัดด้วยหนวดนั้นน่า เกรงขาม" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Chop", + th: "‌สับ" + }, + + damage: 40, + cost: ["Fighting"] + }, { + name: { + id: "Tentacle Rage", + th: "เทนทาเคิลเรจ" + }, + + effect: { + id: "Jika Pokémon ini memiliki Token Kerusakan, serangan ini dapat digunakan dengan 1 Energi {Petarung}.", + th: "ท่าต่อสู้นี้ ถ้าโปเกมอนนี้มีตัวนับแดเมจวางอยู่ สามารถใช้ได้ด้วยพลังงาน[ต่อสู้] 1 ลูก" + }, + + damage: 130, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/111.ts b/data-asia/SV/SV8s/111.ts new file mode 100644 index 000000000..9d37575c2 --- /dev/null +++ b/data-asia/SV/SV8s/111.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Glimmet", + th: "คิราเมะ" + }, + + illustrator: "Eri Kamei", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + id: "Kristal zat racun Glimmet terlihat seperti kelopak bunga. Pokémon ini melindungi diri dengan menyebarkan racun layaknya serbuk bunga.", + th: "ผลึกของสารพิษดูราวกับกลีบดอกไม้ โรยผงพิษเหมือนเกสรดอกไม้ เพื่อป้องกันตัวเอง" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Lontaran Batu", + th: "ปาหิน" + }, + + effect: { + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Resistansi.", + th: "แดเมจของท่าต่อสู้นี้จะไม่นำความต้านทานมาคิด" + }, + + damage: 10, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/112.ts b/data-asia/SV/SV8s/112.ts new file mode 100644 index 000000000..b40b9810e --- /dev/null +++ b/data-asia/SV/SV8s/112.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Glimmora", + th: "คิราฟลอร์" + }, + + illustrator: "takashi shiraishi", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + id: "Belakangan ini diketahui bahwa kelopak bunga energi racun Glimmora yang mengkristal mirip dengan Permata Terastal.", + th: "เมื่อไม่นานมานี้พบว่ากลีบดอกไม้ที่ตกผลึกจากพลังงานพิษนั้นมีความ คล้ายกับอัญมณีเทรัสตัล" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Serpihan Merasuk", + th: "เศษผลึกกัดกิน" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun. Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat dikenakan Energi yang dimasukkan dari Kartu Pegangan.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ] เทิร์นถัดไปของฝ่าย ตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะติดการ์ดพลังงานที่จะนำออกมาจากบนมือ ไม่ได้" + }, + + damage: 20, + cost: ["Colorless"] + }, { + name: { + id: "Lemparan Batu", + th: "หินผาถล่ม" + }, + + damage: 60, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/113.ts b/data-asia/SV/SV8s/113.ts new file mode 100644 index 000000000..a69a598a4 --- /dev/null +++ b/data-asia/SV/SV8s/113.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Koraidon", + th: "โคไรดอน" + }, + + illustrator: "Ryuta Fuse", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + + description: { + id: "Kabarnya, identitas asli Winged King yang membelah tanah dengan tinjunya seperti yang tertulis dalam jurnal ekspedisi kuno adalah Koraidon.", + th: "ดูเหมือนว่าจะเป็นร่างที่แท้จริงของราชาแห่งปีกที่ในบันทึกการสำรวจ เก่ากล่าวว่ามันเคยแยกแผ่นดินด้วยกำปั้น" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Serangan Menggebu Bergelombang", + th: "บุกกระหน่ำเป็นระลอก" + }, + + effect: { + id: "Jika pada giliran sendiri sebelumnya, Pokémon Purba selain Pokémon ini telah menggunakan serangan, kerusakan yang diberikan bertambah sejumlah 150.", + th: "เทิร์นก่อนของฝ่ายเรา ถ้าโปเกมอน [โบราณ] ที่นอกเหนือจากโปเกมอนนี้ใช้ ท่าต่อสู้ไปแล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 150" + }, + + damage: "30+", + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Hantaman Penuh Tenaga", + th: "ตบหนัก" + }, + + damage: 110, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/114.ts b/data-asia/SV/SV8s/114.ts new file mode 100644 index 000000000..7b11279ad --- /dev/null +++ b/data-asia/SV/SV8s/114.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Deino", + th: "โมโนซึ" + }, + + illustrator: "YASHIRO Nanaco", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + id: "Sarang Deino jauh di dalam gua. Karena makanannya sedikit, ia menggigit dan akan memakan apa pun yang bergerak.", + th: "อาศัยอยู่ในถ้ำลึก เพราะอาหารมีน้อยเลยจะกัดและพยายามกิน ทุกอย่างที่ขยับได้" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Meratakan Tanah", + th: "กระทืบ" + }, + + effect: { + id: "Buang 1 kartu dari atas Deck lawan ke Trash.", + th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด" + }, + + cost: ["Darkness"] + }, { + name: { + id: "Menggigit", + th: "กัดติด" + }, + + damage: 20, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/115.ts b/data-asia/SV/SV8s/115.ts new file mode 100644 index 000000000..00999859d --- /dev/null +++ b/data-asia/SV/SV8s/115.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Zweilous", + th: "จิเฮด" + }, + + illustrator: "chibi", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + + description: { + id: "Dua kepala Zweilous memiliki selera yang berbeda. Kedua kepalanya menjadi kuat dengan saling bertarung tanpa meminjam kekuatan dari siapa pun.", + th: "หัวทั้งสองมีความชอบแตกต่างกัน 2 หัวสู้กันเองก็เลยแกร่งขึ้นได้โดย ไม่ต้องพึ่งพาใคร" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Meratakan Tanah", + th: "กระทืบ" + }, + + effect: { + id: "Buang 2 kartu dari atas Deck lawan ke Trash.", + th: "ทิ้งการ์ด 2 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด" + }, + + cost: ["Darkness"] + }, { + name: { + id: "Taring Kegelapan", + th: "เขี้ยวแห่งความมืด" + }, + + damage: 60, + cost: ["Darkness", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/116.ts b/data-asia/SV/SV8s/116.ts new file mode 100644 index 000000000..604322c1f --- /dev/null +++ b/data-asia/SV/SV8s/116.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Hydreigon ex", + th: "ซาซันดราex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 330, + types: ["Darkness"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + id: "Crush Head", + th: "แครชเฮด" + }, + + effect: { + id: "Buang 3 kartu dari atas Deck lawan ke Trash.", + th: "ทิ้งการ์ด 3 ใบจากด้านบนของสำรับการ์ดฝ่ายตรงข้ามที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 200, + cost: ["Darkness", "Colorless"] + }, { + name: { + id: "Obsidian", + th: "ออบซิเดียน" + }, + + effect: { + id: "Serangan ini juga memberikan kerusakan masing-masing sejumlah 130 kepada 2 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "โปเกมอนบนเบนช์ฝ่ายตรงข้าม 2 ตัว ก็จะได้รับแดเมจตัวละ 130 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" + }, + + damage: 130, + cost: ["Psychic", "Darkness", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/117.ts b/data-asia/SV/SV8s/117.ts new file mode 100644 index 000000000..707576ad4 --- /dev/null +++ b/data-asia/SV/SV8s/117.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Shroodle", + th: "ชิรุชูลู" + }, + + illustrator: "Yukiko Baba", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + id: "Agar musuh tidak mendekati wilayah teritorialnya, Shroodle melukis tanda menggunakan cairan beracun yang mengeluarkan bau ekstrem di sekitar sarangnya.", + th: "วาดรูปรอบ ๆ รังด้วยของเหลวพิษที่มีกลิ่นฉุนเพื่อไม่ให้ศัตรูเข้าใกล้ อาณาเขต" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menyemprotkan Getah", + th: "ฉีดพ่นน้ำ" + }, + + damage: 20, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/118.ts b/data-asia/SV/SV8s/118.ts new file mode 100644 index 000000000..dd09ee142 --- /dev/null +++ b/data-asia/SV/SV8s/118.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Grafaiai", + th: "ทากิงกูลู" + }, + + illustrator: "NC Empire", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + + description: { + id: "Setiap Grafaiai melukiskan pola yang berbeda-beda dan mereka akan terus melukiskan pola yang sama seumur hidupnya.", + th: "ลวดลายที่ทากิงกูลูวาดจะแตกต่างกันไปตามแต่ละตัว โดยมันจะวาด ลวดลายเดิมไปเรื่อย ๆ ตลอดชีวิต" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Mengecat Jahil", + th: "วาดซุกซน" + }, + + effect: { + id: "Pilih paling banyak 3 lembar Energi dari Trash lawan, lalu kenakan sesukanya pada Pokémon lawan.", + th: "เลือกการ์ดพลังงานได้สูงสุด 3 ใบจากตำแหน่งทิ้งการ์ดฝ่ายตรงข้าม ติดที่ โปเกมอนฝ่ายตรงข้ามตามชอบ" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Energy Graffiti", + th: "เอนเนอร์จี้กราฟฟิตี้" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 40 untuk tiap Energi yang dikenakan pada semua Pokémon lawan.", + th: "แดเมจจะเท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนฝ่ายตรงข้ามทุกตัว x40" + }, + + damage: "40×", + cost: ["Darkness", "Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/119.ts b/data-asia/SV/SV8s/119.ts new file mode 100644 index 000000000..9d5a3730c --- /dev/null +++ b/data-asia/SV/SV8s/119.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Pecharunt", + th: "โมโมวาโร่" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + + description: { + id: "Cangkangnya yang berbentuk buah persik merupakan tempat penyimpanan racun ganas. Ia membuat moci beracun lalu menyajikannya ke manusia atau Pokémon.", + th: "เปลือกรูปทรงลูกท้อคือคลังเก็บพิษร้ายแรง ทำโมจิพิษแล้วเอาไปเลี้ยง คนและโปเกมอน" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Dominasi Berbisa", + th: "พิษร้ายแรงครอบงำ" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena Bertarung, jumlah Token Kerusakan yang diletakkan akibat kondisi Racun pada Pokémon lawan yang mengalami kondisi Racun bertambah sejumlah 5.", + th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนตำแหน่งต่อสู้ โปเกมอนที่เป็นสภาวะ[พิษ]ของฝ่าย ตรงข้าม จำนวนตัวนับแดเมจที่วางด้วยสภาวะ[พิษ] จะเพิ่มขึ้น 5 ตัว" + } + }], + + attacks: [{ + name: { + id: "Poison Chain", + th: "พอยซันเชน" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun. Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ] เทิร์นถัดไปของฝ่าย ตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้" + }, + + damage: 10, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/120.ts b/data-asia/SV/SV8s/120.ts new file mode 100644 index 000000000..595518676 --- /dev/null +++ b/data-asia/SV/SV8s/120.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Alolan Diglett", + th: "อโลลา ดิกดา" + }, + + illustrator: "Akino Fukuji", + category: "Pokemon", + hp: 50, + types: ["Metal"], + + description: { + id: "Kumis keemasannya memiliki fitur sensorik. Ia mengeluarkan kumis dari lubang dan mendeteksi keadaan sekitar dengannya.", + th: "หนวดสีทองนั้นมีฟังก์ชันเซนเซอร์ มันจะยื่นหนวดออกมาจากรูเพื่อ ตรวจสอบบริเวณโดยรอบ" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Serangan Kejutan", + th: "จู่โจมกะทันหัน" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi belakang, serangan ini gagal.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกก้อย ท่าต่อสู้นี้จะล้มเหลว" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/121.ts b/data-asia/SV/SV8s/121.ts new file mode 100644 index 000000000..bea9d31d5 --- /dev/null +++ b/data-asia/SV/SV8s/121.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Alolan Dugtrio", + th: "อโลลา ดักทริโอ" + }, + + illustrator: "Dsuke", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + description: { + id: "Kecepatannya tidak begitu bagus karena kumis metaliknya berat, tetapi ia memiliki kekuatan untuk menggali tembus bebatuan dasar yang keras.", + th: "เนื่องจากหนวดที่มีคุณสมบัติเป็นโลหะนั้นมีน้ำหนักมาก จึงไม่ค่อยว่องไว นัก แต่มีพลังที่เจาะทะลวงได้แม้แต่หินผาแข็ง ๆ" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Three Bingo", + th: "ทรีบิงโก" + }, + + effect: { + id: "Jika jumlah Kartu Pegangan sendiri bukan 3 lembar, serangan ini gagal.", + th: "ถ้าการ์ดบนมือฝ่ายเราไม่ใช่ 3 ใบ ท่าต่อสู้นี้จะล้มเหลว" + }, + + damage: 120 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/122.ts b/data-asia/SV/SV8s/122.ts new file mode 100644 index 000000000..c1ae4f542 --- /dev/null +++ b/data-asia/SV/SV8s/122.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Skarmory", + th: "แอร์มุโด" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + description: { + id: "Kabarnya bulu Skarmory yang rontok itu tipis dan tajam sehingga adakalanya digunakan sebagai pedang.", + th: "ขนที่หลุดร่วงนั้นทั้งบางและแหลมคม เหมือนว่าจะถูกเก็บไปใช้ต่างดาบ ด้วยล่ะ" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Sayap Baja", + th: "ปีกเหล็ก" + }, + + effect: { + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-30]" + }, + + damage: 50, + cost: ["Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/123.ts b/data-asia/SV/SV8s/123.ts new file mode 100644 index 000000000..9859243a8 --- /dev/null +++ b/data-asia/SV/SV8s/123.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Registeel", + th: "เรจิสตีล" + }, + + illustrator: "Shiburingaru", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + description: { + id: "Registeel terbuat dari material misterius yang elastis sehingga dapat memanjang dan memendek, tetapi juga lebih keras dari logam apa pun.", + th: "สร้างขึ้นจากวัสดุประหลาดที่แข็งแกร่งยิ่งกว่าโลหะชนิดใด แต่ก็มีความ อ่อนตัวที่ยืดหดได้ด้วยเช่นกัน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Raging Hammer", + th: "เรจจิงแฮมเมอร์" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini.", + th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10" + }, + + damage: "60+", + cost: ["Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/124.ts b/data-asia/SV/SV8s/124.ts new file mode 100644 index 000000000..86d0c6bef --- /dev/null +++ b/data-asia/SV/SV8s/124.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Bronzor", + th: "โดมิเรอร์" + }, + + illustrator: "Nabatame Kazutaka", + category: "Pokemon", + hp: 60, + types: ["Metal"], + + description: { + id: "Bronzor ditemukan di makam kuno. Dikatakan bahwa kekuatan misterius bersemayam pada pola di punggungnya.", + th: "พบเจอในหลุมศพเก่า ว่ากันว่าลายที่หลังมีพลังลึกลับซ่อนอยู่" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Shield Attack", + th: "ชีลด์แอทแทก" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 20.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 20" + }, + + damage: "20+", + cost: ["Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/125.ts b/data-asia/SV/SV8s/125.ts new file mode 100644 index 000000000..f5d2d8f1a --- /dev/null +++ b/data-asia/SV/SV8s/125.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Bronzong", + th: "โดทาคุน" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + description: { + id: "Bronzong membuka lubang ke dunia lain dan menurunkan hujan dari sana. Oleh karena itu, Pokémon ini dijadikan sebagai dewa pembawa berkah panen.", + th: "เปิดรูเชื่อมไปยังโลกอื่นแล้วทำให้ฝนตกลงมาจากรูนั้น จึงถูกบูชาใน ฐานะเทพแห่งการเกษตร" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Serangan Berputar", + th: "โจมตีหมุนวน" + }, + + damage: 50, + cost: ["Metal", "Colorless"] + }, { + name: { + id: "Double Impact", + th: "ดับเบิลอิมแพกต์" + }, + + effect: { + id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 100 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x100" + }, + + damage: "100×", + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/126.ts b/data-asia/SV/SV8s/126.ts new file mode 100644 index 000000000..d4e5f97ba --- /dev/null +++ b/data-asia/SV/SV8s/126.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Klefki", + th: "เคลฟฟี" + }, + + illustrator: "mingo", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + id: "Keluarga bangsawan zaman dulu secara turun-temurun mewariskan dan menjaga dengan baik Klefki yang dipercaya untuk mengelola kunci brankas.", + th: "ขุนนางสมัยก่อนจากรุ่นสู่รุ่นจะดูแลเคลฟฟีที่คอยรักษากุญแจห้องเก็บ สมบัติเป็นอย่างดี" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Ambil Mengisi", + th: "สอดเข้าจั่ว" + }, + + effect: { + id: "Buang 1 lembar Kartu Pegangan sendiri ke Trash. Setelah itu, ambil 2 kartu dari atas Deck sendiri.", + th: "ทิ้งการ์ดบนมือฝ่ายเรา 1 ใบที่ตำแหน่งทิ้งการ์ด หลังจากนั้น จั่วการ์ด 2 ใบ จากสำรับการ์ดฝ่ายเรา" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Mengait", + th: "จับแขวน" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/127.ts b/data-asia/SV/SV8s/127.ts new file mode 100644 index 000000000..c7ff0e213 --- /dev/null +++ b/data-asia/SV/SV8s/127.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Duraludon", + th: "ดิวรัลดอน" + }, + + illustrator: "Tonji Matsuno", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + description: { + id: "Tubuh logamnya kokoh, tetapi panas cenderung menumpuk sehingga ia selalu mengeluarkan panas dari celah ekornya.", + th: "ร่างกายที่เป็นโลหะนั้นทนทานมาก แต่เก็บความร้อน มันจึงต้องระบาย ความร้อนออกมาทางร่องที่หาง" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menentang", + th: "ตั้งใจสู้" + }, + + damage: 50, + cost: ["Metal", "Metal"] + }, { + name: { + id: "Dural Beam", + th: "ดิวรัลบีม" + }, + + effect: { + id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 130, + cost: ["Metal", "Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/128.ts b/data-asia/SV/SV8s/128.ts new file mode 100644 index 000000000..39b58c536 --- /dev/null +++ b/data-asia/SV/SV8s/128.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Archaludon ex", + th: "บริดิวรัสex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 300, + types: ["Metal"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Konstruksi Aloi", + th: "อัลลอยบิลด์" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Pilih paling banyak 2 lembar Energi Dasar {Logam} dari Trash sendiri, lalu kenakan sesukanya pada Pokémon {Logam} sendiri.", + th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง เลือกการ์ด [พลังงานพื้นฐาน[โลหะ]] ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอน[โลหะ]ฝ่ายเราตามชอบ" + } + }], + + attacks: [{ + name: { + id: "Metal Defender", + th: "เมทัลดีเฟนเดอร์" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon ini menjadi tidak memiliki Kelemahan.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม จุดอ่อนของโปเกมอนนี้ ทั้งหมดจะหายไป" + }, + + damage: 220, + cost: ["Metal", "Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/129.ts b/data-asia/SV/SV8s/129.ts new file mode 100644 index 000000000..699c377c4 --- /dev/null +++ b/data-asia/SV/SV8s/129.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Gholdengo", + th: "ซาร์ฟโก" + }, + + illustrator: "Dsuke", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + description: { + id: "Tubuh kukuh Gholdengo terbentuk dari koin yang disusun bertumpuk. Pokémon ini menembakkan koin secara beruntun dan mendesak musuhnya.", + th: "ร่างกายที่เกิดจากเหรียญที่กองซ้อนกันนั้นแข็งแรง เอาชนะศัตรูด้วย การยิงเหรียญใส่อย่างต่อเนื่อง" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Rich Strike", + th: "ริชสไตรค์" + }, + + effect: { + id: "Jika pada giliran ini, Pokémon ini berevolusi dari Gimmighoul, kerusakan yang diberikan bertambah sejumlah 90.", + th: "เทิร์นนี้ ถ้าโปเกมอนนี้วิวัฒนาการมาจาก [คอลเลคเรย์] แล้ว การโจมตีนี้จะ เพิ่มแดเมจอีก 90" + }, + + damage: "30+", + cost: ["Metal"] + }, { + name: { + id: "Surf Return", + th: "เซิร์ฟรีเทิร์น" + }, + + effect: { + id: "Pemain dapat mengocok kembali Pokémon ini dan semua kartu yang dikenakannya ke Deck sendiri.", + th: "หากต้องการ นำโปเกมอนนี้ และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ด ฝ่ายเราแล้วสับ" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/130.ts b/data-asia/SV/SV8s/130.ts new file mode 100644 index 000000000..54de9a6f5 --- /dev/null +++ b/data-asia/SV/SV8s/130.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Iron Crown", + th: "หัวเหล็ก" + }, + + illustrator: "akagi", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + description: { + id: "Kabarnya Pokémon ini menembakkan pedang bersinar untuk memotong dan mengoyak semua yang ada sekitarnya. Namun, tidak ada informasi lain dan identitasnya tidak terungkap.", + th: "ดูเหมือนว่าจะยิงใบมีดเรืองแสงออกมาเฉือนทุกสิ่งทุกอย่างรอบตัวเป็น ชิ้น ๆ แต่ไม่มีใครรู้ข้อมูลเกี่ยวกับมันนอกเหนือจากนั้น" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Delete Slash", + th: "ดีลีตสแลช" + }, + + effect: { + id: "Jika jumlah Pokémon Cadangan lawan 3 atau lebih, kerusakan yang diberikan bertambah sejumlah 80.", + th: "ถ้าจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้ามมากกว่าหรือเท่ากับ 3 ตัว การโจมตีนี้ จะเพิ่มแดเมจอีก 80" + }, + + damage: "40+", + cost: ["Metal", "Colorless"] + }, { + name: { + id: "Slicing Blade", + th: "สไลซ์เบลด" + }, + + damage: 100, + cost: ["Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/131.ts b/data-asia/SV/SV8s/131.ts new file mode 100644 index 000000000..50aa029a8 --- /dev/null +++ b/data-asia/SV/SV8s/131.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Alolan Exeggutor ex", + th: "อโลลา นัชชีex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + id: "Tropical Fever", + th: "ทรอปิคัลฟีเวอร์" + }, + + effect: { + id: "Pilih sesukanya Energi Dasar dari Kartu Pegangan sendiri, lalu kenakan sesukanya pada Pokémon sendiri.", + th: "เลือกการ์ดพลังงานพื้นฐานจากบนมือฝ่ายเราตามจำนวนที่ชอบ ติดที่โปเกมอน ฝ่ายเราตามชอบ" + }, + + damage: 150, + cost: ["Grass", "Water"] + }, { + name: { + id: "Swinging Sphene", + th: "สฟีนส่ายไปมา" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, Pokémon Basic di Arena Bertarung lawan KO. Jika hasilnya sisi belakang, pilih 1 Pokémon Basic di Cadangan lawan, Pokémon tersebut KO.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว ทำให้โปเกมอน[พื้นฐาน]บนตำแหน่งต่อสู้ฝ่ายตรงข้าม [หมดสภาพ] ถ้าออกก้อย เลือกโปเกมอน[พื้นฐาน]บนเบนช์ฝ่ายตรงข้าม 1 ตัว ทำให้[หมดสภาพ]" + }, + + cost: ["Grass", "Water", "Fighting"] + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/132.ts b/data-asia/SV/SV8s/132.ts new file mode 100644 index 000000000..11286410d --- /dev/null +++ b/data-asia/SV/SV8s/132.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Altaria", + th: "ทิลทาลิส" + }, + + illustrator: "rika", + category: "Pokemon", + hp: 120, + types: ["Dragon"], + + description: { + id: "Pada hari yang cerah, Altaria terbang dengan bebas di angkasa sambil bersembunyi di antara awan kapas dan menyanyi dengan suara sopran yang indah.", + th: "วันที่อากาศแจ่มใสจะแฝงตัวเข้าไปอยู่ในปุยเมฆพลางโผบินไปมาบน ท้องฟ้าและร้องเพลงด้วยเสียงโซปราโนอันไพเราะ" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Humming Charge", + th: "ฮัมมิงชาร์จ" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, lalu kenakan sesukanya pada Pokémon sendiri. Kemudian, kocok Deck.", + th: "เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอน ฝ่ายเราตามชอบ แล้วสับสำรับการ์ด" + }, + + cost: ["Water"] + }, { + name: { + id: "Cotton Wing", + th: "ค็อททอนวิง" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan akibat serangan.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้ รับแดเมจของท่าต่อสู้" + }, + + damage: 100, + cost: ["Water", "Metal"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/133.ts b/data-asia/SV/SV8s/133.ts new file mode 100644 index 000000000..aacda0fc9 --- /dev/null +++ b/data-asia/SV/SV8s/133.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Dialga", + th: "ดีอัลกา" + }, + + illustrator: "Takumi Wada", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + + description: { + id: "Dialga merupakan Pokémon yang memiliki legenda yang isinya waktu mulai bergerak saat ia lahir.", + th: "ดีอัลกาเป็นโปเกมอนที่มีตำนานกล่าวไว้ว่าเมื่อถือกำเนิดขึ้นมา เวลา จะเริ่มขยับ" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Time Control", + th: "ไทม์คอนโทรล" + }, + + effect: { + id: "Pilih 2 kartu sesukanya dari Deck sendiri. Kocok sisa Deck, tukar urutan kartu yang telah dipilih sesukanya, lalu kembalikan ke atas Deck.", + th: "เลือกการ์ดที่ชอบ 2 ใบจากสำรับการ์ดฝ่ายเรา สับสำรับการ์ดที่เหลือ เรียง การ์ดที่เลือกตามลำดับที่ชอบ ใส่กลับไปด้านบนของสำรับการ์ด" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Buster Tail", + th: "บัสเตอร์เทล" + }, + + damage: 160, + cost: ["Psychic", "Metal", "Colorless"] + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/134.ts b/data-asia/SV/SV8s/134.ts new file mode 100644 index 000000000..280fbff58 --- /dev/null +++ b/data-asia/SV/SV8s/134.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Palkia", + th: "พัลเกีย" + }, + + illustrator: "danciao", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + + description: { + id: "Dikatakan bahwa Palkia hidup di celah dimensi paralel. Pokémon yang muncul dalam mitologi.", + th: "ว่ากันว่าอาศัยอยู่ในช่องว่างระหว่างมิติคู่ขนาน เป็นโปเกมอนที่ปรากฏ ตัวในเทพนิยาย" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Space Crush", + th: "สเปซแครช" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 40 untuk tiap Energi Dasar yang dikenakan pada Pokémon ini.", + th: "แดเมจจะเท่ากับจำนวนพลังงานพื้นฐานที่ติดอยู่กับโปเกมอนนี้ x40" + }, + + damage: "40×", + cost: ["Grass", "Water"] + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/135.ts b/data-asia/SV/SV8s/135.ts new file mode 100644 index 000000000..29b2d0781 --- /dev/null +++ b/data-asia/SV/SV8s/135.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Turtonator", + th: "บาคุกาเมส" + }, + + illustrator: "Rianti Hidayat", + category: "Pokemon", + hp: 120, + types: ["Dragon"], + + description: { + id: "Turtonator menggendong tempurung yang dilapisi oleh bahan peledak. Jika diserang musuh, ia akan membalas dengan ledakan dahsyat.", + th: "แบกกระดองที่ถูกเคลือบด้วยดินระเบิด เอาคืนคู่ต่อสู้ที่โจมตีมาด้วย ระเบิดยักษ์" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Bakar Gosong Habis", + th: "ไหม้หมดเกลี้ยง" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon {ex} di Arena Bertarung lawan, lalu buang ke Trash.", + th: "เลือกพลังงานที่ติดอยู่กับ [โปเกมอน【ex】] บนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" + }, + + cost: ["Fire"] + }, { + name: { + id: "Entakan Ledakan Panas", + th: "ตราประทับระเบิดร้อน" + }, + + damage: 100, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/136.ts b/data-asia/SV/SV8s/136.ts new file mode 100644 index 000000000..5d958a4f6 --- /dev/null +++ b/data-asia/SV/SV8s/136.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Applin", + th: "คาจิชชู" + }, + + illustrator: "Yuka Morii", + category: "Pokemon", + hp: 40, + types: ["Dragon"], + + description: { + id: "Applin hidup di dalam buah apel. Jika apelnya habis, Pokémon ini akan melemah karena kehilangan cairan tubuhnya.", + th: "อาศัยอยู่ในแอปเปิล พอไม่มีแอปเปิลแล้วจะสูญเสียน้ำในร่างกายและ อ่อนแอลง" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Nutrisi", + th: "สารอาหาร" + }, + + effect: { + id: "Pulihkan HP 1 Pokémon sendiri sejumlah 30.", + th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเรา 1 ตัว [30]" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Menggulingkan", + th: "ล้มกลิ้ง" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 30.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 30" + }, + + damage: "20+", + cost: ["Grass", "Fire"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/137.ts b/data-asia/SV/SV8s/137.ts new file mode 100644 index 000000000..5e7387654 --- /dev/null +++ b/data-asia/SV/SV8s/137.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Flapple", + th: "แอปปริว" + }, + + illustrator: "GOTO minori", + category: "Pokemon", + hp: 80, + types: ["Dragon"], + + description: { + id: "Pokémon ini memperbaiki apel dengan cairan tubuhnya. Apel milik Flapple yang kuat dan berpengalaman dalam pertarungan berwarna coklat tanah liat secara menyeluruh.", + th: "ใช้ของเหลวจากร่างกายซ่อมแซมแอปเปิล แอปเปิลของผู้แข็งแกร่งที่ ผ่านศึกมานักต่อนักจะเป็นสีดินเหนียวทั้งลูก" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Sour Spit", + th: "ซาวร์สปิต" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang dimiliki Pokémon Bertarung lawan.", + th: "แดเมจจะเท่ากับจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนบนตำแหน่งต่อสู้ฝ่าย ตรงข้าม x20" + }, + + damage: "20×", + cost: ["Colorless"] + }, { + name: { + id: "Terbang Cepat", + th: "บินเร็วจี๋" + }, + + damage: 70, + cost: ["Grass", "Fire"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/138.ts b/data-asia/SV/SV8s/138.ts new file mode 100644 index 000000000..d6c2ddca8 --- /dev/null +++ b/data-asia/SV/SV8s/138.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Appletun", + th: "ทารุปเปิล" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + hp: 90, + types: ["Dragon"], + + description: { + id: "Appletun mengusir Lechonk yang datang untuk menjilat madu manis di punggungnya dengan memuntahkan nektar lengket.", + th: "ไล่กูร์ตงที่จะมากินน้ำหวานบนกลางหลังโดยการพ่นน้ำหวาน เหนียวหนืดใส่" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Sweet Melt", + th: "สวีตเมลต์" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะใช้ท่าต่อสู้ไม่ได้" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Wild Tackle", + th: "ไวลด์แท็กเกิล" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 20.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 20 ด้วย" + }, + + damage: 130, + cost: ["Grass", "Fire"] + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/139.ts b/data-asia/SV/SV8s/139.ts new file mode 100644 index 000000000..e1937a03c --- /dev/null +++ b/data-asia/SV/SV8s/139.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Eternatus", + th: "มุเก็นไดนา" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 150, + types: ["Dragon"], + + description: { + id: "Eternatus dapat aktif karena inti di dada Pokémon ini mengisap energi yang terpancar dari daratan Daerah Galar.", + th: "แกนกลางช่วงอกจะดูดซับพลังงานที่พวยพุ่งจากผืนดินของภูมิภาคกาลาร์ เพื่อใช้ชีวิตอยู่อย่างกระฉับกระเฉง" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Dynablast", + th: "ไดนาบลาสต์" + }, + + effect: { + id: "Jika Pokémon Bertarung lawan adalah Pokémon {ex}, kerusakan yang diberikan bertambah sejumlah 80.", + th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】] การโจมตีนี้จะ เพิ่มแดเมจอีก 80" + }, + + damage: "10+", + cost: ["Darkness"] + }, { + name: { + id: "World End", + th: "เวิลด์เอนด์" + }, + + effect: { + id: "Buang Stadium yang ada di Arena ke Trash. Jika tidak dapat membuangnya ke Trash, serangan ini gagal.", + th: "ทิ้งการ์ดสเตเดียมที่วางอยู่บนกระดานที่ตำแหน่งทิ้งการ์ด ถ้าทิ้งการ์ดไม่ได้ ท่าต่อสู้นี้จะล้มเหลว" + }, + + damage: 230, + cost: ["Fire", "Darkness", "Darkness"] + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/140.ts b/data-asia/SV/SV8s/140.ts new file mode 100644 index 000000000..2b72a9f29 --- /dev/null +++ b/data-asia/SV/SV8s/140.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Tatsugiri ex", + th: "ชาริทัตสึex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 160, + types: ["Dragon"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + id: "Pompa Mendadak", + th: "ปั๊มพ์โจมตีแบบไม่คาดคิด" + }, + + effect: { + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan.", + th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ ฝ่ายตรงข้ามมาคิด" + }, + + damage: 100, + cost: ["Fire", "Water"] + }, { + name: { + id: "Cinnabar Lure", + th: "ซินนาบาร์ลัวร์" + }, + + effect: { + id: "Lihat 10 kartu dari atas Deck sendiri, pilih sesukanya Pokémon di antaranya, lalu masukkan ke Cadangan. Kocok kembali sisa kartu ke Deck.", + th: "ดูการ์ด 10 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดโปเกมอนจากใน นั้นตามจำนวนที่ชอบ วางบนเบนช์ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ" + }, + + cost: ["Fire", "Water", "Darkness"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/141.ts b/data-asia/SV/SV8s/141.ts new file mode 100644 index 000000000..591ee0f5b --- /dev/null +++ b/data-asia/SV/SV8s/141.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Slakoth", + th: "นามาเคโร" + }, + + illustrator: "Aya Kusube", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + id: "Sosok Slakoth yang bermalas-malasan merangsang rasa malas orang yang melihatnya.", + th: "สภาพเกียจคร้านของนามาเคโรนั้นกระตุ้นความขี้เกียจของคนที่มองดู เป็นอย่างมาก" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Bersantai", + th: "ทำตัวเรื่อยเฉื่อย" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 60. Pada giliran sendiri berikutnya, Pokémon ini tidak dapat Mundur.", + th: "ฟื้นฟู HP ของโปเกมอนนี้ [60] เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะหนี ไม่ได้" + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/142.ts b/data-asia/SV/SV8s/142.ts new file mode 100644 index 000000000..43ca07c91 --- /dev/null +++ b/data-asia/SV/SV8s/142.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Vigoroth", + th: "ยารุคิโมโนะ" + }, + + illustrator: "Kurata So", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + description: { + id: "Vigoroth segera merasa lapar karena ia selalu mengamuk, tetapi Pokémon ini tidak bisa diam meskipun sedang makan.", + th: "อาละวาดตลอดเวลาเลยมักจะหิว แต่ตอนกินก็อยู่นิ่ง ๆ ไม่เป็น" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Cakar Penebas", + th: "สแลชคลอว์" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/143.ts b/data-asia/SV/SV8s/143.ts new file mode 100644 index 000000000..b317239a7 --- /dev/null +++ b/data-asia/SV/SV8s/143.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Slaking ex", + th: "เค็คคิงex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 340, + types: ["Colorless"], + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Hobi Bolos", + th: "ขี้เกียจหลังยาว" + }, + + effect: { + id: "Jika tidak ada Pokémon {ex}/{V} di Arena lawan, Pokémon ini tidak dapat menggunakan serangan.", + th: "ถ้าบนกระดานฝ่ายตรงข้ามไม่มี [โปเกมอน【ex】 /【V】] โปเกมอนนี้จะใช้ท่าต่อสู้ ไม่ได้" + } + }], + + attacks: [{ + name: { + id: "Great Swing", + th: "เกรทสวิง" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 280, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/144.ts b/data-asia/SV/SV8s/144.ts new file mode 100644 index 000000000..89f200250 --- /dev/null +++ b/data-asia/SV/SV8s/144.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Swablu", + th: "ทิลท์โท" + }, + + illustrator: "sowsow", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + id: "Swablu sifatnya tidak akan tenang jika dirinya dan sekitarnya tidak bersih. Pokémon ini akan membersihkan kotoran yang ia temukan menggunakan sayapnya.", + th: "ถ้าตัวเองและรอบข้างไม่สะอาดจะรู้สึกกระสับกระส่าย พอเจอสิ่ง สกปรกจะใช้ปีกเช็ด" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Charm Voice", + th: "เสียงทรงเสน่ห์" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing.", + th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/145.ts b/data-asia/SV/SV8s/145.ts new file mode 100644 index 000000000..dbc1a1c92 --- /dev/null +++ b/data-asia/SV/SV8s/145.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Zangoose", + th: "แซงกูส" + }, + + illustrator: "Ligton", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + description: { + id: "Bulu Zangoose berdiri dan ia mengambil posisi bertarung jika bertemu dengan Seviper. Cakar tajamnya adalah senjata terkuatnya.", + th: "พอเจอฮาบูเนค ขนทั่วตัวจะชูชันเตรียมพร้อมโจมตี กรงเล็บแหลมคม เป็นอาวุธที่ดีที่สุดของมัน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Sabetan Beruntun", + th: "ตัดต่อเนื่อง" + }, + + effect: { + id: "Lempar koin 3 kali. Jika hasilnya sisi depan 1 kali, kerusakan yang diberikan bertambah sejumlah 20. Jika hasilnya sisi depan 2 kali, kerusakan yang diberikan bertambah sejumlah 50. Jika semuanya sisi depan, kerusakan yang diberikan bertambah sejumlah 80.", + th: "ทอยเหรียญ 3 ครั้ง ถ้าออกหัว 1 ครั้ง การโจมตีนี้จะเพิ่มแดเมจอีก 20 ถ้า ออกหัว 2 ครั้ง การโจมตีนี้จะเพิ่มแดเมจอีก 50 ถ้าออกหัวทั้งหมด การโจมตีนี้ จะเพิ่มแดเมจอีก 80" + }, + + damage: "10+", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/146.ts b/data-asia/SV/SV8s/146.ts new file mode 100644 index 000000000..a48e59ab8 --- /dev/null +++ b/data-asia/SV/SV8s/146.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Kecleon", + th: "คาคุเลียน" + }, + + illustrator: "Shinji Kanda", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + id: "Kecleon mengubah warna tubuhnya untuk mencampurkan diri dengan pemandangan. Jika tidak diperhatikan dalam waktu lama, Pokémon ini akan merajuk dan tidak memperlihatkan wujudnya.", + th: "สามารถเปลี่ยนสีร่างกายของตัวเองให้กลมกลืนกับสภาวะแวดล้อมได้ แต่ถ้าไม่เหลียวแลนาน ๆ จะงอนแล้วหายตัวไป" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Mahir Bersembunyi", + th: "ซ่อนเก่ง" + }, + + effect: { + id: "Saat Pokémon ini menerima kerusakan akibat serangan, pemain melempar koin 1 kali. Jika hasilnya sisi depan, Pokémon ini tidak menerima kerusakan tersebut.", + th: "เมื่อโปเกมอนนี้ได้รับแดเมจของท่าต่อสู้ ฝ่ายเราทอยเหรียญ 1 ครั้ง ถ้าออกหัว โปเกมอนนี้จะไม่ได้รับแดเมจนั้น" + } + }], + + attacks: [{ + name: { + id: "Cambuk Lidah", + th: "แส้ลิ้น" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 30 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "ทำแดเมจ 30 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำ จุดอ่อนและความต้านทานมาคิด}" + }, + + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/147.ts b/data-asia/SV/SV8s/147.ts new file mode 100644 index 000000000..a9e98677c --- /dev/null +++ b/data-asia/SV/SV8s/147.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Bouffalant", + th: "บัฟฟรอน" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + description: { + id: "Bouffalant dapat menghancurkan mobil cukup dengan serudukan kepalanya. Makin besar rambut di kepalanya, makin tinggi pula posisinya di antara kelompoknya.", + th: "เพียงแค่พุ่งหัวชนก็สามารถบดทำลายรถยนต์ได้ ยิ่งมีขนที่หัวมากก็ยิ่ง ได้รับการยอมรับจากพวกพ้องในฝูง" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tanduk Menanti", + th: "เขารอรับ" + }, + + effect: { + id: "Pada giliran lawan berikutnya, saat Pokémon ini menerima kerusakan akibat serangan, letakkan 6 Token Kerusakan pada Pokémon yang telah menggunakan serangan.", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม เมื่อโปเกมอนนี้ได้รับแดเมจของท่าต่อสู้ วาง ตัวนับแดเมจ 6 ตัวบนโปเกมอนที่ใช้ท่าต่อสู้" + }, + + damage: 40, + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Smash Head", + th: "สแมชเฮด" + }, + + effect: { + id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash.", + th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด" + }, + + damage: 150, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/148.ts b/data-asia/SV/SV8s/148.ts new file mode 100644 index 000000000..d5c54363d --- /dev/null +++ b/data-asia/SV/SV8s/148.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Rufflet", + th: "วาชิบอน" + }, + + illustrator: "Nakamura Ippan", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + id: "Rufflet mencengkeram mangsanya dengan cakar tajamnya dan mematuk mereka. Pokémon ini juga memakan buah beri, namun pada dasarnya ia adalah karnivor.", + th: "ใช้กรงเล็บคมแทงแล้วจิกเหยื่อ โดยพื้นฐานแล้วเป็นโปเกมอนกินเนื้อ แต่ผลไม้ก็ทาน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Mengepak", + th: "ตีปีก" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/149.ts b/data-asia/SV/SV8s/149.ts new file mode 100644 index 000000000..fee5145cd --- /dev/null +++ b/data-asia/SV/SV8s/149.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Braviary", + th: "วอร์เกิล" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + description: { + id: "Braviary adalah pendekar langit pemberani yang tidak akan berhenti bertarung demi kawannya meskipun ia akan terluka.", + th: "นักรบแห่งฟ้ากว้างผู้กล้าหาญที่จะต่อสู้เพื่อพวกพ้องอย่างไม่หยุดยั้งโดย ไม่สนว่าตนจะบาดเจ็บเพียงใด" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Seret Pergi", + th: "ลากออกมา" + }, + + effect: { + id: "Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, berikan kerusakan sejumlah 40 kepada Pokémon Bertarung yang baru.", + th: "เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้ หลังจากนั้น ทำแดเมจ 40 กับโปเกมอนที่เพิ่งออกมาใหม่" + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Blast Wind", + th: "บลาสต์วินด์" + }, + + damage: 120, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/150.ts b/data-asia/SV/SV8s/150.ts new file mode 100644 index 000000000..69d85810e --- /dev/null +++ b/data-asia/SV/SV8s/150.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Helioptile", + th: "เอลิคิเทล" + }, + + illustrator: "miki kudo", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + id: "Helioptile membuat listrik tenaga surya dengan melebarkan jumbai di kepalanya dan menggunakannya untuk mengeluarkan jurus listrik yang kuat.", + th: "เมื่อกางแผ่นที่หัวแล้วผลิตไฟฟ้าจากแสงอาทิตย์จะสามารถปล่อยท่า ไฟฟ้าที่รุนแรงได้" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Voltase Mini", + th: "โวลต์ต่ำ" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + id: "Menyerang", + th: "ประจัญบาน" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 10.", + th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย" + }, + + damage: 40, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/151.ts b/data-asia/SV/SV8s/151.ts new file mode 100644 index 000000000..f63bdd22b --- /dev/null +++ b/data-asia/SV/SV8s/151.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Heliolisk", + th: "เอเลซาร์ด" + }, + + illustrator: "Ryota Murayama", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + description: { + id: "Listrik yang dihasilkan oleh seekor Heliolisk yang melebarkan jumbainya ketika bermandikan cahaya matahari cukup untuk memenuhi kebutuhan listrik sebuah kota metropolitan.", + th: "ถ้าแผ่แผงคออาบแสงแดด มันตัวเดียวสามารถผลิตไฟฟ้าที่ใช้ในเมือง ใหญ่ได้" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Parabolic Charge", + th: "พาราโบลาชาร์จ" + }, + + effect: { + id: "Pilih paling banyak 4 lembar Energi dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดพลังงานได้สูงสุด 4 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Electroslug", + th: "อิเล็กทริกสลัก" + }, + + damage: 80, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/152.ts b/data-asia/SV/SV8s/152.ts new file mode 100644 index 000000000..6ff13342c --- /dev/null +++ b/data-asia/SV/SV8s/152.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Oranguru", + th: "ยาเรยูตัน" + }, + + illustrator: "Saboteri", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + + description: { + id: "Oranguru hidup dengan tenang di hutan. Bulu ungunya yang mirip dengan mantel tumbuh memanjang seiring dengan bertambahnya umur Pokémon ini.", + th: "อาศัยอยู่เงียบ ๆ ในป่าลึก ยิ่งอายุมากขึ้นขนสีม่วงราวกับผ้าคลุมนั้นก็ จะยาวขึ้นด้วยเช่นกัน" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menggenggam Kelemahan", + th: "กุมจุดอ่อน" + }, + + effect: { + id: "Hingga akhir giliran sendiri berikutnya, Kelemahan Pokémon yang menerima serangan ini menjadi tipe {Bening}. [Perhitungan kerusakan dari tipe yang menjadi Kelemahan adalah 2 kali lipat.]", + th: "จนกว่าจะจบเทิร์นถัดไปของฝ่ายเรา จุดอ่อนของโปเกมอนที่ได้รับท่าต่อสู้นี้จะ เป็นประเภท[ไร้สี] {จุดอ่อน คำนวณแดเมจ x2}" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Tampar", + th: "ฝ่ามือตบ" + }, + + damage: 80, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/153.ts b/data-asia/SV/SV8s/153.ts new file mode 100644 index 000000000..cb76122d5 --- /dev/null +++ b/data-asia/SV/SV8s/153.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Tandemaus", + th: "วักคาเนซูมิ" + }, + + illustrator: "USGMEN", + category: "Pokemon", + hp: 40, + types: ["Colorless"], + + description: { + id: "Tandemaus selalu berdua pada saat apa pun. Pokémon ini membagi dua dengan sama rata makanan yang ditemukannya, lalu dimakan bersama dengan akrab.", + th: "ไม่ว่าเมื่อไหร่ก็จะอยู่ด้วยกัน 2 ตัว เมื่อพบอาหารก็จะแบ่งเท่า ๆ กัน และกินด้วยกันอย่างสนิทสนม" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Main Kasar", + th: "คลอเคลีย" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 10.", + th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 10" + }, + + damage: "10+", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/154.ts b/data-asia/SV/SV8s/154.ts new file mode 100644 index 000000000..2f5887eb2 --- /dev/null +++ b/data-asia/SV/SV8s/154.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Maushold", + th: "อิกคาเนซูมิ" + }, + + illustrator: "DOM", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + id: "Dua ekor Maushold besar bertarung sambil melindungi anak-anak mereka. Seluruh Pokémon ini ikut bertarung menghadapi lawan yang kuat.", + th: "ตัวใหญ่ 2 ตัวจะคอยปกป้องพวกตัวเล็กพลางต่อสู้ไปด้วย จะเผชิญหน้า กับคู่ต่อสู้ที่แข็งแกร่งด้วยกันทุกตัว" + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Family March", + th: "แฟมิลีมาร์ช" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Maushold (termasuk Pokémon {ex}) dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck.", + th: "เลือกการ์ด [อิกคาเนซูมิ (รวม [โปเกมอน【ex】])] ได้สูงสุด 2 ใบจากสำรับ การ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Gigi Beruntun", + th: "ฟันหน้าต่อเนื่อง" + }, + + effect: { + id: "Lempar koin 4 kali. Serangan ini memberikan kerusakan sejumlah 30 untuk tiap lemparan dengan hasil sisi depan.", + th: "ทอยเหรียญ 4 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x30" + }, + + damage: "30×", + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/155.ts b/data-asia/SV/SV8s/155.ts new file mode 100644 index 000000000..0f31e353a --- /dev/null +++ b/data-asia/SV/SV8s/155.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Cyclizar ex", + th: "โมโตโทคาเงะex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + id: "Break Through", + th: "เบรกทรู" + }, + + effect: { + id: "Serangan ini juga memberikan kerusakan sejumlah 30 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]", + th: "โปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ก็จะได้รับแดเมจ 30 ด้วย {โปเกมอน บนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}" + }, + + damage: 130, + cost: ["Colorless", "Colorless", "Colorless"] + }, { + name: { + id: "Zircon Road", + th: "เซอร์คอนโรด" + }, + + effect: { + id: "Pemain dapat mengambil 5 kartu dari atas Deck sendiri.", + th: "หากต้องการ จั่วการ์ด 5 ใบจากสำรับการ์ดฝ่ายเรา" + }, + + damage: 180, + cost: ["Grass", "Fire", "Psychic"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/156.ts b/data-asia/SV/SV8s/156.ts new file mode 100644 index 000000000..c21dab415 --- /dev/null +++ b/data-asia/SV/SV8s/156.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Terapagos", + th: "เทราปากอส" + }, + + illustrator: "GIDORA", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + + description: { + id: "Jika tempurung Terastal Terapagos menerima jurus lawan, energi tersebut akan diserap dan dijadikan sebagai milik sendiri.", + th: "คาดกันว่ามันเคยอาศัยอยู่ในพัลเดียโบราณ แต่ได้รับผลกระทบจากการ เปลี่ยนแปลงของเปลือกโลก จนมันสูญพันธุ์ไป" + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Prism Charge", + th: "ปริซึมชาร์จ" + }, + + effect: { + id: "Pilih paling banyak 3 lembar Energi Dasar yang masing-masing berbeda tipenya dari Deck sendiri, lalu kenakan sesukanya pada Pokémon Terastal sendiri. Kemudian, kocok Deck.", + th: "เลือกการ์ดพลังงานพื้นฐานที่แต่ละใบต่างประเภทกันได้สูงสุด 3 ใบ จากสำรับ การ์ดฝ่ายเรา ติดที่โปเกมอน [เทรัสตัล] ฝ่ายเราตามชอบ แล้วสับสำรับการ์ด" + }, + + cost: ["Colorless"] + }, { + name: { + id: "Hard Tackle", + th: "ฮาร์ดแท็กเกิล" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/157.ts b/data-asia/SV/SV8s/157.ts new file mode 100644 index 000000000..0f1baf3d2 --- /dev/null +++ b/data-asia/SV/SV8s/157.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Transfer Energi PRO", + th: "ส่งต่อพลังงาน PRO" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Pilih sesukanya Energi Dasar yang masing-masing berbeda tipenya dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ดพลังงานพื้นฐานที่แต่ละใบต่างประเภทกันตามจำนวนที่ชอบ จากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/158.ts b/data-asia/SV/SV8s/158.ts new file mode 100644 index 000000000..591909992 --- /dev/null +++ b/data-asia/SV/SV8s/158.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Bel Penyelamat", + th: "กระดิ่งช่วยเหลือ" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + id: "Kartu ini hanya dapat digunakan pada giliran pertama Pemain Kedua. Pilih 1 lembar Supporter dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "การ์ดนี้ ใช้ได้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเล่นทีหลังเท่านั้น เลือกการ์ดซัพพอร์ต 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/159.ts b/data-asia/SV/SV8s/159.ts new file mode 100644 index 000000000..abcf8b864 --- /dev/null +++ b/data-asia/SV/SV8s/159.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Set Deduksi", + th: "ชุดสืบสวน" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + id: "Lihat 3 kartu dari atas Deck sendiri. Tukar urutan kartu sesukanya, lalu kembalikan ke atas Deck atau kocok semua kartu tersebut dengan sisi depan menghadap ke bawah, lalu kembalikan ke bawah Deck.", + th: "ดูการ์ด 3 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เรียงตามลำดับที่ชอบ ใส่กลับ ไปด้านบนของสำรับการ์ด หรือ สับการ์ดนั้นทั้งหมดโดยไม่ดูหน้าการ์ด ใส่กลับ ไปด้านล่างของสำรับการ์ด" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/160.ts b/data-asia/SV/SV8s/160.ts new file mode 100644 index 000000000..77512c39e --- /dev/null +++ b/data-asia/SV/SV8s/160.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Scramble Switch", + th: "สแครมเบิลสวิตช์" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + id: "Tukar Pokémon Bertarung sendiri dengan Pokémon Cadangan. Setelah itu, pilih sesukanya Energi yang dikenakan pada Pokémon yang ditukar masuk ke Cadangan, lalu pindahkan ke Pokémon Bertarung yang baru.", + th: "สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายเรากับโปเกมอนบนเบนช์ หลังจากนั้น เลือกพลังงานที่ติดอยู่กับโปเกมอนที่สลับมาอยู่บนเบนช์ตามจำนวนที่ชอบ ย้ายไปติดกับโปเกมอนใหม่บนตำแหน่งต่อสู้" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/161.ts b/data-asia/SV/SV8s/161.ts new file mode 100644 index 000000000..ce971b909 --- /dev/null +++ b/data-asia/SV/SV8s/161.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Bola Dusk", + th: "ดาร์กบอล" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + id: "Lihat 7 kartu dari bawah Deck sendiri, pilih 1 lembar Pokémon di antaranya, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck.", + th: "ดูการ์ด 7 ใบจากด้านล่างของสำรับการ์ดฝ่ายเรา เลือกการ์ดโปเกมอน 1 ใบ จากในนั้น ให้ฝ่ายตรงข้ามดู นำขึ้นมือ การ์ดที่เหลือใส่กลับไปในสำรับการ์ด แล้วสับ" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/162.ts b/data-asia/SV/SV8s/162.ts new file mode 100644 index 000000000..8e85743cf --- /dev/null +++ b/data-asia/SV/SV8s/162.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Mainan Santai", + th: "ไม้หยอกเรื่อยเฉื่อย" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + id: "Kartu ini hanya dapat digunakan pada giliran pertama Pemain Kedua. Pilih 1 Energi yang dikenakan pada Pokémon di Arena lawan, lalu kembalikan ke Kartu Pegangan lawan.", + th: "การ์ดนี้ ใช้ได้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเล่นทีหลังเท่านั้น เลือกพลังงานที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายตรงข้าม 1 ลูก นำกลับขึ้นมือ ฝ่ายตรงข้าม" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/163.ts b/data-asia/SV/SV8s/163.ts new file mode 100644 index 000000000..bddcb6486 --- /dev/null +++ b/data-asia/SV/SV8s/163.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Surat Penghambat", + th: "จดหมายรบกวน" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + id: "Lawan menghitung jumlah Kartu Pegangannya sendiri, mengocok semua Kartu Pegangannya dengan sisi depan menghadap ke bawah, lalu mengembalikannya ke bawah Deck. Setelah itu, lawan mengambil kartu dari atas Deck untuk tiap lembar kartu yang dikembalikan.", + th: "หลังจากฝ่ายตรงข้ามนับการ์ดบนมือฝ่ายตรงข้ามเองแล้ว สับการ์ดทั้งหมดโดย ไม่ดูหน้าการ์ด ใส่กลับไปด้านล่างของสำรับการ์ด หลังจากนั้น ฝ่ายตรงข้ามจั่ว การ์ดจากสำรับการ์ด ตามจำนวนการ์ดที่ใส่กลับไป" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/164.ts b/data-asia/SV/SV8s/164.ts new file mode 100644 index 000000000..da5531f1f --- /dev/null +++ b/data-asia/SV/SV8s/164.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Miracle Intercom", + th: "มิราเคิลอินเตอร์คอม" + }, + + illustrator: "inose yukie", + category: "Trainer", + + effect: { + id: "Pilih paling banyak 2 lembar Supporter dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan.", + th: "เลือกการ์ดซัพพอร์ตได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/165.ts b/data-asia/SV/SV8s/165.ts new file mode 100644 index 000000000..b1e67a98c --- /dev/null +++ b/data-asia/SV/SV8s/165.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Megaton Blower", + th: "เมกะตันโบลเวอร์" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Buang semua Pokémon Tool dan Energi Spesial yang dikenakan pada semua Pokémon lawan dan Stadium yang ada di Arena ke Trash.", + th: "ทิ้ง [ไอเท็มติดโปเกมอน] และ [พลังงานพิเศษ] ที่ติดอยู่กับโปเกมอน ฝ่ายตรงข้ามทุกตัว และ [สเตเดียม] ที่วางอยู่บนกระดาน ทั้งหมดที่ ตำแหน่งทิ้งการ์ด" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/166.ts b/data-asia/SV/SV8s/166.ts new file mode 100644 index 000000000..c77d724c5 --- /dev/null +++ b/data-asia/SV/SV8s/166.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Obat Rahasia Naga", + th: "ยาลับของมังกร" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + id: "Pulihkan HP Pokémon {Naga} di Arena Bertarung sendiri sejumlah 60.", + th: "ฟื้นฟู HP ของโปเกมอน[มังกร]บนตำแหน่งต่อสู้ฝ่ายเรา [60]" + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/167.ts b/data-asia/SV/SV8s/167.ts new file mode 100644 index 000000000..dd5373b13 --- /dev/null +++ b/data-asia/SV/SV8s/167.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Beri Passho", + th: "ผลอิโตเกะ" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + id: "Saat Pokémon yang mengenakan kartu ini menerima kerusakan akibat serangan dari Pokémon {Air} lawan, kerusakan tersebut berkurang sejumlah 60, lalu buang kartu ini ke Trash.", + th: "เมื่อโปเกมอนที่ติดการ์ดนี้อยู่ ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[น้ำ]ฝ่าย ตรงข้าม แดเมจนั้นจะถูก [-60] ทิ้งการ์ดนี้ที่ตำแหน่งทิ้งการ์ด" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/168.ts b/data-asia/SV/SV8s/168.ts new file mode 100644 index 000000000..3caabb34a --- /dev/null +++ b/data-asia/SV/SV8s/168.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Counter Gain", + th: "เคาน์เตอร์เกน" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Jika sisa Kartu Point sendiri lebih banyak dari sisa Kartu Point lawan, Energi yang dibutuhkan oleh Pokémon yang mengenakan kartu ini untuk menggunakan serangan berkurang 1 Energi {Bening}.", + th: "ถ้าจำนวนการ์ดรางวัลที่เหลือของฝ่ายเรา มากกว่าจำนวนการ์ดรางวัลที่เหลือ ของฝ่ายตรงข้าม พลังงานสำหรับใช้ท่าต่อสู้ของโปเกมอนที่ติดการ์ดนี้อยู่ พลังงาน[ไร้สี]จะลดลง 1 ลูก" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/169.ts b/data-asia/SV/SV8s/169.ts new file mode 100644 index 000000000..7ad519172 --- /dev/null +++ b/data-asia/SV/SV8s/169.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Amulet Harapan", + th: "เครื่องรางแห่งความปรารถนา" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Saat Pokémon yang mengenakan kartu ini KO karena menerima kerusakan akibat serangan dari Pokémon lawan, pilih paling banyak 3 kartu sesukanya dari Deck sendiri, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เมื่อโปเกมอนที่ติดการ์ดนี้อยู่ ได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่าย ตรงข้ามและ[หมดสภาพ]แล้ว เลือกการ์ดที่ชอบได้สูงสุด 3 ใบจากสำรับ การ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/170.ts b/data-asia/SV/SV8s/170.ts new file mode 100644 index 000000000..ce44f081f --- /dev/null +++ b/data-asia/SV/SV8s/170.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Beri Colbur", + th: "ผลนาโมะ" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + id: "Saat Pokémon yang mengenakan kartu ini menerima kerusakan akibat serangan dari Pokémon {Kegelapan} lawan, kerusakan tersebut berkurang sejumlah 60, lalu buang kartu ini ke Trash.", + th: "เมื่อโปเกมอนที่ติดการ์ดนี้อยู่ ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[ความมืด]ฝ่าย ตรงข้าม แดเมจนั้นจะถูก [-60] ทิ้งการ์ดนี้ที่ตำแหน่งทิ้งการ์ด" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/171.ts b/data-asia/SV/SV8s/171.ts new file mode 100644 index 000000000..72ecd67ac --- /dev/null +++ b/data-asia/SV/SV8s/171.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Beri Babiri", + th: "ผลริริบะ" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + id: "Saat Pokémon yang mengenakan kartu ini menerima kerusakan akibat serangan dari Pokémon {Logam} lawan, kerusakan tersebut berkurang sejumlah 60, lalu buang kartu ini ke Trash.", + th: "เมื่อโปเกมอนที่ติดการ์ดนี้อยู่ ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[โลหะ]ฝ่าย ตรงข้าม แดเมจนั้นจะถูก [-60] ทิ้งการ์ดนี้ที่ตำแหน่งทิ้งการ์ด" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/172.ts b/data-asia/SV/SV8s/172.ts new file mode 100644 index 000000000..8c238a18d --- /dev/null +++ b/data-asia/SV/SV8s/172.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "MJ Fluorite", + th: "แมชชีนท่าต่อสู้ ฟลูออไรต์" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + id: "Pokémon yang mengenakan kartu ini dapat menggunakan serangan yang tertulis pada kartu ini. [Pemain tetap membutuhkan Energi untuk menggunakan serangan tersebut.] Kartu ini yang dikenakan pada Pokémon dibuang ke Trash pada akhir giliran sendiri.", + th: "โปเกมอนที่ติดการ์ดนี้อยู่ สามารถใช้ท่าต่อสู้ที่เขียนอยู่บนการ์ดนี้ได้ {จำเป็น ต้องใช้พลังงานสำหรับใช้ท่าต่อสู้} การ์ดนี้ที่ติดอยู่กับโปเกมอน จะทิ้งที่ตำแหน่งทิ้งการ์ดเมื่อจบเทิร์นฝ่ายเรา" + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/173.ts b/data-asia/SV/SV8s/173.ts new file mode 100644 index 000000000..e1e19e16a --- /dev/null +++ b/data-asia/SV/SV8s/173.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Levigato", + th: "คาคิสึบาตะ" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + id: "Lihat 7 kartu dari atas Deck sendiri, pilih Pokémon dan Trainer di antaranya masing-masing 1 lembar, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck.", + th: "ดูการ์ด 7 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดโปเกมอนและ การ์ดเทรนเนอร์อย่างละ 1 ใบจากในนั้น ให้ฝ่ายตรงข้ามดู นำขึ้นมือ การ์ดที่ เหลือใส่กลับไปในสำรับการ์ดแล้วสับ" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/174.ts b/data-asia/SV/SV8s/174.ts new file mode 100644 index 000000000..14e9bc9bb --- /dev/null +++ b/data-asia/SV/SV8s/174.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Peselancar", + th: "นักโต้คลื่น" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + id: "Tukar Pokémon Bertarung sendiri dengan Pokémon Cadangan. Setelah itu, ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 5 lembar.", + th: "สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายเรากับโปเกมอนบนเบนช์ หลังจากนั้น จั่ว การ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 5 ใบ" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/175.ts b/data-asia/SV/SV8s/175.ts new file mode 100644 index 000000000..579c4b96d --- /dev/null +++ b/data-asia/SV/SV8s/175.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Cyano", + th: "ไซยาโน" + }, + + illustrator: "Akira Komayama", + category: "Trainer", + + effect: { + id: "Pilih paling banyak 3 lembar Pokémon {ex} dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck.", + th: "เลือกการ์ด [โปเกมอน【ex】] ได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่าย ตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/176.ts b/data-asia/SV/SV8s/176.ts new file mode 100644 index 000000000..cd26bcb90 --- /dev/null +++ b/data-asia/SV/SV8s/176.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Kecerdikan Clemont", + th: "ปฏิภาณของซีตรอง" + }, + + illustrator: "Naoki Saito", + category: "Trainer", + + effect: { + id: "Pulihkan HP semua Pokémon {Listrik} sendiri masing-masing sejumlah 60.", + th: "ฟื้นฟู HP ของโปเกมอน[สายฟ้า]ฝ่ายเราทุกตัว ตัวละ [60]" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/177.ts b/data-asia/SV/SV8s/177.ts new file mode 100644 index 000000000..5e4a6eb87 --- /dev/null +++ b/data-asia/SV/SV8s/177.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Drasna", + th: "ดราซีนา" + }, + + illustrator: "Hideki Ishikawa", + category: "Trainer", + + effect: { + id: "Kocok kembali semua Kartu Pegangan sendiri ke Deck. Setelah itu, lempar koin 1 kali. Jika hasilnya sisi depan, ambil 8 kartu, jika hasilnya sisi belakang, ambil 3 kartu dari atas Deck.", + th: "นำการ์ดบนมือฝ่ายเราทั้งหมดใส่กลับไปในสำรับการ์ดแล้วสับ หลังจากนั้น ทอย เหรียญ 1 ครั้ง ถ้าออกหัวจั่วการ์ด 8 ใบ ถ้าออกก้อยจั่วการ์ด 3 ใบจากสำรับ การ์ด" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/178.ts b/data-asia/SV/SV8s/178.ts new file mode 100644 index 000000000..aaadd23c2 --- /dev/null +++ b/data-asia/SV/SV8s/178.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Tatapan Jasmine", + th: "สายตาของมิคัง" + }, + + illustrator: "Taira Akitsu", + category: "Trainer", + + effect: { + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan dari Pokémon lawan yang diterima semua Pokémon sendiri berkurang sejumlah 30. (Termasuk Pokémon yang baru dimasukkan ke Arena.)", + th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนฝ่ายเราทุกตัว จะ ได้รับจากโปเกมอนฝ่ายตรงข้ามจะถูก [-30] (รวมถึงโปเกมอนที่เพิ่งออกมา ใหม่บนกระดาน)" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/179.ts b/data-asia/SV/SV8s/179.ts new file mode 100644 index 000000000..db94b12bc --- /dev/null +++ b/data-asia/SV/SV8s/179.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Daya Tarik Lisia", + th: "เสน่ห์ดึงดูดของลูเทีย" + }, + + illustrator: "En Morikura", + category: "Trainer", + + effect: { + id: "Pilih 1 Pokémon Basic di Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, ubah kondisi Pokémon Bertarung yang baru menjadi Pusing.", + th: "เลือกโปเกมอน[พื้นฐาน]บนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่ง ต่อสู้ หลังจากนั้น ทำให้โปเกมอนที่เพิ่งออกมาใหม่เป็นสภาวะ[สับสน]" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/180.ts b/data-asia/SV/SV8s/180.ts new file mode 100644 index 000000000..c6f9fc16d --- /dev/null +++ b/data-asia/SV/SV8s/180.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Stadium Gempar", + th: "เอ็กไซต์สเตเดียม" + }, + + illustrator: "imoniii", + category: "Trainer", + + effect: { + id: "HP maksimal semua Pokémon Basic di Arena kedua pemain masing-masing bertambah sejumlah 30.", + th: "HP สูงสุดของโปเกมอน[พื้นฐาน]บนกระดานของทั้งสองฝ่ายทุกตัว แต่ละตัวจะถูก [+30]" + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/181.ts b/data-asia/SV/SV8s/181.ts new file mode 100644 index 000000000..b9d16bd71 --- /dev/null +++ b/data-asia/SV/SV8s/181.ts @@ -0,0 +1,24 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Gunung Gravitasi", + th: "กราวิตีเมาน์เทน" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + id: "HP maksimal semua Pokémon Stage 2 di Arena kedua pemain masing-masing berkurang sejumlah 30.", + th: "HP สูงสุดของโปเกมอน[ร่าง2] บนกระดานของทั้งสองฝ่ายทุกตัว แต่ละตัวจะถูก [-30]" + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/182.ts b/data-asia/SV/SV8s/182.ts new file mode 100644 index 000000000..de8c41fa8 --- /dev/null +++ b/data-asia/SV/SV8s/182.ts @@ -0,0 +1,23 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Energi Kaya", + th: "ริชเอนเนอร์จี้" + }, + + category: "Energy", + + effect: { + id: "Kartu ini berlaku sebagai 1 Energi {Bening} selama dikenakan pada Pokémon. Saat kartu ini dikenakan dari Kartu Pegangan pada Pokémon, ambil 4 kartu dari atas Deck sendiri.", + th: "การ์ดนี้ ตราบใดที่ติดอยู่กับโปเกมอน จะทำงานเทียบเท่าพลังงาน[ไร้สี] 1 ลูก เมื่อนำการ์ดนี้จากบนมือติดที่โปเกมอน จั่วการ์ด 4 ใบจากสำรับการ์ด ฝ่ายเรา" + }, + + energyType: "Special", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/183.ts b/data-asia/SV/SV8s/183.ts new file mode 100644 index 000000000..06ed3b13a --- /dev/null +++ b/data-asia/SV/SV8s/183.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Exeggcute" + }, + + illustrator: "Yuriko Akase", + category: "Pokemon", + hp: 30, + types: ["Grass"], + + description: { + id: "Karena saling mengirimkan telepati yang hanya diterima oleh Exeggcute, Pokémon ini selalu terkumpul 6 ekor pada saat apa pun." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Evolusi Karbitan" + }, + + effect: { + id: "Serangan ini juga dapat digunakan pada giliran pertama Pemain Pertama. Pilih 1 kartu dari Deck sendiri yang merupakan evolusi dari Pokémon ini, lalu letakkan pada Pokémon ini untuk melakukan evolusi. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/184.ts b/data-asia/SV/SV8s/184.ts new file mode 100644 index 000000000..03a73e9bf --- /dev/null +++ b/data-asia/SV/SV8s/184.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Vivillon" + }, + + illustrator: "REND", + category: "Pokemon", + hp: 120, + types: ["Grass"], + + description: { + id: "Vivillon yang terlahir di wilayah ajaib. Pokémon ini bertarung dengan menyebarkan sisik toksik berwarna-warni dari sayapnya." + }, + + stage: "Stage2", + + attacks: [{ + name: { + id: "Evolution Powder" + }, + + effect: { + id: "Pilih kartu yang merupakan evolusi dari tiap-tiap Pokémon Cadangan sendiri masing-masing 1 lembar dari Deck sendiri, lalu letakkan pada tiap-tiap Pokémon tersebut untuk melakukan evolusi. Kemudian, kocok Deck." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Cutter Wind" + }, + + damage: 90, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/185.ts b/data-asia/SV/SV8s/185.ts new file mode 100644 index 000000000..941c576f4 --- /dev/null +++ b/data-asia/SV/SV8s/185.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Shiinotic" + }, + + illustrator: "matazo", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + description: { + id: "Shiinotic memikat mangsa menggunakan cahaya sporanya yang berkedip-kedip dan membuat mangsanya tidur. Pokémon ini mengisap vitalitas mangsa menggunakan ujung jarinya." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Cahaya Ketenangan" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon ini ada di Arena Bertarung. Ubah kondisi Pokémon Bertarung lawan menjadi Tidur." + } + }], + + attacks: [{ + name: { + id: "Spiral Rush" + }, + + effect: { + id: "Lempar koin hingga hasilnya sisi belakang. Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap lemparan dengan hasil sisi depan." + }, + + damage: "60+", + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/186.ts b/data-asia/SV/SV8s/186.ts new file mode 100644 index 000000000..e379b51e7 --- /dev/null +++ b/data-asia/SV/SV8s/186.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Castform Wujud Matahari" + }, + + illustrator: "Narano", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + id: "Wujud Castform pada hari yang cerah. Pada percobaan meletakkannya di depan pemanas, Pokémon ini tidak berubah menjadi wujud ini." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menghanguskan" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar." + }, + + cost: ["Fire"] + }, { + name: { + id: "Sunny Assist" + }, + + effect: { + id: "Pindahkan semua Energi yang dikenakan pada Pokémon ini ke 1 Pokémon Cadangan." + }, + + damage: 50, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/187.ts b/data-asia/SV/SV8s/187.ts new file mode 100644 index 000000000..801c85cd1 --- /dev/null +++ b/data-asia/SV/SV8s/187.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Larvesta" + }, + + illustrator: "Whisker", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + id: "Zaman dahulu kala, orang-orang memuja Larvesta sebagai utusan matahari, tetapi ia dibenci karena sering menyebabkan kebakaran gunung." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Menyeruduk" + }, + + damage: 10, + cost: ["Colorless"] + }, { + name: { + id: "Memuntahkan Api" + }, + + damage: 20, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/188.ts b/data-asia/SV/SV8s/188.ts new file mode 100644 index 000000000..d1da0b722 --- /dev/null +++ b/data-asia/SV/SV8s/188.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Ceruledge" + }, + + illustrator: "Rond", + category: "Pokemon", + hp: 140, + types: ["Fire"], + + description: { + id: "Wujud evolusi Charcadet menjadi Ceruledge oleh zirah kuno yang diselimuti dendam. Pokémon ini menebas musuhnya tanpa ampun." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Blaze Curse" + }, + + effect: { + id: "Buang semua Energi Spesial yang dikenakan pada semua Pokémon lawan ke Trash." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Sabetan Api Hitam" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 160, + cost: ["Fire", "Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/189.ts b/data-asia/SV/SV8s/189.ts new file mode 100644 index 000000000..6f0a63a04 --- /dev/null +++ b/data-asia/SV/SV8s/189.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Feebas" + }, + + illustrator: "Kuroimori", + category: "Pokemon", + hp: 30, + types: ["Water"], + + description: { + id: "Pokémon yang paling lusuh. Feebas berkumpul dalam jumlah besar dan tinggal di dasar sungai yang banyak tanaman airnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Lompat Kabur" + }, + + effect: { + id: "Tukar Pokémon ini dengan Pokémon Cadangan." + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/190.ts b/data-asia/SV/SV8s/190.ts new file mode 100644 index 000000000..7affa9d24 --- /dev/null +++ b/data-asia/SV/SV8s/190.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Spheal" + }, + + illustrator: "miki kudo", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + id: "Tubuh Spheal yang sangat bulat diselimuti oleh lemak yang tebal. Pokémon ini lebih cepat menggelinding daripada berjalan." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Bubuk Salju" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur." + }, + + damage: 10, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/191.ts b/data-asia/SV/SV8s/191.ts new file mode 100644 index 000000000..760ca52c9 --- /dev/null +++ b/data-asia/SV/SV8s/191.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Bruxish" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 110, + types: ["Water"], + + description: { + id: "Ketika cahaya matahari terpantul dengan gelombang yang dihasilkan oleh gemeretak gigi Bruxish, air di sekitarnya akan berkilau dengan warna psikedelik." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Serangan Balasan" + }, + + effect: { + id: "Saat Pokémon ini ada di Arena Bertarung dan menerima kerusakan akibat serangan dari Pokémon lawan, letakkan 3 Token Kerusakan pada Pokémon yang telah menggunakan serangan." + } + }], + + attacks: [{ + name: { + id: "Menggerogoti Erat-erat" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + damage: 50, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/192.ts b/data-asia/SV/SV8s/192.ts new file mode 100644 index 000000000..1baf54904 --- /dev/null +++ b/data-asia/SV/SV8s/192.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Cetitan" + }, + + illustrator: "Jerky", + category: "Pokemon", + hp: 180, + types: ["Water"], + + description: { + id: "Tanduk rahang atas Cetitan yang memusatkan energi es menjadi bersuhu sangat rendah dan membekukan sekitarnya." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Tubuh Tegap" + }, + + effect: { + id: "Kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30." + } + }], + + attacks: [{ + name: { + id: "Danger Mouth" + }, + + damage: 150, + cost: ["Water", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/193.ts b/data-asia/SV/SV8s/193.ts new file mode 100644 index 000000000..110a5e2ef --- /dev/null +++ b/data-asia/SV/SV8s/193.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Magneton" + }, + + illustrator: "Shinji Kanda", + category: "Pokemon", + hp: 100, + types: ["Lightning"], + + description: { + id: "Magneton terbentuk dari Magnemite yang menyatu. Dikatakan bahwa pada saat banyak bintik matahari, Pokémon ini akan bermunculan dalam jumlah yang banyak." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + id: "Pelepasan Listrik Berlebihan" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri. Pokémon ini KO jika menggunakan Ability ini. Pilih paling banyak 3 lembar Energi Dasar dari Trash sendiri, lalu kenakan sesukanya pada Pokémon {Listrik} sendiri." + } + }], + + attacks: [{ + name: { + id: "Lightning Ball" + }, + + damage: 40, + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/194.ts b/data-asia/SV/SV8s/194.ts new file mode 100644 index 000000000..e9b6eff36 --- /dev/null +++ b/data-asia/SV/SV8s/194.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Stunfisk" + }, + + illustrator: "N-DESIGN Inc.", + category: "Pokemon", + hp: 110, + types: ["Lightning"], + + description: { + id: "Stunfisk tinggal di dataran lumpur. Berkat bakteri yang hidup di lumpur, organ untuk membuat listriknya jadi berkembang." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Pijar Pelumpuh" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, ubah kondisi Pokémon Bertarung lawan menjadi Lumpuh. Tambah lagi, pilih 1 Energi yang dikenakan pada Pokémon tersebut, lalu buang ke Trash." + }, + + damage: 50, + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/195.ts b/data-asia/SV/SV8s/195.ts new file mode 100644 index 000000000..28dac3c1b --- /dev/null +++ b/data-asia/SV/SV8s/195.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Latios" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + id: "Pokémon yang memiliki kecerdasan tinggi. Jika ia melipat lengannya dan terbang, kecepatannya melampaui pesawat jet." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Terbang Linear" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 50 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + cost: ["Psychic", "Colorless"] + }, { + name: { + id: "Jet Head" + }, + + damage: 110, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/196.ts b/data-asia/SV/SV8s/196.ts new file mode 100644 index 000000000..c386c511d --- /dev/null +++ b/data-asia/SV/SV8s/196.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Mesprit" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + id: "Mesprit mengajarkan perihnya rasa sedih dan pentingnya rasa senang kepada manusia. Dikenal sebagai Dewa Emosi." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Memuaskan Hati" + }, + + effect: { + id: "Pilih paling banyak 2 lembar Energi Dasar {Psychic} dari Kartu Pegangan sendiri, lalu kenakan sesukanya pada Pokémon sendiri." + }, + + cost: ["Colorless"] + }, { + name: { + id: "God Burst" + }, + + effect: { + id: "Jika tidak ada Uxie dan Azelf di Cadangan sendiri, serangan ini gagal." + }, + + damage: 160, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/197.ts b/data-asia/SV/SV8s/197.ts new file mode 100644 index 000000000..6dd334d26 --- /dev/null +++ b/data-asia/SV/SV8s/197.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Phanpy" + }, + + illustrator: "Saboteri", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + id: "Phanpy jauh lebih kuat dibandingkan penampilannya. Putaran belalainya dapat mematahkan lengan manusia yang bersentuhan dengannya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Tandukan Kepala" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/198.ts b/data-asia/SV/SV8s/198.ts new file mode 100644 index 000000000..98dca52f9 --- /dev/null +++ b/data-asia/SV/SV8s/198.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Vibrava" + }, + + illustrator: "toriyufu", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + + description: { + id: "Ia memvibrasikan sayapnya dengan sangat kencang untuk menghasilkan gelombang ultrasonik. Ia melelehkan mangsanya yang pingsan dengan cairan pencernaannya." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Suara Melengking" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, kerusakan akibat serangan yang diterima Pokémon yang menerima serangan ini bertambah sejumlah 50." + }, + + cost: ["Colorless"] + }, { + name: { + id: "Cutter Wind" + }, + + damage: 50, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/199.ts b/data-asia/SV/SV8s/199.ts new file mode 100644 index 000000000..d884f3542 --- /dev/null +++ b/data-asia/SV/SV8s/199.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Clobbopus" + }, + + illustrator: "USGMEN", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + id: "Clobbopus naik ke darat untuk mencari makanan. Penuh rasa ingin tahu sehingga saat melihat sesuatu, Pokémon ini memukulnya terlebih dahulu dengan tentakelnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Gasak Sedikit" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 10." + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/200.ts b/data-asia/SV/SV8s/200.ts new file mode 100644 index 000000000..d5f3526c0 --- /dev/null +++ b/data-asia/SV/SV8s/200.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Alolan Dugtrio" + }, + + illustrator: "Yukihiro Tada", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + description: { + id: "Kecepatannya tidak begitu bagus karena kumis metaliknya berat, tetapi ia memiliki kekuatan untuk menggali tembus bebatuan dasar yang keras." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Three Bingo" + }, + + effect: { + id: "Jika jumlah Kartu Pegangan sendiri bukan 3 lembar, serangan ini gagal." + }, + + damage: 120 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/201.ts b/data-asia/SV/SV8s/201.ts new file mode 100644 index 000000000..453e99443 --- /dev/null +++ b/data-asia/SV/SV8s/201.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Skarmory" + }, + + illustrator: "Takumi Wada", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + description: { + id: "Kabarnya bulu Skarmory yang rontok itu tipis dan tajam sehingga adakalanya digunakan sebagai pedang." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Sayap Baja" + }, + + effect: { + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 30." + }, + + damage: 50, + cost: ["Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/202.ts b/data-asia/SV/SV8s/202.ts new file mode 100644 index 000000000..179091c9a --- /dev/null +++ b/data-asia/SV/SV8s/202.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Flapple" + }, + + illustrator: "Uninori", + category: "Pokemon", + hp: 80, + types: ["Dragon"], + + description: { + id: "Pokémon ini memperbaiki apel dengan cairan tubuhnya. Apel milik Flapple yang kuat dan berpengalaman dalam pertarungan berwarna coklat tanah liat secara menyeluruh." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Sour Spit" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang dimiliki Pokémon Bertarung lawan." + }, + + damage: "20×", + cost: ["Colorless"] + }, { + name: { + id: "Terbang Cepat" + }, + + damage: 70, + cost: ["Grass", "Fire"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/203.ts b/data-asia/SV/SV8s/203.ts new file mode 100644 index 000000000..a10e0f3ef --- /dev/null +++ b/data-asia/SV/SV8s/203.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Appletun" + }, + + illustrator: "MINAMINAMI Take", + category: "Pokemon", + hp: 90, + types: ["Dragon"], + + description: { + id: "Appletun mengusir Lechonk yang datang untuk menjilat madu manis di punggungnya dengan memuntahkan nektar lengket." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Sweet Melt" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat menggunakan serangan." + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Wild Tackle" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 20." + }, + + damage: 130, + cost: ["Grass", "Fire"] + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/204.ts b/data-asia/SV/SV8s/204.ts new file mode 100644 index 000000000..142f4fc23 --- /dev/null +++ b/data-asia/SV/SV8s/204.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Slakoth" + }, + + illustrator: "Mékayu", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + id: "Sosok Slakoth yang bermalas-malasan merangsang rasa malas orang yang melihatnya." + }, + + stage: "Basic", + + attacks: [{ + name: { + id: "Bersantai" + }, + + effect: { + id: "Pulihkan HP Pokémon ini sejumlah 60. Pada giliran sendiri berikutnya, Pokémon ini tidak dapat Mundur." + }, + + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/205.ts b/data-asia/SV/SV8s/205.ts new file mode 100644 index 000000000..464311f46 --- /dev/null +++ b/data-asia/SV/SV8s/205.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Kecleon" + }, + + illustrator: "Mori Yuu", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + id: "Kecleon mengubah warna tubuhnya untuk mencampurkan diri dengan pemandangan. Jika tidak diperhatikan dalam waktu lama, Pokémon ini akan merajuk dan tidak memperlihatkan wujudnya." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + id: "Mahir Bersembunyi" + }, + + effect: { + id: "Saat Pokémon ini menerima kerusakan akibat serangan, pemain melempar koin 1 kali. Jika hasilnya sisi depan, Pokémon ini tidak menerima kerusakan tersebut." + } + }], + + attacks: [{ + name: { + id: "Cambuk Lidah" + }, + + effect: { + id: "Serangan ini memberikan kerusakan sejumlah 30 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/206.ts b/data-asia/SV/SV8s/206.ts new file mode 100644 index 000000000..37bc47c73 --- /dev/null +++ b/data-asia/SV/SV8s/206.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Braviary" + }, + + illustrator: "Gapao", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + description: { + id: "Braviary adalah pendekar langit pemberani yang tidak akan berhenti bertarung demi kawannya meskipun ia akan terluka." + }, + + stage: "Stage1", + + attacks: [{ + name: { + id: "Seret Pergi" + }, + + effect: { + id: "Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, berikan kerusakan sejumlah 40 kepada Pokémon Bertarung yang baru." + }, + + cost: ["Colorless", "Colorless"] + }, { + name: { + id: "Blast Wind" + }, + + damage: 120, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/207.ts b/data-asia/SV/SV8s/207.ts new file mode 100644 index 000000000..e527c6d7c --- /dev/null +++ b/data-asia/SV/SV8s/207.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Durant ex" + }, + + illustrator: "PLANETA Tsuji", + category: "Pokemon", + hp: 190, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Mengikis Tiba-tiba" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Buang 1 kartu dari atas Deck lawan ke Trash." + } + }], + + attacks: [{ + name: { + id: "Revenge Crush" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap lembar Kartu Point yang telah diambil lawan." + }, + + damage: "120+", + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/208.ts b/data-asia/SV/SV8s/208.ts new file mode 100644 index 000000000..fc34d3adf --- /dev/null +++ b/data-asia/SV/SV8s/208.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Scovillain ex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 260, + types: ["Fire"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Tipe Ganda" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena, Pokémon ini menjadi 2 tipe yaitu {Daun} dan {Api}." + } + }], + + attacks: [{ + name: { + id: "Spicy Rage" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 70 untuk tiap Token Kerusakan yang dimiliki Pokémon ini." + }, + + damage: "10+", + cost: ["Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/209.ts b/data-asia/SV/SV8s/209.ts new file mode 100644 index 000000000..981bd243b --- /dev/null +++ b/data-asia/SV/SV8s/209.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Milotic ex" + }, + + illustrator: "N-DESIGN Inc.", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Sisik Gemerlap" + }, + + effect: { + id: "Pokémon ini tidak menerima kerusakan dan efek akibat serangan dari Pokémon Terastal lawan." + } + }], + + attacks: [{ + name: { + id: "Hypnosplash" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur." + }, + + damage: 160, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/210.ts b/data-asia/SV/SV8s/210.ts new file mode 100644 index 000000000..d65b6d0e9 --- /dev/null +++ b/data-asia/SV/SV8s/210.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Kyurem Hitam ex" + }, + + illustrator: "N-DESIGN Inc.", + category: "Pokemon", + hp: 230, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + id: "Ice Age" + }, + + effect: { + id: "Jika Pokémon Bertarung lawan adalah Pokémon {Naga}, ubah kondisi Pokémon tersebut menjadi Lumpuh." + }, + + damage: 90, + cost: ["Colorless", "Colorless", "Colorless"] + }, { + name: { + id: "Black Frost" + }, + + effect: { + id: "Pokémon ini juga menerima kerusakan sejumlah 30." + }, + + damage: 250, + cost: ["Water", "Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/211.ts b/data-asia/SV/SV8s/211.ts new file mode 100644 index 000000000..36109c240 --- /dev/null +++ b/data-asia/SV/SV8s/211.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Pikachu ex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Hati Pejuang" + }, + + effect: { + id: "Saat Pokémon ini KO karena menerima kerusakan akibat serangan ketika HP Pokémon ini masih penuh, Pokémon ini tidak KO dan tetap berada di Arena dengan kondisi sisa HP sejumlah 10." + } + }], + + attacks: [{ + name: { + id: "Topaz Bolt" + }, + + effect: { + id: "Pilih 3 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 300, + cost: ["Grass", "Lightning", "Metal"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/212.ts b/data-asia/SV/SV8s/212.ts new file mode 100644 index 000000000..3838cb1ce --- /dev/null +++ b/data-asia/SV/SV8s/212.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Latias ex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 210, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Skyline" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena, semua Pokémon Basic sendiri menjadi tidak membutuhkan Energi untuk Mundur." + } + }], + + attacks: [{ + name: { + id: "Pisau Eon" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 200, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/213.ts b/data-asia/SV/SV8s/213.ts new file mode 100644 index 000000000..25a5a4ab9 --- /dev/null +++ b/data-asia/SV/SV8s/213.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Palossand ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 280, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + id: "Neraka Pasir" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur." + }, + + damage: 160, + cost: ["Colorless", "Colorless", "Colorless"] + }, { + name: { + id: "Baryte Jail" + }, + + effect: { + id: "Letakkan Token Kerusakan pada semua Pokémon Cadangan lawan hingga sisa HP masing-masing Pokémon tersebut menjadi sejumlah 100." + }, + + cost: ["Water", "Psychic", "Fighting"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/214.ts b/data-asia/SV/SV8s/214.ts new file mode 100644 index 000000000..7b20a78f9 --- /dev/null +++ b/data-asia/SV/SV8s/214.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Flygon ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 310, + types: ["Fighting"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + id: "Storm Back" + }, + + effect: { + id: "Pemain dapat menukar Pokémon ini dengan Pokémon Cadangan." + }, + + damage: 130, + cost: ["Fighting"] + }, { + name: { + id: "Peridot Sonic" + }, + + effect: { + id: "Serangan ini memberikan kerusakan masing-masing sejumlah 100 kepada semua Pokémon {ex}/{V} lawan. Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan dan Resistansi." + }, + + cost: ["Water", "Fighting", "Metal"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/215.ts b/data-asia/SV/SV8s/215.ts new file mode 100644 index 000000000..424493d20 --- /dev/null +++ b/data-asia/SV/SV8s/215.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Hydreigon ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 330, + types: ["Darkness"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + id: "Crush Head" + }, + + effect: { + id: "Buang 3 kartu dari atas Deck lawan ke Trash." + }, + + damage: 200, + cost: ["Darkness", "Colorless"] + }, { + name: { + id: "Obsidian" + }, + + effect: { + id: "Serangan ini juga memberikan kerusakan masing-masing sejumlah 130 kepada 2 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + damage: 130, + cost: ["Psychic", "Darkness", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/216.ts b/data-asia/SV/SV8s/216.ts new file mode 100644 index 000000000..147d64bc1 --- /dev/null +++ b/data-asia/SV/SV8s/216.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Archaludon ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 300, + types: ["Metal"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Konstruksi Aloi" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Pilih paling banyak 2 lembar Energi Dasar {Logam} dari Trash sendiri, lalu kenakan sesukanya pada Pokémon {Logam} sendiri." + } + }], + + attacks: [{ + name: { + id: "Metal Defender" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon ini menjadi tidak memiliki Kelemahan." + }, + + damage: 220, + cost: ["Metal", "Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/217.ts b/data-asia/SV/SV8s/217.ts new file mode 100644 index 000000000..2486fa4ad --- /dev/null +++ b/data-asia/SV/SV8s/217.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Alolan Exeggutor ex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + id: "Tropical Fever" + }, + + effect: { + id: "Pilih sesukanya Energi Dasar dari Kartu Pegangan sendiri, lalu kenakan sesukanya pada Pokémon sendiri." + }, + + damage: 150, + cost: ["Grass", "Water"] + }, { + name: { + id: "Swinging Sphene" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, Pokémon Basic di Arena Bertarung lawan KO. Jika hasilnya sisi belakang, pilih 1 Pokémon Basic di Cadangan lawan, Pokémon tersebut KO." + }, + + cost: ["Grass", "Water", "Fighting"] + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/218.ts b/data-asia/SV/SV8s/218.ts new file mode 100644 index 000000000..c0716953f --- /dev/null +++ b/data-asia/SV/SV8s/218.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Tatsugiri ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 160, + types: ["Dragon"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + id: "Pompa Mendadak" + }, + + effect: { + id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan." + }, + + damage: 100, + cost: ["Fire", "Water"] + }, { + name: { + id: "Cinnabar Lure" + }, + + effect: { + id: "Lihat 10 kartu dari atas Deck sendiri, pilih sesukanya Pokémon di antaranya, lalu masukkan ke Cadangan. Kocok kembali sisa kartu ke Deck." + }, + + cost: ["Fire", "Water", "Darkness"] + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/219.ts b/data-asia/SV/SV8s/219.ts new file mode 100644 index 000000000..264db293c --- /dev/null +++ b/data-asia/SV/SV8s/219.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Slaking ex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 340, + types: ["Colorless"], + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Hobi Bolos" + }, + + effect: { + id: "Jika tidak ada Pokémon {ex}/{V} di Arena lawan, Pokémon ini tidak dapat menggunakan serangan." + } + }], + + attacks: [{ + name: { + id: "Great Swing" + }, + + effect: { + id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 280, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/220.ts b/data-asia/SV/SV8s/220.ts new file mode 100644 index 000000000..7df7d9f74 --- /dev/null +++ b/data-asia/SV/SV8s/220.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Cyclizar ex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 210, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + id: "Break Through" + }, + + effect: { + id: "Serangan ini juga memberikan kerusakan sejumlah 30 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + damage: 130, + cost: ["Colorless", "Colorless", "Colorless"] + }, { + name: { + id: "Zircon Road" + }, + + effect: { + id: "Pemain dapat mengambil 5 kartu dari atas Deck sendiri." + }, + + damage: 180, + cost: ["Grass", "Fire", "Psychic"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/221.ts b/data-asia/SV/SV8s/221.ts new file mode 100644 index 000000000..e33b21b6a --- /dev/null +++ b/data-asia/SV/SV8s/221.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Levigato" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + id: "Lihat 7 kartu dari atas Deck sendiri, pilih Pokémon dan Trainer di antaranya masing-masing 1 lembar, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/222.ts b/data-asia/SV/SV8s/222.ts new file mode 100644 index 000000000..efaba5022 --- /dev/null +++ b/data-asia/SV/SV8s/222.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Peselancar" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + id: "Tukar Pokémon Bertarung sendiri dengan Pokémon Cadangan. Setelah itu, ambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 5 lembar." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/223.ts b/data-asia/SV/SV8s/223.ts new file mode 100644 index 000000000..d3836b1fd --- /dev/null +++ b/data-asia/SV/SV8s/223.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Cyano" + }, + + illustrator: "Akira Komayama", + category: "Trainer", + + effect: { + id: "Pilih paling banyak 3 lembar Pokémon {ex} dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/224.ts b/data-asia/SV/SV8s/224.ts new file mode 100644 index 000000000..b3ee32964 --- /dev/null +++ b/data-asia/SV/SV8s/224.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Kecerdikan Clemont" + }, + + illustrator: "Naoki Saito", + category: "Trainer", + + effect: { + id: "Pulihkan HP semua Pokémon {Listrik} sendiri masing-masing sejumlah 60." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/225.ts b/data-asia/SV/SV8s/225.ts new file mode 100644 index 000000000..565c01963 --- /dev/null +++ b/data-asia/SV/SV8s/225.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Drasna" + }, + + illustrator: "Hideki Ishikawa", + category: "Trainer", + + effect: { + id: "Kocok kembali semua Kartu Pegangan sendiri ke Deck. Setelah itu, lempar koin 1 kali. Jika hasilnya sisi depan, ambil 8 kartu, jika hasilnya sisi belakang, ambil 3 kartu dari atas Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/226.ts b/data-asia/SV/SV8s/226.ts new file mode 100644 index 000000000..a3e368901 --- /dev/null +++ b/data-asia/SV/SV8s/226.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Tatapan Jasmine" + }, + + illustrator: "Taira Akitsu", + category: "Trainer", + + effect: { + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan dari Pokémon lawan yang diterima semua Pokémon sendiri berkurang sejumlah 30. (Termasuk Pokémon yang baru dimasukkan ke Arena.)" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/227.ts b/data-asia/SV/SV8s/227.ts new file mode 100644 index 000000000..5faea11ea --- /dev/null +++ b/data-asia/SV/SV8s/227.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Daya Tarik Lisia" + }, + + illustrator: "En Morikura", + category: "Trainer", + + effect: { + id: "Pilih 1 Pokémon Basic di Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, ubah kondisi Pokémon Bertarung yang baru menjadi Pusing." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/228.ts b/data-asia/SV/SV8s/228.ts new file mode 100644 index 000000000..296b94f5e --- /dev/null +++ b/data-asia/SV/SV8s/228.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Durant ex" + }, + + illustrator: "osare", + category: "Pokemon", + hp: 190, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Mengikis Tiba-tiba" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Buang 1 kartu dari atas Deck lawan ke Trash." + } + }], + + attacks: [{ + name: { + id: "Revenge Crush" + }, + + effect: { + id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap lembar Kartu Point yang telah diambil lawan." + }, + + damage: "120+", + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/229.ts b/data-asia/SV/SV8s/229.ts new file mode 100644 index 000000000..1c6bb786c --- /dev/null +++ b/data-asia/SV/SV8s/229.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Milotic ex" + }, + + illustrator: "Kuroimori", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Sisik Gemerlap" + }, + + effect: { + id: "Pokémon ini tidak menerima kerusakan dan efek akibat serangan dari Pokémon Terastal lawan." + } + }], + + attacks: [{ + name: { + id: "Hypnosplash" + }, + + effect: { + id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur." + }, + + damage: 160, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/230.ts b/data-asia/SV/SV8s/230.ts new file mode 100644 index 000000000..8fd360ca2 --- /dev/null +++ b/data-asia/SV/SV8s/230.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Pikachu ex" + }, + + illustrator: "GIDORA", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Hati Pejuang" + }, + + effect: { + id: "Saat Pokémon ini KO karena menerima kerusakan akibat serangan ketika HP Pokémon ini masih penuh, Pokémon ini tidak KO dan tetap berada di Arena dengan kondisi sisa HP sejumlah 10." + } + }], + + attacks: [{ + name: { + id: "Topaz Bolt" + }, + + effect: { + id: "Pilih 3 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 300, + cost: ["Grass", "Lightning", "Metal"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/231.ts b/data-asia/SV/SV8s/231.ts new file mode 100644 index 000000000..332d9a9cb --- /dev/null +++ b/data-asia/SV/SV8s/231.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Latias ex" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 210, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Skyline" + }, + + effect: { + id: "Selama Pokémon ini ada di Arena, semua Pokémon Basic sendiri menjadi tidak membutuhkan Energi untuk Mundur." + } + }], + + attacks: [{ + name: { + id: "Pisau Eon" + }, + + effect: { + id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan." + }, + + damage: 200, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/232.ts b/data-asia/SV/SV8s/232.ts new file mode 100644 index 000000000..019c1b7ac --- /dev/null +++ b/data-asia/SV/SV8s/232.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Hydreigon ex" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 330, + types: ["Darkness"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + id: "Crush Head" + }, + + effect: { + id: "Buang 3 kartu dari atas Deck lawan ke Trash." + }, + + damage: 200, + cost: ["Darkness", "Colorless"] + }, { + name: { + id: "Obsidian" + }, + + effect: { + id: "Serangan ini juga memberikan kerusakan masing-masing sejumlah 130 kepada 2 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]" + }, + + damage: 130, + cost: ["Psychic", "Darkness", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/233.ts b/data-asia/SV/SV8s/233.ts new file mode 100644 index 000000000..edb1ed007 --- /dev/null +++ b/data-asia/SV/SV8s/233.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Archaludon ex" + }, + + illustrator: "Shinya Mizuno", + category: "Pokemon", + hp: 300, + types: ["Metal"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Konstruksi Aloi" + }, + + effect: { + id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Pilih paling banyak 2 lembar Energi Dasar {Logam} dari Trash sendiri, lalu kenakan sesukanya pada Pokémon {Logam} sendiri." + } + }], + + attacks: [{ + name: { + id: "Metal Defender" + }, + + effect: { + id: "Pada giliran lawan berikutnya, Pokémon ini menjadi tidak memiliki Kelemahan." + }, + + damage: 220, + cost: ["Metal", "Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/234.ts b/data-asia/SV/SV8s/234.ts new file mode 100644 index 000000000..55f76b4e7 --- /dev/null +++ b/data-asia/SV/SV8s/234.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Alolan Exeggutor ex" + }, + + illustrator: "Yuriko Akase", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + id: "Tropical Fever" + }, + + effect: { + id: "Pilih sesukanya Energi Dasar dari Kartu Pegangan sendiri, lalu kenakan sesukanya pada Pokémon sendiri." + }, + + damage: 150, + cost: ["Grass", "Water"] + }, { + name: { + id: "Swinging Sphene" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, Pokémon Basic di Arena Bertarung lawan KO. Jika hasilnya sisi belakang, pilih 1 Pokémon Basic di Cadangan lawan, Pokémon tersebut KO." + }, + + cost: ["Grass", "Water", "Fighting"] + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/235.ts b/data-asia/SV/SV8s/235.ts new file mode 100644 index 000000000..79acb7787 --- /dev/null +++ b/data-asia/SV/SV8s/235.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Levigato" + }, + + illustrator: "DOM", + category: "Trainer", + + effect: { + id: "Lihat 7 kartu dari atas Deck sendiri, pilih Pokémon dan Trainer di antaranya masing-masing 1 lembar, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/236.ts b/data-asia/SV/SV8s/236.ts new file mode 100644 index 000000000..3172ccb61 --- /dev/null +++ b/data-asia/SV/SV8s/236.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Kecerdikan Clemont" + }, + + illustrator: "Shinya Mizuno", + category: "Trainer", + + effect: { + id: "Pulihkan HP semua Pokémon {Listrik} sendiri masing-masing sejumlah 60." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/237.ts b/data-asia/SV/SV8s/237.ts new file mode 100644 index 000000000..381bf818c --- /dev/null +++ b/data-asia/SV/SV8s/237.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Tatapan Jasmine" + }, + + illustrator: "Fujimoto Gold", + category: "Trainer", + + effect: { + id: "Pada giliran lawan berikutnya, kerusakan akibat serangan dari Pokémon lawan yang diterima semua Pokémon sendiri berkurang sejumlah 30. (Termasuk Pokémon yang baru dimasukkan ke Arena.)" + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/238.ts b/data-asia/SV/SV8s/238.ts new file mode 100644 index 000000000..89c7546d8 --- /dev/null +++ b/data-asia/SV/SV8s/238.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Daya Tarik Lisia" + }, + + illustrator: "Nobusawa/Mochipuyo", + category: "Trainer", + + effect: { + id: "Pilih 1 Pokémon Basic di Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, ubah kondisi Pokémon Bertarung yang baru menjadi Pusing." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/239.ts b/data-asia/SV/SV8s/239.ts new file mode 100644 index 000000000..36109c240 --- /dev/null +++ b/data-asia/SV/SV8s/239.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Pikachu ex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + id: "Hati Pejuang" + }, + + effect: { + id: "Saat Pokémon ini KO karena menerima kerusakan akibat serangan ketika HP Pokémon ini masih penuh, Pokémon ini tidak KO dan tetap berada di Arena dengan kondisi sisa HP sejumlah 10." + } + }], + + attacks: [{ + name: { + id: "Topaz Bolt" + }, + + effect: { + id: "Pilih 3 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash." + }, + + damage: 300, + cost: ["Grass", "Lightning", "Metal"] + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/240.ts b/data-asia/SV/SV8s/240.ts new file mode 100644 index 000000000..2486fa4ad --- /dev/null +++ b/data-asia/SV/SV8s/240.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Alolan Exeggutor ex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + id: "Tropical Fever" + }, + + effect: { + id: "Pilih sesukanya Energi Dasar dari Kartu Pegangan sendiri, lalu kenakan sesukanya pada Pokémon sendiri." + }, + + damage: 150, + cost: ["Grass", "Water"] + }, { + name: { + id: "Swinging Sphene" + }, + + effect: { + id: "Lempar koin 1 kali. Jika hasilnya sisi depan, Pokémon Basic di Arena Bertarung lawan KO. Jika hasilnya sisi belakang, pilih 1 Pokémon Basic di Cadangan lawan, Pokémon tersebut KO." + }, + + cost: ["Grass", "Water", "Fighting"] + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/241.ts b/data-asia/SV/SV8s/241.ts new file mode 100644 index 000000000..5116cac95 --- /dev/null +++ b/data-asia/SV/SV8s/241.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Tandu Malam‌" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Pilih 1 lembar Pokémon atau Energi Dasar dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/242.ts b/data-asia/SV/SV8s/242.ts new file mode 100644 index 000000000..00ea2b4b3 --- /dev/null +++ b/data-asia/SV/SV8s/242.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Counter Gain" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + id: "Jika sisa Kartu Point sendiri lebih banyak dari sisa Kartu Point lawan, Energi yang dibutuhkan oleh Pokémon yang mengenakan kartu ini untuk menggunakan serangan berkurang 1 Energi {Bening}." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/243.ts b/data-asia/SV/SV8s/243.ts new file mode 100644 index 000000000..920c5e5ae --- /dev/null +++ b/data-asia/SV/SV8s/243.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Gunung Gravitasi" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + id: "HP maksimal semua Pokémon Stage 2 di Arena kedua pemain masing-masing berkurang sejumlah 30." + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV8s/244.ts b/data-asia/SV/SV8s/244.ts new file mode 100644 index 000000000..f63cb7161 --- /dev/null +++ b/data-asia/SV/SV8s/244.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV8s" + +const card: Card = { + set: Set, + + name: { + id: "Energi Jet" + }, + + category: "Energy", + + effect: { + id: "Kartu ini berlaku sebagai 1 Energi {Bening} selama dikenakan pada Pokémon. Saat kartu ini dikenakan dari Kartu Pegangan pada Pokémon Cadangan, tukar Pokémon yang telah dikenakan kartu ini dengan Pokémon Bertarung." + }, + + energyType: "Special", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9.ts b/data-asia/SV/SV9.ts new file mode 100644 index 000000000..ab2d145de --- /dev/null +++ b/data-asia/SV/SV9.ts @@ -0,0 +1,24 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SV9', + name: { + ja: 'バトルパートナーズ', + "zh-cn": '對戰搭檔', + "zh-tw": '對戰搭檔' + }, + + serie: serie, + + cardCount: { + official: 100 + }, + releaseDate: { + ja: '2025-01-24', + "zh-cn": '2025-02-07', + "zh-tw": '2025-02-07' + } +} + +export default set diff --git a/data-asia/SV/SV9/001.ts b/data-asia/SV/SV9/001.ts new file mode 100644 index 000000000..0cb52e7a8 --- /dev/null +++ b/data-asia/SV/SV9/001.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "キャタピー", + 'zh-tw': "綠毛蟲", + 'zh-cn': "綠毛蟲" + }, + + illustrator: "Shimaris Yukichi", + rarity: "Common", + category: "Pokemon", + dexId: [10], + hp: 50, + types: ["Grass"], + + description: { + ja: "脚は 短いが 吸盤に なっているので 坂でも 壁でも くたびれることなく 進んでいく。", + 'zh-tw': "別看牠的腳很短, 因為是吸盤,所以無論是 斜坡還是牆壁都能輕鬆前進。", + 'zh-cn': "別看牠的腳很短, 因為是吸盤,所以無論是 斜坡還是牆壁都能輕鬆前進。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "むしくい", + 'zh-tw': "蟲咬", + 'zh-cn': "蟲咬" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/002.ts b/data-asia/SV/SV9/002.ts new file mode 100644 index 000000000..36ec7aaef --- /dev/null +++ b/data-asia/SV/SV9/002.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "トランセル", + 'zh-tw': "鐵甲蛹", + 'zh-cn': "鐵甲蛹" + }, + + illustrator: "OKUBO", + rarity: "Common", + category: "Pokemon", + dexId: [11], + hp: 90, + types: ["Grass"], + + description: { + ja: "硬い 殻に 包まれているが 中身は 軟らかいので 強い 攻撃には 耐えられない。", + 'zh-tw': "雖然有堅硬的外殼, 但因為殼裡的身體很軟, 所以無法抵抗強力的攻擊。", + 'zh-cn': "雖然有堅硬的外殼, 但因為殼裡的身體很軟, 所以無法抵抗強力的攻擊。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "かたくなる", + 'zh-tw': "變硬", + 'zh-cn': "變硬" + }, + + effect: { + ja: "次の相手の番、このポケモンは「60」以下のワザのダメージを受けない。", + 'zh-tw': "在下個對手的回合,這隻寶可夢不會受到「60」以下的招式的傷害。", + 'zh-cn': "在下個對手的回合,這隻寶可夢不會受到「60」以下的招式的傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/003.ts b/data-asia/SV/SV9/003.ts new file mode 100644 index 000000000..0ce8547e4 --- /dev/null +++ b/data-asia/SV/SV9/003.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "バタフリー", + 'zh-tw': "巴大蝶", + 'zh-cn': "巴大蝶" + }, + + illustrator: "satoma", + rarity: "Uncommon", + category: "Pokemon", + dexId: [12], + hp: 120, + types: ["Grass"], + + description: { + ja: "毎日 ミツを 集めまわる。 脚の 産毛に ミツを 塗りこんで 巣に 持ち帰る 習性をもつ。", + 'zh-tw': "每天都忙著採集花蜜。 習慣在腿部的細毛上塗滿花蜜, 然後帶回巢穴裡。", + 'zh-cn': "每天都忙著採集花蜜。 習慣在腿部的細毛上塗滿花蜜, 然後帶回巢穴裡。" + }, + + stage: "Stage2", + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "りんぷんハリケーン", + 'zh-tw': "鱗粉颶風", + 'zh-cn': "鱗粉颶風" + }, + + damage: "60×", + + effect: { + ja: "コインを4回投げ、オモテの数×60ダメージ。オモテが2回以上なら、相手のバトルポケモンをマヒにする。", + 'zh-tw': "擲4次硬幣,造成正面出現的次數×60點傷害。若出現2次以上正面,則將對手的戰鬥寶可夢【麻痺】。", + 'zh-cn': "擲4次硬幣,造成正面出現的次數×60點傷害。若出現2次以上正面,則將對手的戰鬥寶可夢【麻痺】。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/004.ts b/data-asia/SV/SV9/004.ts new file mode 100644 index 000000000..146168a88 --- /dev/null +++ b/data-asia/SV/SV9/004.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "パラス", + 'zh-tw': "派拉斯", + 'zh-cn': "派拉斯" + }, + + illustrator: "Ayako Ozaki", + rarity: "Common", + category: "Pokemon", + dexId: [46], + hp: 70, + types: ["Grass"], + + description: { + ja: "穴を 掘り 木の根っこから 栄養を 取るが ほとんどは 背中の キノコに 奪われる。", + 'zh-tw': "會挖洞從樹根處獲取營養, 不過其中的絕大部分 都會被背上的蘑菇奪走。", + 'zh-cn': "會挖洞從樹根處獲取營養, 不過其中的絕大部分 都會被背上的蘑菇奪走。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + ja: "きゅうけつ", + 'zh-tw': "吸血", + 'zh-cn': "吸血" + }, + + damage: 10, + + effect: { + ja: "相手のバトルポケモンに与えたダメージぶん、このポケモンのHPを回復する。", + 'zh-tw': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。", + 'zh-cn': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/005.ts b/data-asia/SV/SV9/005.ts new file mode 100644 index 000000000..f4831f77d --- /dev/null +++ b/data-asia/SV/SV9/005.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "パラセクト", + 'zh-tw': "派拉斯特", + 'zh-cn': "派拉斯特" + }, + + illustrator: "Tetsu Kayama", + rarity: "Common", + category: "Pokemon", + dexId: [47], + hp: 120, + types: ["Grass"], + + description: { + ja: "背中の キノコが 育つほど ばらまかれる キノコの 胞子の 効果は 強力になる。", + 'zh-tw': "背上的蘑菇長得越大, 散播出來的蘑菇孢子 效果就越強。", + 'zh-cn': "背上的蘑菇長得越大, 散播出來的蘑菇孢子 效果就越強。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "キノコのほうし", + 'zh-tw': "蘑菇孢子", + 'zh-cn': "蘑菇孢子" + }, + + effect: { + ja: "相手のバトルポケモンをねむりにする。", + 'zh-tw': "將對手的戰鬥寶可夢【睡眠】。", + 'zh-cn': "將對手的戰鬥寶可夢【睡眠】。" + } + }, { + cost: ["Grass", "Colorless"], + + name: { + ja: "シザースイング", + 'zh-tw': "橫掃剪", + 'zh-cn': "橫掃剪" + }, + + damage: "60+", + + effect: { + ja: "コインを2回投げ、オモテの数×30ダメージ追加。", + 'zh-tw': "擲2次硬幣,增加正面出現的次數×30點傷害。", + 'zh-cn': "擲2次硬幣,增加正面出現的次數×30點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/006.ts b/data-asia/SV/SV9/006.ts new file mode 100644 index 000000000..30b452dd3 --- /dev/null +++ b/data-asia/SV/SV9/006.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "マラカッチ", + 'zh-tw': "沙鈴仙人掌", + 'zh-cn': "沙鈴仙人掌" + }, + + illustrator: "Dsuke", + rarity: "Uncommon", + category: "Pokemon", + dexId: [556], + hp: 110, + types: ["Grass"], + + description: { + ja: "1年に 一度 種を まく。 花の 種は 栄養満点で 砂漠の 貴重な 食料。", + 'zh-tw': "一年散播一次種子。 花的種子營養十足, 是沙漠中貴重的食糧。", + 'zh-cn': "一年散播一次種子。 花的種子營養十足, 是沙漠中貴重的食糧。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "さくれつばり", + 'zh-tw': "炸裂針", + 'zh-cn': "炸裂針" + }, + + effect: { + ja: "このポケモンが、バトル場で相手のポケモンからワザのダメージを受けてきぜつしたとき、ワザを使ったポケモンにダメカンを6個のせる。", + 'zh-tw': "這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害而【昏厥】時,在使用招式的寶可夢身上放置6個傷害指示物。", + 'zh-cn': "這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害而【昏厥】時,在使用招式的寶可夢身上放置6個傷害指示物。" + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "おいつめる", + 'zh-tw': "窮追不捨", + 'zh-cn': "窮追不捨" + }, + + damage: 20, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/007.ts b/data-asia/SV/SV9/007.ts new file mode 100644 index 000000000..f62e5c1bb --- /dev/null +++ b/data-asia/SV/SV9/007.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "カブルモ", + 'zh-tw': "蓋蓋蟲", + 'zh-cn': "蓋蓋蟲" + }, + + illustrator: "Yuka Morii", + rarity: "Common", + category: "Pokemon", + dexId: [588], + hp: 60, + types: ["Grass"], + + description: { + ja: "口から 吐き出す 液体で チョボマキの 殻を 溶かす。 中身 だけを いただくのだ。", + 'zh-tw': "用嘴裡吐出的液體 來融化小嘴蝸的殼, 只會去吃裡面的身體。", + 'zh-cn': "用嘴裡吐出的液體 來融化小嘴蝸的殼, 只會去吃裡面的身體。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "つきとばす", + 'zh-tw': "推倒", + 'zh-cn': "推倒" + }, + + damage: 10, + + effect: { + ja: "相手のバトルポケモンをベンチポケモンと入れ替える。[バトル場に出すポケモンは相手が選ぶ。]", + 'zh-tw': "將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]", + 'zh-cn': "將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/008.ts b/data-asia/SV/SV9/008.ts new file mode 100644 index 000000000..134c57b00 --- /dev/null +++ b/data-asia/SV/SV9/008.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "チョボマキ", + 'zh-tw': "小嘴蝸", + 'zh-cn': "小嘴蝸" + }, + + illustrator: "Toshinao Aoki", + rarity: "Common", + category: "Pokemon", + dexId: [616], + hp: 70, + types: ["Grass"], + + description: { + ja: "電気 エネルギーに 反応する 不思議な 体質。 カブルモと ともに いると なぜか 進化する。", + 'zh-tw': "有著會對電能產生反應 的奇異體質。不知為何, 和蓋蓋蟲待在一起就會進化。", + 'zh-cn': "有著會對電能產生反應 的奇異體質。不知為何, 和蓋蓋蟲待在一起就會進化。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + ja: "シェルヒット", + 'zh-tw': "硬殼一擊", + 'zh-cn': "硬殼一擊" + }, + + damage: 20, + + effect: { + ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージを受けない。", + 'zh-tw': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害。", + 'zh-cn': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/009.ts b/data-asia/SV/SV9/009.ts new file mode 100644 index 000000000..ca2ff78fe --- /dev/null +++ b/data-asia/SV/SV9/009.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "アギルダー", + 'zh-tw': "敏捷蟲", + 'zh-cn': "敏捷蟲" + }, + + illustrator: "Kazumasa Yasukuni", + rarity: "Uncommon", + category: "Pokemon", + dexId: [617], + hp: 100, + types: ["Grass"], + + description: { + ja: "殻を 脱ぎ捨て 身軽に なった。 帯状の 粘膜を 体に 巻きつけ 乾燥を 防ぐ。", + 'zh-tw': "脫殼後變得更輕巧了。 為了防止乾燥,會將 帶狀的黏膜裹在身上。", + 'zh-cn': "脫殼後變得更輕巧了。 為了防止乾燥,會將 帶狀的黏膜裹在身上。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + ja: "うつせみポイズン", + 'zh-tw': "褪殼猛毒", + 'zh-cn': "褪殼猛毒" + }, + + damage: 70, + + effect: { + ja: "相手のバトルポケモンをどくとこんらんにする。このポケモンをベンチポケモンと入れ替える。", + 'zh-tw': "將對手的戰鬥寶可夢【中毒】與【混亂】。將這隻寶可夢與備戰寶可夢互換。", + 'zh-cn': "將對手的戰鬥寶可夢【中毒】與【混亂】。將這隻寶可夢與備戰寶可夢互換。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/010.ts b/data-asia/SV/SV9/010.ts new file mode 100644 index 000000000..8c3a57cd2 --- /dev/null +++ b/data-asia/SV/SV9/010.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ニャオハ", + 'zh-tw': "新葉喵", + 'zh-cn': "新葉喵" + }, + + illustrator: "Mina Nakai", + rarity: "Common", + category: "Pokemon", + dexId: [906], + hp: 60, + types: ["Grass"], + + description: { + ja: "フワフワの 体毛は 植物に 近い 成分。 こまめに 顔を 洗って 乾燥を 防ぐ。", + 'zh-tw': "毛茸茸的體毛有著 近似於植物的成分。 會勤快地洗臉以防止乾燥。", + 'zh-cn': "毛茸茸的體毛有著 近似於植物的成分。 會勤快地洗臉以防止乾燥。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ふみまくる", + 'zh-tw': "狂踩", + 'zh-cn': "狂踩" + }, + + damage: "10×", + + effect: { + ja: "コインを3回投げ、オモテの数×10ダメージ。", + 'zh-tw': "擲3次硬幣,造成正面出現的次數×10點傷害。", + 'zh-cn': "擲3次硬幣,造成正面出現的次數×10點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/011.ts b/data-asia/SV/SV9/011.ts new file mode 100644 index 000000000..7c00d01c1 --- /dev/null +++ b/data-asia/SV/SV9/011.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ニャローテ", + 'zh-tw': "蒂蕾喵", + 'zh-cn': "蒂蕾喵" + }, + + illustrator: "Felicia Chen", + rarity: "Common", + category: "Pokemon", + dexId: [907], + hp: 90, + types: ["Grass"], + + description: { + ja: "長い 体毛の下に 隠した ツタを 器用に 操り 硬い つぼみを 敵に 叩きつける。", + 'zh-tw': "會靈巧操控長長的體毛下 隱藏的藤蔓,將堅硬的 花苞甩向敵人猛打。", + 'zh-cn': "會靈巧操控長長的體毛下 隱藏的藤蔓,將堅硬的 花苞甩向敵人猛打。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "マジカルリーフ", + 'zh-tw': "魔法葉", + 'zh-cn': "魔法葉" + }, + + damage: "30+", + + effect: { + ja: "コインを1回投げオモテなら、30ダメージ追加し、このポケモンのHPを「30」回復する。", + 'zh-tw': "擲1次硬幣若為正面,則增加30點傷害,並將這隻寶可夢恢復「30」HP。", + 'zh-cn': "擲1次硬幣若為正面,則增加30點傷害,並將這隻寶可夢恢復「30」HP。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/012.ts b/data-asia/SV/SV9/012.ts new file mode 100644 index 000000000..ffa5eff47 --- /dev/null +++ b/data-asia/SV/SV9/012.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "マスカーニャ", + 'zh-tw': "魔幻假面喵", + 'zh-cn': "魔幻假面喵" + }, + + illustrator: "kodama", + rarity: "Rare", + category: "Pokemon", + dexId: [908], + hp: 160, + types: ["Grass"], + + description: { + ja: "浮いているように 見える 花は マント裏の 毛の 反射で 茎を カモフラージュしているのだ。", + 'zh-tw': "看似浮在空中的花, 是牠利用斗蓬內側的毛的反射 將莖隱藏後呈現出的假象。", + 'zh-cn': "看似浮在空中的花, 是牠利用斗蓬內側的毛的反射 將莖隱藏後呈現出的假象。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + ja: "ショータイム", + 'zh-tw': "表演時間", + 'zh-cn': "表演時間" + }, + + effect: { + ja: "このポケモンがベンチにいるなら、自分の番に1回使える。このポケモンをバトルポケモンと入れ替える。", + 'zh-tw': "若這隻寶可夢在備戰區,則在自己的回合時可使用1次。將這隻寶可夢與戰鬥寶可夢互換。", + 'zh-cn': "若這隻寶可夢在備戰區,則在自己的回合時可使用1次。將這隻寶可夢與戰鬥寶可夢互換。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ライジングブルーム", + 'zh-tw': "上升綻放", + 'zh-cn': "上升綻放" + }, + + damage: "90+", + + effect: { + ja: "相手のバトルポケモンが「ポケモンex」なら、90ダメージ追加。", + 'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】」,則增加90點傷害。", + 'zh-cn': "若對手的戰鬥寶可夢為「寶可夢【ex】」,則增加90點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/013.ts b/data-asia/SV/SV9/013.ts new file mode 100644 index 000000000..6dc0bb270 --- /dev/null +++ b/data-asia/SV/SV9/013.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ブーバー", + 'zh-tw': "鴨嘴火獸", + 'zh-cn': "鴨嘴火獸" + }, + + illustrator: "Naoyo Kimura", + rarity: "Common", + category: "Pokemon", + dexId: [126], + hp: 80, + types: ["Fire"], + + description: { + ja: "火山の 火口近くで 見つかった。 口から 炎を 吐く。 体温は 1200度もある。", + 'zh-tw': "在火山口附近被發現。 會從口中吐出火焰。 體溫高達1200度。", + 'zh-cn': "在火山口附近被發現。 會從口中吐出火焰。 體溫高達1200度。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + ja: "やきこがす", + 'zh-tw': "灼燒", + 'zh-cn': "灼燒" + }, + + damage: 30, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトルポケモンをやけどにする。", + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【灼傷】。", + 'zh-cn': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【灼傷】。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/014.ts b/data-asia/SV/SV9/014.ts new file mode 100644 index 000000000..f60926baf --- /dev/null +++ b/data-asia/SV/SV9/014.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ブーバーン", + 'zh-tw': "鴨嘴炎獸", + 'zh-cn': "鴨嘴炎獸" + }, + + illustrator: "Tonji Matsuno", + rarity: "Rare", + category: "Pokemon", + dexId: [467], + hp: 130, + types: ["Fire"], + + description: { + ja: "腕の先から 摂氏2000度の 火の玉を 撃ちだすとき 体は 熱のため ほのかに 白くなる。", + 'zh-tw': "從手腕前端射出 攝氏2000度的火球時, 身體會因高溫而微微泛白。", + 'zh-cn': "從手腕前端射出 攝氏2000度的火球時, 身體會因高溫而微微泛白。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "マグマのはどう", + 'zh-tw': "熔岩波動", + 'zh-cn': "熔岩波動" + }, + + effect: { + ja: "このポケモンがいるかぎり、相手のやけどのポケモンは、やけどでのせるダメカンの数が3個多くなる。", + 'zh-tw': "只要這隻寶可夢在場上,對手的【灼傷】的寶可夢因【灼傷】而放置的傷害指示物的數量增加3個。", + 'zh-cn': "只要這隻寶可夢在場上,對手的【灼傷】的寶可夢因【灼傷】而放置的傷害指示物的數量增加3個。" + } + }], + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "やきこがす", + 'zh-tw': "灼燒", + 'zh-cn': "灼燒" + }, + + damage: 90, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトルポケモンをやけどにする。", + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【灼傷】。", + 'zh-cn': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【灼傷】。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/015.ts b/data-asia/SV/SV9/015.ts new file mode 100644 index 000000000..7d76cfc97 --- /dev/null +++ b/data-asia/SV/SV9/015.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのダルマッカ", + 'zh-tw': "N的火紅不倒翁", + 'zh-cn': "N的火紅不倒翁" + }, + + illustrator: "Gemi", + rarity: "Common", + category: "Pokemon", + dexId: [554], + hp: 80, + types: ["Fire"], + + description: { + ja: "寝ているときは 押しても 引いても けっして 倒れない。 縁起ものの モチーフとして 人気が 高い。", + 'zh-tw': "在牠睡覺的時候, 無論是推是拉,牠都不會倒下。 因為象徵著吉利而大受歡迎。", + 'zh-cn': "在牠睡覺的時候, 無論是推是拉,牠都不會倒下。 因為象徵著吉利而大受歡迎。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ころがりタックル", + 'zh-tw': "滾動衝撞", + 'zh-cn': "滾動衝撞" + }, + + damage: 20 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "ほのお", + 'zh-tw': "火焰", + 'zh-cn': "火焰" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/016.ts b/data-asia/SV/SV9/016.ts new file mode 100644 index 000000000..c17459940 --- /dev/null +++ b/data-asia/SV/SV9/016.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのヒヒダルマ", + 'zh-tw': "N的達摩狒狒", + 'zh-cn': "N的達摩狒狒" + }, + + illustrator: "nagimiso", + rarity: "Uncommon", + category: "Pokemon", + dexId: [555], + hp: 140, + types: ["Fire"], + + description: { + ja: "体内の 炎が 燃え盛るほど パワーが 高まる。 その 温度は 1400度を 超える ことも。", + 'zh-tw': "體內的火焰燃得越旺, 力量就越大。火焰的溫度 有時甚至能超過1400度。", + 'zh-cn': "體內的火焰燃得越旺, 力量就越大。火焰的溫度 有時甚至能超過1400度。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "バックドラフト", + 'zh-tw': "復燃", + 'zh-cn': "復燃" + }, + + damage: "30×", + + effect: { + ja: "相手のトラッシュにある基本エネルギーの枚数×30ダメージ。", + 'zh-tw': "造成對手的棄牌區的基本能量卡的張數×30點傷害。", + 'zh-cn': "造成對手的棄牌區的基本能量卡的張數×30點傷害。" + } + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "ひだるまキャノン", + 'zh-tw': "火人加農炮", + 'zh-cn': "火人加農炮" + }, + + damage: 90, + + effect: { + ja: "このポケモンについているエネルギーをすべてトラッシュし、相手のベンチポケモン1匹にも、90ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + 'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄,對手的1隻備戰寶可夢也受到90點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "將這隻寶可夢身上附加的能量卡全部丟棄,對手的1隻備戰寶可夢也受到90點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/017.ts b/data-asia/SV/SV9/017.ts new file mode 100644 index 000000000..5b2faeb58 --- /dev/null +++ b/data-asia/SV/SV9/017.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ボルケニオンex", + 'zh-tw': "波爾凱尼恩ex", + 'zh-cn': "波爾凱尼恩ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 220, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "やけつくじょうき", + 'zh-tw': "燒灼蒸汽", + 'zh-cn': "燒灼蒸汽" + }, + + effect: { + ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。相手のバトルポケモンをやけどにする。", + 'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將對手的戰鬥寶可夢【灼傷】。", + 'zh-cn': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將對手的戰鬥寶可夢【灼傷】。" + } + }], + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "ヒートサイクロン", + 'zh-tw': "高溫旋風", + 'zh-cn': "高溫旋風" + }, + + damage: 160, + + effect: { + ja: "このポケモンについているエネルギーを1個選び、ベンチポケモンにつけ替える。", + 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,改附於備戰寶可夢身上。", + 'zh-cn': "選擇1個這隻寶可夢身上附加的能量,改附於備戰寶可夢身上。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/018.ts b/data-asia/SV/SV9/018.ts new file mode 100644 index 000000000..844853226 --- /dev/null +++ b/data-asia/SV/SV9/018.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "フリーザー", + 'zh-tw': "急凍鳥", + 'zh-cn': "急凍鳥" + }, + + illustrator: "Takumi Wada", + rarity: "Uncommon", + category: "Pokemon", + dexId: [144], + hp: 110, + types: ["Water"], + + description: { + ja: "氷を 自在に 操る 力を もつ。 永久凍土の 雪山に 棲んでいるという。", + 'zh-tw': "擁有能自在操縱冰的 能力。據說是棲息在 永凍之地的雪山中。", + 'zh-cn': "擁有能自在操縱冰的 能力。據說是棲息在 永凍之地的雪山中。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "つめたいはばたき", + 'zh-tw': "冰冷羽擊", + 'zh-cn': "冰冷羽擊" + }, + + effect: { + ja: "自分の山札から「基本エネルギー」を2枚まで選び、このポケモンにつける。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇最多2張「基本【水】能量」卡,附於這隻寶可夢身上。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張「基本【水】能量」卡,附於這隻寶可夢身上。並且重洗牌庫。" + } + }, { + cost: ["Water", "Water", "Colorless"], + + name: { + ja: "アイスブラスト", + 'zh-tw': "冰之爆破", + 'zh-cn': "冰之爆破" + }, + + damage: 110 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/019.ts b/data-asia/SV/SV9/019.ts new file mode 100644 index 000000000..e21ce0c43 --- /dev/null +++ b/data-asia/SV/SV9/019.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "テッポウオ", + 'zh-tw': "鐵炮魚", + 'zh-cn': "鐵炮魚" + }, + + illustrator: "Minahamu", + rarity: "Common", + category: "Pokemon", + dexId: [223], + hp: 60, + types: ["Water"], + + description: { + ja: "吸盤の ように 変化した 背びれで マンタインに くっつき 食べ残しを わけてもらっている。", + 'zh-tw': "會用變成吸盤狀的背鰭 吸附在巨翅飛魚身上, 吃牠平常吃剩下的東西。", + 'zh-cn': "會用變成吸盤狀的背鰭 吸附在巨翅飛魚身上, 吃牠平常吃剩下的東西。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "じたばた", + 'zh-tw': "抓狂", + 'zh-cn': "抓狂" + }, + + damage: "10×", + + effect: { + ja: "このポケモンにのっているダメカンの数×10ダメージ。", + 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×10點傷害。", + 'zh-cn': "造成這隻寶可夢身上放置的傷害指示物的數量×10點傷害。" + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + ja: "みずかけ", + 'zh-tw': "潑水", + 'zh-cn': "潑水" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/020.ts b/data-asia/SV/SV9/020.ts new file mode 100644 index 000000000..cebb28086 --- /dev/null +++ b/data-asia/SV/SV9/020.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "オクタン", + 'zh-tw': "章魚桶", + 'zh-cn': "章魚桶" + }, + + illustrator: "Toshinao Aoki", + rarity: "Uncommon", + category: "Pokemon", + dexId: [224], + hp: 110, + types: ["Water"], + + description: { + ja: "頑丈な 石頭。 吸盤つきの 脚を 絡ませ ひたすら 頭で 打ちすえる。", + 'zh-tw': "有著堅硬結實的腦袋。 會用帶有吸盤的腳纏住對手, 然後不停地用頭猛撞。", + 'zh-cn': "有著堅硬結實的腦袋。 會用帶有吸盤的腳纏住對手, 然後不停地用頭猛撞。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "アクアウォッシャー", + 'zh-tw': "水流清洗", + 'zh-cn': "水流清洗" + }, + + damage: 20, + + effect: { + ja: "のぞむなら、相手のバトルポケモンについているエネルギーを1個選び、相手の手札にもどす。", + 'zh-tw': "若希望,選擇1個對手的戰鬥寶可夢身上附加的能量,放回對手的手牌。", + 'zh-cn': "若希望,選擇1個對手的戰鬥寶可夢身上附加的能量,放回對手的手牌。" + } + }, { + cost: ["Water", "Colorless", "Colorless"], + + name: { + ja: "たこなぐり", + 'zh-tw': "狂擊", + 'zh-cn': "狂擊" + }, + + damage: "90×", + + effect: { + ja: "ウラが出るまでコインを投げ、オモテの数×90ダメージ。", + 'zh-tw': "擲硬幣直到出現反面,造成正面出現的次數×90點傷害。", + 'zh-cn': "擲硬幣直到出現反面,造成正面出現的次數×90點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/021.ts b/data-asia/SV/SV9/021.ts new file mode 100644 index 000000000..6a6b321f0 --- /dev/null +++ b/data-asia/SV/SV9/021.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ハスボー", + 'zh-tw': "蓮葉童子", + 'zh-cn': "蓮葉童子" + }, + + illustrator: "Ayako Ozaki", + rarity: "Common", + category: "Pokemon", + dexId: [270], + hp: 60, + types: ["Water"], + + description: { + ja: "頭の 葉っぱは 汚れを 弾く 性質。 泥だらけの ポケモンを 乗せても 葉っぱは きれいなままだ。", + 'zh-tw': "頭上的葉子具有防污的性質。 即使載了滿身是泥的寶可夢, 葉子也能常保乾淨。", + 'zh-cn': "頭上的葉子具有防污的性質。 即使載了滿身是泥的寶可夢, 葉子也能常保乾淨。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "みずでっぽう", + 'zh-tw': "水槍", + 'zh-cn': "水槍" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/022.ts b/data-asia/SV/SV9/022.ts new file mode 100644 index 000000000..6d955b072 --- /dev/null +++ b/data-asia/SV/SV9/022.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ハスブレロ", + 'zh-tw': "蓮帽小童", + 'zh-cn': "蓮帽小童" + }, + + illustrator: "Mousho", + rarity: "Common", + category: "Pokemon", + dexId: [271], + hp: 90, + types: ["Water"], + + description: { + ja: "キタカミの 古い 伝承には いたずら好きの 子供が ポケモンに 生まれ変わったと 記されている。", + 'zh-tw': "北上的古老傳說記載著 牠是喜歡惡作劇的小孩 轉生而來的寶可夢。", + 'zh-cn': "北上的古老傳說記載著 牠是喜歡惡作劇的小孩 轉生而來的寶可夢。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Water", "Water"], + + name: { + ja: "アクアスラッシュ", + 'zh-tw': "水流斬", + 'zh-cn': "水流斬" + }, + + damage: 70, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/023.ts b/data-asia/SV/SV9/023.ts new file mode 100644 index 000000000..abbbd8fa3 --- /dev/null +++ b/data-asia/SV/SV9/023.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ルンパッパ", + 'zh-tw': "樂天河童", + 'zh-cn': "樂天河童" + }, + + illustrator: "Jerky", + rarity: "Uncommon", + category: "Pokemon", + dexId: [272], + hp: 140, + types: ["Water"], + + description: { + ja: "陽気な リズムの 音波を 受けると エネルギーを 作りだす 仕組みを 全身に 持っている。", + 'zh-tw': "全身都有著獨特的結構, 讓牠一接收歡樂節奏的 音波就會製造出能量。", + 'zh-cn': "全身都有著獨特的結構, 讓牠一接收歡樂節奏的 音波就會製造出能量。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + ja: "バイタルサンバ", + 'zh-tw': "生機森巴", + 'zh-cn': "生機森巴" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分の場のポケモン全員の最大HPは、それぞれ「+40」される。この効果は、この特性を持つポケモンが何匹いても、重ならない。", + 'zh-tw': "只要這隻寶可夢在場上,自己場上所有寶可夢的最大HP各「+40」。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。", + 'zh-cn': "只要這隻寶可夢在場上,自己場上所有寶可夢的最大HP各「+40」。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。" + } + }], + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + ja: "ハイドロスプラッシュ", + 'zh-tw': "水炮濺射", + 'zh-cn': "水炮濺射" + }, + + damage: 130 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/024.ts b/data-asia/SV/SV9/024.ts new file mode 100644 index 000000000..b3aac3d48 --- /dev/null +++ b/data-asia/SV/SV9/024.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホエルコ", + 'zh-tw': "吼吼鯨", + 'zh-cn': "吼吼鯨" + }, + + illustrator: "Shinya Mizuno", + rarity: "Common", + category: "Pokemon", + dexId: [320], + hp: 130, + types: ["Water"], + + description: { + ja: "海水を たくさん 飲みこむと 体が ボールの ように 弾む。 毎日 1トンの エサを 食べる。", + 'zh-tw': "喝入大量的海水之後, 身體會鼓成像球一樣。 每天要吃掉1噸的食物。", + 'zh-cn': "喝入大量的海水之後, 身體會鼓成像球一樣。 每天要吃掉1噸的食物。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "なみのり", + 'zh-tw': "衝浪", + 'zh-cn': "衝浪" + }, + + damage: 60 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/025.ts b/data-asia/SV/SV9/025.ts new file mode 100644 index 000000000..be13eada7 --- /dev/null +++ b/data-asia/SV/SV9/025.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホエルオー", + 'zh-tw': "吼鯨王", + 'zh-cn': "吼鯨王" + }, + + illustrator: "Takeshi Nakamura", + rarity: "Rare", + category: "Pokemon", + dexId: [321], + hp: 240, + types: ["Water"], + + description: { + ja: "とにかく どでかいので 人気。 ホエルオーウォッチングは 各地で 人気の 観光プラン なのだ。", + 'zh-tw': "因為無比巨大而受歡迎。 觀看吼鯨王的生態在各地都是 非常受歡迎的遊覽項目。", + 'zh-cn': "因為無比巨大而受歡迎。 觀看吼鯨王的生態在各地都是 非常受歡迎的遊覽項目。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "ハイドロポンプ", + 'zh-tw': "水炮", + 'zh-cn': "水炮" + }, + + damage: "10+", + + effect: { + ja: "このポケモンについているエネルギーの数×50ダメージ追加。", + 'zh-tw': "增加這隻寶可夢身上附加的【水】能量的數量×50點傷害。", + 'zh-cn': "增加這隻寶可夢身上附加的【水】能量的數量×50點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 4, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/026.ts b/data-asia/SV/SV9/026.ts new file mode 100644 index 000000000..f78ce287e --- /dev/null +++ b/data-asia/SV/SV9/026.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモのビリリダマ", + 'zh-tw': "奇樹的霹靂電球", + 'zh-cn': "奇樹的霹靂電球" + }, + + illustrator: "Kazumasa Yasukuni", + rarity: "Common", + category: "Pokemon", + dexId: [100], + hp: 70, + types: ["Lightning"], + + description: { + ja: "転がって 移動するので 地面が デコボコだと ショックで 爆発してしまう。", + 'zh-tw': "靠著翻滾身體來移動, 如果地面凹凸不平, 就會受到衝擊而爆炸。", + 'zh-cn': "靠著翻滾身體來移動, 如果地面凹凸不平, 就會受到衝擊而爆炸。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "チェインボルト", + 'zh-tw': "連鎖伏特", + 'zh-cn': "連鎖伏特" + }, + + damage: "20+", + + effect: { + ja: "自分の「ナンジャモのポケモン」全員についているエネルギーの数×20ダメージ追加。", + 'zh-tw': "增加自己的所有「奇樹的寶可夢」身上附加的【雷】能量的數量×20點傷害。", + 'zh-cn': "增加自己的所有「奇樹的寶可夢」身上附加的【雷】能量的數量×20點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/027.ts b/data-asia/SV/SV9/027.ts new file mode 100644 index 000000000..53daa1922 --- /dev/null +++ b/data-asia/SV/SV9/027.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモのマルマイン", + 'zh-tw': "奇樹的頑皮雷彈", + 'zh-cn': "奇樹的頑皮雷彈" + }, + + illustrator: "GOTO minori", + rarity: "Uncommon", + category: "Pokemon", + dexId: [101], + hp: 100, + types: ["Lightning"], + + description: { + ja: "電気エネルギーを 溜めこむほど 高速で 動けるようになるが そのぶん 爆発 しやすい。", + 'zh-tw': "雖然儲存的電能越多, 移動的速度也會變得越快, 但同時也會變得更容易爆炸。", + 'zh-cn': "雖然儲存的電能越多, 移動的速度也會變得越快, 但同時也會變得更容易爆炸。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Lightning", "Lightning"], + + name: { + ja: "どきどきボム", + 'zh-tw': "怦怦炸彈", + 'zh-cn': "怦怦炸彈" + }, + + effect: { + ja: "このポケモンに100ダメージ。コインを1回投げオモテなら、相手のバトルポケモンをきぜつさせる。", + 'zh-tw': "這隻寶可夢受到100點傷害。擲1次硬幣若為正面,則將對手的戰鬥寶可夢【昏厥】。", + 'zh-cn': "這隻寶可夢受到100點傷害。擲1次硬幣若為正面,則將對手的戰鬥寶可夢【昏厥】。" + } + }, { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + ja: "ライトニングボール", + 'zh-tw': "雷電球", + 'zh-cn': "雷電球" + }, + + damage: 100 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 0, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/028.ts b/data-asia/SV/SV9/028.ts new file mode 100644 index 000000000..fcd985702 --- /dev/null +++ b/data-asia/SV/SV9/028.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのバチュル", + 'zh-tw': "N的電電蟲", + 'zh-cn': "N的電電蟲" + }, + + illustrator: "Iori Suzuki", + rarity: "Common", + category: "Pokemon", + dexId: [595], + hp: 40, + types: ["Lightning"], + + description: { + ja: "自分では 電気を つくれないので ほかの 大きな ポケモンに とりつき 静電気を 吸いとる。", + 'zh-tw': "自己無法製造電力, 會附在其他大型寶可夢身上 吸取靜電。", + 'zh-cn': "自己無法製造電力, 會附在其他大型寶可夢身上 吸取靜電。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "バチバチショート", + 'zh-tw': "劈哩啪啦短路", + 'zh-cn': "劈哩啪啦短路" + }, + + damage: 30, + + effect: { + ja: "ダメージを与える前に、相手のバトルポケモンについている「ポケモンのどうぐ」をトラッシュする。トラッシュした場合、相手のバトルポケモンをマヒにする。", + 'zh-tw': "在造成傷害前,將對手的戰鬥寶可夢身上附加的「寶可夢道具」卡丟棄。有丟棄的情況下,將對手的戰鬥寶可夢【麻痺】。", + 'zh-cn': "在造成傷害前,將對手的戰鬥寶可夢身上附加的「寶可夢道具」卡丟棄。有丟棄的情況下,將對手的戰鬥寶可夢【麻痺】。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/029.ts b/data-asia/SV/SV9/029.ts new file mode 100644 index 000000000..49d1b278b --- /dev/null +++ b/data-asia/SV/SV9/029.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモのズピカ", + 'zh-tw': "奇樹的光蚪仔", + 'zh-cn': "奇樹的光蚪仔" + }, + + illustrator: "kurumitsu", + rarity: "Common", + category: "Pokemon", + dexId: [938], + hp: 60, + types: ["Lightning"], + + description: { + ja: "尻尾を 振って 発電する。 危険を 感じると 頭を 点滅させて 仲間に 伝える。", + 'zh-tw': "會搖尾巴來發電。 感覺到有危險時, 會閃爍頭部通知夥伴。", + 'zh-cn': "會搖尾巴來發電。 感覺到有危險時, 會閃爍頭部通知夥伴。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + ja: "プチでんき", + 'zh-tw': "小電氣", + 'zh-cn': "小電氣" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/030.ts b/data-asia/SV/SV9/030.ts new file mode 100644 index 000000000..e9c650299 --- /dev/null +++ b/data-asia/SV/SV9/030.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモのハラバリーex", + 'zh-tw': "奇樹的電肚蛙ex", + 'zh-cn': "奇樹的電肚蛙ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 280, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "エレキストリーマー", + 'zh-tw': "電氣流", + 'zh-cn': "電氣流" + }, + + effect: { + ja: "自分の番に何回でも使える。自分の手札から「基本エネルギー」を1枚選び、自分の「ナンジャモのポケモン」につける。", + 'zh-tw': "在自己的回合時,可不限次數使用。從自己的手牌選擇1張「基本【雷】能量」卡,附於自己的「奇樹的寶可夢」身上。", + 'zh-cn': "在自己的回合時,可不限次數使用。從自己的手牌選擇1張「基本【雷】能量」卡,附於自己的「奇樹的寶可夢」身上。" + } + }], + + attacks: [{ + cost: ["Lightning", "Lightning", "Lightning", "Colorless"], + + name: { + ja: "サンダーボルト", + 'zh-tw': "閃電伏特", + 'zh-cn': "閃電伏特" + }, + + damage: 230, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/031.ts b/data-asia/SV/SV9/031.ts new file mode 100644 index 000000000..1677c776a --- /dev/null +++ b/data-asia/SV/SV9/031.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモのカイデン", + 'zh-tw': "奇樹的電海燕", + 'zh-cn': "奇樹的電海燕" + }, + + illustrator: "Akira Komayama", + rarity: "Common", + category: "Pokemon", + dexId: [940], + hp: 60, + types: ["Lightning"], + + description: { + ja: "翼の 骨は 風を 受けると 電気を 作る。 海に 飛び込み 獲物を 感電させて 捕らえる。", + 'zh-tw': "當翅膀的骨頭受到風吹時, 就能製造出電力。會衝進 海裡讓獵物觸電後將其捕獲。", + 'zh-cn': "當翅膀的骨頭受到風吹時, 就能製造出電力。會衝進 海裡讓獵物觸電後將其捕獲。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + ja: "でんこうせっか", + 'zh-tw': "電光一閃", + 'zh-cn': "電光一閃" + }, + + damage: "10+", + + effect: { + ja: "コインを1回投げオモテなら、20ダメージ追加。", + 'zh-tw': "擲1次硬幣若為正面,則增加20點傷害。", + 'zh-cn': "擲1次硬幣若為正面,則增加20點傷害。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/032.ts b/data-asia/SV/SV9/032.ts new file mode 100644 index 000000000..87310dd56 --- /dev/null +++ b/data-asia/SV/SV9/032.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモのタイカイデン", + 'zh-tw': "奇樹的大電海燕", + 'zh-cn': "奇樹的大電海燕" + }, + + illustrator: "chibi", + rarity: "Rare", + category: "Pokemon", + dexId: [941], + hp: 120, + types: ["Lightning"], + + description: { + ja: "のど袋を ふくらませて 電気を 増幅させる。 風に 乗って 1日で 700キロを 飛行する。", + 'zh-tw': "會膨脹喉囊來增強電力。 可以乘著風在1天內 就飛上700公里。", + 'zh-cn': "會膨脹喉囊來增強電力。 可以乘著風在1天內 就飛上700公里。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "フラッシュドロー", + 'zh-tw': "閃光抽出", + 'zh-cn': "閃光抽出" + }, + + effect: { + ja: "自分の番に、このポケモンについている「基本エネルギー」を1個トラッシュするなら、1回使える。自分の手札が6枚になるように、山札を引く。", + 'zh-tw': "在自己的回合,若將1個這隻寶可夢身上附加的「基本【雷】能量」丟棄,則可使用1次。從牌庫抽卡直到自己的手牌滿6張為止。", + 'zh-cn': "在自己的回合,若將1個這隻寶可夢身上附加的「基本【雷】能量」丟棄,則可使用1次。從牌庫抽卡直到自己的手牌滿6張為止。" + } + }], + + attacks: [{ + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + ja: "マッハボルト", + 'zh-tw': "音速伏特", + 'zh-cn': "音速伏特" + }, + + damage: 70 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/033.ts b/data-asia/SV/SV9/033.ts new file mode 100644 index 000000000..2efbc83fc --- /dev/null +++ b/data-asia/SV/SV9/033.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "リーリエのピッピex", + 'zh-tw': "莉莉艾的皮皮ex", + 'zh-cn': "莉莉艾的皮皮ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 190, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "フェアリーゾーン", + 'zh-tw': "妖精領域", + 'zh-cn': "妖精領域" + }, + + effect: { + ja: "このポケモンがいるかぎり、相手の場のポケモン全員の弱点は、すべてタイプになる。[弱点は「×2」で計算する。]", + 'zh-tw': "只要這隻寶可夢在場上,對手的場上的所有【龍】寶可夢的弱點全部改爲【超】屬性。[弱點以「×2」計算傷害。]", + 'zh-cn': "只要這隻寶可夢在場上,對手的場上的所有【龍】寶可夢的弱點全部改爲【超】屬性。[弱點以「×2」計算傷害。]" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "フルムーンロンド", + 'zh-tw': "滿月輪舞", + 'zh-cn': "滿月輪舞" + }, + + damage: "20+", + + effect: { + ja: "おたがいのベンチポケモンの数×20ダメージ追加。", + 'zh-tw': "增加雙方的備戰寶可夢的數量×20點傷害。", + 'zh-cn': "增加雙方的備戰寶可夢的數量×20點傷害。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/034.ts b/data-asia/SV/SV9/034.ts new file mode 100644 index 000000000..3868b29eb --- /dev/null +++ b/data-asia/SV/SV9/034.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "バリヤード", + 'zh-tw': "魔牆人偶", + 'zh-cn': "魔牆人偶" + }, + + illustrator: "GOTO minori", + rarity: "Common", + category: "Pokemon", + dexId: [122], + hp: 90, + types: ["Psychic"], + + description: { + ja: "パントマイムが 得意。 指から 出した 波動で 壁を つくり あまたの 攻撃から 身を守る。", + 'zh-tw': "擅長表演默劇。 用手指放出的波動製造牆壁, 保護自己免於大多數的攻擊。", + 'zh-cn': "擅長表演默劇。 用手指放出的波動製造牆壁, 保護自己免於大多數的攻擊。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "ものまね", + 'zh-tw': "模仿", + 'zh-cn': "模仿" + }, + + effect: { + ja: "自分の手札をすべて山札にもどして切る。その後、相手の手札の枚数ぶん、自分の山札を引く。", + 'zh-tw': "將自己的手牌全部放回牌庫並重洗。然後,從自己的牌庫抽出與對手的手牌張數相同數量的卡。", + 'zh-cn': "將自己的手牌全部放回牌庫並重洗。然後,從自己的牌庫抽出與對手的手牌張數相同數量的卡。" + } + }, { + cost: ["Psychic", "Colorless"], + + name: { + ja: "ねんりき", + 'zh-tw': "念力", + 'zh-cn': "念力" + }, + + damage: 40, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。", + 'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。", + 'zh-cn': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/035.ts b/data-asia/SV/SV9/035.ts new file mode 100644 index 000000000..c111c3ae4 --- /dev/null +++ b/data-asia/SV/SV9/035.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "カゲボウズ", + 'zh-tw': "怨影娃娃", + 'zh-cn': "怨影娃娃" + }, + + illustrator: "miki kudo", + rarity: "Common", + category: "Pokemon", + dexId: [353], + hp: 60, + types: ["Psychic"], + + description: { + ja: "恨みや 妬みの 感情が 大好物。 ピンと立った ツノが 人間の 気持ちを キャッチする。", + 'zh-tw': "最愛吃像是怨恨和嫉妒 這類的感情。會用豎立 的角來察覺人類的心情。", + 'zh-cn': "最愛吃像是怨恨和嫉妒 這類的感情。會用豎立 的角來察覺人類的心情。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "ホロウショット", + 'zh-tw': "陰森射擊", + 'zh-cn': "陰森射擊" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/036.ts b/data-asia/SV/SV9/036.ts new file mode 100644 index 000000000..5e1da559c --- /dev/null +++ b/data-asia/SV/SV9/036.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ジュペッタ", + 'zh-tw': "詛咒娃娃", + 'zh-cn': "詛咒娃娃" + }, + + illustrator: "Anesaki Dynamic", + rarity: "Uncommon", + category: "Pokemon", + dexId: [354], + hp: 90, + types: ["Psychic"], + + description: { + ja: "捨てられた ぬいぐるみに 怨念が 溜まって ポケモンになった。 薄暗い 路地裏で 見かける。", + 'zh-tw': "怨念積存在被丟棄的 布偶裡而變成了寶可夢。 可以在昏暗的巷子裡發現牠。", + 'zh-cn': "怨念積存在被丟棄的 布偶裡而變成了寶可夢。 可以在昏暗的巷子裡發現牠。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "のろいのことば", + 'zh-tw': "詛咒言語", + 'zh-cn': "詛咒言語" + }, + + effect: { + ja: "相手は相手自身の手札を3枚選び、山札にもどして切る。", + 'zh-tw': "對手選擇3張對手自己的手牌,放回牌庫並重洗。", + 'zh-cn': "對手選擇3張對手自己的手牌,放回牌庫並重洗。" + } + }, { + cost: ["Psychic", "Colorless"], + + name: { + ja: "ホロウショット", + 'zh-tw': "陰森射擊", + 'zh-cn': "陰森射擊" + }, + + damage: 70 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/037.ts b/data-asia/SV/SV9/037.ts new file mode 100644 index 000000000..22780d1eb --- /dev/null +++ b/data-asia/SV/SV9/037.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ダンバル", + 'zh-tw': "鐵啞鈴", + 'zh-cn': "鐵啞鈴" + }, + + illustrator: "Izucch", + rarity: "Common", + category: "Pokemon", + dexId: [374], + hp: 60, + types: ["Psychic"], + + description: { + ja: "体から 出ている 磁力と 地上の 磁力を 反発させて 空に 浮かぶのだ。", + 'zh-tw': "會讓身上發出的磁力和 地上的磁力相互排斥, 藉此飄浮在空中。", + 'zh-cn': "會讓身上發出的磁力和 地上的磁力相互排斥, 藉此飄浮在空中。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "かいてんアタック", + 'zh-tw': "迴轉攻擊", + 'zh-cn': "迴轉攻擊" + }, + + damage: 10 + }, { + cost: ["Psychic", "Psychic"], + + name: { + ja: "ビーム", + 'zh-tw': "光束", + 'zh-cn': "光束" + }, + + damage: 30 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/038.ts b/data-asia/SV/SV9/038.ts new file mode 100644 index 000000000..dab66fd38 --- /dev/null +++ b/data-asia/SV/SV9/038.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "メタング", + 'zh-tw': "金屬怪", + 'zh-cn': "金屬怪" + }, + + illustrator: "Oswaldo KATO", + rarity: "Common", + category: "Pokemon", + dexId: [375], + hp: 100, + types: ["Psychic"], + + description: { + ja: "2匹の ダンバルが 合体した。 2つの 脳みそが 連結したので サイコパワーは より 強くなった。", + 'zh-tw': "由2隻鐵啞鈴組合而成。 因為2個大腦互相連結, 所以精神力量變得更強了。", + 'zh-cn': "由2隻鐵啞鈴組合而成。 因為2個大腦互相連結, 所以精神力量變得更強了。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "サイコパンチ", + 'zh-tw': "精神拳", + 'zh-cn': "精神拳" + }, + + damage: 30 + }, { + cost: ["Psychic", "Psychic"], + + name: { + ja: "しねんのずつき", + 'zh-tw': "意念頭錘", + 'zh-cn': "意念頭錘" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/039.ts b/data-asia/SV/SV9/039.ts new file mode 100644 index 000000000..30dba9ce3 --- /dev/null +++ b/data-asia/SV/SV9/039.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "メタグロス", + 'zh-tw': "巨金怪", + 'zh-cn': "巨金怪" + }, + + illustrator: "Mitsuhiro Arita", + rarity: "Uncommon", + category: "Pokemon", + dexId: [376], + hp: 170, + types: ["Psychic"], + + description: { + ja: "4本脚を 折りたたんで 飛ぶ。 4つの 脳は スーパーコンピュータ よりも 優れていると いわれる。", + 'zh-tw': "會收起4隻腳飛行。 據說4個大腦比 超級電腦更優秀。", + 'zh-cn': "會收起4隻腳飛行。 據說4個大腦比 超級電腦更優秀。" + }, + + stage: "Stage2", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "たたきつぶす", + 'zh-tw': "砸碎", + 'zh-cn': "砸碎" + }, + + damage: 60 + }, { + cost: ["Psychic", "Psychic"], + + name: { + ja: "ジョイントビーム", + 'zh-tw': "結合光束", + 'zh-cn': "結合光束" + }, + + damage: "130+", + + effect: { + ja: "自分のベンチに「ダンバル」「メタング」がいるなら、150ダメージ追加。", + 'zh-tw': "若自己的備戰區有「鐵啞鈴」「金屬怪」,則增加150點傷害。", + 'zh-cn': "若自己的備戰區有「鐵啞鈴」「金屬怪」,則增加150點傷害。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/040.ts b/data-asia/SV/SV9/040.ts new file mode 100644 index 000000000..8e84e879d --- /dev/null +++ b/data-asia/SV/SV9/040.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのシンボラー", + 'zh-tw': "N的象徵鳥", + 'zh-cn': "N的象徵鳥" + }, + + illustrator: "Shiburingaru", + rarity: "Common", + category: "Pokemon", + dexId: [561], + hp: 110, + types: ["Psychic"], + + description: { + ja: "シンボラーが 飛ぶ 砂漠の下を 調査すると 古代の 都市と 思われる 名残りが 見つかった。", + 'zh-tw': "人們在象徵鳥飛過的沙漠 地下進行調查,結果在那裡 發現了疑似古代都市的遺跡。", + 'zh-cn': "人們在象徵鳥飛過的沙漠 地下進行調查,結果在那裡 發現了疑似古代都市的遺跡。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "ねんどうだん", + 'zh-tw': "‌念動彈", + 'zh-cn': "‌念動彈" + }, + + damage: 20 + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "ビクトリーシンボル", + 'zh-tw': "勝利象徵", + 'zh-cn': "勝利象徵" + }, + + effect: { + ja: "このワザを使ったとき、自分のサイドの残り枚数が1枚なら、この対戦は自分の勝ちになる。", + 'zh-tw': "使用這個招式時,若自己剩餘獎賞卡的張數為1張,則這場對戰己方獲勝。", + 'zh-cn': "使用這個招式時,若自己剩餘獎賞卡的張數為1張,則這場對戰己方獲勝。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/041.ts b/data-asia/SV/SV9/041.ts new file mode 100644 index 000000000..d1046a55f --- /dev/null +++ b/data-asia/SV/SV9/041.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "リーリエのアブリー", + 'zh-tw': "莉莉艾的萌虻", + 'zh-cn': "莉莉艾的萌虻" + }, + + illustrator: "Saya Tsuruta", + rarity: "Common", + category: "Pokemon", + dexId: [742], + hp: 30, + types: ["Psychic"], + + description: { + ja: "人や ポケモンの 楽しそうな オーラを 感じ取り 寄ってきては 長い 口で 突くので 痛い。", + 'zh-tw': "只要感覺到人類或寶可夢 發出的快樂氣場,就會靠過去 用長長的嘴戳對方。被戳會很痛。", + 'zh-cn': "只要感覺到人類或寶可夢 發出的快樂氣場,就會靠過去 用長長的嘴戳對方。被戳會很痛。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "じっとする", + 'zh-tw': "紋絲不動", + 'zh-cn': "紋絲不動" + }, + + effect: { + ja: "このポケモンのHPを「10」回復する。", + 'zh-tw': "將這隻寶可夢恢復「10」HP。", + 'zh-cn': "將這隻寶可夢恢復「10」HP。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 0, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/042.ts b/data-asia/SV/SV9/042.ts new file mode 100644 index 000000000..0c6ff3e76 --- /dev/null +++ b/data-asia/SV/SV9/042.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "リーリエのアブリボン", + 'zh-tw': "莉莉艾的蝶結萌虻", + 'zh-cn': "莉莉艾的蝶結萌虻" + }, + + illustrator: "mashu", + rarity: "Uncommon", + category: "Pokemon", + dexId: [743], + hp: 70, + types: ["Psychic"], + + description: { + ja: "落ちこんでいる 人や ポケモンの 気持ちを 感じ取っては 手作りの 花粉団子で 元気づけたりする。", + 'zh-tw': "只要感覺到人類或寶可夢 沮喪的情緒,就會送上 自製的花粉團來為其打氣。", + 'zh-cn': "只要感覺到人類或寶可夢 沮喪的情緒,就會送上 自製的花粉團來為其打氣。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "おさそいウインク", + 'zh-tw': "邀請眨眼", + 'zh-cn': "邀請眨眼" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。相手の手札を見て、その中からたねポケモンを好きなだけ選び、相手のベンチに出す。", + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。查看對手的手牌,從其中選擇任意數量的【基礎】寶可夢卡,放置於對手的備戰區。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。查看對手的手牌,從其中選擇任意數量的【基礎】寶可夢卡,放置於對手的備戰區。" + } + }], + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "マジカルショット", + 'zh-tw': "魔法射擊", + 'zh-cn': "魔法射擊" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 0, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/043.ts b/data-asia/SV/SV9/043.ts new file mode 100644 index 000000000..475cf57db --- /dev/null +++ b/data-asia/SV/SV9/043.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "リーリエのキュワワー", + 'zh-tw': "莉莉艾的花療環環", + 'zh-cn': "莉莉艾的花療環環" + }, + + illustrator: "Narumi Sato", + rarity: "Common", + category: "Pokemon", + dexId: [764], + hp: 70, + types: ["Psychic"], + + description: { + ja: "ツルを 使って 花を 摘みとる。 体に つけた 花からは 癒しの 効果が 現れる。", + 'zh-tw': "會用藤蔓來摘花。 黏在身上的花會 產生療癒的效果。", + 'zh-cn': "會用藤蔓來摘花。 黏在身上的花會 產生療癒的效果。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "はなまねき", + 'zh-tw': "招花", + 'zh-cn': "招花" + }, + + effect: { + ja: "自分の山札からたねポケモンの「リーリエのポケモン」を好きなだけ選び、ベンチに出す。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇任意數量的【基礎】寶可夢的「莉莉艾的寶可夢」,放置於備戰區。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇任意數量的【基礎】寶可夢的「莉莉艾的寶可夢」,放置於備戰區。並且重洗牌庫。" + } + }, { + cost: ["Psychic"], + + name: { + ja: "ぱっときえる", + 'zh-tw': "憑空消失", + 'zh-cn': "憑空消失" + }, + + damage: 30, + + effect: { + ja: "このポケモンと、ついているすべてのカードを、手札にもどす。", + 'zh-tw': "將這隻寶可夢與附加的卡,全部放回手牌。", + 'zh-cn': "將這隻寶可夢與附加的卡,全部放回手牌。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/044.ts b/data-asia/SV/SV9/044.ts new file mode 100644 index 000000000..b7f6d8cec --- /dev/null +++ b/data-asia/SV/SV9/044.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ウリムー", + 'zh-tw': "小山豬", + 'zh-cn': "小山豬" + }, + + illustrator: "REND", + rarity: "Common", + category: "Pokemon", + dexId: [220], + hp: 70, + types: ["Fighting"], + + description: { + ja: "鼻先で 地面を 掘って 食べるものを 探しだす。 凍った 地面も へっちゃらだ。", + 'zh-tw': "會用鼻尖前端在地面挖洞 找出食物。即使地面結了冰 也絲毫不會受阻礙。", + 'zh-cn': "會用鼻尖前端在地面挖洞 找出食物。即使地面結了冰 也絲毫不會受阻礙。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "なかまをよぶ", + 'zh-tw': "呼朋引伴", + 'zh-cn': "呼朋引伴" + }, + + effect: { + ja: "自分の山札からたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。" + } + }, { + cost: ["Fighting"], + + name: { + ja: "つきたおし", + 'zh-tw': "撞倒", + 'zh-cn': "撞倒" + }, + + damage: 10 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/045.ts b/data-asia/SV/SV9/045.ts new file mode 100644 index 000000000..0dd2edfc5 --- /dev/null +++ b/data-asia/SV/SV9/045.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "イノムー", + 'zh-tw': "長毛豬", + 'zh-cn': "長毛豬" + }, + + illustrator: "Aliya Chen", + rarity: "Common", + category: "Pokemon", + dexId: [221], + hp: 100, + types: ["Fighting"], + + description: { + ja: "長い 体毛に 覆われていて 寒さに 強く 氷の キバは 雪が降ると さらに 太くなる。", + 'zh-tw': "全身被長長的體毛覆蓋, 非常耐寒。冰的獠牙在 下雪時會變得更粗。", + 'zh-cn': "全身被長長的體毛覆蓋, 非常耐寒。冰的獠牙在 下雪時會變得更粗。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "かいりき", + 'zh-tw': "怪力", + 'zh-cn': "怪力" + }, + + damage: 20 + }, { + cost: ["Fighting", "Fighting"], + + name: { + ja: "キバでつく", + 'zh-tw': "牙撞", + 'zh-cn': "牙撞" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/046.ts b/data-asia/SV/SV9/046.ts new file mode 100644 index 000000000..9731b0b62 --- /dev/null +++ b/data-asia/SV/SV9/046.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "マンムーex", + 'zh-tw': "象牙豬ex", + 'zh-cn': "象牙豬ex" + }, + + illustrator: "Nisota Niso", + rarity: "Double rare", + category: "Pokemon", + hp: 340, + types: ["Fighting"], + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "マンモスキャリー", + 'zh-tw': "毛象搬運", + 'zh-cn': "毛象搬運" + }, + + effect: { + ja: "自分の番に1回使える。自分の山札からポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。", + 'zh-tw': "在自己的回合時可使用1次。從自己的牌庫選擇1張寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "在自己的回合時可使用1次。從自己的牌庫選擇1張寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。" + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting"], + + name: { + ja: "とどろくこうしん", + 'zh-tw': "雷鳴行進", + 'zh-cn': "雷鳴行進" + }, + + damage: "180+", + + effect: { + ja: "自分のベンチの2進化ポケモンの数×40ダメージ追加。", + 'zh-tw': "增加自己的備戰區的【2階進化】寶可夢的數量×40點傷害。", + 'zh-cn': "增加自己的備戰區的【2階進化】寶可夢的數量×40點傷害。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/047.ts b/data-asia/SV/SV9/047.ts new file mode 100644 index 000000000..c8556f56b --- /dev/null +++ b/data-asia/SV/SV9/047.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ヨーギラス", + 'zh-tw': "幼基拉斯", + 'zh-cn': "幼基拉斯" + }, + + illustrator: "Dsuke", + rarity: "Common", + category: "Pokemon", + dexId: [246], + hp: 70, + types: ["Fighting"], + + description: { + ja: "地面 深くで 生まれ 山ほどの 土を 食べ終わると 体を つくるため サナギになる。", + 'zh-tw': "誕生在地底深處。 當牠吃完滿山的土壤後, 就會為了成長而變成蛹。", + 'zh-cn': "誕生在地底深處。 當牠吃完滿山的土壤後, 就會為了成長而變成蛹。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "かみくだく", + 'zh-tw': "咬碎", + 'zh-cn': "咬碎" + }, + + damage: 20, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。", + 'zh-tw': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "擲1次硬幣若為正面,則選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/048.ts b/data-asia/SV/SV9/048.ts new file mode 100644 index 000000000..eaff6ba36 --- /dev/null +++ b/data-asia/SV/SV9/048.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "サナギラス", + 'zh-tw': "沙基拉斯", + 'zh-cn': "沙基拉斯" + }, + + illustrator: "Scav", + rarity: "Common", + category: "Pokemon", + dexId: [247], + hp: 90, + types: ["Fighting"], + + description: { + ja: "体内で 圧縮させた ガスを 勢いよく 噴出させ 飛んで 暴れまわる サナギだ。", + 'zh-tw': "會以強勁的力道噴出在體內 壓縮好的氣體,好讓自己 能飛在空中大搞破壞的蛹。", + 'zh-cn': "會以強勁的力道噴出在體內 壓縮好的氣體,好讓自己 能飛在空中大搞破壞的蛹。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "とっしん", + 'zh-tw': "猛撞", + 'zh-cn': "猛撞" + }, + + damage: 60, + + effect: { + ja: "このポケモンにも20ダメージ。", + 'zh-tw': "這隻寶可夢也受到20點傷害。", + 'zh-cn': "這隻寶可夢也受到20點傷害。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/049.ts b/data-asia/SV/SV9/049.ts new file mode 100644 index 000000000..bda9e58d1 --- /dev/null +++ b/data-asia/SV/SV9/049.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "レジロック", + 'zh-tw': "雷吉洛克", + 'zh-cn': "雷吉洛克" + }, + + illustrator: "Uta", + rarity: "Uncommon", + category: "Pokemon", + dexId: [377], + hp: 130, + types: ["Fighting"], + + description: { + ja: "最新の 科学技術を 使い 岩の 体を 調べたが 脳や 心臓を 見つけられなかった。", + 'zh-tw': "有人利用最新的科學技術 調查了牠的岩石身體,但 卻找不到牠的大腦或心臟。", + 'zh-cn': "有人利用最新的科學技術 調查了牠的岩石身體,但 卻找不到牠的大腦或心臟。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "がんせきアーマー", + 'zh-tw': "岩石盔甲", + 'zh-cn': "岩石盔甲" + }, + + effect: { + ja: "このポケモンにエネルギーがついているなら、このポケモンが受けるワザのダメージは「-30」される。", + 'zh-tw': "若這隻寶可夢身上附有能量卡,則這隻寶可夢受到招式的傷害「-30」點。", + 'zh-cn': "若這隻寶可夢身上附有能量卡,則這隻寶可夢受到招式的傷害「-30」點。" + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting", "Fighting"], + + name: { + ja: "バスターラリアット", + 'zh-tw': "毀壞者金勾臂", + 'zh-cn': "毀壞者金勾臂" + }, + + damage: 120, + + effect: { + ja: "このワザのダメージは抵抗力を計算しない。", + 'zh-tw': "這個招式的傷害不計算抵抗力。", + 'zh-cn': "這個招式的傷害不計算抵抗力。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/050.ts b/data-asia/SV/SV9/050.ts new file mode 100644 index 000000000..89499ff55 --- /dev/null +++ b/data-asia/SV/SV9/050.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ヤンチャム", + 'zh-tw': "頑皮熊貓", + 'zh-cn': "頑皮熊貓" + }, + + illustrator: "Yuriko Akase", + rarity: "Common", + category: "Pokemon", + dexId: [674], + hp: 60, + types: ["Fighting"], + + description: { + ja: "なめられないように いつも 相手を 睨みつけているが 気が 緩むと つい 笑い顔に なってしまう。", + 'zh-tw': "為了不被小看而一直瞪著對手, 然而繃緊的神經一旦稍有放鬆, 牠就會在無意中露出笑臉。", + 'zh-cn': "為了不被小看而一直瞪著對手, 然而繃緊的神經一旦稍有放鬆, 牠就會在無意中露出笑臉。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "どつく", + 'zh-tw': "推擊", + 'zh-cn': "推擊" + }, + + damage: 10 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "きあいづき", + 'zh-tw': "真氣突刺", + 'zh-cn': "真氣突刺" + }, + + damage: 50, + + effect: { + ja: "コインを1回投げウラなら、このワザは失敗。", + 'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。", + 'zh-cn': "擲1次硬幣若為反面,則這個招式失敗。" + } + }], + + weaknesses: [{ + type: "Psychic", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/051.ts b/data-asia/SV/SV9/051.ts new file mode 100644 index 000000000..c0cd6da8d --- /dev/null +++ b/data-asia/SV/SV9/051.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "イワンコ", + 'zh-tw': "岩狗狗", + 'zh-cn': "岩狗狗" + }, + + illustrator: "Yoshimi Miyoshi", + rarity: "Common", + category: "Pokemon", + dexId: [744], + hp: 70, + types: ["Fighting"], + + description: { + ja: "小さいころは よく 懐く。 育つと 気性が 荒くなるが 主への 恩は 忘れない。", + 'zh-tw': "年幼時期非常容易親近。 雖然長大後脾氣會變得粗暴, 卻絕不會忘記主人的恩情。", + 'zh-cn': "年幼時期非常容易親近。 雖然長大後脾氣會變得粗暴, 卻絕不會忘記主人的恩情。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ほりかえす", + 'zh-tw': "挖回", + 'zh-cn': "挖回" + }, + + effect: { + ja: "自分の山札を上から1枚見て、もとにもどす。のぞむなら、そのカードをトラッシュする。", + 'zh-tw': "查看自己的牌庫上方1張卡,回復原樣。若希望,將那張卡丟棄。", + 'zh-cn': "查看自己的牌庫上方1張卡,回復原樣。若希望,將那張卡丟棄。" + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + ja: "ふむ", + 'zh-tw': "踩", + 'zh-cn': "踩" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/052.ts b/data-asia/SV/SV9/052.ts new file mode 100644 index 000000000..05d9daaf5 --- /dev/null +++ b/data-asia/SV/SV9/052.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ルガルガン", + 'zh-tw': "鬃岩狼人", + 'zh-cn': "鬃岩狼人" + }, + + illustrator: "Shiburingaru", + rarity: "Rare", + category: "Pokemon", + dexId: [745], + hp: 120, + types: ["Fighting"], + + description: { + ja: "鋭い ツメや キバで 獲物を 襲う。 信頼する トレーナーの 指示には 忠実に 従う。", + 'zh-tw': "會用尖牙和利爪襲擊獵物。 只要是信賴的訓練家下的 指令,牠都會忠實地聽從。", + 'zh-cn': "會用尖牙和利爪襲擊獵物。 只要是信賴的訓練家下的 指令,牠都會忠實地聽從。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "とげをまとう", + 'zh-tw': "尖刺纏身", + 'zh-cn': "尖刺纏身" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分のトラッシュから「スパイクエネルギー」を2枚まで選び、このポケモンにつける。", + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。從自己的棄牌區選擇最多2張「扣殺能量」,附於這隻寶可夢身上。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。從自己的棄牌區選擇最多2張「扣殺能量」,附於這隻寶可夢身上。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "クラッチファング", + 'zh-tw': "抓擊獠牙", + 'zh-cn': "抓擊獠牙" + }, + + damage: "40+", + + effect: { + ja: "相手のバトルポケモンにのっているダメカンの数×40ダメージ追加。", + 'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×40點傷害。", + 'zh-cn': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×40點傷害。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/053.ts b/data-asia/SV/SV9/053.ts new file mode 100644 index 000000000..a9d902c4a --- /dev/null +++ b/data-asia/SV/SV9/053.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのスナヘビ", + 'zh-tw': "赫普的沙包蛇", + 'zh-cn': "赫普的沙包蛇" + }, + + illustrator: "aspara", + rarity: "Common", + category: "Pokemon", + dexId: [843], + hp: 80, + types: ["Fighting"], + + description: { + ja: "風船のように 伸び縮む 首の 袋は 脱皮を 重ねるたびに 伸縮性が 増していく。", + 'zh-tw': "頸部的囊袋就像氣球一樣 能伸縮自如,而隨著不斷 蛻皮,伸縮性會隨之增加。", + 'zh-cn': "頸部的囊袋就像氣球一樣 能伸縮自如,而隨著不斷 蛻皮,伸縮性會隨之增加。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "なわばりづくり", + 'zh-tw': "築窩", + 'zh-cn': "築窩" + }, + + effect: { + ja: "自分の山札からスタジアムを1枚選び、相手に見せて、手札に加える。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇1張競技場卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇1張競技場卡,在給對手看過後加入手牌。並且重洗牌庫。" + } + }, { + cost: ["Fighting", "Colorless"], + + name: { + ja: "かじる", + 'zh-tw': "咬", + 'zh-cn': "咬" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/054.ts b/data-asia/SV/SV9/054.ts new file mode 100644 index 000000000..10d088676 --- /dev/null +++ b/data-asia/SV/SV9/054.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのサダイジャ", + 'zh-tw': "赫普的沙螺蟒", + 'zh-cn': "赫普的沙螺蟒" + }, + + illustrator: "Sanosuke Sakuma", + rarity: "Uncommon", + category: "Pokemon", + dexId: [844], + hp: 140, + types: ["Fighting"], + + description: { + ja: "体を 目一杯 伸縮させ ダンプカーも 押し流すほどの 勢いで 砂を 噴射する。", + 'zh-tw': "會把身體伸長到極限後, 用足以沖走大卡車的 氣勢噴射出沙子。", + 'zh-cn': "會把身體伸長到極限後, 用足以沖走大卡車的 氣勢噴射出沙子。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + ja: "じひびき", + 'zh-tw': "地鳴", + 'zh-cn': "地鳴" + }, + + damage: 30, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" + } + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + ja: "グラウンドブレイク", + 'zh-tw': "大地裂破", + 'zh-cn': "大地裂破" + }, + + damage: 140, + + effect: { + ja: "自分のベンチポケモン全員にも、それぞれ20ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + 'zh-tw': "自己的所有備戰寶可夢也各受到20點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "自己的所有備戰寶可夢也各受到20點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/055.ts b/data-asia/SV/SV9/055.ts new file mode 100644 index 000000000..091632606 --- /dev/null +++ b/data-asia/SV/SV9/055.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ガケガニ", + 'zh-tw': "毛崖蟹", + 'zh-cn': "毛崖蟹" + }, + + illustrator: "Shinya Komatsu", + rarity: "Uncommon", + category: "Pokemon", + dexId: [950], + hp: 120, + types: ["Fighting"], + + description: { + ja: "逆さまになって 崖の 上から 獲物を 狙うが 頭に 血が上るので 長くは 待てない。", + 'zh-tw': "會倒立在懸崖上等獵物上門, 但由於那會讓牠的血液倒流, 因此等不了太長的時間。", + 'zh-cn': "會倒立在懸崖上等獵物上門, 但由於那會讓牠的血液倒流, 因此等不了太長的時間。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ちょっきんバサミ", + 'zh-tw': "喀嚓鉗", + 'zh-cn': "喀嚓鉗" + }, + + effect: { + ja: "コインを2回投げ、オモテの数ぶん、相手のバトルポケモンについているエネルギーを選び、トラッシュする。", + 'zh-tw': "擲2次硬幣,選擇與正面出現的次數相同數量的對手的戰鬥寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "擲2次硬幣,選擇與正面出現的次數相同數量的對手的戰鬥寶可夢身上附加的能量,將其丟棄。" + } + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + ja: "ぶちかます", + 'zh-tw': "頭突", + 'zh-cn': "頭突" + }, + + damage: 100 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/056.ts b/data-asia/SV/SV9/056.ts new file mode 100644 index 000000000..6479ea40d --- /dev/null +++ b/data-asia/SV/SV9/056.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ドガース", + 'zh-tw': "瓦斯彈", + 'zh-cn': "瓦斯彈" + }, + + illustrator: "Rond", + rarity: "Common", + category: "Pokemon", + dexId: [109], + hp: 60, + types: ["Darkness"], + + description: { + ja: "薄い バルーン状の 体に 猛毒の ガスが 詰まっているので ときどき 大爆発を 起こす。", + 'zh-tw': "薄薄的氣球狀身體裡 儲滿了劇毒的瓦斯, 所以有時會發生大爆炸。", + 'zh-cn': "薄薄的氣球狀身體裡 儲滿了劇毒的瓦斯, 所以有時會發生大爆炸。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "たいあたり", + 'zh-tw': "撞擊", + 'zh-cn': "撞擊" + }, + + damage: 10 + }, { + cost: ["Darkness", "Colorless"], + + name: { + ja: "ガスでつつむ", + 'zh-tw': "瓦斯包圍", + 'zh-cn': "瓦斯包圍" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/057.ts b/data-asia/SV/SV9/057.ts new file mode 100644 index 000000000..f728a8ebb --- /dev/null +++ b/data-asia/SV/SV9/057.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "マタドガス", + 'zh-tw': "雙彈瓦斯", + 'zh-cn': "雙彈瓦斯" + }, + + illustrator: "KEIICHIRO ITO", + rarity: "Uncommon", + category: "Pokemon", + dexId: [110], + hp: 130, + types: ["Darkness"], + + description: { + ja: "体内に 含まれる 毒ガスを ぎりぎりまで 薄めると 最高級の 香水ができる。", + 'zh-tw': "若將牠體內所含的 毒瓦斯稀釋到極限, 就能做出最高級的香水。", + 'zh-cn': "若將牠體內所含的 毒瓦斯稀釋到極限, 就能做出最高級的香水。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "じゅうまんガス", + 'zh-tw': "充滿瓦斯", + 'zh-cn': "充滿瓦斯" + }, + + damage: 30, + + effect: { + ja: "相手のバトルポケモンをこんらんにする。", + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。" + } + }, { + cost: ["Darkness", "Colorless"], + + name: { + ja: "クレイジーボム", + 'zh-tw': "瘋狂炸彈", + 'zh-cn': "瘋狂炸彈" + }, + + damage: "50+", + + effect: { + ja: "前の自分の番に、このポケモンが「じゅうまんガス」を使っていたなら、120ダメージ追加。", + 'zh-tw': "在上個自己的回合,若這隻寶可夢使出了「充滿瓦斯」,則增加120點傷害。", + 'zh-cn': "在上個自己的回合,若這隻寶可夢使出了「充滿瓦斯」,則增加120點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/058.ts b/data-asia/SV/SV9/058.ts new file mode 100644 index 000000000..f2d724af4 --- /dev/null +++ b/data-asia/SV/SV9/058.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "バンギラス", + 'zh-tw': "班基拉斯", + 'zh-cn': "班基拉斯" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Rare", + category: "Pokemon", + dexId: [248], + hp: 190, + types: ["Darkness"], + + description: { + ja: "あたりの 地形を 変えるぐらい 朝飯前の 力持ち。 まわりを 気にしない ふてぶてしさ。", + 'zh-tw': "即便是改變周圍的地形 也是小事一樁的大力士。 個性狂妄,不顧周遭的感受。", + 'zh-cn': "即便是改變周圍的地形 也是小事一樁的大力士。 個性狂妄,不顧周遭的感受。" + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + ja: "いあつのがんこう", + 'zh-tw': "威迫目光", + 'zh-cn': "威迫目光" + }, + + effect: { + ja: "このポケモンがバトル場にいるかぎり、相手は手札からグッズを出して使えない。", + 'zh-tw': "只要這隻寶可夢在戰鬥場上,對手無法從手牌使出物品卡。", + 'zh-cn': "只要這隻寶可夢在戰鬥場上,對手無法從手牌使出物品卡。" + } + }], + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + ja: "クラックストンプ", + 'zh-tw': "斷裂頓足", + 'zh-cn': "斷裂頓足" + }, + + damage: 150, + + effect: { + ja: "相手の山札を上から2枚トラッシュする。", + 'zh-tw': "將對手的牌庫上方2張卡丟棄。", + 'zh-cn': "將對手的牌庫上方2張卡丟棄。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/059.ts b/data-asia/SV/SV9/059.ts new file mode 100644 index 000000000..f10581d2c --- /dev/null +++ b/data-asia/SV/SV9/059.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのチョロネコ", + 'zh-tw': "N的扒手貓", + 'zh-cn': "N的扒手貓" + }, + + illustrator: "Keisin", + rarity: "Common", + category: "Pokemon", + dexId: [509], + hp: 70, + types: ["Darkness"], + + description: { + ja: "愛くるしい しぐさで 油断させ 寄ってきた 相手を いきなり ツメで ひっかいて 笑っている。", + 'zh-tw': "會用可愛的動作讓對手放下戒心, 趁對方靠過來時冷不防用爪子 猛抓,然後得意地大笑。", + 'zh-cn': "會用可愛的動作讓對手放下戒心, 趁對方靠過來時冷不防用爪子 猛抓,然後得意地大笑。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + ja: "ちょろまかす", + 'zh-tw': "暗槓", + 'zh-cn': "暗槓" + }, + + damage: 30, + + effect: { + ja: "相手の手札を見て、その中からカードを1枚選び、相手の山札の下にもどす。", + 'zh-tw': "查看對手的手牌,從其中選擇1張卡,放回對手的牌庫下方。", + 'zh-cn': "查看對手的手牌,從其中選擇1張卡,放回對手的牌庫下方。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/060.ts b/data-asia/SV/SV9/060.ts new file mode 100644 index 000000000..e79d14c75 --- /dev/null +++ b/data-asia/SV/SV9/060.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのゾロア", + 'zh-tw': "N的索羅亞", + 'zh-cn': "N的索羅亞" + }, + + illustrator: "Jiro Sasumo", + rarity: "Common", + category: "Pokemon", + dexId: [570], + hp: 70, + types: ["Darkness"], + + description: { + ja: "相手の 姿に 化けてみせて 驚かせる。 無口な 子どもに 化けていることが 多いらしい。", + 'zh-tw': "會幻化成對手的樣子 嚇唬對方。似乎經常 幻化成沉默寡言的小孩。", + 'zh-cn': "會幻化成對手的樣子 嚇唬對方。似乎經常 幻化成沉默寡言的小孩。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "ひっかく", + 'zh-tw': "抓", + 'zh-cn': "抓" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/061.ts b/data-asia/SV/SV9/061.ts new file mode 100644 index 000000000..41aa48c3f --- /dev/null +++ b/data-asia/SV/SV9/061.ts @@ -0,0 +1,62 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのゾロアークex", + 'zh-tw': "N的索羅亞克ex", + 'zh-cn': "N的索羅亞克ex" + }, + + illustrator: "takuyoa", + rarity: "Double rare", + category: "Pokemon", + hp: 280, + types: ["Darkness"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "とりひき", + 'zh-tw': "交易", + 'zh-cn': "交易" + }, + + effect: { + ja: "自分の番に、自分の手札を1枚トラッシュするなら、1回使える。自分の山札を2枚引く。", + 'zh-tw': "在自己的回合,若將自己的1張手牌丟棄,則可使用1次。從自己的牌庫抽出2張卡。", + 'zh-cn': "在自己的回合,若將自己的1張手牌丟棄,則可使用1次。從自己的牌庫抽出2張卡。" + } + }], + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + ja: "ナイトジョーカー", + 'zh-tw': "暗黑底牌", + 'zh-cn': "暗黑底牌" + }, + + effect: { + ja: "自分のベンチの「Nのポケモン」が持つワザを1つ選び、このワザとして使う。", + 'zh-tw': "選擇1個自己的備戰區的「N的寶可夢」持有的招式,作為這個招式使用。", + 'zh-cn': "選擇1個自己的備戰區的「N的寶可夢」持有的招式,作為這個招式使用。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/062.ts b/data-asia/SV/SV9/062.ts new file mode 100644 index 000000000..4ce57e820 --- /dev/null +++ b/data-asia/SV/SV9/062.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ゴロンダ", + 'zh-tw': "流氓熊貓", + 'zh-cn': "流氓熊貓" + }, + + illustrator: "nagimiso", + rarity: "Uncommon", + category: "Pokemon", + dexId: [675], + hp: 140, + types: ["Darkness"], + + description: { + ja: "葉っぱで 相手の 動きを 読む。 大型 ダンプカーを 一撃で スクラップにする パンチを もつ。", + 'zh-tw': "透過葉子來洞悉敵人的動向。 只要使出一記拳擊就能 讓大型砂石車變成廢鐵。", + 'zh-cn': "透過葉子來洞悉敵人的動向。 只要使出一記拳擊就能 讓大型砂石車變成廢鐵。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "いちゃもん", + 'zh-tw': "無理取鬧", + 'zh-cn': "無理取鬧" + }, + + damage: 30, + + effect: { + ja: "相手のバトルポケモンが持つワザを1つ選ぶ。次の相手の番、このワザを受けたポケモンは、選ばれたワザが使えない。", + 'zh-tw': "選擇1個對手的戰鬥寶可夢持有的招式。在下個對手的回合,受到這個招式的寶可夢無法使用被選擇的招式。", + 'zh-cn': "選擇1個對手的戰鬥寶可夢持有的招式。在下個對手的回合,受到這個招式的寶可夢無法使用被選擇的招式。" + } + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + ja: "パワータックル", + 'zh-tw': "力量衝撞", + 'zh-cn': "力量衝撞" + }, + + damage: 160, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/063.ts b/data-asia/SV/SV9/063.ts new file mode 100644 index 000000000..0e94fb6d8 --- /dev/null +++ b/data-asia/SV/SV9/063.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "シュバルゴ", + 'zh-tw': "騎士蝸牛", + 'zh-cn': "騎士蝸牛" + }, + + illustrator: "Takumi Wada", + rarity: "Uncommon", + category: "Pokemon", + dexId: [589], + hp: 120, + types: ["Metal"], + + description: { + ja: "槍を 構え 敵へ 突撃。 ネギガナイトとの 決闘を 描いた 絵画が 有名。", + 'zh-tw': "會舉起長矛突擊敵人。 有一幅名畫描繪著 牠和蔥遊兵決鬥的場景。", + 'zh-cn': "會舉起長矛突擊敵人。 有一幅名畫描繪著 牠和蔥遊兵決鬥的場景。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "つきさす", + 'zh-tw': "突刺", + 'zh-cn': "突刺" + }, + + damage: 20 + }, { + cost: ["Metal", "Colorless"], + + name: { + ja: "アイアンバスター", + 'zh-tw': "鐵之光炮", + 'zh-cn': "鐵之光炮" + }, + + damage: 120, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/064.ts b/data-asia/SV/SV9/064.ts new file mode 100644 index 000000000..d8fcc6337 --- /dev/null +++ b/data-asia/SV/SV9/064.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのギアル", + 'zh-tw': "N的齒輪兒", + 'zh-cn': "N的齒輪兒" + }, + + illustrator: "Saboteri", + rarity: "Common", + category: "Pokemon", + dexId: [599], + hp: 60, + types: ["Metal"], + + description: { + ja: "2つの 体は 双子よりも 近い。 べつの 体同士だと いまいち うまく 噛み合わない。", + 'zh-tw': "2個身體比雙胞胎還要親近。 要是換成別的齒輪兒, 就沒有辦法好好咬合。", + 'zh-cn': "2個身體比雙胞胎還要親近。 要是換成別的齒輪兒, 就沒有辦法好好咬合。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ダブルスピン", + 'zh-tw': "雙重旋轉", + 'zh-cn': "雙重旋轉" + }, + + damage: "10×", + + effect: { + ja: "コインを2回投げ、オモテの数×10ダメージ。", + 'zh-tw': "擲2次硬幣,造成正面出現的次數×10點傷害。", + 'zh-cn': "擲2次硬幣,造成正面出現的次數×10點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/065.ts b/data-asia/SV/SV9/065.ts new file mode 100644 index 000000000..0485df116 --- /dev/null +++ b/data-asia/SV/SV9/065.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのギギアル", + 'zh-tw': "N的齒輪組", + 'zh-cn': "N的齒輪組" + }, + + illustrator: "KEIICHIRO ITO", + rarity: "Common", + category: "Pokemon", + dexId: [600], + hp: 90, + types: ["Metal"], + + description: { + ja: "本気の ときは でかギアの 外の 歯車と ちびギアが 合致。 回転速度が 飛躍 するのだ。", + 'zh-tw': "如果認真起來,大齒輪外圈的 齒輪會和小齒輪完全接合。 此時轉速將會大幅提升。", + 'zh-cn': "如果認真起來,大齒輪外圈的 齒輪會和小齒輪完全接合。 此時轉速將會大幅提升。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ぐるぐるギア", + 'zh-tw': "轉轉齒輪", + 'zh-cn': "轉轉齒輪" + }, + + damage: 20, + + effect: { + ja: "相手のバトルポケモンをこんらんにする。", + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。" + } + }, { + cost: ["Metal", "Colorless"], + + name: { + ja: "がちんこ", + 'zh-tw': "正面對決", + 'zh-cn': "正面對決" + }, + + damage: 40 + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/066.ts b/data-asia/SV/SV9/066.ts new file mode 100644 index 000000000..bd369754a --- /dev/null +++ b/data-asia/SV/SV9/066.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのギギギアル", + 'zh-tw': "N的齒輪怪", + 'zh-cn': "N的齒輪怪" + }, + + illustrator: "matazo", + rarity: "Uncommon", + category: "Pokemon", + dexId: [601], + hp: 160, + types: ["Metal"], + + description: { + ja: "棘の 先から 強い 電撃を 発射。 赤いコアに たくさんの エネルギーを 蓄えている。", + 'zh-tw': "會從尖刺的前端發出強力 電擊。紅色核心裡填充著 非常多的能量。", + 'zh-cn': "會從尖刺的前端發出強力 電擊。紅色核心裡填充著 非常多的能量。" + }, + + stage: "Stage2", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "マグネブラスト", + 'zh-tw': "磁力爆破", + 'zh-cn': "磁力爆破" + }, + + damage: 50 + }, { + cost: ["Metal", "Metal", "Colorless"], + + name: { + ja: "トリプルスマッシュ", + 'zh-tw': "三重粉碎", + 'zh-cn': "三重粉碎" + }, + + damage: "120×", + + effect: { + ja: "コインを3回投げ、オモテの数×120ダメージ。", + 'zh-tw': "擲3次硬幣,造成正面出現的次數×120點傷害。", + 'zh-cn': "擲3次硬幣,造成正面出現的次數×120點傷害。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/067.ts b/data-asia/SV/SV9/067.ts new file mode 100644 index 000000000..0936398ec --- /dev/null +++ b/data-asia/SV/SV9/067.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "マギアナ", + 'zh-tw': "瑪機雅娜", + 'zh-cn': "瑪機雅娜" + }, + + illustrator: "rika", + rarity: "Rare", + category: "Pokemon", + dexId: [801], + hp: 90, + types: ["Metal"], + + description: { + ja: "およそ 500年前 科学者に よって 作られた。 ソウルハートと 呼ばれる パーツが 本体なのだ。", + 'zh-tw': "由大約500年前的 科學家所製造。 本體是被稱為魂心的零件。", + 'zh-cn': "由大約500年前的 科學家所製造。 本體是被稱為魂心的零件。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "オートヒール", + 'zh-tw': "自動治癒", + 'zh-cn': "自動治癒" + }, + + effect: { + ja: "このポケモンがバトル場にいるかぎり、自分の手札からエネルギーをポケモンにつけるたび、そのポケモンのHPを「90」回復する。", + 'zh-tw': "只要這隻寶可夢在戰鬥場上,每次從自己的手牌將能量卡附於寶可夢身上時,將那隻寶可夢恢復「90」HP。", + 'zh-cn': "只要這隻寶可夢在戰鬥場上,每次從自己的手牌將能量卡附於寶可夢身上時,將那隻寶可夢恢復「90」HP。" + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "スパイクドロー", + 'zh-tw': "扣殺抽出", + 'zh-cn': "扣殺抽出" + }, + + damage: 20, + + effect: { + ja: "自分の山札を2枚引く。", + 'zh-tw': "從自己的牌庫抽出2張卡。", + 'zh-cn': "從自己的牌庫抽出2張卡。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/068.ts b/data-asia/SV/SV9/068.ts new file mode 100644 index 000000000..7da2cbacc --- /dev/null +++ b/data-asia/SV/SV9/068.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのアーマーガア", + 'zh-tw': "赫普的鋼鎧鴉", + 'zh-cn': "赫普的鋼鎧鴉" + }, + + illustrator: "GIDORA", + rarity: "Uncommon", + category: "Pokemon", + dexId: [823], + hp: 170, + types: ["Metal"], + + description: { + ja: "羽の 一部が 鋼に 変化。 重たい 翼を ものともせずに 大空を ゆうゆうと 飛びまわる。", + 'zh-tw': "部分的羽毛變成了鋼鐵。 即使翅膀沉重也能夠 悠遊自在地飛在空中。", + 'zh-cn': "部分的羽毛變成了鋼鐵。 即使翅膀沉重也能夠 悠遊自在地飛在空中。" + }, + + stage: "Stage2", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "つきぬける", + 'zh-tw': "穿通", + 'zh-cn': "穿通" + }, + + damage: 50, + + effect: { + ja: "相手のベンチポケモン1匹にも、50ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + 'zh-tw': "對手的1隻備戰寶可夢也受到50點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻備戰寶可夢也受到50點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }, { + cost: ["Metal", "Metal", "Colorless"], + + name: { + ja: "はがねのつばさ", + 'zh-tw': "鋼翼", + 'zh-cn': "鋼翼" + }, + + damage: 150, + + effect: { + ja: "次の相手の番、このポケモンが受けるワザのダメージは「-60」される。", + 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-60」點。", + 'zh-cn': "在下個對手的回合,這隻寶可夢受到招式的傷害「-60」點。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/069.ts b/data-asia/SV/SV9/069.ts new file mode 100644 index 000000000..84d971bc6 --- /dev/null +++ b/data-asia/SV/SV9/069.ts @@ -0,0 +1,69 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのザシアンex", + 'zh-tw': "赫普的蒼響ex", + 'zh-cn': "赫普的蒼響ex" + }, + + illustrator: "aky CG Works", + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "せつなぎり", + 'zh-tw': "剎那斬", + 'zh-cn': "剎那斬" + }, + + damage: 30, + + effect: { + ja: "相手のベンチポケモン1匹にも、30ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + 'zh-tw': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }, { + cost: ["Metal", "Metal", "Metal", "Colorless"], + + name: { + ja: "ブレイブスラッシュ", + 'zh-tw': "無畏斬", + 'zh-cn': "無畏斬" + }, + + damage: 240, + + effect: { + ja: "次の自分の番、このポケモンは「ブレイブスラッシュ」が使えない。", + 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「無畏斬」。", + 'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「無畏斬」。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/070.ts b/data-asia/SV/SV9/070.ts new file mode 100644 index 000000000..a47eeae98 --- /dev/null +++ b/data-asia/SV/SV9/070.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "タツベイ", + 'zh-tw': "寶貝龍", + 'zh-cn': "寶貝龍" + }, + + illustrator: "Miki Tanaka", + rarity: "Common", + category: "Pokemon", + dexId: [371], + hp: 70, + types: ["Dragon"], + + description: { + ja: "鋼鉄並みに 硬い 頭は 岩も 粉々に 砕く。 翼が 生えるのを 待ち続ける。", + 'zh-tw': "腦袋有如鋼鐵般堅硬, 就連岩石都能撞得粉碎。 會一直等待長出翅膀的那一刻。", + 'zh-cn': "腦袋有如鋼鐵般堅硬, 就連岩石都能撞得粉碎。 會一直等待長出翅膀的那一刻。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "かみつく", + 'zh-tw': "咬住", + 'zh-cn': "咬住" + }, + + damage: 10 + }, { + cost: ["Fire", "Water"], + + name: { + ja: "とつげき", + 'zh-tw': "突擊", + 'zh-cn': "突擊" + }, + + damage: 50, + + effect: { + ja: "このポケモンにも10ダメージ。", + 'zh-tw': "這隻寶可夢也受到10點傷害。", + 'zh-cn': "這隻寶可夢也受到10點傷害。" + } + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/071.ts b/data-asia/SV/SV9/071.ts new file mode 100644 index 000000000..cba2d203e --- /dev/null +++ b/data-asia/SV/SV9/071.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "コモルー", + 'zh-tw': "甲殼龍", + 'zh-cn': "甲殼龍" + }, + + illustrator: "Julie Hang", + rarity: "Common", + category: "Pokemon", + dexId: [372], + hp: 100, + types: ["Dragon"], + + description: { + ja: "殻の 中では 爆発的な スピードで 細胞が 変化し 進化の 準備を しているぞ。", + 'zh-tw': "細胞在殼中 以爆發般的速度變化, 正在為進化做準備。", + 'zh-cn': "細胞在殼中 以爆發般的速度變化, 正在為進化做準備。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ガードプレス", + 'zh-tw': "防守壓制", + 'zh-cn': "防守壓制" + }, + + damage: 30, + + effect: { + ja: "次の相手の番、このポケモンが受けるワザのダメージは「-30」される。", + 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。", + 'zh-cn': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。" + } + }, { + cost: ["Fire", "Water", "Colorless"], + + name: { + ja: "ヘビーインパクト", + 'zh-tw': "重磅衝擊", + 'zh-cn': "重磅衝擊" + }, + + damage: 80 + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/072.ts b/data-asia/SV/SV9/072.ts new file mode 100644 index 000000000..b9e56cd72 --- /dev/null +++ b/data-asia/SV/SV9/072.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ボーマンダex", + 'zh-tw': "暴飛龍ex", + 'zh-cn': "暴飛龍ex" + }, + + illustrator: "toriyufu", + rarity: "Double rare", + category: "Pokemon", + hp: 320, + types: ["Dragon"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + ja: "ワイドブラスト", + 'zh-tw': "廣域爆破", + 'zh-cn': "廣域爆破" + }, + + effect: { + ja: "相手のベンチポケモン全員に、それぞれ50ダメージ。[ベンチは弱点・抵抗力を計算しない。]", + 'zh-tw': "對手的所有備戰寶可夢各受到50點傷害。[在備戰區不計算弱點・抵抗力。]", + 'zh-cn': "對手的所有備戰寶可夢各受到50點傷害。[在備戰區不計算弱點・抵抗力。]" + } + }, { + cost: ["Fire", "Water", "Colorless", "Colorless"], + + name: { + ja: "ドラゴンインパクト", + 'zh-tw': "狂龍衝擊", + 'zh-cn': "狂龍衝擊" + }, + + damage: 300, + + effect: { + ja: "このポケモンについているエネルギーを2個選び、トラッシュする。", + 'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。" + } + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/073.ts b/data-asia/SV/SV9/073.ts new file mode 100644 index 000000000..e1a0c378a --- /dev/null +++ b/data-asia/SV/SV9/073.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "クリムガン", + 'zh-tw': "赤面龍", + 'zh-cn': "赤面龍" + }, + + illustrator: "kawayoo", + rarity: "Common", + category: "Pokemon", + dexId: [621], + hp: 120, + types: ["Dragon"], + + description: { + ja: "凶暴で ずる賢い。 ほかの ポケモンが 掘った 巣穴を 奪って すみかにする。", + 'zh-tw': "性情凶暴且狡猾。會搶奪 其他寶可夢挖好的巢穴, 來當作是自己的窩。", + 'zh-cn': "性情凶暴且狡猾。會搶奪 其他寶可夢挖好的巢穴, 來當作是自己的窩。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "りゅうのたけり", + 'zh-tw': "龍之猛暴", + 'zh-cn': "龍之猛暴" + }, + + damage: 20, + + effect: { + ja: "自分のトラッシュから「基本エネルギー」を1枚選び、自分のポケモンにつける。", + 'zh-tw': "從自己的棄牌區選擇1張「基本【火】能量」卡,附於自己的【龍】寶可夢身上。", + 'zh-cn': "從自己的棄牌區選擇1張「基本【火】能量」卡,附於自己的【龍】寶可夢身上。" + } + }, { + cost: ["Fire", "Water", "Colorless"], + + name: { + ja: "スラッシュクロー", + 'zh-tw': "利爪揮砍", + 'zh-cn': "利爪揮砍" + }, + + damage: 120 + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/074.ts b/data-asia/SV/SV9/074.ts new file mode 100644 index 000000000..9a7604305 --- /dev/null +++ b/data-asia/SV/SV9/074.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのレシラム", + 'zh-tw': "N的萊希拉姆", + 'zh-cn': "N的萊希拉姆" + }, + + illustrator: "rika", + rarity: "Rare", + category: "Pokemon", + dexId: [643], + hp: 130, + types: ["Dragon"], + + description: { + ja: "人が 真実を 蔑ろにして 欲に まみれると 炎で 国を 焼きつくすと 神話に 描かれた。", + 'zh-tw': "在神話的敘述裡,如果人類 蔑視真實、放縱欲望,牠就會 用火焰燒盡他們的王國。", + 'zh-cn': "在神話的敘述裡,如果人類 蔑視真實、放縱欲望,牠就會 用火焰燒盡他們的王國。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Lightning"], + + name: { + ja: "パワーレイジ", + 'zh-tw': "強力激怒", + 'zh-cn': "強力激怒" + }, + + damage: "20×", + + effect: { + ja: "このポケモンにのっているダメカンの数×20ダメージ。", + 'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。", + 'zh-cn': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。" + } + }, { + cost: ["Fire", "Fire", "Lightning", "Colorless"], + + name: { + ja: "イノセントフレイム", + 'zh-tw': "純真火焰", + 'zh-cn': "純真火焰" + }, + + damage: 170 + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/075.ts b/data-asia/SV/SV9/075.ts new file mode 100644 index 000000000..e13e7c756 --- /dev/null +++ b/data-asia/SV/SV9/075.ts @@ -0,0 +1,71 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのカビゴン", + 'zh-tw': "赫普的卡比獸", + 'zh-cn': "赫普的卡比獸" + }, + + illustrator: "GOSSAN", + rarity: "Rare", + category: "Pokemon", + dexId: [143], + hp: 150, + types: ["Colorless"], + + description: { + ja: "眠っているとき以外は つねに エサを 食べている 大食らい。 1日に 400キロも たいらげる。", + 'zh-tw': "除了睡著時之外,總是不斷 在進食。是個一天能吃光 400公斤食物的大胃王。", + 'zh-cn': "除了睡著時之外,總是不斷 在進食。是個一天能吃光 400公斤食物的大胃王。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ふとっぱら", + 'zh-tw': "大方", + 'zh-cn': "大方" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分の「ホップのポケモン」が使うワザの、相手のバトルポケモンへのダメージは「+30」される。この効果は、この特性を持つポケモンが何匹いても、重ならない。", + 'zh-tw': "只要這隻寶可夢在場上,自己的「赫普的寶可夢」使用的招式,對對手的戰鬥寶可夢造成的傷害「+30」點。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。", + 'zh-cn': "只要這隻寶可夢在場上,自己的「赫普的寶可夢」使用的招式,對對手的戰鬥寶可夢造成的傷害「+30」點。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ダイナミックプレス", + 'zh-tw': "極限壓制", + 'zh-cn': "極限壓制" + }, + + damage: 140, + + effect: { + ja: "このポケモンにも80ダメージ。", + 'zh-tw': "這隻寶可夢也受到80點傷害。", + 'zh-cn': "這隻寶可夢也受到80點傷害。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 4, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/076.ts b/data-asia/SV/SV9/076.ts new file mode 100644 index 000000000..2658ef800 --- /dev/null +++ b/data-asia/SV/SV9/076.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "オタチ", + 'zh-tw': "尾立", + 'zh-cn': "尾立" + }, + + illustrator: "Taiga Kayama", + rarity: "Common", + category: "Pokemon", + dexId: [161], + hp: 60, + types: ["Colorless"], + + description: { + ja: "警戒心が 強い ポケモン。 しなやかに 動く 尻尾は 筋肉質で 触ると 硬い。", + 'zh-tw': "警戒心強的寶可夢。 能夠柔韌擺動的尾巴 肌肉發達,摸起來很硬。", + 'zh-cn': "警戒心強的寶可夢。 能夠柔韌擺動的尾巴 肌肉發達,摸起來很硬。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ひらてうち", + 'zh-tw': "掌擊", + 'zh-cn': "掌擊" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/077.ts b/data-asia/SV/SV9/077.ts new file mode 100644 index 000000000..0ae2cff39 --- /dev/null +++ b/data-asia/SV/SV9/077.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "オオタチ", + 'zh-tw': "大尾立", + 'zh-cn': "大尾立" + }, + + illustrator: "Tomomi Ozaki", + rarity: "Common", + category: "Pokemon", + dexId: [162], + hp: 120, + types: ["Colorless"], + + description: { + ja: "細長い 巣穴で 子育て。 子供が 育つと 巣穴の 外で 独り立ちの 準備を させる。", + 'zh-tw': "在細長的巢穴中養育孩子。 孩子長大後,就會到巢穴外 讓孩子準備獨立生活。", + 'zh-cn': "在細長的巢穴中養育孩子。 孩子長大後,就會到巢穴外 讓孩子準備獨立生活。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ひっかく", + 'zh-tw': "抓", + 'zh-cn': "抓" + }, + + damage: 40 + }, { + cost: ["Colorless", "Colorless"], + + name: { + ja: "ジェットヘッド", + 'zh-tw': "噴射頭擊", + 'zh-cn': "噴射頭擊" + }, + + damage: 70 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/078.ts b/data-asia/SV/SV9/078.ts new file mode 100644 index 000000000..eed134ea4 --- /dev/null +++ b/data-asia/SV/SV9/078.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ノコッチ", + 'zh-tw': "土龍弟弟", + 'zh-cn': "土龍弟弟" + }, + + illustrator: "Asako Ito", + rarity: "Common", + category: "Pokemon", + dexId: [206], + hp: 70, + types: ["Colorless"], + + description: { + ja: "暗い場所に 迷路を 作る。 だれかに みられると 尻尾で 地面を 掘って 逃げようとする。", + 'zh-tw': "會在陰暗處做出迷宮。 只要被誰看見就會 用尾巴挖掘地面逃走。", + 'zh-cn': "會在陰暗處做出迷宮。 只要被誰看見就會 用尾巴挖掘地面逃走。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "いれかわる", + 'zh-tw': "交替", + 'zh-cn': "交替" + }, + + effect: { + ja: "このポケモンをベンチポケモンと入れ替える。", + 'zh-tw': "將這隻寶可夢與備戰寶可夢互換。", + 'zh-cn': "將這隻寶可夢與備戰寶可夢互換。" + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + ja: "ぶつかる", + 'zh-tw': "衝撞", + 'zh-cn': "衝撞" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/079.ts b/data-asia/SV/SV9/079.ts new file mode 100644 index 000000000..4912ec7be --- /dev/null +++ b/data-asia/SV/SV9/079.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ノココッチex", + 'zh-tw': "土龍節節ex", + 'zh-cn': "土龍節節ex" + }, + + illustrator: "5ban Graphics", + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Colorless"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ぎゃっきょうテール", + 'zh-tw': "逆境之尾", + 'zh-cn': "逆境之尾" + }, + + damage: "60×", + + effect: { + ja: "相手の場の「ポケモンex」の数×60ダメージ。", + 'zh-tw': "造成對手的場上的「寶可夢【ex】」的數量×60點傷害。", + 'zh-cn': "造成對手的場上的「寶可夢【ex】」的數量×60點傷害。" + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ドリルブレイク", + 'zh-tw': "鑽破壞", + 'zh-cn': "鑽破壞" + }, + + damage: 150, + + effect: { + ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。", + 'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。", + 'zh-cn': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/080.ts b/data-asia/SV/SV9/080.ts new file mode 100644 index 000000000..18cba4454 --- /dev/null +++ b/data-asia/SV/SV9/080.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "オンバット", + 'zh-tw': "嗡蝠", + 'zh-cn': "嗡蝠" + }, + + illustrator: "Tomokazu Komiya", + rarity: "Common", + category: "Pokemon", + dexId: [714], + hp: 60, + types: ["Colorless"], + + description: { + ja: "大きな 耳から 超音波を 出して エサの 果物を 探す。 カジッチュを エサと 間違える。", + 'zh-tw': "從大大的耳朵發出超音波, 尋找水果來填飽肚子。 會把啃果蟲誤認成食物。", + 'zh-cn': "從大大的耳朵發出超音波, 尋找水果來填飽肚子。 會把啃果蟲誤認成食物。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "クイックドロー", + 'zh-tw': "快速抽出", + 'zh-cn': "快速抽出" + }, + + damage: 10, + + effect: { + ja: "自分の山札を1枚引く。", + 'zh-tw': "從自己的牌庫抽出1張卡。", + 'zh-cn': "從自己的牌庫抽出1張卡。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/081.ts b/data-asia/SV/SV9/081.ts new file mode 100644 index 000000000..1a2cdd016 --- /dev/null +++ b/data-asia/SV/SV9/081.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "オンバーン", + 'zh-tw': "音波龍", + 'zh-cn': "音波龍" + }, + + illustrator: "Anesaki Dynamic", + rarity: "Uncommon", + category: "Pokemon", + dexId: [715], + hp: 110, + types: ["Colorless"], + + description: { + ja: "巨大な 岩石も 粉々に 砕く 超音波を 発する。 残忍な 性質の ポケモン。", + 'zh-tw': "會發出連巨大的岩石 都能碎成粉狀的超音波。 是性情殘忍的寶可夢。", + 'zh-cn': "會發出連巨大的岩石 都能碎成粉狀的超音波。 是性情殘忍的寶可夢。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "チューニングエコー", + 'zh-tw': "調諧迴響", + 'zh-cn': "調諧迴響" + }, + + effect: { + ja: "自分の手札と相手の手札が同じ枚数なら、このポケモンが「パニックハウル」を使うためのエネルギーは、すべてなくなる。", + 'zh-tw': "若自己的手牌與對手的手牌張數相同,則這隻寶可夢使用「恐慌嚎鳴」所需的能量全部消除。", + 'zh-cn': "若自己的手牌與對手的手牌張數相同,則這隻寶可夢使用「恐慌嚎鳴」所需的能量全部消除。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "パニックハウル", + 'zh-tw': "恐慌嚎鳴", + 'zh-cn': "恐慌嚎鳴" + }, + + damage: 110, + + effect: { + ja: "相手のバトルポケモンをこんらんにする。", + 'zh-tw': "將對手的戰鬥寶可夢【混亂】。", + 'zh-cn': "將對手的戰鬥寶可夢【混亂】。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 0, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/082.ts b/data-asia/SV/SV9/082.ts new file mode 100644 index 000000000..447cb262f --- /dev/null +++ b/data-asia/SV/SV9/082.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ネッコアラ", + 'zh-tw': "樹枕尾熊", + 'zh-cn': "樹枕尾熊" + }, + + illustrator: "Natsumi Yoshida", + rarity: "Common", + category: "Pokemon", + dexId: [775], + hp: 100, + types: ["Colorless"], + + description: { + ja: "一生を 眠ったまま 過ごす。 ネッコアラのみが 毒を 分解できる 猛毒の 葉っぱが エサ。", + 'zh-tw': "終其一生都在睡覺。 作為主食的樹葉帶有劇毒, 只有樹枕尾熊才能將毒分解。", + 'zh-cn': "終其一生都在睡覺。 作為主食的樹葉帶有劇毒, 只有樹枕尾熊才能將毒分解。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "おやすみノック", + 'zh-tw': "晚安敲擊", + 'zh-cn': "晚安敲擊" + }, + + damage: 30, + + effect: { + ja: "おたがいのバトルポケモンを、それぞれねむりにする。次の自分の番、このポケモンが使うワザの、相手のバトルポケモンへのダメージは「+100」される。", + 'zh-tw': "將雙方的戰鬥寶可夢【睡眠】。在下個自己的回合,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+100」點。", + 'zh-cn': "將雙方的戰鬥寶可夢【睡眠】。在下個自己的回合,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+100」點。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/083.ts b/data-asia/SV/SV9/083.ts new file mode 100644 index 000000000..9aeb607ba --- /dev/null +++ b/data-asia/SV/SV9/083.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのココガラ", + 'zh-tw': "赫普的稚山雀", + 'zh-cn': "赫普的稚山雀" + }, + + illustrator: "Shinya Mizuno", + rarity: "Common", + category: "Pokemon", + dexId: [821], + hp: 60, + types: ["Colorless"], + + description: { + ja: "メスは オスより 神経質。 羽を 汚されると 烈火のごとく 怒り くちばしで つつきまくる。", + 'zh-tw': "雌性比雄性還要神經質。 一旦羽毛被弄髒了, 就會滿腔怒火地用鳥嘴猛啄。", + 'zh-cn': "雌性比雄性還要神經質。 一旦羽毛被弄髒了, 就會滿腔怒火地用鳥嘴猛啄。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "こわいしせん", + 'zh-tw': "恐怖視線", + 'zh-cn': "恐怖視線" + }, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンが使うワザのダメージは「-20」される。", + 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-20」點。", + 'zh-cn': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-20」點。" + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + ja: "つつく", + 'zh-tw': "啄", + 'zh-cn': "啄" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/084.ts b/data-asia/SV/SV9/084.ts new file mode 100644 index 000000000..9e6dd5265 --- /dev/null +++ b/data-asia/SV/SV9/084.ts @@ -0,0 +1,64 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのアオガラス", + 'zh-tw': "赫普的藍鴉", + 'zh-cn': "赫普的藍鴉" + }, + + illustrator: "Souichirou Gunjima", + rarity: "Common", + category: "Pokemon", + dexId: [822], + hp: 90, + types: ["Colorless"], + + description: { + ja: "頭が 良く くちばしと 足で 扱える 道具なら 簡単に 使い方を 覚えてしまうぞ。", + 'zh-tw': "頭腦聰明,凡是靠鳥嘴 和爪子能夠操控的工具, 牠都可以輕易地學會用法。", + 'zh-cn': "頭腦聰明,凡是靠鳥嘴 和爪子能夠操控的工具, 牠都可以輕易地學會用法。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "スピードひこう", + 'zh-tw': "高速飛行", + 'zh-cn': "高速飛行" + }, + + damage: 30 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "するどいはね", + 'zh-tw': "銳利羽", + 'zh-cn': "銳利羽" + }, + + damage: 80 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/085.ts b/data-asia/SV/SV9/085.ts new file mode 100644 index 000000000..aa07b074e --- /dev/null +++ b/data-asia/SV/SV9/085.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのウールー", + 'zh-tw': "赫普的毛辮羊", + 'zh-cn': "赫普的毛辮羊" + }, + + illustrator: "Tomomi Ozaki", + rarity: "Common", + category: "Pokemon", + dexId: [831], + hp: 70, + types: ["Colorless"], + + description: { + ja: "毛が 伸びすぎると 動けない。 ウールーの 体毛で 織られた 布は 驚くほど 丈夫。", + 'zh-tw': "要是身上的毛長得太長就會 不能動彈。用毛辮羊的體毛 織成的布結實得讓人吃驚。", + 'zh-cn': "要是身上的毛長得太長就會 不能動彈。用毛辮羊的體毛 織成的布結實得讓人吃驚。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "けとばす", + 'zh-tw': "踢飛", + 'zh-cn': "踢飛" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/086.ts b/data-asia/SV/SV9/086.ts new file mode 100644 index 000000000..942ec0b75 --- /dev/null +++ b/data-asia/SV/SV9/086.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのバイウールー", + 'zh-tw': "赫普的毛毛角羊", + 'zh-cn': "赫普的毛毛角羊" + }, + + illustrator: "Ryota Murayama", + rarity: "Rare", + category: "Pokemon", + dexId: [832], + hp: 120, + types: ["Colorless"], + + description: { + ja: "立派に 伸びた ツノは 異性に アピールするために 生えている。 武器として 使うことはない。", + 'zh-tw': "長得長長的角是為了 向異性求愛而存在的。 牠從不會把角當作武器。", + 'zh-cn': "長得長長的角是為了 向異性求愛而存在的。 牠從不會把角當作武器。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "チャレンジホーン", + 'zh-tw': "挑戰角擊", + 'zh-cn': "挑戰角擊" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。", + 'zh-tw': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。", + 'zh-cn': "在自己的回合,從手牌使出這張卡並完成進化時,可使用1次。選擇1隻對手的備戰寶可夢,與戰鬥寶可夢互換。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ずつき", + 'zh-tw': "頭錘", + 'zh-cn': "頭錘" + }, + + damage: 80 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/087.ts b/data-asia/SV/SV9/087.ts new file mode 100644 index 000000000..23f36ef1d --- /dev/null +++ b/data-asia/SV/SV9/087.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのウッウ", + 'zh-tw': "赫普的古月鳥", + 'zh-cn': "赫普的古月鳥" + }, + + illustrator: "Saboteri", + rarity: "Uncommon", + category: "Pokemon", + dexId: [845], + hp: 110, + types: ["Colorless"], + + description: { + ja: "なんでも 丸飲みする 習性。 大きすぎる 獲物を 詰まらせて 困っている ウッウほど 手強い。", + 'zh-tw': "擁有大口吞下任何東西的習性。 越是為著喉嚨卡的過大獵物而 煩惱的古月鳥,越是難以對付。", + 'zh-cn': "擁有大口吞下任何東西的習性。 越是為著喉嚨卡的過大獵物而 煩惱的古月鳥,越是難以對付。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "きまぐれスピット", + 'zh-tw': "浮躁噴吐", + 'zh-cn': "浮躁噴吐" + }, + + damage: 120, + + effect: { + ja: "相手のサイドの残り枚数が4枚・3枚でないなら、このワザは失敗。", + 'zh-tw': "若對手剩餘獎賞卡的張數不是4張・3張,則這個招式失敗。", + 'zh-cn': "若對手剩餘獎賞卡的張數不是4張・3張,則這個招式失敗。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/088.ts b/data-asia/SV/SV9/088.ts new file mode 100644 index 000000000..65bb5b0eb --- /dev/null +++ b/data-asia/SV/SV9/088.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "いいきずぐすり", + 'zh-tw': "好傷藥", + 'zh-cn': "好傷藥" + }, + + illustrator: "Studio Bora Inc.", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "自分のポケモン1匹のHPを「60」回復する。その後、回復したポケモンについているエネルギーを1個選び、トラッシュする。", + 'zh-tw': "將自己的1隻寶可夢恢復「60」HP。然後,選擇1個恢復的寶可夢身上附加的能量,將其丟棄。", + 'zh-cn': "將自己的1隻寶可夢恢復「60」HP。然後,選擇1個恢復的寶可夢身上附加的能量,將其丟棄。" + }, + + trainerType: "Item", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/089.ts b/data-asia/SV/SV9/089.ts new file mode 100644 index 000000000..493e908f7 --- /dev/null +++ b/data-asia/SV/SV9/089.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのポイントアップ", + 'zh-tw': "N的PP提升劑", + 'zh-cn': "N的PP提升劑" + }, + + illustrator: "Toyste Beach", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "自分のトラッシュから基本エネルギーを1枚選び、ベンチの「Nのポケモン」につける。", + 'zh-tw': "從自己的棄牌區選擇1張基本能量卡,附於備戰區的「N的寶可夢」身上。", + 'zh-cn': "從自己的棄牌區選擇1張基本能量卡,附於備戰區的「N的寶可夢」身上。" + }, + + trainerType: "Item", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/090.ts b/data-asia/SV/SV9/090.ts new file mode 100644 index 000000000..0649951cd --- /dev/null +++ b/data-asia/SV/SV9/090.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "とりかえチケット", + 'zh-tw': "調換票", + 'zh-cn': "調換票" + }, + + illustrator: "Studio Bora Inc.", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "自分のサイドを数えたあと、すべてウラにして切り、山札の下にもどす。その後、もどした枚数ぶん、山札を上からサイドとして置く。", + 'zh-tw': "數過自己的獎賞卡張數後,全部翻回反面並重洗,放回牌庫下方。然後,從牌庫上方抽出與放回張數相同數量的卡,作為獎賞卡放置。", + 'zh-cn': "數過自己的獎賞卡張數後,全部翻回反面並重洗,放回牌庫下方。然後,從牌庫上方抽出與放回張數相同數量的卡,作為獎賞卡放置。" + }, + + trainerType: "Item", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/091.ts b/data-asia/SV/SV9/091.ts new file mode 100644 index 000000000..be2af505d --- /dev/null +++ b/data-asia/SV/SV9/091.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのバッグ", + 'zh-tw': "赫普的包包", + 'zh-cn': "赫普的包包" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "自分の山札からたねポケモンの「ホップのポケモン」を2枚まで選び、ベンチに出す。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢的「赫普的寶可夢」,放置於備戰區。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張【基礎】寶可夢的「赫普的寶可夢」,放置於備戰區。並且重洗牌庫。" + }, + + trainerType: "Item", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/092.ts b/data-asia/SV/SV9/092.ts new file mode 100644 index 000000000..f94cb71cd --- /dev/null +++ b/data-asia/SV/SV9/092.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのこだわりハチマキ", + 'zh-tw': "赫普的講究頭帶", + 'zh-cn': "赫普的講究頭帶" + }, + + illustrator: "Toyste Beach", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "このカードをつけている「ホップのポケモン」は、ワザを使うためのエネルギーがエネルギー1個ぶん少なくなり、そのポケモンが使うワザの、相手のバトルポケモンへのダメージは「+30」される。", + 'zh-tw': "附有這張卡的「赫普的寶可夢」,使用招式所需的能量減少1個【無】能量,那隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+30」點。", + 'zh-cn': "附有這張卡的「赫普的寶可夢」,使用招式所需的能量減少1個【無】能量,那隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+30」點。" + }, + + trainerType: "Tool", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/093.ts b/data-asia/SV/SV9/093.ts new file mode 100644 index 000000000..ec446bff6 --- /dev/null +++ b/data-asia/SV/SV9/093.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "リーリエのしんじゅ", + 'zh-tw': "莉莉艾的珍珠", + 'zh-cn': "莉莉艾的珍珠" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "このカードをつけている「リーリエのポケモン」が、相手のポケモンからワザのダメージを受けてきぜつしたとき、とられるサイドは1枚少なくなる。", + 'zh-tw': "附有這張卡的「莉莉艾的寶可夢」受到對手的寶可夢招式的傷害而【昏厥】時,被獲得的獎賞卡減少1張。", + 'zh-cn': "附有這張卡的「莉莉艾的寶可夢」受到對手的寶可夢招式的傷害而【昏厥】時,被獲得的獎賞卡減少1張。" + }, + + trainerType: "Tool", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/094.ts b/data-asia/SV/SV9/094.ts new file mode 100644 index 000000000..ac3d166e6 --- /dev/null +++ b/data-asia/SV/SV9/094.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "アイリスの闘志", + 'zh-tw': "艾莉絲的鬥志", + 'zh-cn': "艾莉絲的鬥志" + }, + + illustrator: "yuu", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を1枚トラッシュしなければ使えない。\n\n自分の手札が6枚になるように、山札を引く。", + 'zh-tw': "這張卡必須將自己的1張手牌丟棄才可使用。 從牌庫抽卡直到自己的手牌滿6張為止。", + 'zh-cn': "這張卡必須將自己的1張手牌丟棄才可使用。 從牌庫抽卡直到自己的手牌滿6張為止。" + }, + + trainerType: "Supporter", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/095.ts b/data-asia/SV/SV9/095.ts new file mode 100644 index 000000000..816cee3a1 --- /dev/null +++ b/data-asia/SV/SV9/095.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "怖いお兄さん", + 'zh-tw': "可怕的哥哥", + 'zh-cn': "可怕的哥哥" + }, + + illustrator: "Hideki Ishikawa", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "相手のポケモンを1匹選び、そのポケモンについている「ポケモンのどうぐ」と「特殊エネルギー」を1枚ずつトラッシュする。", + 'zh-tw': "選擇1隻對手的寶可夢,將那隻寶可夢身上附加的「寶可夢道具」卡與「特殊能量」卡各丟棄1張。", + 'zh-cn': "選擇1隻對手的寶可夢,將那隻寶可夢身上附加的「寶可夢道具」卡與「特殊能量」卡各丟棄1張。" + }, + + trainerType: "Supporter", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/096.ts b/data-asia/SV/SV9/096.ts new file mode 100644 index 000000000..bda3d5946 --- /dev/null +++ b/data-asia/SV/SV9/096.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "タケシのスカウト", + 'zh-tw': "小剛的發掘", + 'zh-cn': "小剛的發掘" + }, + + illustrator: "Teeziro", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "自分の山札からたねポケモンを2枚まで、または進化ポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。", + 'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢卡,或者1張進化寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。", + 'zh-cn': "從自己的牌庫選擇最多2張【基礎】寶可夢卡,或者1張進化寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。" + }, + + trainerType: "Supporter", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/097.ts b/data-asia/SV/SV9/097.ts new file mode 100644 index 000000000..89bef35fb --- /dev/null +++ b/data-asia/SV/SV9/097.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nの城", + 'zh-tw': "N的城堡", + 'zh-cn': "N的城堡" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "おたがいの場の「Nのポケモン」全員のにげるためのエネルギーは、すべてなくなる。", + 'zh-tw': "雙方場上所有「N的寶可夢」【撤退】所需的能量全部消除。", + 'zh-cn': "雙方場上所有「N的寶可夢」【撤退】所需的能量全部消除。" + }, + + trainerType: "Stadium", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/098.ts b/data-asia/SV/SV9/098.ts new file mode 100644 index 000000000..8440943c1 --- /dev/null +++ b/data-asia/SV/SV9/098.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ハッコウシティ", + 'zh-tw': "釀光市", + 'zh-cn': "釀光市" + }, + + illustrator: "MARINA Chikazawa", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "おたがいのプレイヤーは、自分の番ごとに1回、自分のトラッシュから「基本エネルギー」を2枚まで選び、相手に見せて、手札に加えてよい。", + 'zh-tw': "雙方玩家在每個自己的回合時,可使用1次,可從自己的棄牌區選擇最多2張「基本【雷】能量」卡,在給對手看過後加入手牌。", + 'zh-cn': "雙方玩家在每個自己的回合時,可使用1次,可從自己的棄牌區選擇最多2張「基本【雷】能量」卡,在給對手看過後加入手牌。" + }, + + trainerType: "Stadium", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/099.ts b/data-asia/SV/SV9/099.ts new file mode 100644 index 000000000..a420c4d30 --- /dev/null +++ b/data-asia/SV/SV9/099.ts @@ -0,0 +1,27 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ハロンタウン", + 'zh-tw': "化朗鎮", + 'zh-cn': "化朗鎮" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "Uncommon", + category: "Trainer", + + effect: { + ja: "おたがいの「ホップのポケモン」が使うワザの、相手のバトルポケモンへのダメージは「+30」される。", + 'zh-tw': "雙方的「赫普的寶可夢」使用的招式,對對手的戰鬥寶可夢造成的傷害「+30」點。", + 'zh-cn': "雙方的「赫普的寶可夢」使用的招式,對對手的戰鬥寶可夢造成的傷害「+30」點。" + }, + + trainerType: "Stadium", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/100.ts b/data-asia/SV/SV9/100.ts new file mode 100644 index 000000000..8ee4ef9d2 --- /dev/null +++ b/data-asia/SV/SV9/100.ts @@ -0,0 +1,26 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "スパイクエネルギー", + 'zh-tw': "扣殺能量", + 'zh-cn': "扣殺能量" + }, + + rarity: "Uncommon", + category: "Energy", + + effect: { + ja: "このカードは、ポケモンについているかぎり、エネルギー1個ぶんとしてはたらく。\n\nこのカードをつけているポケモンが、バトル場で相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンにダメカンを2個のせる。", + 'zh-tw': "只要這張卡附於寶可夢身上,視為提供1個【無】能量。 附有這張卡的寶可夢在戰鬥場受到對手的寶可夢招式的傷害時,在使用招式的寶可夢身上放置2個傷害指示物。", + 'zh-cn': "只要這張卡附於寶可夢身上,視為提供1個【無】能量。 附有這張卡的寶可夢在戰鬥場受到對手的寶可夢招式的傷害時,在使用招式的寶可夢身上放置2個傷害指示物。" + }, + + energyType: "Special", + regulationMark: "I" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/101.ts b/data-asia/SV/SV9/101.ts new file mode 100644 index 000000000..d5e56184d --- /dev/null +++ b/data-asia/SV/SV9/101.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "マラカッチ" + }, + + illustrator: "Ounishi", + rarity: "None", + category: "Pokemon", + dexId: [556], + hp: 110, + types: ["Grass"], + + description: { + ja: "1年に 一度 種を まく。 花の 種は 栄養満点で 砂漠の 貴重な 食料。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "さくれつばり" + }, + + effect: { + ja: "このポケモンが、バトル場で相手のポケモンからワザのダメージを受けてきぜつしたとき、ワザを使ったポケモンにダメカンを6個のせる。" + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "おいつめる" + }, + + damage: 20, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンは、にげられない。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/102.ts b/data-asia/SV/SV9/102.ts new file mode 100644 index 000000000..29485e118 --- /dev/null +++ b/data-asia/SV/SV9/102.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "フリーザー" + }, + + illustrator: "Kuroimori", + rarity: "None", + category: "Pokemon", + dexId: [144], + hp: 110, + types: ["Water"], + + description: { + ja: "氷を 自在に 操る 力を もつ。 永久凍土の 雪山に 棲んでいるという。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "つめたいはばたき" + }, + + effect: { + ja: "自分の山札から「基本エネルギー」を2枚まで選び、このポケモンにつける。そして山札を切る。" + } + }, { + cost: ["Water", "Water", "Colorless"], + + name: { + ja: "アイスブラスト" + }, + + damage: 110 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/103.ts b/data-asia/SV/SV9/103.ts new file mode 100644 index 000000000..ba2bfda5c --- /dev/null +++ b/data-asia/SV/SV9/103.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホエルオー" + }, + + illustrator: "Katsunori Sato", + rarity: "None", + category: "Pokemon", + dexId: [321], + hp: 240, + types: ["Water"], + + description: { + ja: "とにかく どでかいので 人気。 ホエルオーウォッチングは 各地で 人気の 観光プラン なのだ。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "ハイドロポンプ" + }, + + damage: "10+", + + effect: { + ja: "このポケモンについているエネルギーの数×50ダメージ追加。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 4 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/104.ts b/data-asia/SV/SV9/104.ts new file mode 100644 index 000000000..fc2a7ffab --- /dev/null +++ b/data-asia/SV/SV9/104.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモのタイカイデン" + }, + + illustrator: "Terada Tera", + rarity: "None", + category: "Pokemon", + dexId: [941], + hp: 120, + types: ["Lightning"], + + description: { + ja: "のど袋を ふくらませて 電気を 増幅させる。 風に 乗って 1日で 700キロを 飛行する。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "フラッシュドロー" + }, + + effect: { + ja: "自分の番に、このポケモンについている「基本エネルギー」を1個トラッシュするなら、1回使える。自分の手札が6枚になるように、山札を引く。" + } + }], + + attacks: [{ + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + ja: "マッハボルト" + }, + + damage: 70 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/105.ts b/data-asia/SV/SV9/105.ts new file mode 100644 index 000000000..2510f2928 --- /dev/null +++ b/data-asia/SV/SV9/105.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "リーリエのアブリボン" + }, + + illustrator: "saino misaki", + rarity: "None", + category: "Pokemon", + dexId: [743], + hp: 70, + types: ["Psychic"], + + description: { + ja: "落ちこんでいる 人や ポケモンの 気持ちを 感じ取っては 手作りの 花粉団子で 元気づけたりする。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "おさそいウインク" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。相手の手札を見て、その中からたねポケモンを好きなだけ選び、相手のベンチに出す。" + } + }], + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "マジカルショット" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/106.ts b/data-asia/SV/SV9/106.ts new file mode 100644 index 000000000..b12577dc8 --- /dev/null +++ b/data-asia/SV/SV9/106.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ウリムー" + }, + + illustrator: "Nakamura Ippan", + rarity: "None", + category: "Pokemon", + dexId: [220], + hp: 70, + types: ["Fighting"], + + description: { + ja: "鼻先で 地面を 掘って 食べるものを 探しだす。 凍った 地面も へっちゃらだ。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "なかまをよぶ" + }, + + effect: { + ja: "自分の山札からたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。" + } + }, { + cost: ["Fighting"], + + name: { + ja: "つきたおし" + }, + + damage: 10 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/107.ts b/data-asia/SV/SV9/107.ts new file mode 100644 index 000000000..aae8ca587 --- /dev/null +++ b/data-asia/SV/SV9/107.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ルガルガン" + }, + + illustrator: "GIDORA", + rarity: "None", + category: "Pokemon", + dexId: [745], + hp: 120, + types: ["Fighting"], + + description: { + ja: "鋭い ツメや キバで 獲物を 襲う。 信頼する トレーナーの 指示には 忠実に 従う。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "とげをまとう" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分のトラッシュから「スパイクエネルギー」を2枚まで選び、このポケモンにつける。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "クラッチファング" + }, + + damage: "40+", + + effect: { + ja: "相手のバトルポケモンにのっているダメカンの数×40ダメージ追加。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/108.ts b/data-asia/SV/SV9/108.ts new file mode 100644 index 000000000..5df50fdaf --- /dev/null +++ b/data-asia/SV/SV9/108.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのゾロア" + }, + + illustrator: "Megumi Mizutani", + rarity: "None", + category: "Pokemon", + dexId: [570], + hp: 70, + types: ["Darkness"], + + description: { + ja: "相手の 姿に 化けてみせて 驚かせる。 無口な 子どもに 化けていることが 多いらしい。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + ja: "ひっかく" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/109.ts b/data-asia/SV/SV9/109.ts new file mode 100644 index 000000000..8b9d43759 --- /dev/null +++ b/data-asia/SV/SV9/109.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのレシラム" + }, + + illustrator: "Bun Toujo", + rarity: "None", + category: "Pokemon", + dexId: [643], + hp: 130, + types: ["Dragon"], + + description: { + ja: "人が 真実を 蔑ろにして 欲に まみれると 炎で 国を 焼きつくすと 神話に 描かれた。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Lightning"], + + name: { + ja: "パワーレイジ" + }, + + damage: "20×", + + effect: { + ja: "このポケモンにのっているダメカンの数×20ダメージ。" + } + }, { + cost: ["Fire", "Fire", "Lightning", "Colorless"], + + name: { + ja: "イノセントフレイム" + }, + + damage: 170 + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/110.ts b/data-asia/SV/SV9/110.ts new file mode 100644 index 000000000..07af7ad03 --- /dev/null +++ b/data-asia/SV/SV9/110.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "オオタチ" + }, + + illustrator: "REND", + rarity: "None", + category: "Pokemon", + dexId: [162], + hp: 120, + types: ["Colorless"], + + description: { + ja: "細長い 巣穴で 子育て。 子供が 育つと 巣穴の 外で 独り立ちの 準備を させる。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ひっかく" + }, + + damage: 40 + }, { + cost: ["Colorless", "Colorless"], + + name: { + ja: "ジェットヘッド" + }, + + damage: 70 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/111.ts b/data-asia/SV/SV9/111.ts new file mode 100644 index 000000000..670d46160 --- /dev/null +++ b/data-asia/SV/SV9/111.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "オンバット" + }, + + illustrator: "sowsow", + rarity: "None", + category: "Pokemon", + dexId: [714], + hp: 60, + types: ["Colorless"], + + description: { + ja: "大きな 耳から 超音波を 出して エサの 果物を 探す。 カジッチュを エサと 間違える。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "クイックドロー" + }, + + damage: 10, + + effect: { + ja: "自分の山札を1枚引く。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/112.ts b/data-asia/SV/SV9/112.ts new file mode 100644 index 000000000..7cd294356 --- /dev/null +++ b/data-asia/SV/SV9/112.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのウールー" + }, + + illustrator: "MINAMINAMI Take", + rarity: "None", + category: "Pokemon", + dexId: [831], + hp: 70, + types: ["Colorless"], + + description: { + ja: "毛が 伸びすぎると 動けない。 ウールーの 体毛で 織られた 布は 驚くほど 丈夫。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "けとばす" + }, + + damage: 50 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/113.ts b/data-asia/SV/SV9/113.ts new file mode 100644 index 000000000..ac789437b --- /dev/null +++ b/data-asia/SV/SV9/113.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ボルケニオンex" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "やけつくじょうき" + }, + + effect: { + ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。相手のバトルポケモンをやけどにする。" + } + }], + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "ヒートサイクロン" + }, + + damage: 160, + + effect: { + ja: "このポケモンについているエネルギーを1個選び、ベンチポケモンにつけ替える。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/114.ts b/data-asia/SV/SV9/114.ts new file mode 100644 index 000000000..d12641147 --- /dev/null +++ b/data-asia/SV/SV9/114.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモのハラバリーex" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Pokemon", + hp: 280, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "エレキストリーマー" + }, + + effect: { + ja: "自分の番に何回でも使える。自分の手札から「基本エネルギー」を1枚選び、自分の「ナンジャモのポケモン」につける。" + } + }], + + attacks: [{ + cost: ["Lightning", "Lightning", "Lightning", "Colorless"], + + name: { + ja: "サンダーボルト" + }, + + damage: 230, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/115.ts b/data-asia/SV/SV9/115.ts new file mode 100644 index 000000000..dc0c7a549 --- /dev/null +++ b/data-asia/SV/SV9/115.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "リーリエのピッピex" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Pokemon", + hp: 190, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "フェアリーゾーン" + }, + + effect: { + ja: "このポケモンがいるかぎり、相手の場のポケモン全員の弱点は、すべてタイプになる。[弱点は「×2」で計算する。]" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "フルムーンロンド" + }, + + damage: "20+", + + effect: { + ja: "おたがいのベンチポケモンの数×20ダメージ追加。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/116.ts b/data-asia/SV/SV9/116.ts new file mode 100644 index 000000000..123ab42e3 --- /dev/null +++ b/data-asia/SV/SV9/116.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "マンムーex" + }, + + illustrator: "N-DESIGN Inc.", + rarity: "None", + category: "Pokemon", + hp: 340, + types: ["Fighting"], + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "マンモスキャリー" + }, + + effect: { + ja: "自分の番に1回使える。自分の山札からポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。" + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting"], + + name: { + ja: "とどろくこうしん" + }, + + damage: "180+", + + effect: { + ja: "自分のベンチの2進化ポケモンの数×40ダメージ追加。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 4 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/117.ts b/data-asia/SV/SV9/117.ts new file mode 100644 index 000000000..fb52d8225 --- /dev/null +++ b/data-asia/SV/SV9/117.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのゾロアークex" + }, + + illustrator: "takuyoa", + rarity: "None", + category: "Pokemon", + hp: 280, + types: ["Darkness"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "とりひき" + }, + + effect: { + ja: "自分の番に、自分の手札を1枚トラッシュするなら、1回使える。自分の山札を2枚引く。" + } + }], + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + ja: "ナイトジョーカー" + }, + + effect: { + ja: "自分のベンチの「Nのポケモン」が持つワザを1つ選び、このワザとして使う。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/118.ts b/data-asia/SV/SV9/118.ts new file mode 100644 index 000000000..675b8e1cd --- /dev/null +++ b/data-asia/SV/SV9/118.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのザシアンex" + }, + + illustrator: "aky CG Works", + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "せつなぎり" + }, + + damage: 30, + + effect: { + ja: "相手のベンチポケモン1匹にも、30ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + } + }, { + cost: ["Metal", "Metal", "Metal", "Colorless"], + + name: { + ja: "ブレイブスラッシュ" + }, + + damage: 240, + + effect: { + ja: "次の自分の番、このポケモンは「ブレイブスラッシュ」が使えない。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/119.ts b/data-asia/SV/SV9/119.ts new file mode 100644 index 000000000..0a35ec367 --- /dev/null +++ b/data-asia/SV/SV9/119.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ボーマンダex" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Pokemon", + hp: 320, + types: ["Dragon"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + ja: "ワイドブラスト" + }, + + effect: { + ja: "相手のベンチポケモン全員に、それぞれ50ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + } + }, { + cost: ["Fire", "Water", "Colorless", "Colorless"], + + name: { + ja: "ドラゴンインパクト" + }, + + damage: 300, + + effect: { + ja: "このポケモンについているエネルギーを2個選び、トラッシュする。" + } + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/120.ts b/data-asia/SV/SV9/120.ts new file mode 100644 index 000000000..13e0aea6e --- /dev/null +++ b/data-asia/SV/SV9/120.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ノココッチex" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Pokemon", + hp: 270, + types: ["Colorless"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ぎゃっきょうテール" + }, + + damage: "60×", + + effect: { + ja: "相手の場の「ポケモンex」の数×60ダメージ。" + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ドリルブレイク" + }, + + damage: 150, + + effect: { + ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/121.ts b/data-asia/SV/SV9/121.ts new file mode 100644 index 000000000..f087f76fa --- /dev/null +++ b/data-asia/SV/SV9/121.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "アイリスの闘志" + }, + + illustrator: "yuu", + rarity: "None", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を1枚トラッシュしなければ使えない。\n\n自分の手札が6枚になるように、山札を引く。" + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/122.ts b/data-asia/SV/SV9/122.ts new file mode 100644 index 000000000..df0dc072c --- /dev/null +++ b/data-asia/SV/SV9/122.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "怖いお兄さん" + }, + + illustrator: "Hideki Ishikawa", + rarity: "None", + category: "Trainer", + + effect: { + ja: "相手のポケモンを1匹選び、そのポケモンについている「ポケモンのどうぐ」と「特殊エネルギー」を1枚ずつトラッシュする。" + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/123.ts b/data-asia/SV/SV9/123.ts new file mode 100644 index 000000000..6d4888171 --- /dev/null +++ b/data-asia/SV/SV9/123.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "タケシのスカウト" + }, + + illustrator: "Teeziro", + rarity: "None", + category: "Trainer", + + effect: { + ja: "自分の山札からたねポケモンを2枚まで、または進化ポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/124.ts b/data-asia/SV/SV9/124.ts new file mode 100644 index 000000000..990b95368 --- /dev/null +++ b/data-asia/SV/SV9/124.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ボルケニオンex" + }, + + illustrator: "akagi", + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "やけつくじょうき" + }, + + effect: { + ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。相手のバトルポケモンをやけどにする。" + } + }], + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "ヒートサイクロン" + }, + + damage: 160, + + effect: { + ja: "このポケモンについているエネルギーを1個選び、ベンチポケモンにつけ替える。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/125.ts b/data-asia/SV/SV9/125.ts new file mode 100644 index 000000000..d5a96b1a8 --- /dev/null +++ b/data-asia/SV/SV9/125.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモのハラバリーex" + }, + + illustrator: "Yuu Nishida", + rarity: "None", + category: "Pokemon", + hp: 280, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "エレキストリーマー" + }, + + effect: { + ja: "自分の番に何回でも使える。自分の手札から「基本エネルギー」を1枚選び、自分の「ナンジャモのポケモン」につける。" + } + }], + + attacks: [{ + cost: ["Lightning", "Lightning", "Lightning", "Colorless"], + + name: { + ja: "サンダーボルト" + }, + + damage: 230, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/126.ts b/data-asia/SV/SV9/126.ts new file mode 100644 index 000000000..882036359 --- /dev/null +++ b/data-asia/SV/SV9/126.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "リーリエのピッピex" + }, + + illustrator: "Susumu Maeya", + rarity: "None", + category: "Pokemon", + hp: 190, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "フェアリーゾーン" + }, + + effect: { + ja: "このポケモンがいるかぎり、相手の場のポケモン全員の弱点は、すべてタイプになる。[弱点は「×2」で計算する。]" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "フルムーンロンド" + }, + + damage: "20+", + + effect: { + ja: "おたがいのベンチポケモンの数×20ダメージ追加。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/127.ts b/data-asia/SV/SV9/127.ts new file mode 100644 index 000000000..0745ed23a --- /dev/null +++ b/data-asia/SV/SV9/127.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのゾロアークex" + }, + + illustrator: "Megumi Mizutani", + rarity: "None", + category: "Pokemon", + hp: 280, + types: ["Darkness"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "とりひき" + }, + + effect: { + ja: "自分の番に、自分の手札を1枚トラッシュするなら、1回使える。自分の山札を2枚引く。" + } + }], + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + ja: "ナイトジョーカー" + }, + + effect: { + ja: "自分のベンチの「Nのポケモン」が持つワザを1つ選び、このワザとして使う。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/128.ts b/data-asia/SV/SV9/128.ts new file mode 100644 index 000000000..a35185f80 --- /dev/null +++ b/data-asia/SV/SV9/128.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ホップのザシアンex" + }, + + illustrator: "DOM", + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "せつなぎり" + }, + + damage: 30, + + effect: { + ja: "相手のベンチポケモン1匹にも、30ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + } + }, { + cost: ["Metal", "Metal", "Metal", "Colorless"], + + name: { + ja: "ブレイブスラッシュ" + }, + + damage: 240, + + effect: { + ja: "次の自分の番、このポケモンは「ブレイブスラッシュ」が使えない。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/129.ts b/data-asia/SV/SV9/129.ts new file mode 100644 index 000000000..8936034cc --- /dev/null +++ b/data-asia/SV/SV9/129.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ボーマンダex" + }, + + illustrator: "Tsuyoshi Nagano", + rarity: "None", + category: "Pokemon", + hp: 320, + types: ["Dragon"], + stage: "Stage2", + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + ja: "ワイドブラスト" + }, + + effect: { + ja: "相手のベンチポケモン全員に、それぞれ50ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + } + }, { + cost: ["Fire", "Water", "Colorless", "Colorless"], + + name: { + ja: "ドラゴンインパクト" + }, + + damage: 300, + + effect: { + ja: "このポケモンについているエネルギーを2個選び、トラッシュする。" + } + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/130.ts b/data-asia/SV/SV9/130.ts new file mode 100644 index 000000000..d12641147 --- /dev/null +++ b/data-asia/SV/SV9/130.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモのハラバリーex" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Pokemon", + hp: 280, + types: ["Lightning"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "エレキストリーマー" + }, + + effect: { + ja: "自分の番に何回でも使える。自分の手札から「基本エネルギー」を1枚選び、自分の「ナンジャモのポケモン」につける。" + } + }], + + attacks: [{ + cost: ["Lightning", "Lightning", "Lightning", "Colorless"], + + name: { + ja: "サンダーボルト" + }, + + damage: 230, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/131.ts b/data-asia/SV/SV9/131.ts new file mode 100644 index 000000000..fb52d8225 --- /dev/null +++ b/data-asia/SV/SV9/131.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "Nのゾロアークex" + }, + + illustrator: "takuyoa", + rarity: "None", + category: "Pokemon", + hp: 280, + types: ["Darkness"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "とりひき" + }, + + effect: { + ja: "自分の番に、自分の手札を1枚トラッシュするなら、1回使える。自分の山札を2枚引く。" + } + }], + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + ja: "ナイトジョーカー" + }, + + effect: { + ja: "自分のベンチの「Nのポケモン」が持つワザを1つ選び、このワザとして使う。" + } + }], + + weaknesses: [{ + type: "Grass", + value: "×2" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SV9/132.ts b/data-asia/SV/SV9/132.ts new file mode 100644 index 000000000..55ae3dc90 --- /dev/null +++ b/data-asia/SV/SV9/132.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SV9" + +const card: Card = { + set: Set, + + name: { + ja: "スパイクエネルギー" + }, + + rarity: "None", + category: "Energy", + + effect: { + ja: "このカードは、ポケモンについているかぎり、エネルギー1個ぶんとしてはたらく。\n\nこのカードをつけているポケモンが、バトル場で相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンにダメカンを2個のせる。" + }, + + energyType: "Special" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK.ts b/data-asia/SV/SVK.ts new file mode 100644 index 000000000..177283a63 --- /dev/null +++ b/data-asia/SV/SVK.ts @@ -0,0 +1,20 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SVK', + name: { + ja: 'デッキビルドBOX ステラミラクル' + }, + + serie: serie, + + cardCount: { + official: 44 + }, + releaseDate: { + ja: '2024-07-19' + } +} + +export default set diff --git a/data-asia/SV/SVK/001.ts b/data-asia/SV/SVK/001.ts new file mode 100644 index 000000000..37bb6e00f --- /dev/null +++ b/data-asia/SV/SVK/001.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "かがやくリザードン" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 160, + types: ["Fire"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "エキサイトハート" + }, + + effect: { + ja: "相手がすでにとったサイドの枚数ぶん、このポケモンがワザを使うためのエネルギーは少なくなる。" + } + }], + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + ja: "かえんばく" + }, + + damage: 250, + + effect: { + ja: "次の自分の番、このポケモンは「かえんばく」が使えない。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 3, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/002.ts b/data-asia/SV/SVK/002.ts new file mode 100644 index 000000000..01f76722a --- /dev/null +++ b/data-asia/SV/SVK/002.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ネオラントV" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 170, + types: ["Water"], + stage: "Basic", + suffix: "V", + + abilities: [{ + type: "Ability", + + name: { + ja: "ルミナスサイン" + }, + + effect: { + ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。自分の山札からサポートを1枚選び、相手に見せて、手札に加える。そして山札を切る。" + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + ja: "アクアリターン" + }, + + damage: 120, + + effect: { + ja: "このポケモンと、ついているすべてのカードを、自分の山札にもどして切る。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/003.ts b/data-asia/SV/SVK/003.ts new file mode 100644 index 000000000..43bcb4c30 --- /dev/null +++ b/data-asia/SV/SVK/003.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "マナフィ" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + dexId: [490], + hp: 70, + types: ["Water"], + + description: { + ja: "どんな ポケモンとでも 心を 通い合わせる ことが できる 不思議な 能力を 持っている。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "なみのヴェール" + }, + + effect: { + ja: "このポケモンがいるかぎり、自分のベンチポケモン全員は、相手のワザのダメージを受けない。" + } + }], + + attacks: [{ + cost: ["Water"], + + name: { + ja: "みずかけ" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/004.ts b/data-asia/SV/SVK/004.ts new file mode 100644 index 000000000..89e13bd95 --- /dev/null +++ b/data-asia/SV/SVK/004.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "かがやくゲッコウガ" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 130, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "かくしふだ" + }, + + effect: { + ja: "自分の番に、自分の手札からエネルギーを1枚トラッシュするなら、1回使える。自分の山札を2枚引く。" + } + }], + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + ja: "げっこうしゅりけん" + }, + + effect: { + ja: "このポケモンについているエネルギーを2個トラッシュし、相手のポケモン2匹に、それぞれ90ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/005.ts b/data-asia/SV/SVK/005.ts new file mode 100644 index 000000000..52794320f --- /dev/null +++ b/data-asia/SV/SVK/005.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "かがやくフーディン" + }, + + illustrator: "Akira Komayama", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ペインスプーン" + }, + + effect: { + ja: "自分の番に1回使える。相手の場のポケモン1匹にのっているダメカンを2個まで選び、相手の別のポケモン1匹にのせ替える。" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "マインドルーラー" + }, + + damage: "20×", + + effect: { + ja: "相手の手札の枚数×20ダメージ。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/006.ts b/data-asia/SV/SVK/006.ts new file mode 100644 index 000000000..2b418ac41 --- /dev/null +++ b/data-asia/SV/SVK/006.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ミュウex" + }, + + illustrator: "aky CG Works", + category: "Pokemon", + hp: 180, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "リスタート" + }, + + effect: { + ja: "自分の番に1回使える。自分の手札が3枚になるように、山札を引く。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "ゲノムハック" + }, + + effect: { + ja: "相手のバトルポケモンが持っているワザを1つ選び、このワザとして使う。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 0, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/007.ts b/data-asia/SV/SVK/007.ts new file mode 100644 index 000000000..4d3f0f4fe --- /dev/null +++ b/data-asia/SV/SVK/007.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ポッポ" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + dexId: [16], + hp: 50, + types: ["Colorless"], + + description: { + ja: "戦いを 好まない おとなしい 性格だが 下手に 手を 出すと 強烈に 反撃されるぞ。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "なかまをよぶ" + }, + + effect: { + ja: "自分の山札からたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。" + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + ja: "たいあたり" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/008.ts b/data-asia/SV/SVK/008.ts new file mode 100644 index 000000000..5b1be2499 --- /dev/null +++ b/data-asia/SV/SVK/008.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ピジョン" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + dexId: [17], + hp: 80, + types: ["Colorless"], + + description: { + ja: "広い 縄張りを 持っており 侵入する 邪魔者は 徹底的に つつかれてしまう。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "はばたく" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 0, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/009.ts b/data-asia/SV/SVK/009.ts new file mode 100644 index 000000000..86ce3596a --- /dev/null +++ b/data-asia/SV/SVK/009.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ピジョットex" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 280, + types: ["Colorless"], + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "マッハサーチ" + }, + + effect: { + ja: "自分の番に1回使える。自分の山札から好きなカードを1枚選び、手札に加える。そして山札を切る。この番、すでに別の「マッハサーチ」を使っていたなら、この特性は使えない。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ふきすさぶ" + }, + + damage: 120, + + effect: { + ja: "のぞむなら、場に出ているスタジアムをトラッシュする。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 0, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/010.ts b/data-asia/SV/SVK/010.ts new file mode 100644 index 000000000..f0a87cff7 --- /dev/null +++ b/data-asia/SV/SVK/010.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ビッパ" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + dexId: [399], + hp: 60, + types: ["Colorless"], + + description: { + ja: "いつも 大木や 石を かじって 丈夫な 前歯を 削っている。 水辺に 巣を 作り 暮らす。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "へっちゃらがお" + }, + + effect: { + ja: "このポケモンは、ベンチにいるかぎり、ワザのダメージを受けない。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "ひっさつまえば" + }, + + damage: 30, + + effect: { + ja: "コインを1回投げウラなら、このワザは失敗。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/011.ts b/data-asia/SV/SVK/011.ts new file mode 100644 index 000000000..2cb220b26 --- /dev/null +++ b/data-asia/SV/SVK/011.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ビーダル" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + dexId: [400], + hp: 120, + types: ["Colorless"], + + description: { + ja: "川を 木の幹や 泥の ダムで せき止めて 住処を 作る。 働き者として 知られている。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "はたらくまえば" + }, + + effect: { + ja: "自分の番に1回使える。自分の手札が5枚になるように、山札を引く。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "テールスマッシュ" + }, + + damage: 100, + + effect: { + ja: "コインを1回投げウラなら、このワザは失敗。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/012.ts b/data-asia/SV/SVK/012.ts new file mode 100644 index 000000000..6fc013ec2 --- /dev/null +++ b/data-asia/SV/SVK/012.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "イキリンコex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + ja: "イキリテイク" + }, + + effect: { + ja: "最初の自分の番にだけ1回使える。自分の手札をすべてトラッシュし、山札を6枚引く。この番、すでに別の「イキリテイク」を使っていたなら、この特性は使えない。" + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "きあいをいれる" + }, + + damage: 20, + + effect: { + ja: "自分のトラッシュから基本エネルギーを2枚まで選び、ベンチポケモン1匹につける。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/013.ts b/data-asia/SV/SVK/013.ts new file mode 100644 index 000000000..aa0819c9e --- /dev/null +++ b/data-asia/SV/SVK/013.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "カウンターキャッチャー" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "このカードは、自分のサイドの残り枚数が、相手のサイドの残り枚数より多いときにしか使えない。\n\n相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/014.ts b/data-asia/SV/SVK/014.ts new file mode 100644 index 000000000..5afeb8ed9 --- /dev/null +++ b/data-asia/SV/SVK/014.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "キャプチャーアロマ" + }, + + illustrator: "sadaji", + category: "Trainer", + + effect: { + ja: "コインを1回投げる。オモテなら進化ポケモン、ウラならたねポケモンを自分の山札から1枚選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/015.ts b/data-asia/SV/SVK/015.ts new file mode 100644 index 000000000..af2f19011 --- /dev/null +++ b/data-asia/SV/SVK/015.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "すごいつりざお" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "自分のトラッシュからポケモンと基本エネルギーを合計3枚まで選び、相手に見せて、山札にもどして切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/016.ts b/data-asia/SV/SVK/016.ts new file mode 100644 index 000000000..3c17fe338 --- /dev/null +++ b/data-asia/SV/SVK/016.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ダークパッチ" + }, + + illustrator: "Ryo Ueda", + category: "Trainer", + + effect: { + ja: "自分のトラッシュから「基本エネルギー」を1枚選び、ベンチのポケモンにつける。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/017.ts b/data-asia/SV/SVK/017.ts new file mode 100644 index 000000000..0f0554ff1 --- /dev/null +++ b/data-asia/SV/SVK/017.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "大地の器" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を1枚トラッシュしなければ使えない。\n\n自分の山札から基本エネルギーを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/018.ts b/data-asia/SV/SVK/018.ts new file mode 100644 index 000000000..0321976f9 --- /dev/null +++ b/data-asia/SV/SVK/018.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "なかよしポフィン" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + ja: "自分の山札から、HPが「70」以下のたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/019.ts b/data-asia/SV/SVK/019.ts new file mode 100644 index 000000000..c3a2d63a1 --- /dev/null +++ b/data-asia/SV/SVK/019.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ネストボール" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/020.ts b/data-asia/SV/SVK/020.ts new file mode 100644 index 000000000..0cda6c253 --- /dev/null +++ b/data-asia/SV/SVK/020.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ハイパーボール" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を2枚トラッシュしなければ使えない。\n\n自分の山札からポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/021.ts b/data-asia/SV/SVK/021.ts new file mode 100644 index 000000000..a07215f30 --- /dev/null +++ b/data-asia/SV/SVK/021.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ふしぎなアメ" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + ja: "自分の手札から2進化ポケモンを1枚選び、そのポケモンへと進化する自分の場のたねポケモンにのせ、1進化をとばして進化させる。(最初の自分の番や、出したばかりのポケモンには使えない。)" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/022.ts b/data-asia/SV/SVK/022.ts new file mode 100644 index 000000000..025680cae --- /dev/null +++ b/data-asia/SV/SVK/022.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ポケモンいれかえ" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + ja: "自分のバトルポケモンをベンチポケモンと入れ替える。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/023.ts b/data-asia/SV/SVK/023.ts new file mode 100644 index 000000000..0a8d9b65f --- /dev/null +++ b/data-asia/SV/SVK/023.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "むしとりセット" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + ja: "自分の山札を上から7枚見て、その中からポケモンと「基本エネルギー」を合計2枚まで選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/024.ts b/data-asia/SV/SVK/024.ts new file mode 100644 index 000000000..160bf5450 --- /dev/null +++ b/data-asia/SV/SVK/024.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ロストスイーパー" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を1枚、ロストゾーンに置かなければ使えない。\n\nおたがいの場のポケモンについている「ポケモンのどうぐ」と場に出ている「スタジアム」の中から1枚選び、ロストゾーンに置く。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/025.ts b/data-asia/SV/SVK/025.ts new file mode 100644 index 000000000..431743b71 --- /dev/null +++ b/data-asia/SV/SVK/025.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "緊急ボード" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンは、にげるためのエネルギーが1個ぶん少なくなる。そのポケモンの残りHPが「30」以下なら、にげるためのエネルギーは、すべてなくなる。" + }, + + trainerType: "Tool", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/026.ts b/data-asia/SV/SVK/026.ts new file mode 100644 index 000000000..61e1da65b --- /dev/null +++ b/data-asia/SV/SVK/026.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "森の封印石" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + ja: "このカードをつけている「ポケモンV」は、このVSTARパワーを使える。" + }, + + trainerType: "Tool", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/027.ts b/data-asia/SV/SVK/027.ts new file mode 100644 index 000000000..ebee3144e --- /dev/null +++ b/data-asia/SV/SVK/027.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "勇気のおまもり" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "このカードをつけているたねポケモンの最大HPは「+50」される。" + }, + + trainerType: "Tool", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/028.ts b/data-asia/SV/SVK/028.ts new file mode 100644 index 000000000..fc4679c9c --- /dev/null +++ b/data-asia/SV/SVK/028.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ワザマシン エヴォリューション" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンは、このカードに書かれているワザを使える。[ワザを使うためのエネルギーは必要。]\nポケモンについているこのカードは、自分の番の終わりにトラッシュする。" + }, + + trainerType: "Tool", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/029.ts b/data-asia/SV/SVK/029.ts new file mode 100644 index 000000000..fc0f27055 --- /dev/null +++ b/data-asia/SV/SVK/029.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ワザマシン デヴォリューション" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + ja: "このカードをつけているポケモンは、このカードに書かれているワザを使える。[ワザを使うためのエネルギーは必要。]\nポケモンについているこのカードは、自分の番の終わりにトラッシュする。" + }, + + trainerType: "Tool", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/030.ts b/data-asia/SV/SVK/030.ts new file mode 100644 index 000000000..5f1206861 --- /dev/null +++ b/data-asia/SV/SVK/030.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "アカマツ" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + ja: "自分の山札から、それぞれちがうタイプの基本エネルギーを2枚まで選び、相手に見せて、どちらか1枚を手札に加え、残りのエネルギーを自分のポケモンにつける。そして山札を切る。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/031.ts b/data-asia/SV/SVK/031.ts new file mode 100644 index 000000000..d5a59dd19 --- /dev/null +++ b/data-asia/SV/SVK/031.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "アクロマの実験" + }, + + illustrator: "Naoki Saito", + category: "Trainer", + + effect: { + ja: "自分の山札を上から5枚見て、その中からカードを3枚選び、手札に加える。残りのカードはロストゾーンに置く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/032.ts b/data-asia/SV/SVK/032.ts new file mode 100644 index 000000000..eaf4aa673 --- /dev/null +++ b/data-asia/SV/SVK/032.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "スイレンのお世話" + }, + + illustrator: "Atsushi Furusawa", + category: "Trainer", + + effect: { + ja: "自分のトラッシュからポケモン(「ルールを持つポケモン」をのぞく)と基本エネルギーを合計3枚まで選び、相手に見せて、手札に加える。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/033.ts b/data-asia/SV/SVK/033.ts new file mode 100644 index 000000000..3af832664 --- /dev/null +++ b/data-asia/SV/SVK/033.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "スグリ" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + ja: "このカードは、2つの効果から1つを選んで使う。\n\n◆自分のバトルポケモンをベンチポケモンと入れ替える。\n\n◆この番、自分のポケモンが使うワザの、相手のバトル場の「ポケモンex・V」へのダメージは「+30」される。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/034.ts b/data-asia/SV/SVK/034.ts new file mode 100644 index 000000000..24e47ad6b --- /dev/null +++ b/data-asia/SV/SVK/034.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモ" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + ja: "おたがいのプレイヤーは、それぞれ自分の手札をすべてウラにして切り、山札の下にもどす。その後、それぞれ自分のサイドの残り枚数ぶん、山札を引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/035.ts b/data-asia/SV/SVK/035.ts new file mode 100644 index 000000000..6b3ca11ec --- /dev/null +++ b/data-asia/SV/SVK/035.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "博士の研究" + }, + + illustrator: "kirisAki", + category: "Trainer", + + effect: { + ja: "自分の手札をすべてトラッシュし、山札を7枚引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/036.ts b/data-asia/SV/SVK/036.ts new file mode 100644 index 000000000..6b3ca11ec --- /dev/null +++ b/data-asia/SV/SVK/036.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "博士の研究" + }, + + illustrator: "kirisAki", + category: "Trainer", + + effect: { + ja: "自分の手札をすべてトラッシュし、山札を7枚引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/037.ts b/data-asia/SV/SVK/037.ts new file mode 100644 index 000000000..8e8a35734 --- /dev/null +++ b/data-asia/SV/SVK/037.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "フトゥー博士のシナリオ" + }, + + illustrator: "hncl", + category: "Trainer", + + effect: { + ja: "自分の場のポケモンを1匹選び、手札にもどす。(ポケモン以外のカードは、すべてトラッシュする。)" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/038.ts b/data-asia/SV/SVK/038.ts new file mode 100644 index 000000000..3728a0d28 --- /dev/null +++ b/data-asia/SV/SVK/038.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ペパー" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + ja: "自分の山札から「グッズ」と「ポケモンのどうぐ」を1枚ずつ選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/039.ts b/data-asia/SV/SVK/039.ts new file mode 100644 index 000000000..bbe61886b --- /dev/null +++ b/data-asia/SV/SVK/039.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ボスの指令" + }, + + illustrator: "NC Empire", + category: "Trainer", + + effect: { + ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/040.ts b/data-asia/SV/SVK/040.ts new file mode 100644 index 000000000..5227e7f3b --- /dev/null +++ b/data-asia/SV/SVK/040.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "タウンデパート" + }, + + illustrator: "Oswaldo KATO", + category: "Trainer", + + effect: { + ja: "おたがいのプレイヤーは、自分の番ごとに1回、自分の山札から「ポケモンのどうぐ」を1枚選び、相手に見せて、手札に加えてよい。そして山札を切る。" + }, + + trainerType: "Stadium", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/041.ts b/data-asia/SV/SVK/041.ts new file mode 100644 index 000000000..acb9ff9c0 --- /dev/null +++ b/data-asia/SV/SVK/041.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ボウルタウン" + }, + + illustrator: "Oswaldo KATO", + category: "Trainer", + + effect: { + ja: "おたがいのプレイヤーは、自分の番ごとに1回、自分の山札からたねポケモン(「ルールを持つポケモン」をのぞく)を1枚選び、ベンチに出してよい。そして山札を切る。" + }, + + trainerType: "Stadium", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/042.ts b/data-asia/SV/SVK/042.ts new file mode 100644 index 000000000..0dd03fbb7 --- /dev/null +++ b/data-asia/SV/SVK/042.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ジェットエネルギー" + }, + + category: "Energy", + + effect: { + ja: "このカードは、ポケモンについているかぎり、エネルギー1個ぶんとしてはたらく。\n\nこのカードを手札からベンチポケモンにつけたとき、このカードをつけたポケモンを、バトルポケモンと入れ替える。" + }, + + energyType: "Special", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/043.ts b/data-asia/SV/SVK/043.ts new file mode 100644 index 000000000..7121a2bea --- /dev/null +++ b/data-asia/SV/SVK/043.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ダブルターボエネルギー" + }, + + category: "Energy", + + effect: { + ja: "このカードは、ポケモンについているかぎり、エネルギー2個ぶんとしてはたらく。\n\nこのカードをつけているポケモンが使うワザの、相手のポケモンへのダメージは「-20」される。" + }, + + energyType: "Special", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVK/044.ts b/data-asia/SV/SVK/044.ts new file mode 100644 index 000000000..7f7fb01a5 --- /dev/null +++ b/data-asia/SV/SVK/044.ts @@ -0,0 +1,21 @@ +import { Card } from "../../../interfaces" +import Set from "../SVK" + +const card: Card = { + set: Set, + + name: { + ja: "ルミナスエネルギー" + }, + + category: "Energy", + + effect: { + ja: "このカードは、ポケモンについているかぎり、すべてのタイプのエネルギー1個ぶんとしてはたらく。\n\nこのカードをつけているポケモンに、このカード以外の特殊エネルギーがついているなら、エネルギー1個ぶんとしてはたらく。" + }, + + energyType: "Special", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN.ts b/data-asia/SV/SVLN.ts new file mode 100644 index 000000000..7d3304692 --- /dev/null +++ b/data-asia/SV/SVLN.ts @@ -0,0 +1,20 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SVLN', + name: { + ja: 'スターターセット テラスタイプ:ステラ ニンフィアex' + }, + + serie: serie, + + cardCount: { + official: 22 + }, + releaseDate: { + ja: '2024-08-30' + } +} + +export default set diff --git a/data-asia/SV/SVLN/001.ts b/data-asia/SV/SVLN/001.ts new file mode 100644 index 000000000..32e541619 --- /dev/null +++ b/data-asia/SV/SVLN/001.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "マンタイン" + }, + + illustrator: "satoma", + category: "Pokemon", + dexId: [226], + hp: 110, + types: ["Water"], + + description: { + ja: "泳いで スピードが のってくると 波の上に 飛びだし そのまま 100メートルも 滑空 する。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + ja: "スプラッシュ" + }, + + damage: 30 + }, { + cost: ["Water", "Colorless"], + + name: { + ja: "ウォーターダイブ" + }, + + effect: { + ja: "相手のポケモン1匹に、50ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/002.ts b/data-asia/SV/SVLN/002.ts new file mode 100644 index 000000000..d0759ff4e --- /dev/null +++ b/data-asia/SV/SVLN/002.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "サンダー" + }, + + illustrator: "Nisota Niso", + category: "Pokemon", + dexId: [145], + hp: 110, + types: ["Lightning"], + + description: { + ja: "電気を 自在に 操る。 真っ黒な 雷雲の 中に 巣があると 言い伝えられている。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + ja: "ついげきボルト" + }, + + damage: "20+", + + effect: { + ja: "相手のバトルポケモンにのっているダメカンの数×10ダメージ追加。" + } + }, { + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + ja: "ドリルくちばし" + }, + + damage: 80 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/003.ts b/data-asia/SV/SVLN/003.ts new file mode 100644 index 000000000..00fe678dd --- /dev/null +++ b/data-asia/SV/SVLN/003.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "マリル" + }, + + illustrator: "Shimaris Yukichi", + category: "Pokemon", + dexId: [183], + hp: 60, + types: ["Psychic"], + + description: { + ja: "脂が 詰まっている 尻尾が 浮き袋の 代わりと なるので 流れの 速い 川も 平気。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "ころがりタックル" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/004.ts b/data-asia/SV/SVLN/004.ts new file mode 100644 index 000000000..71d1171b0 --- /dev/null +++ b/data-asia/SV/SVLN/004.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "マリルリ" + }, + + illustrator: "Orca", + category: "Pokemon", + dexId: [184], + hp: 120, + types: ["Psychic"], + + description: { + ja: "じっと 耳を すますと 激しい 流れの 川の 中に なにが いるのか 聞き分けられる。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "きらきらシャボン" + }, + + effect: { + ja: "自分の場に「テラスタル」のポケモンがいるなら、このポケモンが「すてみタックル」を使うためのエネルギーは、エネルギー1個になる。" + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Psychic", "Psychic"], + + name: { + ja: "すてみタックル" + }, + + damage: 230, + + effect: { + ja: "このポケモンにも50ダメージ。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/005.ts b/data-asia/SV/SVLN/005.ts new file mode 100644 index 000000000..69213e45e --- /dev/null +++ b/data-asia/SV/SVLN/005.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "ニンフィアex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 270, + types: ["Psychic"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "マジカルチャーム" + }, + + damage: 160, + + effect: { + ja: "次の相手の番、このワザを受けたポケモンが使うワザのダメージは「-100」される。" + } + }, { + cost: ["Water", "Lightning", "Psychic"], + + name: { + ja: "エンジェライト" + }, + + effect: { + ja: "相手のベンチポケモンを2匹選び、そのポケモンと、ついているすべてのカードを、山札にもどして切る。前の自分の番に、自分のポケモンが「エンジェライト」を使っていたなら、このワザは使えない。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/006.ts b/data-asia/SV/SVLN/006.ts new file mode 100644 index 000000000..3be3a791d --- /dev/null +++ b/data-asia/SV/SVLN/006.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "ゼルネアス" + }, + + illustrator: "Ryuta Fuse", + category: "Pokemon", + dexId: [716], + hp: 130, + types: ["Psychic"], + + description: { + ja: "永遠の 命を 分け与えると 言われている。樹木の 姿で 1000年 眠り 復活する。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "オーロラゲイン" + }, + + damage: 30, + + effect: { + ja: "このポケモンのHPを「30」回復する。" + } + }, { + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + ja: "ギガインパクト" + }, + + damage: 130, + + effect: { + ja: "次の自分の番、このポケモンはワザが使えない。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/007.ts b/data-asia/SV/SVLN/007.ts new file mode 100644 index 000000000..b42ccefa3 --- /dev/null +++ b/data-asia/SV/SVLN/007.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "オドリドリ" + }, + + illustrator: "saino misaki", + category: "Pokemon", + dexId: [741], + hp: 90, + types: ["Psychic"], + + description: { + ja: "うすもものミツを 吸った 姿。 緩やかな ステップで 精神を 高め サイコパワーを 放つ。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + ja: "エネアシスト" + }, + + effect: { + ja: "自分のトラッシュから基本エネルギーを2枚まで選び、ベンチポケモン1匹につける。" + } + }, { + cost: ["Psychic", "Colorless"], + + name: { + ja: "げんわくダンス" + }, + + damage: 20, + + effect: { + ja: "相手のバトルポケモンをこんらんにする。" + } + }], + + weaknesses: [{ + type: "Darkness", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/008.ts b/data-asia/SV/SVLN/008.ts new file mode 100644 index 000000000..b5b91c9f2 --- /dev/null +++ b/data-asia/SV/SVLN/008.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "ミミッキュ" + }, + + illustrator: "Kagemaru Himeno", + category: "Pokemon", + dexId: [778], + hp: 70, + types: ["Psychic"], + + description: { + ja: "陽の 当たらない 暗がりに 棲む。 人前に 出るときは ピカチュウに 似せた 布で 全身を 隠す。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "しんぴのまもり" + }, + + effect: { + ja: "このポケモンは、相手の「ポケモンex・V」からワザのダメージを受けない。" + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + ja: "ゴーストアイ" + }, + + effect: { + ja: "相手のバトルポケモンに、ダメカンを7個のせる。" + } + }], + + weaknesses: [{ + type: "Metal", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/009.ts b/data-asia/SV/SVLN/009.ts new file mode 100644 index 000000000..302bb0177 --- /dev/null +++ b/data-asia/SV/SVLN/009.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "イーブイ" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + dexId: [133], + hp: 50, + types: ["Colorless"], + + description: { + ja: "不規則な 遺伝子を 持つ。 石から出る 放射線によって 体が 突然変異を 起こす。" + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + ja: "ブーストしんか" + }, + + effect: { + ja: "このポケモンは、バトル場にいるかぎり、最初の自分の番や、出したばかりの番でも進化できる。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "とつげき" + }, + + damage: 30, + + effect: { + ja: "このポケモンにも10ダメージ。" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/010.ts b/data-asia/SV/SVLN/010.ts new file mode 100644 index 000000000..b162db059 --- /dev/null +++ b/data-asia/SV/SVLN/010.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "カビゴン" + }, + + illustrator: "Ounishi", + category: "Pokemon", + dexId: [143], + hp: 150, + types: ["Colorless"], + + description: { + ja: "胃袋の 消化液は どんな 毒も 消化できる。 落ちているものを 食べても 平気。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "スパイクドロー" + }, + + damage: 20, + + effect: { + ja: "自分の山札を1枚引く。" + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + ja: "メガトンパンチ" + }, + + damage: 100 + }], + + weaknesses: [{ + type: "Fighting", + value: "×2" + }], + + retreat: 3, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/011.ts b/data-asia/SV/SVLN/011.ts new file mode 100644 index 000000000..97ae97dde --- /dev/null +++ b/data-asia/SV/SVLN/011.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "すごいつりざお" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "自分のトラッシュからポケモンと基本エネルギーを合計3枚まで選び、相手に見せて、山札にもどして切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/012.ts b/data-asia/SV/SVLN/012.ts new file mode 100644 index 000000000..683f6b6ce --- /dev/null +++ b/data-asia/SV/SVLN/012.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "テラスタルオーブ" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + ja: "自分の山札から「テラスタル」のポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/013.ts b/data-asia/SV/SVLN/013.ts new file mode 100644 index 000000000..711e326c1 --- /dev/null +++ b/data-asia/SV/SVLN/013.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "ネストボール" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/014.ts b/data-asia/SV/SVLN/014.ts new file mode 100644 index 000000000..473c6b5bf --- /dev/null +++ b/data-asia/SV/SVLN/014.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "ハイパーボール" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を2枚トラッシュしなければ使えない。\n\n自分の山札からポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/015.ts b/data-asia/SV/SVLN/015.ts new file mode 100644 index 000000000..6f779d189 --- /dev/null +++ b/data-asia/SV/SVLN/015.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "プレシャスキャリー" + }, + + illustrator: "inose yukie", + category: "Trainer", + + effect: { + ja: "自分の山札からたねポケモンを好きなだけ選び、ベンチに出す。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/016.ts b/data-asia/SV/SVLN/016.ts new file mode 100644 index 000000000..a7493cdcf --- /dev/null +++ b/data-asia/SV/SVLN/016.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "ポケギア3.0" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "自分の山札を上から7枚見て、その中からサポートを1枚選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/017.ts b/data-asia/SV/SVLN/017.ts new file mode 100644 index 000000000..79c2f8014 --- /dev/null +++ b/data-asia/SV/SVLN/017.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "ポケモンいれかえ" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + ja: "自分のバトルポケモンをベンチポケモンと入れ替える。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/018.ts b/data-asia/SV/SVLN/018.ts new file mode 100644 index 000000000..e3d90fe0e --- /dev/null +++ b/data-asia/SV/SVLN/018.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "アカマツ" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + ja: "自分の山札から、それぞれちがうタイプの基本エネルギーを2枚まで選び、相手に見せて、どちらか1枚を手札に加え、残りのエネルギーを自分のポケモンにつける。そして山札を切る。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/019.ts b/data-asia/SV/SVLN/019.ts new file mode 100644 index 000000000..256a95dbc --- /dev/null +++ b/data-asia/SV/SVLN/019.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモ" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + ja: "おたがいのプレイヤーは、それぞれ自分の手札をすべてウラにして切り、山札の下にもどす。その後、それぞれ自分のサイドの残り枚数ぶん、山札を引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/020.ts b/data-asia/SV/SVLN/020.ts new file mode 100644 index 000000000..9323119ff --- /dev/null +++ b/data-asia/SV/SVLN/020.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "ネモ" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + ja: "自分の山札を3枚引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/021.ts b/data-asia/SV/SVLN/021.ts new file mode 100644 index 000000000..36515ff05 --- /dev/null +++ b/data-asia/SV/SVLN/021.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "博士の研究" + }, + + illustrator: "kirisAki", + category: "Trainer", + + effect: { + ja: "自分の手札をすべてトラッシュし、山札を7枚引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLN/022.ts b/data-asia/SV/SVLN/022.ts new file mode 100644 index 000000000..69f77cc04 --- /dev/null +++ b/data-asia/SV/SVLN/022.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLN" + +const card: Card = { + set: Set, + + name: { + ja: "ボスの指令" + }, + + illustrator: "NC Empire", + category: "Trainer", + + effect: { + ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS.ts b/data-asia/SV/SVLS.ts new file mode 100644 index 000000000..975b02ee3 --- /dev/null +++ b/data-asia/SV/SVLS.ts @@ -0,0 +1,20 @@ +import { Set } from '../../interfaces' +import serie from '../SV' + +const set: Set = { + id: 'SVLS', + name: { + ja: 'スターターセット テラスタイプ:ステラ ソウブレイズex' + }, + + serie: serie, + + cardCount: { + official: 22 + }, + releaseDate: { + ja: '2024-08-30' + } +} + +export default set diff --git a/data-asia/SV/SVLS/001.ts b/data-asia/SV/SVLS/001.ts new file mode 100644 index 000000000..0c3201b95 --- /dev/null +++ b/data-asia/SV/SVLS/001.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ロコン" + }, + + illustrator: "Narumi Sato", + category: "Pokemon", + dexId: [37], + hp: 70, + types: ["Fire"], + + description: { + ja: "温かい 6本の 尻尾は 体が 育つごとに 毛並みが 良くなり 美しく なっていく。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "とっしん" + }, + + damage: 30, + + effect: { + ja: "このポケモンにも10ダメージ。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/002.ts b/data-asia/SV/SVLS/002.ts new file mode 100644 index 000000000..2896659d8 --- /dev/null +++ b/data-asia/SV/SVLS/002.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "キュウコン" + }, + + illustrator: "Kamome Shirahama", + category: "Pokemon", + dexId: [38], + hp: 120, + types: ["Fire"], + + description: { + ja: "黄金に 輝く 体毛と 9本の 長い 尻尾を 持つ。 1000年は 生きると 言われる。" + }, + + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "ほのおのみたま" + }, + + damage: 50, + + effect: { + ja: "相手のベンチポケモン1匹にも、30ダメージ。[ベンチは弱点・抵抗力を計算しない。]" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/003.ts b/data-asia/SV/SVLS/003.ts new file mode 100644 index 000000000..80ed6c0ce --- /dev/null +++ b/data-asia/SV/SVLS/003.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ホウオウ" + }, + + illustrator: "kodama", + category: "Pokemon", + dexId: [250], + hp: 130, + types: ["Fire"], + + description: { + ja: "体は 七色に 輝き 飛んだあとは 虹が できると 神話に 残されている ポケモン。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + ja: "はばたく" + }, + + damage: 50 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + ja: "シャインブレイズ" + }, + + damage: "100+", + + effect: { + ja: "自分のベンチに「テラスタル」のポケモンがいるなら、100ダメージ追加。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/004.ts b/data-asia/SV/SVLS/004.ts new file mode 100644 index 000000000..c3e937e0b --- /dev/null +++ b/data-asia/SV/SVLS/004.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "オドリドリ" + }, + + illustrator: "Heisuke Kitazawa", + category: "Pokemon", + dexId: [741], + hp: 90, + types: ["Fire"], + + description: { + ja: "くれないのミツを 吸った 姿。 情熱的な ステップを 踏み 激しい 炎を 巻き起こす。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "エネアシスト" + }, + + effect: { + ja: "自分のトラッシュから基本エネルギーを2枚まで選び、ベンチポケモン1匹につける。" + } + }, { + cost: ["Fire"], + + name: { + ja: "ひばな" + }, + + damage: 30, + + effect: { + ja: "このポケモンについているエネルギーを1個選び、トラッシュする。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/005.ts b/data-asia/SV/SVLS/005.ts new file mode 100644 index 000000000..6a51cdfd4 --- /dev/null +++ b/data-asia/SV/SVLS/005.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "カルボウ" + }, + + illustrator: "Kariya", + category: "Pokemon", + dexId: [935], + hp: 70, + types: ["Fire"], + + description: { + ja: "戦いになると 火力が 上がり 摂氏1000度に 達する。 油分の多い 木の実を 好む。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "おにび" + }, + + damage: 20 + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/006.ts b/data-asia/SV/SVLS/006.ts new file mode 100644 index 000000000..a889bb746 --- /dev/null +++ b/data-asia/SV/SVLS/006.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ソウブレイズex" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 270, + types: ["Fire"], + stage: "Stage1", + suffix: "EX", + + attacks: [{ + cost: ["Fire"], + + name: { + ja: "しんえんほむら" + }, + + damage: "30+", + + effect: { + ja: "自分のトラッシュにあるエネルギーの枚数×20ダメージ追加。" + } + }, { + cost: ["Fire", "Psychic", "Metal"], + + name: { + ja: "アメジストレイジ" + }, + + damage: 280, + + effect: { + ja: "このポケモンについているエネルギーを、すべてトラッシュする。" + } + }], + + weaknesses: [{ + type: "Water", + value: "×2" + }], + + retreat: 2, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/007.ts b/data-asia/SV/SVLS/007.ts new file mode 100644 index 000000000..eb3f525da --- /dev/null +++ b/data-asia/SV/SVLS/007.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "シンボラー" + }, + + illustrator: "svlt", + category: "Pokemon", + dexId: [561], + hp: 110, + types: ["Psychic"], + + description: { + ja: "サイコパワーで 空を 飛ぶ。 古代都市の 守り神 とも その遣いとも いわれている。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "ダブルドロー" + }, + + effect: { + ja: "自分の山札を2枚引く。" + } + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + ja: "ねんりき" + }, + + damage: 60, + + effect: { + ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/008.ts b/data-asia/SV/SVLS/008.ts new file mode 100644 index 000000000..f1ade6dbe --- /dev/null +++ b/data-asia/SV/SVLS/008.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "レジスチル" + }, + + illustrator: "Shiburingaru", + category: "Pokemon", + dexId: [379], + hp: 130, + types: ["Metal"], + + description: { + ja: "伸び縮みする 柔らかさも あるが どんな 金属よりも 頑丈な 不思議な 物質で できている。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + ja: "レイジングハンマー" + }, + + damage: "60+", + + effect: { + ja: "このポケモンにのっているダメカンの数×10ダメージ追加。" + } + }], + + weaknesses: [{ + type: "Fire", + value: "×2" + }], + + resistances: [{ + type: "Grass", + value: "-30" + }], + + retreat: 3, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/009.ts b/data-asia/SV/SVLS/009.ts new file mode 100644 index 000000000..4af52223c --- /dev/null +++ b/data-asia/SV/SVLS/009.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ホーホー" + }, + + illustrator: "Yukihiro Tada", + category: "Pokemon", + dexId: [163], + hp: 70, + types: ["Colorless"], + + description: { + ja: "正確に 時を 告げることから 世界の ことわりを わきまえた 知恵の神様 とする 国もある。" + }, + + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + ja: "さんどづき" + }, + + damage: "10×", + + effect: { + ja: "コインを3回投げ、オモテの数×10ダメージ。" + } + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/010.ts b/data-asia/SV/SVLS/010.ts new file mode 100644 index 000000000..6631379ed --- /dev/null +++ b/data-asia/SV/SVLS/010.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ヨルノズク" + }, + + illustrator: "matazo", + category: "Pokemon", + dexId: [164], + hp: 100, + types: ["Colorless"], + + description: { + ja: "非常に 柔らかい 羽は 飛ぶとき 音を 出さないので こっそり 獲物に 近づける。" + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + ja: "ほうせきさがし" + }, + + effect: { + ja: "自分の番に、このカードを手札から出して進化させたとき、自分の場に「テラスタル」のポケモンがいるなら、1回使える。自分の山札からトレーナーズを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + ja: "スピードウイング" + }, + + damage: 60 + }], + + weaknesses: [{ + type: "Lightning", + value: "×2" + }], + + resistances: [{ + type: "Fighting", + value: "-30" + }], + + retreat: 1, + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/011.ts b/data-asia/SV/SVLS/011.ts new file mode 100644 index 000000000..b65642d2d --- /dev/null +++ b/data-asia/SV/SVLS/011.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "すごいつりざお" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "自分のトラッシュからポケモンと基本エネルギーを合計3枚まで選び、相手に見せて、山札にもどして切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/012.ts b/data-asia/SV/SVLS/012.ts new file mode 100644 index 000000000..8e4d17c52 --- /dev/null +++ b/data-asia/SV/SVLS/012.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "テラスタルオーブ" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + ja: "自分の山札から「テラスタル」のポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/013.ts b/data-asia/SV/SVLS/013.ts new file mode 100644 index 000000000..fde67a589 --- /dev/null +++ b/data-asia/SV/SVLS/013.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ネストボール" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/014.ts b/data-asia/SV/SVLS/014.ts new file mode 100644 index 000000000..1e044e9ef --- /dev/null +++ b/data-asia/SV/SVLS/014.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "パーフェクトミキサー" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "自分の山札から好きなカードを5枚まで選び、トラッシュする。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/015.ts b/data-asia/SV/SVLS/015.ts new file mode 100644 index 000000000..bfd41223b --- /dev/null +++ b/data-asia/SV/SVLS/015.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ハイパーボール" + }, + + illustrator: "Ayaka Yoshida", + category: "Trainer", + + effect: { + ja: "このカードは、自分の手札を2枚トラッシュしなければ使えない。\n\n自分の山札からポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/016.ts b/data-asia/SV/SVLS/016.ts new file mode 100644 index 000000000..3a276cd95 --- /dev/null +++ b/data-asia/SV/SVLS/016.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ポケギア3.0" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + ja: "自分の山札を上から7枚見て、その中からサポートを1枚選び、相手に見せて、手札に加える。残りのカードは山札にもどして切る。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/017.ts b/data-asia/SV/SVLS/017.ts new file mode 100644 index 000000000..73a30ccad --- /dev/null +++ b/data-asia/SV/SVLS/017.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ポケモンいれかえ" + }, + + illustrator: "Studio Bora Inc.", + category: "Trainer", + + effect: { + ja: "自分のバトルポケモンをベンチポケモンと入れ替える。" + }, + + trainerType: "Item", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/018.ts b/data-asia/SV/SVLS/018.ts new file mode 100644 index 000000000..89c31d03e --- /dev/null +++ b/data-asia/SV/SVLS/018.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "アカマツ" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + ja: "自分の山札から、それぞれちがうタイプの基本エネルギーを2枚まで選び、相手に見せて、どちらか1枚を手札に加え、残りのエネルギーを自分のポケモンにつける。そして山札を切る。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/019.ts b/data-asia/SV/SVLS/019.ts new file mode 100644 index 000000000..60114aa70 --- /dev/null +++ b/data-asia/SV/SVLS/019.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ナンジャモ" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + ja: "おたがいのプレイヤーは、それぞれ自分の手札をすべてウラにして切り、山札の下にもどす。その後、それぞれ自分のサイドの残り枚数ぶん、山札を引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/020.ts b/data-asia/SV/SVLS/020.ts new file mode 100644 index 000000000..7084f148b --- /dev/null +++ b/data-asia/SV/SVLS/020.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ネモ" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + ja: "自分の山札を3枚引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/021.ts b/data-asia/SV/SVLS/021.ts new file mode 100644 index 000000000..414f66651 --- /dev/null +++ b/data-asia/SV/SVLS/021.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "博士の研究" + }, + + illustrator: "kirisAki", + category: "Trainer", + + effect: { + ja: "自分の手札をすべてトラッシュし、山札を7枚引く。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data-asia/SV/SVLS/022.ts b/data-asia/SV/SVLS/022.ts new file mode 100644 index 000000000..97720e1cb --- /dev/null +++ b/data-asia/SV/SVLS/022.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../SVLS" + +const card: Card = { + set: Set, + + name: { + ja: "ボスの指令" + }, + + illustrator: "NC Empire", + category: "Trainer", + + effect: { + ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。" + }, + + trainerType: "Supporter", + rarity: "None" +} + +export default card \ No newline at end of file diff --git a/data/Base.ts b/data/Base.ts index dec12bfe3..4e2493637 100644 --- a/data/Base.ts +++ b/data/Base.ts @@ -7,7 +7,9 @@ const base: Serie = { es: "Clásica", it: "Originale", de: "Grund", - pt: "Coleção Básica" + pt: "Coleção Básica", + nl: "Basis", + pl: "Diament i Perla" }, id: "base" } diff --git a/data/Base/Base Set 2.ts b/data/Base/Base Set 2.ts index 9c2ed0583..f03761921 100644 --- a/data/Base/Base Set 2.ts +++ b/data/Base/Base Set 2.ts @@ -15,7 +15,11 @@ const base4: Set = { official: 130 }, - releaseDate: "2000-02-24" + releaseDate: "2000-02-24", + + abbreviations: { + official: "B2" + } } export default base4 diff --git a/data/Base/Base Set.ts b/data/Base/Base Set.ts index 86936451f..e8ab27f29 100644 --- a/data/Base/Base Set.ts +++ b/data/Base/Base Set.ts @@ -10,7 +10,8 @@ const base1: Set = { es: "Edición Básica", it: "Set Base", de: "Grundset", - pt: "Coleção Básica" + pt: "Coleção Básica", + nl: 'Basis Set' }, serie: serie, @@ -20,7 +21,12 @@ const base1: Set = { official: 102 }, - releaseDate: "1999-01-09" + releaseDate: "1999-01-09", + + abbreviations: { + official: "BS", + fr: "BAS" + } } export default base1 diff --git a/data/Base/Fossil.ts b/data/Base/Fossil.ts index cc0a1c0a0..01edd9151 100644 --- a/data/Base/Fossil.ts +++ b/data/Base/Fossil.ts @@ -10,7 +10,8 @@ const base3: Set = { es: "Fósil", it: "Fossil", de: "Fossil", - pt: "Fóssil" + pt: "Fóssil", + nl: "Fossiel" }, serie: serie, @@ -20,7 +21,12 @@ const base3: Set = { official: 62 }, - releaseDate: "1999-10-10" + releaseDate: "1999-10-10", + + abbreviations: { + official: "FO", + fr: "FOS" + } } export default base3 diff --git a/data/Base/Jungle.ts b/data/Base/Jungle.ts index 1ff38c266..690b7336c 100644 --- a/data/Base/Jungle.ts +++ b/data/Base/Jungle.ts @@ -10,7 +10,8 @@ const base2: Set = { de: "Dschungel", it: "Jungle", es: "Jungla", - pt: "Selva" + pt: "Selva", + nl: "Jungle" }, serie: serie, @@ -20,7 +21,12 @@ const base2: Set = { official: 64 }, - releaseDate: "1999-06-16" + releaseDate: "1999-06-16", + + abbreviations: { + official: "JU", + fr: "JUN" + } } export default base2 diff --git a/data/Base/Team Rocket.ts b/data/Base/Team Rocket.ts index 102397366..bac35810b 100644 --- a/data/Base/Team Rocket.ts +++ b/data/Base/Team Rocket.ts @@ -18,7 +18,12 @@ const base5: Set = { official: 82 }, - releaseDate: "2000-04-24" + releaseDate: "2000-04-24", + + abbreviations: { + official: "RO", + fr: "ROC" + } } export default base5 diff --git a/data/Black & White/BW Black Star Promos.ts b/data/Black & White/BW Black Star Promos.ts index a230e5e36..24bfa0e15 100644 --- a/data/Black & White/BW Black Star Promos.ts +++ b/data/Black & White/BW Black Star Promos.ts @@ -19,7 +19,12 @@ const bwp: Set = { official: 101 }, - releaseDate: "2011-04-26" + releaseDate: "2011-04-26", + + abbreviations: { + official: "BWP", + fr: "PBW" + } } export default bwp diff --git a/data/Black & White/Black & White.ts b/data/Black & White/Black & White.ts index 6e303376d..d6d1a98e6 100644 --- a/data/Black & White/Black & White.ts +++ b/data/Black & White/Black & White.ts @@ -20,7 +20,12 @@ const bw1: Set = { official: 114 }, - releaseDate: "2011-04-25" + releaseDate: "2011-04-25", + + abbreviations: { + official: "BLW", + fr: "N&B" + } } export default bw1 diff --git a/data/Black & White/Boundaries Crossed.ts b/data/Black & White/Boundaries Crossed.ts index cb26a2c24..e7eaa077d 100644 --- a/data/Black & White/Boundaries Crossed.ts +++ b/data/Black & White/Boundaries Crossed.ts @@ -20,7 +20,12 @@ const bw7: Set = { official: 149 }, - releaseDate: "2012-11-07" + releaseDate: "2012-11-07", + + abbreviations: { + official: "BCR", + fr: "FFR" + } } export default bw7 diff --git a/data/Black & White/Dark Explorers.ts b/data/Black & White/Dark Explorers.ts index 1a047bbba..34a8705d5 100644 --- a/data/Black & White/Dark Explorers.ts +++ b/data/Black & White/Dark Explorers.ts @@ -20,7 +20,12 @@ const bw5: Set = { official: 108 }, - releaseDate: "2012-05-09" + releaseDate: "2012-05-09", + + abbreviations: { + official: "DEX", + fr: "EOB" + } } export default bw5 diff --git a/data/Black & White/Dragon Vault.ts b/data/Black & White/Dragon Vault.ts index 8816b9c2e..da979a18c 100644 --- a/data/Black & White/Dragon Vault.ts +++ b/data/Black & White/Dragon Vault.ts @@ -20,7 +20,12 @@ const dv1: Set = { official: 20 }, - releaseDate: "2012-10-05" + releaseDate: "2012-10-05", + + abbreviations: { + official: "DRV", + fr: "CDR" + } } export default dv1 diff --git a/data/Black & White/Dragons Exalted.ts b/data/Black & White/Dragons Exalted.ts index 7298175a4..a2fcbae3d 100644 --- a/data/Black & White/Dragons Exalted.ts +++ b/data/Black & White/Dragons Exalted.ts @@ -20,7 +20,12 @@ const bw6: Set = { official: 124 }, - releaseDate: "2012-08-15" + releaseDate: "2012-08-15", + + abbreviations: { + official: "DRX", + fr: "DEX" + } } export default bw6 diff --git a/data/Black & White/Emerging Powers.ts b/data/Black & White/Emerging Powers.ts index b8e106e83..ea3cba47e 100644 --- a/data/Black & White/Emerging Powers.ts +++ b/data/Black & White/Emerging Powers.ts @@ -20,7 +20,12 @@ const bw2: Set = { official: 98 }, - releaseDate: "2011-08-31" + releaseDate: "2011-08-31", + + abbreviations: { + official: "EP", + fr: "PEM" + } } export default bw2 diff --git a/data/Black & White/Legendary Treasures.ts b/data/Black & White/Legendary Treasures.ts index b1e3a1ebd..3361b0091 100644 --- a/data/Black & White/Legendary Treasures.ts +++ b/data/Black & White/Legendary Treasures.ts @@ -17,7 +17,11 @@ const bw11: Set = { official: 113 }, - releaseDate: "2013-11-06" + releaseDate: "2013-11-06", + + abbreviations: { + official: "LTR" + } } export default bw11 diff --git a/data/Black & White/Next Destinies.ts b/data/Black & White/Next Destinies.ts index 5231e2df5..79d79628c 100644 --- a/data/Black & White/Next Destinies.ts +++ b/data/Black & White/Next Destinies.ts @@ -20,7 +20,12 @@ const bw4: Set = { official: 99 }, - releaseDate: "2012-02-08" + releaseDate: "2012-02-08", + + abbreviations: { + official: "NEX", + fr: "DFU" + } } export default bw4 diff --git a/data/Black & White/Noble Victories.ts b/data/Black & White/Noble Victories.ts index b2a903341..b4334fc21 100644 --- a/data/Black & White/Noble Victories.ts +++ b/data/Black & White/Noble Victories.ts @@ -20,7 +20,12 @@ const bw3: Set = { official: 101 }, - releaseDate: "2011-11-16" + releaseDate: "2011-11-16", + + abbreviations: { + official: "NVI", + fr: "NVI" + } } export default bw3 diff --git a/data/Black & White/Plasma Blast.ts b/data/Black & White/Plasma Blast.ts index ee852ace7..41dbc0b18 100644 --- a/data/Black & White/Plasma Blast.ts +++ b/data/Black & White/Plasma Blast.ts @@ -18,7 +18,12 @@ const bw10: Set = { official: 101 }, - releaseDate: "2013-08-14" + releaseDate: "2013-08-14", + + abbreviations: { + official: "PLB", + fr: "EPL" + } } export default bw10 diff --git a/data/Black & White/Plasma Freeze.ts b/data/Black & White/Plasma Freeze.ts index 1e7ca6d1f..525c1d002 100644 --- a/data/Black & White/Plasma Freeze.ts +++ b/data/Black & White/Plasma Freeze.ts @@ -20,7 +20,12 @@ const bw9: Set = { official: 116 }, - releaseDate: "2013-05-08" + releaseDate: "2013-05-08", + + abbreviations: { + official: "PLF", + fr: "GPL" + } } export default bw9 diff --git a/data/Black & White/Plasma Storm.ts b/data/Black & White/Plasma Storm.ts index f9829f3fc..0c4aa6421 100644 --- a/data/Black & White/Plasma Storm.ts +++ b/data/Black & White/Plasma Storm.ts @@ -20,7 +20,11 @@ const bw8: Set = { official: 135 }, - releaseDate: "2013-02-06" + releaseDate: "2013-02-06", + + abbreviations: { + official: "PLS" + } } export default bw8 diff --git a/data/Call of Legends/Call of Legends.ts b/data/Call of Legends/Call of Legends.ts index 2e87bacde..19d25295a 100644 --- a/data/Call of Legends/Call of Legends.ts +++ b/data/Call of Legends/Call of Legends.ts @@ -20,7 +20,12 @@ const col1: Set = { official: 95 }, - releaseDate: "2011-02-09" + releaseDate: "2011-02-09", + + abbreviations: { + official: "COL", + fr: "LDL" + } } export default col1 diff --git a/data/Diamond & Pearl.ts b/data/Diamond & Pearl.ts index 0a49a12d7..6c2ae9701 100644 --- a/data/Diamond & Pearl.ts +++ b/data/Diamond & Pearl.ts @@ -8,7 +8,8 @@ const set: Serie = { es: "Diamante & Perla", it: "Diamante & Perla", de: "Diamant & Perl", - pt: "Diamante & Pérola" + pt: "Diamante & Pérola", + pl: "Diament i Perla" }, } diff --git a/data/Diamond & Pearl/Diamond & Pearl.ts b/data/Diamond & Pearl/Diamond & Pearl.ts index df51e0aa8..9df33a540 100644 --- a/data/Diamond & Pearl/Diamond & Pearl.ts +++ b/data/Diamond & Pearl/Diamond & Pearl.ts @@ -10,7 +10,8 @@ const dp1: Set = { es: "Diamante & Perla", it: "Diamante & Perla", de: "Diamant & Perl", - pt: "Diamante & Pérola" + pt: "Diamante & Pérola", + pl: 'Diament i Perla' }, serie: serie, @@ -20,7 +21,12 @@ const dp1: Set = { official: 130 }, - releaseDate: "2007-05-01" + releaseDate: "2007-05-01", + + abbreviations: { + official: "DP", + fr: "D&P" + } } export default dp1 diff --git a/data/Diamond & Pearl/Great Encounters.ts b/data/Diamond & Pearl/Great Encounters.ts index af0c29193..71035ffec 100644 --- a/data/Diamond & Pearl/Great Encounters.ts +++ b/data/Diamond & Pearl/Great Encounters.ts @@ -19,7 +19,12 @@ const dp4: Set = { official: 106 }, - releaseDate: "2008-02-01" + releaseDate: "2008-02-01", + + abbreviations: { + official: "GE", + fr: "DAS" + } } export default dp4 diff --git a/data/Diamond & Pearl/Legends Awakened.ts b/data/Diamond & Pearl/Legends Awakened.ts index 69d2e918d..bd7efbfb1 100644 --- a/data/Diamond & Pearl/Legends Awakened.ts +++ b/data/Diamond & Pearl/Legends Awakened.ts @@ -19,7 +19,12 @@ const dp6: Set = { official: 146 }, - releaseDate: "2008-08-01" + releaseDate: "2008-08-01", + + abbreviations: { + official: "LA", + fr: "EDL" + } } export default dp6 diff --git a/data/Diamond & Pearl/Majestic Dawn.ts b/data/Diamond & Pearl/Majestic Dawn.ts index b2c4cdb9a..94da03cdc 100644 --- a/data/Diamond & Pearl/Majestic Dawn.ts +++ b/data/Diamond & Pearl/Majestic Dawn.ts @@ -18,7 +18,12 @@ const dp5: Set = { official: 100 }, - releaseDate: "2008-05-01" + releaseDate: "2008-05-01", + + abbreviations: { + official: "MD", + fr: "AMJ" + } } export default dp5 diff --git a/data/Diamond & Pearl/Mysterious Treasures.ts b/data/Diamond & Pearl/Mysterious Treasures.ts index 596a5b63b..11ce642dc 100644 --- a/data/Diamond & Pearl/Mysterious Treasures.ts +++ b/data/Diamond & Pearl/Mysterious Treasures.ts @@ -10,7 +10,8 @@ const dp2: Set = { es: "Tesoros Misteriosos", it: "Tesori Misteriosi", de: "Geheimnisvolle Schätze", - pt: "Tesouros Misteriosos" + pt: "Tesouros Misteriosos", + pl: 'Tajemne Skarby' }, serie: serie, @@ -20,7 +21,12 @@ const dp2: Set = { official: 122 }, - releaseDate: "2007-08-01" + releaseDate: "2007-08-01", + + abbreviations: { + official: "MT", + fr: "TMY" + } } export default dp2 diff --git a/data/Diamond & Pearl/Secret Wonders.ts b/data/Diamond & Pearl/Secret Wonders.ts index e7b1d61ac..6a2c3ecbc 100644 --- a/data/Diamond & Pearl/Secret Wonders.ts +++ b/data/Diamond & Pearl/Secret Wonders.ts @@ -20,7 +20,12 @@ const dp3: Set = { official: 132 }, - releaseDate: "2007-11-01" + releaseDate: "2007-11-01", + + abbreviations: { + official: "SW", + fr: "MSQ" + } } export default dp3 diff --git a/data/Diamond & Pearl/Stormfront.ts b/data/Diamond & Pearl/Stormfront.ts index 2f91c126a..13a27020a 100644 --- a/data/Diamond & Pearl/Stormfront.ts +++ b/data/Diamond & Pearl/Stormfront.ts @@ -19,7 +19,12 @@ const dp7: Set = { official: 100 }, - releaseDate: "2008-11-01" + releaseDate: "2008-11-01", + + abbreviations: { + official: "FS", + fr: "TEM" + } } export default dp7 diff --git a/data/E-Card/Aquapolis.ts b/data/E-Card/Aquapolis.ts index 044a46dfa..0053e02b5 100644 --- a/data/E-Card/Aquapolis.ts +++ b/data/E-Card/Aquapolis.ts @@ -18,7 +18,12 @@ const ecard2: Set = { official: 147 }, - releaseDate: "2003-01-15" + releaseDate: "2003-01-15", + + abbreviations: { + official: "AQ", + fr: "AQU" + } } export default ecard2 diff --git a/data/E-Card/Expedition Base Set.ts b/data/E-Card/Expedition Base Set.ts index 94c5047cd..d4f5e9294 100644 --- a/data/E-Card/Expedition Base Set.ts +++ b/data/E-Card/Expedition Base Set.ts @@ -18,7 +18,12 @@ const ecard1: Set = { official: 165 }, - releaseDate: "2002-09-15" + releaseDate: "2002-09-15", + + abbreviations: { + official: "EX", + fr: "EXP" + } } export default ecard1 diff --git a/data/E-Card/Skyridge.ts b/data/E-Card/Skyridge.ts index 9092e31d4..dc2789b87 100644 --- a/data/E-Card/Skyridge.ts +++ b/data/E-Card/Skyridge.ts @@ -17,7 +17,11 @@ const ecard3: Set = { official: 144 }, - releaseDate: "2003-05-12" + releaseDate: "2003-05-12", + + abbreviations: { + official: "SK" + } } export default ecard3 diff --git a/data/EX/Crystal Guardians.ts b/data/EX/Crystal Guardians.ts index 21b2c40fd..4c3d223c6 100644 --- a/data/EX/Crystal Guardians.ts +++ b/data/EX/Crystal Guardians.ts @@ -18,7 +18,12 @@ const ex14: Set = { official: 100 }, - releaseDate: "2006-08-30" + releaseDate: "2006-08-30", + + abbreviations: { + official: "CG", + fr: "GDC" + } } export default ex14 diff --git a/data/EX/Crystal Guardians/30.ts b/data/EX/Crystal Guardians/30.ts index fd02c157c..7cd66e5fd 100644 --- a/data/EX/Crystal Guardians/30.ts +++ b/data/EX/Crystal Guardians/30.ts @@ -4,7 +4,7 @@ import Set from '../Crystal Guardians' const card: Card = { name: { en: "Charmeleon δ", - fr: "Reptincel δ ESPÈCES DELTA", + fr: "Reptincel δ", de: "Glutexo" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Crystal Guardians/49.ts b/data/EX/Crystal Guardians/49.ts index 7fd9f9575..42820a801 100644 --- a/data/EX/Crystal Guardians/49.ts +++ b/data/EX/Crystal Guardians/49.ts @@ -4,7 +4,7 @@ import Set from '../Crystal Guardians' const card: Card = { name: { en: "Charmander δ", - fr: "Salamèche δ ESPÈCES DELTA", + fr: "Salamèche δ", de: "Glumanda" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Delta Species.ts b/data/EX/Delta Species.ts index 2d001b55d..1f9449615 100644 --- a/data/EX/Delta Species.ts +++ b/data/EX/Delta Species.ts @@ -18,7 +18,12 @@ const ex11: Set = { official: 113 }, - releaseDate: "2005-10-31" + releaseDate: "2005-10-31", + + abbreviations: { + official: "DS", + fr: "ESD" + } } export default ex11 diff --git a/data/EX/Delta Species/1.ts b/data/EX/Delta Species/1.ts index dcc0c8534..df645e4fa 100644 --- a/data/EX/Delta Species/1.ts +++ b/data/EX/Delta Species/1.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Beedrill δ", - fr: "Dardargnan δ ESPÈCES DELTA", + fr: "Dardargnan δ", de: "Bibor" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Delta Species/10.ts b/data/EX/Delta Species/10.ts index 292788f57..7503a9fde 100644 --- a/data/EX/Delta Species/10.ts +++ b/data/EX/Delta Species/10.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Marowak δ", - fr: "Ossatueur δ ESPÈCES DELTA", + fr: "Ossatueur δ", de: "Knogga" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Delta Species/11.ts b/data/EX/Delta Species/11.ts index 871be4417..1d8d91931 100644 --- a/data/EX/Delta Species/11.ts +++ b/data/EX/Delta Species/11.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Metagross δ", - fr: "Metalosse δ ESPÈCES DELTA", + fr: "Metalosse δ", de: "Metagross" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Delta Species/12.ts b/data/EX/Delta Species/12.ts index b7c393a67..7d7a56849 100644 --- a/data/EX/Delta Species/12.ts +++ b/data/EX/Delta Species/12.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Mewtwo δ", - fr: "Mewtwo δ ESPÈCES DELTA", + fr: "Mewtwo δ", de: "Mewtu" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Delta Species/13.ts b/data/EX/Delta Species/13.ts index a7fc3be31..4028130b0 100644 --- a/data/EX/Delta Species/13.ts +++ b/data/EX/Delta Species/13.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Rayquaza δ", - fr: "Rayquaza δ ESPÈCES DELTA", + fr: "Rayquaza δ", de: "Rayquaza" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Delta Species/14.ts b/data/EX/Delta Species/14.ts index f2b06ebd5..b8056a308 100644 --- a/data/EX/Delta Species/14.ts +++ b/data/EX/Delta Species/14.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Salamence δ", - fr: "Drattak δ ESPÈCES DELTA", + fr: "Drattak δ", de: "Brutalanda" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Delta Species/15.ts b/data/EX/Delta Species/15.ts index 0ecb0fb9c..6649ac69b 100644 --- a/data/EX/Delta Species/15.ts +++ b/data/EX/Delta Species/15.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Starmie δ", - fr: "Staross δ ESPÈCES DELTA", + fr: "Staross δ", de: "Starmie" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Delta Species/16.ts b/data/EX/Delta Species/16.ts index 6e7e5de96..3ca41dbb1 100644 --- a/data/EX/Delta Species/16.ts +++ b/data/EX/Delta Species/16.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Tyranitar δ", - fr: "Tyranocif δ ESPÈCES DELTA", + fr: "Tyranocif δ", de: "Despotar" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Delta Species/17.ts b/data/EX/Delta Species/17.ts index f17da82ba..9e83f2bbe 100644 --- a/data/EX/Delta Species/17.ts +++ b/data/EX/Delta Species/17.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Umbreon δ", - fr: "Noctali δ ESPÈCES DELTA", + fr: "Noctali δ", de: "Nachtara" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Delta Species/18.ts b/data/EX/Delta Species/18.ts index fa9ca4cad..d9e91fcbe 100644 --- a/data/EX/Delta Species/18.ts +++ b/data/EX/Delta Species/18.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Vaporeon δ", - fr: "Aquali δ ESPÈCES DELTA", + fr: "Aquali δ", de: "Aquana" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Delta Species/19.ts b/data/EX/Delta Species/19.ts index a2f537028..9e9359ccc 100644 --- a/data/EX/Delta Species/19.ts +++ b/data/EX/Delta Species/19.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Azumarill δ", - fr: "Azumarill δ ESPÈCES DELTA", + fr: "Azumarill δ", de: "Azumarill" }, illustrator: "Atsuko Nishida", diff --git a/data/EX/Delta Species/2.ts b/data/EX/Delta Species/2.ts index 21c27c1ef..6809dd1cb 100644 --- a/data/EX/Delta Species/2.ts +++ b/data/EX/Delta Species/2.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Crobat δ", - fr: "Nostenfer δ ESPÈCES DELTA", + fr: "Nostenfer δ", de: "Iksbat" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Delta Species/24.ts b/data/EX/Delta Species/24.ts index d2d1d8d61..61697535c 100644 --- a/data/EX/Delta Species/24.ts +++ b/data/EX/Delta Species/24.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Mightyena δ", - fr: "Grahyena δ ESPÈCES DELTA", + fr: "Grahyena δ", de: "Magnayen" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Delta Species/27.ts b/data/EX/Delta Species/27.ts index 7434aecb9..7c0168c54 100644 --- a/data/EX/Delta Species/27.ts +++ b/data/EX/Delta Species/27.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Sandslash δ", - fr: "Sablaireau δ ESPÈCES DELTA", + fr: "Sablaireau δ", de: "Sandamer" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Delta Species/3.ts b/data/EX/Delta Species/3.ts index 0e4f08804..04c288d91 100644 --- a/data/EX/Delta Species/3.ts +++ b/data/EX/Delta Species/3.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Dragonite δ", - fr: "Dracolosse δ ESPÈCES DELTA", + fr: "Dracolosse δ", de: "Dragoran" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Delta Species/30.ts b/data/EX/Delta Species/30.ts index 40114dadc..420d346a0 100644 --- a/data/EX/Delta Species/30.ts +++ b/data/EX/Delta Species/30.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Starmie δ", - fr: "Staross δ ESPÈCES DELTA", + fr: "Staross δ", de: "Starmie" }, illustrator: "Midori Harada", diff --git a/data/EX/Delta Species/4.ts b/data/EX/Delta Species/4.ts index 58134dade..e2363d8c7 100644 --- a/data/EX/Delta Species/4.ts +++ b/data/EX/Delta Species/4.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Espeon δ", - fr: "Mentali δ ESPÈCES DELTA", + fr: "Mentali δ", de: "Psiana" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Delta Species/41.ts b/data/EX/Delta Species/41.ts index 0fa4d3be6..cf7184335 100644 --- a/data/EX/Delta Species/41.ts +++ b/data/EX/Delta Species/41.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Dragonair δ", - fr: "Draco δ ESPÈCES DELTA", + fr: "Draco δ", de: "Dragonir" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Delta Species/42.ts b/data/EX/Delta Species/42.ts index d40f4e792..1d54cc814 100644 --- a/data/EX/Delta Species/42.ts +++ b/data/EX/Delta Species/42.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Dragonair δ", - fr: "Draco δ ESPÈCES DELTA", + fr: "Draco δ", de: "Dragonir" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Delta Species/49.ts b/data/EX/Delta Species/49.ts index 21d1b57d7..3494adee5 100644 --- a/data/EX/Delta Species/49.ts +++ b/data/EX/Delta Species/49.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Metang δ", - fr: "Metang δ ESPÈCES DELTA", + fr: "Metang δ", de: "Metang" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Delta Species/5.ts b/data/EX/Delta Species/5.ts index 8e42a2e0a..5ddfdd486 100644 --- a/data/EX/Delta Species/5.ts +++ b/data/EX/Delta Species/5.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Flareon δ", - fr: "Pyroli δ ESPÈCES DELTA", + fr: "Pyroli δ", de: "Flamara" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Delta Species/51.ts b/data/EX/Delta Species/51.ts index 2a40fcb5a..85272952f 100644 --- a/data/EX/Delta Species/51.ts +++ b/data/EX/Delta Species/51.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Pupitar δ", - fr: "Ymphect δ ESPÈCES DELTA", + fr: "Ymphect δ", de: "Pupitar" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Delta Species/53.ts b/data/EX/Delta Species/53.ts index 2d1b360d6..1d71f9afa 100644 --- a/data/EX/Delta Species/53.ts +++ b/data/EX/Delta Species/53.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Shelgon δ", - fr: "Drackhaus δ ESPÈCES DELTA", + fr: "Drackhaus δ", de: "Draschel" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Delta Species/54.ts b/data/EX/Delta Species/54.ts index fa5d9476a..9bd2a2248 100644 --- a/data/EX/Delta Species/54.ts +++ b/data/EX/Delta Species/54.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Shelgon δ", - fr: "Drackhaus δ ESPÈCES DELTA", + fr: "Drackhaus δ", de: "Draschel" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Delta Species/57.ts b/data/EX/Delta Species/57.ts index d1bff4ffb..cef6a04ce 100644 --- a/data/EX/Delta Species/57.ts +++ b/data/EX/Delta Species/57.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Bagon δ", - fr: "Draby δ ESPÈCES DELTA", + fr: "Draby δ", de: "Kindwurm" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Delta Species/58.ts b/data/EX/Delta Species/58.ts index 4eeeca7a1..1cd5a23b8 100644 --- a/data/EX/Delta Species/58.ts +++ b/data/EX/Delta Species/58.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Bagon δ", - fr: "Draby δ ESPÈCES DELTA", + fr: "Draby δ", de: "Kindwurm" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Delta Species/6.ts b/data/EX/Delta Species/6.ts index e180164cc..d7d0d0643 100644 --- a/data/EX/Delta Species/6.ts +++ b/data/EX/Delta Species/6.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Gardevoir δ", - fr: "Gardevoir δ ESPÈCES DELTA", + fr: "Gardevoir δ", de: "Guardevoir" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Delta Species/65.ts b/data/EX/Delta Species/65.ts index 17420b5fe..fe13ac8e8 100644 --- a/data/EX/Delta Species/65.ts +++ b/data/EX/Delta Species/65.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Dratini δ", - fr: "Minidraco δ ESPÈCES DELTA", + fr: "Minidraco δ", de: "Dratini" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Delta Species/66.ts b/data/EX/Delta Species/66.ts index 1cd9844ac..b6f2ffc3f 100644 --- a/data/EX/Delta Species/66.ts +++ b/data/EX/Delta Species/66.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Dratini δ", - fr: "Minidraco δ ESPÈCES DELTA", + fr: "Minidraco δ", de: "Dratini" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Delta Species/68.ts b/data/EX/Delta Species/68.ts index 24273bace..b40ef7da9 100644 --- a/data/EX/Delta Species/68.ts +++ b/data/EX/Delta Species/68.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Eevee δ", - fr: "Evoli δ ESPÈCES DELTA", + fr: "Evoli δ", de: "Evoli" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Delta Species/7.ts b/data/EX/Delta Species/7.ts index af0ca34af..b5481cd2a 100644 --- a/data/EX/Delta Species/7.ts +++ b/data/EX/Delta Species/7.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Jolteon δ", - fr: "Voltali δ ESPÈCES DELTA", + fr: "Voltali δ", de: "Blitza" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Delta Species/73.ts b/data/EX/Delta Species/73.ts index 8d181fba1..c238ced30 100644 --- a/data/EX/Delta Species/73.ts +++ b/data/EX/Delta Species/73.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Larvitar δ", - fr: "Embrylex δ ESPÈCES DELTA", + fr: "Embrylex δ", de: "Larvitar" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Delta Species/8.ts b/data/EX/Delta Species/8.ts index 986a8bb9b..09af93937 100644 --- a/data/EX/Delta Species/8.ts +++ b/data/EX/Delta Species/8.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Latias δ", - fr: "Latias δ ESPÈCES DELTA", + fr: "Latias δ", de: "Latias" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Delta Species/9.ts b/data/EX/Delta Species/9.ts index 714af9316..1786401d2 100644 --- a/data/EX/Delta Species/9.ts +++ b/data/EX/Delta Species/9.ts @@ -4,7 +4,7 @@ import Set from '../Delta Species' const card: Card = { name: { en: "Latios δ", - fr: "Latios δ ESPÈCES DELTA", + fr: "Latios δ", de: "Latios" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Deoxys.ts b/data/EX/Deoxys.ts index 3f7cb0e82..cf559c96a 100644 --- a/data/EX/Deoxys.ts +++ b/data/EX/Deoxys.ts @@ -19,7 +19,12 @@ const ex8: Set = { official: 107 }, - releaseDate: "2005-02-01" + releaseDate: "2005-02-01", + + abbreviations: { + official: "DX", + fr: "DEO" + } } export default ex8 diff --git a/data/EX/Dragon Frontiers.ts b/data/EX/Dragon Frontiers.ts index 6299fe338..46b9ab190 100644 --- a/data/EX/Dragon Frontiers.ts +++ b/data/EX/Dragon Frontiers.ts @@ -18,7 +18,12 @@ const ex15: Set = { official: 101 }, - releaseDate: "2006-11-08" + releaseDate: "2006-11-08", + + abbreviations: { + official: "DF", + fr: "IDR" + } } export default ex15 diff --git a/data/EX/Dragon Frontiers/1.ts b/data/EX/Dragon Frontiers/1.ts index 99fd81dfe..226623b02 100644 --- a/data/EX/Dragon Frontiers/1.ts +++ b/data/EX/Dragon Frontiers/1.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Ampharos δ", - fr: "Pharamp δ ESPÈCES DELTA", + fr: "Pharamp δ", de: "Ampharos" }, illustrator: "Kagemaru Himeno", diff --git a/data/EX/Dragon Frontiers/10.ts b/data/EX/Dragon Frontiers/10.ts index 438bdc956..2947304a8 100644 --- a/data/EX/Dragon Frontiers/10.ts +++ b/data/EX/Dragon Frontiers/10.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Snorlax δ", - fr: "Ronflex δ ESPÈCES DELTA", + fr: "Ronflex δ", de: "Relaxo" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Dragon Frontiers/11.ts b/data/EX/Dragon Frontiers/11.ts index 6120ebeb9..af29d01eb 100644 --- a/data/EX/Dragon Frontiers/11.ts +++ b/data/EX/Dragon Frontiers/11.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Togetic δ", - fr: "Togetic δ ESPÈCES DELTA", + fr: "Togetic δ", de: "Togetic" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Dragon Frontiers/12.ts b/data/EX/Dragon Frontiers/12.ts index f40df6dad..7f7c3cfdb 100644 --- a/data/EX/Dragon Frontiers/12.ts +++ b/data/EX/Dragon Frontiers/12.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Typhlosion δ", - fr: "Typhlosion δ ESPÈCES DELTA", + fr: "Typhlosion δ", de: "Tornupto" }, illustrator: "Hisao Nakamura", diff --git a/data/EX/Dragon Frontiers/13.ts b/data/EX/Dragon Frontiers/13.ts index 9195a012b..b258cbe2f 100644 --- a/data/EX/Dragon Frontiers/13.ts +++ b/data/EX/Dragon Frontiers/13.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Arbok δ", - fr: "Arbok δ ESPÈCES DELTA", + fr: "Arbok δ", de: "Arbok" }, illustrator: "Hisao Nakamura", diff --git a/data/EX/Dragon Frontiers/14.ts b/data/EX/Dragon Frontiers/14.ts index 57ca36d19..228922137 100644 --- a/data/EX/Dragon Frontiers/14.ts +++ b/data/EX/Dragon Frontiers/14.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Cloyster δ", - fr: "Crustabri δ ESPÈCES DELTA", + fr: "Crustabri δ", de: "Austos" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Dragon Frontiers/15.ts b/data/EX/Dragon Frontiers/15.ts index 895a79035..42b1a4d18 100644 --- a/data/EX/Dragon Frontiers/15.ts +++ b/data/EX/Dragon Frontiers/15.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Dewgong δ", - fr: "Lamantine δ ESPÈCES DELTA", + fr: "Lamantine δ", de: "Jugong" }, illustrator: "Atsuko Nishida", diff --git a/data/EX/Dragon Frontiers/16.ts b/data/EX/Dragon Frontiers/16.ts index f84ffda2c..28b4478c9 100644 --- a/data/EX/Dragon Frontiers/16.ts +++ b/data/EX/Dragon Frontiers/16.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Gligar δ", - fr: "Scorplane δ ESPÈCES DELTA", + fr: "Scorplane δ", de: "Skorgla" }, illustrator: "Kagemaru Himeno", diff --git a/data/EX/Dragon Frontiers/17.ts b/data/EX/Dragon Frontiers/17.ts index 4660355a3..6a9727137 100644 --- a/data/EX/Dragon Frontiers/17.ts +++ b/data/EX/Dragon Frontiers/17.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Jynx δ", - fr: "Lippoutou δ ESPÈCES DELTA", + fr: "Lippoutou δ", de: "Rossana" }, illustrator: "Ken Sugimori", diff --git a/data/EX/Dragon Frontiers/18.ts b/data/EX/Dragon Frontiers/18.ts index 633b4a596..0a8ab7ba4 100644 --- a/data/EX/Dragon Frontiers/18.ts +++ b/data/EX/Dragon Frontiers/18.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Ledian δ", - fr: "Coxyclaque δ ESPÈCES DELTA", + fr: "Coxyclaque δ", de: "Ledian" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Dragon Frontiers/19.ts b/data/EX/Dragon Frontiers/19.ts index 25be19934..c8068cb00 100644 --- a/data/EX/Dragon Frontiers/19.ts +++ b/data/EX/Dragon Frontiers/19.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Lickitung δ", - fr: "Excelangue δ ESPÈCES DELTA", + fr: "Excelangue δ", de: "Schlurp" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Dragon Frontiers/2.ts b/data/EX/Dragon Frontiers/2.ts index 335be291d..9da611f6e 100644 --- a/data/EX/Dragon Frontiers/2.ts +++ b/data/EX/Dragon Frontiers/2.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Feraligatr δ", - fr: "Aligatueur δ ESPÈCES DELTA", + fr: "Aligatueur δ", de: "Impergator" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Dragon Frontiers/20.ts b/data/EX/Dragon Frontiers/20.ts index caa331e24..a39d87f46 100644 --- a/data/EX/Dragon Frontiers/20.ts +++ b/data/EX/Dragon Frontiers/20.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Mantine δ", - fr: "Demanta δ ESPÈCES DELTA", + fr: "Demanta δ", de: "Mantax" }, illustrator: "Sumiyoshi Kizuki", diff --git a/data/EX/Dragon Frontiers/21.ts b/data/EX/Dragon Frontiers/21.ts index 66a382ea2..13f995a16 100644 --- a/data/EX/Dragon Frontiers/21.ts +++ b/data/EX/Dragon Frontiers/21.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Quagsire δ", - fr: "Maraiste δ ESPÈCES DELTA", + fr: "Maraiste δ", de: "Morlord" }, illustrator: "Sachiko Adachi", diff --git a/data/EX/Dragon Frontiers/22.ts b/data/EX/Dragon Frontiers/22.ts index fa8a7652c..a1cba55d3 100644 --- a/data/EX/Dragon Frontiers/22.ts +++ b/data/EX/Dragon Frontiers/22.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Seadra δ", - fr: "Hypocéan δ ESPÈCES DELTA", + fr: "Hypocéan δ", de: "Seemon" }, illustrator: "Sachiko Adachi", diff --git a/data/EX/Dragon Frontiers/23.ts b/data/EX/Dragon Frontiers/23.ts index 6fd88947f..cfe54769b 100644 --- a/data/EX/Dragon Frontiers/23.ts +++ b/data/EX/Dragon Frontiers/23.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Tropius δ", - fr: "Tropius δ ESPÈCES DELTA", + fr: "Tropius δ", de: "Tropius" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Dragon Frontiers/24.ts b/data/EX/Dragon Frontiers/24.ts index bea3c2ddd..95fae3037 100644 --- a/data/EX/Dragon Frontiers/24.ts +++ b/data/EX/Dragon Frontiers/24.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Vibrava δ", - fr: "Vibraninf δ ESPÈCES DELTA", + fr: "Vibraninf δ", de: "Vibrava" }, illustrator: "Tomokazu Komiya", diff --git a/data/EX/Dragon Frontiers/25.ts b/data/EX/Dragon Frontiers/25.ts index 4c17a669e..56ba286b7 100644 --- a/data/EX/Dragon Frontiers/25.ts +++ b/data/EX/Dragon Frontiers/25.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Xatu δ", - fr: "Xatu δ ESPÈCES DELTA", + fr: "Xatu δ", de: "Xatu" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Dragon Frontiers/26.ts b/data/EX/Dragon Frontiers/26.ts index bb3afb1b9..53c2365b2 100644 --- a/data/EX/Dragon Frontiers/26.ts +++ b/data/EX/Dragon Frontiers/26.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Bayleef δ", - fr: "Macronium δ ESPÈCES DELTA", + fr: "Macronium δ", de: "Lorblatt" }, illustrator: "Kagemaru Himeno", diff --git a/data/EX/Dragon Frontiers/27.ts b/data/EX/Dragon Frontiers/27.ts index d4ca8d0bf..d147b1b6c 100644 --- a/data/EX/Dragon Frontiers/27.ts +++ b/data/EX/Dragon Frontiers/27.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Croconaw δ", - fr: "Crocrodil δ ESPÈCES DELTA", + fr: "Crocrodil δ", de: "Tyracroc" }, illustrator: "Yuka Morii", diff --git a/data/EX/Dragon Frontiers/28.ts b/data/EX/Dragon Frontiers/28.ts index 26446006e..80f9307eb 100644 --- a/data/EX/Dragon Frontiers/28.ts +++ b/data/EX/Dragon Frontiers/28.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Dragonair δ", - fr: "Draco δ ESPÈCES DELTA", + fr: "Draco δ", de: "Dragonir" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Dragon Frontiers/29.ts b/data/EX/Dragon Frontiers/29.ts index 8cbd74b54..952c1d283 100644 --- a/data/EX/Dragon Frontiers/29.ts +++ b/data/EX/Dragon Frontiers/29.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Electabuzz δ", - fr: "Elektek δ ESPÈCES DELTA", + fr: "Elektek δ", de: "Elektek" }, illustrator: "Ken Sugimori", diff --git a/data/EX/Dragon Frontiers/3.ts b/data/EX/Dragon Frontiers/3.ts index d637d11d0..235c184ab 100644 --- a/data/EX/Dragon Frontiers/3.ts +++ b/data/EX/Dragon Frontiers/3.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Heracross δ", - fr: "Scarhino δ ESPÈCES DELTA", + fr: "Scarhino δ", de: "Skaraborn" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Dragon Frontiers/30.ts b/data/EX/Dragon Frontiers/30.ts index 2150186d6..85e2f006f 100644 --- a/data/EX/Dragon Frontiers/30.ts +++ b/data/EX/Dragon Frontiers/30.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Flaaffy δ", - fr: "Lainergie δ ESPÈCES DELTA", + fr: "Lainergie δ", de: "Waaty" }, illustrator: "Yuka Morii", diff --git a/data/EX/Dragon Frontiers/31.ts b/data/EX/Dragon Frontiers/31.ts index e12d9b21f..eeafbcbd4 100644 --- a/data/EX/Dragon Frontiers/31.ts +++ b/data/EX/Dragon Frontiers/31.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Horsea δ", - fr: "Hypotrempe δ ESPÈCES DELTA", + fr: "Hypotrempe δ", de: "Seeper" }, illustrator: "Tomokazu Komiya", diff --git a/data/EX/Dragon Frontiers/33.ts b/data/EX/Dragon Frontiers/33.ts index 5cb84786c..639cbbf4b 100644 --- a/data/EX/Dragon Frontiers/33.ts +++ b/data/EX/Dragon Frontiers/33.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Kirlia δ", - fr: "Kirlia δ ESPÈCES DELTA", + fr: "Kirlia δ", de: "Kirlia" }, illustrator: "Kyoko Umemoto", diff --git a/data/EX/Dragon Frontiers/35.ts b/data/EX/Dragon Frontiers/35.ts index 86028a706..3802d10d4 100644 --- a/data/EX/Dragon Frontiers/35.ts +++ b/data/EX/Dragon Frontiers/35.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Nidorino δ", - fr: "Nidorino δ ESPÈCES DELTA", + fr: "Nidorino δ", de: "Nidorino" }, illustrator: "Atsuko Nishida", diff --git a/data/EX/Dragon Frontiers/36.ts b/data/EX/Dragon Frontiers/36.ts index 944fc5f0d..3dbe163c6 100644 --- a/data/EX/Dragon Frontiers/36.ts +++ b/data/EX/Dragon Frontiers/36.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Quilava δ", - fr: "Feurisson δ ESPÈCES DELTA", + fr: "Feurisson δ", de: "Igelavar" }, illustrator: "Midori Harada", diff --git a/data/EX/Dragon Frontiers/37.ts b/data/EX/Dragon Frontiers/37.ts index efbf05012..e0fcd959e 100644 --- a/data/EX/Dragon Frontiers/37.ts +++ b/data/EX/Dragon Frontiers/37.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Seadra δ", - fr: "Hypocéan δ ESPÈCES DELTA", + fr: "Hypocéan δ", de: "Seemon" }, illustrator: "Hisao Nakamura", diff --git a/data/EX/Dragon Frontiers/38.ts b/data/EX/Dragon Frontiers/38.ts index 70032c755..0829a55d9 100644 --- a/data/EX/Dragon Frontiers/38.ts +++ b/data/EX/Dragon Frontiers/38.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Shelgon δ", - fr: "Drackhaus δ ESPÈCES DELTA", + fr: "Drackhaus δ", de: "Draschel" }, illustrator: "Kyoko Umemoto", diff --git a/data/EX/Dragon Frontiers/39.ts b/data/EX/Dragon Frontiers/39.ts index dfff5abed..d0865bea6 100644 --- a/data/EX/Dragon Frontiers/39.ts +++ b/data/EX/Dragon Frontiers/39.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Smeargle δ", - fr: "Queulorior δ ESPÈCES DELTA", + fr: "Queulorior δ", de: "Farbeagle" }, illustrator: "Kagemaru Himeno", diff --git a/data/EX/Dragon Frontiers/4.ts b/data/EX/Dragon Frontiers/4.ts index 991916db4..5bf5c40f9 100644 --- a/data/EX/Dragon Frontiers/4.ts +++ b/data/EX/Dragon Frontiers/4.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Meganium δ", - fr: "Meganium δ ESPÈCES DELTA", + fr: "Meganium δ", de: "Meganie" }, illustrator: "Sumiyoshi Kizuki", diff --git a/data/EX/Dragon Frontiers/40.ts b/data/EX/Dragon Frontiers/40.ts index b37dee951..b943974f3 100644 --- a/data/EX/Dragon Frontiers/40.ts +++ b/data/EX/Dragon Frontiers/40.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Swellow δ", - fr: "Heledelle δ ESPÈCES DELTA", + fr: "Heledelle δ", de: "Schwalboss" }, illustrator: "Sumiyoshi Kizuki", diff --git a/data/EX/Dragon Frontiers/41.ts b/data/EX/Dragon Frontiers/41.ts index 20ef35008..c9b8ff0ff 100644 --- a/data/EX/Dragon Frontiers/41.ts +++ b/data/EX/Dragon Frontiers/41.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Togepi δ", - fr: "Togepi δ ESPÈCES DELTA", + fr: "Togepi δ", de: "Togepi" }, illustrator: "Miki Tanaka", diff --git a/data/EX/Dragon Frontiers/42.ts b/data/EX/Dragon Frontiers/42.ts index 5cb973c14..48cc08fe7 100644 --- a/data/EX/Dragon Frontiers/42.ts +++ b/data/EX/Dragon Frontiers/42.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Vibrava δ", - fr: "Vibraninf δ ESPÈCES DELTA", + fr: "Vibraninf δ", de: "Vibrava" }, illustrator: "Midori Harada", diff --git a/data/EX/Dragon Frontiers/43.ts b/data/EX/Dragon Frontiers/43.ts index 1da7898b8..e97aafcd2 100644 --- a/data/EX/Dragon Frontiers/43.ts +++ b/data/EX/Dragon Frontiers/43.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Bagon δ", - fr: "Draby δ ESPÈCES DELTA", + fr: "Draby δ", de: "Kindwurm" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Dragon Frontiers/44.ts b/data/EX/Dragon Frontiers/44.ts index 01bb8d14b..254f2636a 100644 --- a/data/EX/Dragon Frontiers/44.ts +++ b/data/EX/Dragon Frontiers/44.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Chikorita δ", - fr: "Germignon δ ESPÈCES DELTA", + fr: "Germignon δ", de: "Endivie" }, illustrator: "Yuka Morii", diff --git a/data/EX/Dragon Frontiers/45.ts b/data/EX/Dragon Frontiers/45.ts index bddfe70b1..2fae8f083 100644 --- a/data/EX/Dragon Frontiers/45.ts +++ b/data/EX/Dragon Frontiers/45.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Cyndaquil δ", - fr: "Héricendre δ ESPÈCES DELTA", + fr: "Héricendre δ", de: "Feurigel" }, illustrator: "Atsuko Nishida", diff --git a/data/EX/Dragon Frontiers/46.ts b/data/EX/Dragon Frontiers/46.ts index 034342836..12172cfed 100644 --- a/data/EX/Dragon Frontiers/46.ts +++ b/data/EX/Dragon Frontiers/46.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Dratini δ", - fr: "Minidraco δ ESPÈCES DELTA", + fr: "Minidraco δ", de: "Dratini" }, illustrator: "Tomokazu Komiya", diff --git a/data/EX/Dragon Frontiers/47.ts b/data/EX/Dragon Frontiers/47.ts index a9fcce48a..4732f6c57 100644 --- a/data/EX/Dragon Frontiers/47.ts +++ b/data/EX/Dragon Frontiers/47.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Ekans δ", - fr: "Abo δ ESPÈCES DELTA", + fr: "Abo δ", de: "Rettan" }, illustrator: "Yuka Morii", diff --git a/data/EX/Dragon Frontiers/48.ts b/data/EX/Dragon Frontiers/48.ts index 8f4371f2f..c9a37f523 100644 --- a/data/EX/Dragon Frontiers/48.ts +++ b/data/EX/Dragon Frontiers/48.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Elekid δ", - fr: "Elekid δ ESPÈCES DELTA", + fr: "Elekid δ", de: "Elekid" }, illustrator: "Ken Sugimori", diff --git a/data/EX/Dragon Frontiers/49.ts b/data/EX/Dragon Frontiers/49.ts index 61b1dfc12..77ab4f60f 100644 --- a/data/EX/Dragon Frontiers/49.ts +++ b/data/EX/Dragon Frontiers/49.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Feebas δ", - fr: "Barpau δ ESPÈCES DELTA", + fr: "Barpau δ", de: "Barschwa" }, illustrator: "Yukiko Baba", diff --git a/data/EX/Dragon Frontiers/5.ts b/data/EX/Dragon Frontiers/5.ts index b132d833e..39299cdb1 100644 --- a/data/EX/Dragon Frontiers/5.ts +++ b/data/EX/Dragon Frontiers/5.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Milotic δ", - fr: "Milobellus δ ESPÈCES DELTA", + fr: "Milobellus δ", de: "Milotic" }, illustrator: "Midori Harada", diff --git a/data/EX/Dragon Frontiers/50.ts b/data/EX/Dragon Frontiers/50.ts index 873fad072..ca6458931 100644 --- a/data/EX/Dragon Frontiers/50.ts +++ b/data/EX/Dragon Frontiers/50.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Horsea δ", - fr: "Hypotrempe δ ESPÈCES DELTA", + fr: "Hypotrempe δ", de: "Seeper" }, illustrator: "Hisao Nakamura", diff --git a/data/EX/Dragon Frontiers/54.ts b/data/EX/Dragon Frontiers/54.ts index 9bf701965..77f71c9b9 100644 --- a/data/EX/Dragon Frontiers/54.ts +++ b/data/EX/Dragon Frontiers/54.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Mareep δ", - fr: "Wattouat δ ESPÈCES DELTA", + fr: "Wattouat δ", de: "Voltilamm" }, illustrator: "Sachiko Adachi", diff --git a/data/EX/Dragon Frontiers/56.ts b/data/EX/Dragon Frontiers/56.ts index 0c9a89a24..6fff1ea3f 100644 --- a/data/EX/Dragon Frontiers/56.ts +++ b/data/EX/Dragon Frontiers/56.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Nidoran♀ δ", - fr: "Nidoran ♀ δ ESPÈCES DELTA", + fr: "Nidoran ♀ δ", de: "Nidoran W" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Dragon Frontiers/57.ts b/data/EX/Dragon Frontiers/57.ts index f9128c546..ad811de44 100644 --- a/data/EX/Dragon Frontiers/57.ts +++ b/data/EX/Dragon Frontiers/57.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Nidoran♂ δ", - fr: "Nidoran ♂ δ ESPÈCES DELTA", + fr: "Nidoran ♂ δ", de: "Nidoran M" }, illustrator: "Midori Harada", diff --git a/data/EX/Dragon Frontiers/59.ts b/data/EX/Dragon Frontiers/59.ts index c45455b62..7d41df877 100644 --- a/data/EX/Dragon Frontiers/59.ts +++ b/data/EX/Dragon Frontiers/59.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Pupitar δ", - fr: "Ymphect δ ESPÈCES DELTA", + fr: "Ymphect δ", de: "Pupitar" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Dragon Frontiers/6.ts b/data/EX/Dragon Frontiers/6.ts index 40c70d7f8..fa6f1b6b5 100644 --- a/data/EX/Dragon Frontiers/6.ts +++ b/data/EX/Dragon Frontiers/6.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Nidoking δ", - fr: "Nidoking δ ESPÈCES DELTA", + fr: "Nidoking δ", de: "Nidoking" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Dragon Frontiers/61.ts b/data/EX/Dragon Frontiers/61.ts index 6f85cf526..4e67af5db 100644 --- a/data/EX/Dragon Frontiers/61.ts +++ b/data/EX/Dragon Frontiers/61.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Ralts δ", - fr: "Tarsal δ ESPÈCES DELTA", + fr: "Tarsal δ", de: "Trasla" }, illustrator: "Kyoko Umemoto", diff --git a/data/EX/Dragon Frontiers/62.ts b/data/EX/Dragon Frontiers/62.ts index 08d43e6bb..2a0c45edc 100644 --- a/data/EX/Dragon Frontiers/62.ts +++ b/data/EX/Dragon Frontiers/62.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Seel δ", - fr: "Otaria δ ESPÈCES DELTA", + fr: "Otaria δ", de: "Jurob" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Dragon Frontiers/63.ts b/data/EX/Dragon Frontiers/63.ts index 10a2bdbe1..073ee2390 100644 --- a/data/EX/Dragon Frontiers/63.ts +++ b/data/EX/Dragon Frontiers/63.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Shellder δ", - fr: "Kokiyas δ ESPÈCES DELTA", + fr: "Kokiyas δ", de: "Muschas" }, illustrator: "Hisao Nakamura", diff --git a/data/EX/Dragon Frontiers/64.ts b/data/EX/Dragon Frontiers/64.ts index 08d6e0ef3..cfd2ce7f4 100644 --- a/data/EX/Dragon Frontiers/64.ts +++ b/data/EX/Dragon Frontiers/64.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Smoochum δ", - fr: "Lippouti δ ESPÈCES DELTA", + fr: "Lippouti δ", de: "Kussilla" }, illustrator: "Miki Tanaka", diff --git a/data/EX/Dragon Frontiers/65.ts b/data/EX/Dragon Frontiers/65.ts index 8fea79921..372e54484 100644 --- a/data/EX/Dragon Frontiers/65.ts +++ b/data/EX/Dragon Frontiers/65.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Swablu δ", - fr: "Tylton δ ESPÈCES DELTA", + fr: "Tylton δ", de: "Wablu" }, illustrator: "Miki Tanaka", diff --git a/data/EX/Dragon Frontiers/66.ts b/data/EX/Dragon Frontiers/66.ts index fca5c70b8..050d17733 100644 --- a/data/EX/Dragon Frontiers/66.ts +++ b/data/EX/Dragon Frontiers/66.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Taillow δ", - fr: "Nirondelle δ ESPÈCES DELTA", + fr: "Nirondelle δ", de: "Schwalbini" }, illustrator: "Miki Tanaka", diff --git a/data/EX/Dragon Frontiers/67.ts b/data/EX/Dragon Frontiers/67.ts index 1356ba1d8..3a4b2f0bb 100644 --- a/data/EX/Dragon Frontiers/67.ts +++ b/data/EX/Dragon Frontiers/67.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Totodile δ", - fr: "Kaiminus δ ESPÈCES DELTA", + fr: "Kaiminus δ", de: "Karnimani" }, illustrator: "Hisao Nakamura", diff --git a/data/EX/Dragon Frontiers/68.ts b/data/EX/Dragon Frontiers/68.ts index e9816074c..34ea77304 100644 --- a/data/EX/Dragon Frontiers/68.ts +++ b/data/EX/Dragon Frontiers/68.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Trapinch δ", - fr: "Kraknoix δ ESPÈCES DELTA", + fr: "Kraknoix δ", de: "Knacklion" }, illustrator: "Midori Harada", diff --git a/data/EX/Dragon Frontiers/69.ts b/data/EX/Dragon Frontiers/69.ts index 238127bd7..296458cbe 100644 --- a/data/EX/Dragon Frontiers/69.ts +++ b/data/EX/Dragon Frontiers/69.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Trapinch δ", - fr: "Kraknoix δ ESPÈCES DELTA", + fr: "Kraknoix δ", de: "Knacklion" }, illustrator: "Yukiko Baba", diff --git a/data/EX/Dragon Frontiers/7.ts b/data/EX/Dragon Frontiers/7.ts index 55cb20335..09106767c 100644 --- a/data/EX/Dragon Frontiers/7.ts +++ b/data/EX/Dragon Frontiers/7.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Nidoqueen δ", - fr: "Nidoqueen δ ESPÈCES DELTA", + fr: "Nidoqueen δ", de: "Nidoqueen" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Dragon Frontiers/70.ts b/data/EX/Dragon Frontiers/70.ts index 40b805db6..919ebe9a0 100644 --- a/data/EX/Dragon Frontiers/70.ts +++ b/data/EX/Dragon Frontiers/70.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Vulpix δ", - fr: "Goupix δ ESPÈCES DELTA", + fr: "Goupix δ", de: "Vulpix" }, illustrator: "Sachiko Adachi", diff --git a/data/EX/Dragon Frontiers/71.ts b/data/EX/Dragon Frontiers/71.ts index babcec24d..fb8cb7611 100644 --- a/data/EX/Dragon Frontiers/71.ts +++ b/data/EX/Dragon Frontiers/71.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Wooper δ", - fr: "Axoloto δ ESPÈCES DELTA", + fr: "Axoloto δ", de: "Felino" }, illustrator: "Tomokazu Komiya", diff --git a/data/EX/Dragon Frontiers/8.ts b/data/EX/Dragon Frontiers/8.ts index 043a14904..e82c896f7 100644 --- a/data/EX/Dragon Frontiers/8.ts +++ b/data/EX/Dragon Frontiers/8.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Ninetales δ", - fr: "Feunard δ ESPÈCES DELTA", + fr: "Feunard δ", de: "Vulnona" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Dragon Frontiers/9.ts b/data/EX/Dragon Frontiers/9.ts index 951a0b72c..0743b1d11 100644 --- a/data/EX/Dragon Frontiers/9.ts +++ b/data/EX/Dragon Frontiers/9.ts @@ -4,7 +4,7 @@ import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Pinsir δ", - fr: "Scarabrute δ ESPÈCES DELTA", + fr: "Scarabrute δ", de: "Pinsir" }, illustrator: "Yukiko Baba", diff --git a/data/EX/Dragon.ts b/data/EX/Dragon.ts index 0eac9c801..5e161ae5d 100644 --- a/data/EX/Dragon.ts +++ b/data/EX/Dragon.ts @@ -18,7 +18,12 @@ const ex3: Set = { official: 97 }, - releaseDate: "2003-11-24" + releaseDate: "2003-11-24", + + abbreviations: { + official: "DR", + fr: "DRG" + } } export default ex3 diff --git a/data/EX/Emerald.ts b/data/EX/Emerald.ts index 05d02aed0..71d723cf6 100644 --- a/data/EX/Emerald.ts +++ b/data/EX/Emerald.ts @@ -19,7 +19,12 @@ const ex9: Set = { official: 106 }, - releaseDate: "2005-05-09" + releaseDate: "2005-05-09", + + abbreviations: { + official: "EM", + fr: "EME" + } } export default ex9 diff --git a/data/EX/FireRed & LeafGreen.ts b/data/EX/FireRed & LeafGreen.ts index 8ecd9199a..b5363bd30 100644 --- a/data/EX/FireRed & LeafGreen.ts +++ b/data/EX/FireRed & LeafGreen.ts @@ -18,7 +18,12 @@ const ex6: Set = { official: 112 }, - releaseDate: "2004-09-01" + releaseDate: "2004-09-01", + + abbreviations: { + official: "RG", + fr: "RFV" + } } export default ex6 diff --git a/data/EX/Hidden Legends.ts b/data/EX/Hidden Legends.ts index 3b8ecca13..e18af0f07 100644 --- a/data/EX/Hidden Legends.ts +++ b/data/EX/Hidden Legends.ts @@ -17,7 +17,12 @@ const ex5: Set = { official: 101 }, - releaseDate: "2004-06-01" + releaseDate: "2004-06-01", + + abbreviations: { + official: "HL", + fr: "LOU" + } } export default ex5 diff --git a/data/EX/Holon Phantoms.ts b/data/EX/Holon Phantoms.ts index e3abdf742..27bee671c 100644 --- a/data/EX/Holon Phantoms.ts +++ b/data/EX/Holon Phantoms.ts @@ -18,7 +18,12 @@ const ex13: Set = { official: 110 }, - releaseDate: "2006-05-03" + releaseDate: "2006-05-03", + + abbreviations: { + official: "HP", + fr: "FAN" + } } export default ex13 diff --git a/data/EX/Holon Phantoms/1.ts b/data/EX/Holon Phantoms/1.ts index a02a16348..438879ed5 100644 --- a/data/EX/Holon Phantoms/1.ts +++ b/data/EX/Holon Phantoms/1.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Armaldo δ", - fr: "Armaldo δ ESPÈCES DELTA", + fr: "Armaldo δ", de: "Armaldo" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Holon Phantoms/10.ts b/data/EX/Holon Phantoms/10.ts index e26e8dea3..b170bb99f 100644 --- a/data/EX/Holon Phantoms/10.ts +++ b/data/EX/Holon Phantoms/10.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Kingdra δ", - fr: "Hyporoi δ ESPÈCES DELTA", + fr: "Hyporoi δ", de: "Seedraking" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Holon Phantoms/11.ts b/data/EX/Holon Phantoms/11.ts index eb3701215..452868e27 100644 --- a/data/EX/Holon Phantoms/11.ts +++ b/data/EX/Holon Phantoms/11.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Latias δ", - fr: "Latias δ ESPÈCES DELTA", + fr: "Latias δ", de: "Latias" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Holon Phantoms/12.ts b/data/EX/Holon Phantoms/12.ts index 9e14176b8..d34eb4dd2 100644 --- a/data/EX/Holon Phantoms/12.ts +++ b/data/EX/Holon Phantoms/12.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Latios δ", - fr: "Latios δ ESPÈCES DELTA", + fr: "Latios δ", de: "Latios" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Holon Phantoms/13.ts b/data/EX/Holon Phantoms/13.ts index 5bc9de924..a23ffdecb 100644 --- a/data/EX/Holon Phantoms/13.ts +++ b/data/EX/Holon Phantoms/13.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Omastar δ", - fr: "Amonistar δ ESPÈCES DELTA", + fr: "Amonistar δ", de: "Amoroso" }, illustrator: "Midori Harada", diff --git a/data/EX/Holon Phantoms/14.ts b/data/EX/Holon Phantoms/14.ts index 365d1242f..00d67b6b6 100644 --- a/data/EX/Holon Phantoms/14.ts +++ b/data/EX/Holon Phantoms/14.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Pidgeot δ", - fr: "Roucarnage δ ESPÈCES DELTA", + fr: "Roucarnage δ", de: "Tauboss" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Holon Phantoms/15.ts b/data/EX/Holon Phantoms/15.ts index 62dbcbe52..c1d90dfa4 100644 --- a/data/EX/Holon Phantoms/15.ts +++ b/data/EX/Holon Phantoms/15.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Raichu δ", - fr: "Raichu δ ESPÈCES DELTA", + fr: "Raichu δ", de: "Raichu" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Holon Phantoms/16.ts b/data/EX/Holon Phantoms/16.ts index 2adb08042..3f106aa1c 100644 --- a/data/EX/Holon Phantoms/16.ts +++ b/data/EX/Holon Phantoms/16.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Rayquaza δ", - fr: "Rayquaza δ ESPÈCES DELTA", + fr: "Rayquaza δ", de: "Rayquaza" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Holon Phantoms/17.ts b/data/EX/Holon Phantoms/17.ts index a5ab491e8..94ab6d3f5 100644 --- a/data/EX/Holon Phantoms/17.ts +++ b/data/EX/Holon Phantoms/17.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Vileplume δ", - fr: "Rafflesia δ ESPÈCES DELTA", + fr: "Rafflesia δ", de: "Giflor" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Holon Phantoms/19.ts b/data/EX/Holon Phantoms/19.ts index cdf37c89a..dfca77090 100644 --- a/data/EX/Holon Phantoms/19.ts +++ b/data/EX/Holon Phantoms/19.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Bellossom δ", - fr: "Joliflor δ ESPÈCES DELTA", + fr: "Joliflor δ", de: "Blubella" }, illustrator: "Kagemaru Himeno", diff --git a/data/EX/Holon Phantoms/2.ts b/data/EX/Holon Phantoms/2.ts index b0da567ca..9f4f4131d 100644 --- a/data/EX/Holon Phantoms/2.ts +++ b/data/EX/Holon Phantoms/2.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Cradily δ", - fr: "Vacilys δ ESPÈCES DELTA", + fr: "Vacilys δ", de: "Wielie" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Holon Phantoms/21.ts b/data/EX/Holon Phantoms/21.ts index 86149cfd4..004047cfe 100644 --- a/data/EX/Holon Phantoms/21.ts +++ b/data/EX/Holon Phantoms/21.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Latias δ", - fr: "Latias δ ESPÈCES DELTA", + fr: "Latias δ", de: "Latias" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Holon Phantoms/22.ts b/data/EX/Holon Phantoms/22.ts index cc17ec292..c4ff9a50f 100644 --- a/data/EX/Holon Phantoms/22.ts +++ b/data/EX/Holon Phantoms/22.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Latios δ", - fr: "Latios δ ESPÈCES DELTA", + fr: "Latios δ", de: "Latios" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Holon Phantoms/24.ts b/data/EX/Holon Phantoms/24.ts index 37cec3198..03d5bceb8 100644 --- a/data/EX/Holon Phantoms/24.ts +++ b/data/EX/Holon Phantoms/24.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Mewtwo δ", - fr: "Mewtwo δ ESPÈCES DELTA", + fr: "Mewtwo δ", de: "Mewtu" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Holon Phantoms/26.ts b/data/EX/Holon Phantoms/26.ts index 7b2c2bf04..77f101f51 100644 --- a/data/EX/Holon Phantoms/26.ts +++ b/data/EX/Holon Phantoms/26.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Rayquaza δ", - fr: "Rayquaza δ ESPÈCES DELTA", + fr: "Rayquaza δ", de: "Rayquaza" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Holon Phantoms/3.ts b/data/EX/Holon Phantoms/3.ts index 7e37a9237..60b9af4e1 100644 --- a/data/EX/Holon Phantoms/3.ts +++ b/data/EX/Holon Phantoms/3.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Deoxys δ", - fr: "Deoxys δ ESPÈCES DELTA", + fr: "Deoxys δ", de: "Deoxys" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Holon Phantoms/35.ts b/data/EX/Holon Phantoms/35.ts index 41ae95132..d0c19e349 100644 --- a/data/EX/Holon Phantoms/35.ts +++ b/data/EX/Holon Phantoms/35.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Aerodactyl δ", - fr: "Ptera δ ESPÈCES DELTA", + fr: "Ptera δ", de: "Aerodactyl" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Holon Phantoms/37.ts b/data/EX/Holon Phantoms/37.ts index 0247399de..3f4e1fb2f 100644 --- a/data/EX/Holon Phantoms/37.ts +++ b/data/EX/Holon Phantoms/37.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Chimecho δ", - fr: "Eoko δ ESPÈCES DELTA", + fr: "Eoko δ", de: "Palimpalim" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Holon Phantoms/4.ts b/data/EX/Holon Phantoms/4.ts index e10487806..627845fe3 100644 --- a/data/EX/Holon Phantoms/4.ts +++ b/data/EX/Holon Phantoms/4.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Deoxys δ", - fr: "Deoxys δ ESPÈCES DELTA", + fr: "Deoxys δ", de: "Deoxys" }, illustrator: "Kagemaru Himeno", diff --git a/data/EX/Holon Phantoms/41.ts b/data/EX/Holon Phantoms/41.ts index eeacd1acb..c10b78e2c 100644 --- a/data/EX/Holon Phantoms/41.ts +++ b/data/EX/Holon Phantoms/41.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Exeggutor δ", - fr: "Noadkoko δ ESPÈCES DELTA", + fr: "Noadkoko δ", de: "Kokowei" }, illustrator: "Midori Harada", diff --git a/data/EX/Holon Phantoms/42.ts b/data/EX/Holon Phantoms/42.ts index 8f4853d25..c06672575 100644 --- a/data/EX/Holon Phantoms/42.ts +++ b/data/EX/Holon Phantoms/42.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Gloom δ", - fr: "Ortide δ ESPÈCES DELTA", + fr: "Ortide δ", de: "Duflor" }, illustrator: "Midori Harada", diff --git a/data/EX/Holon Phantoms/43.ts b/data/EX/Holon Phantoms/43.ts index 7d0b0c620..718cdac71 100644 --- a/data/EX/Holon Phantoms/43.ts +++ b/data/EX/Holon Phantoms/43.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Golduck δ", - fr: "Akwakwak δ ESPÈCES DELTA", + fr: "Akwakwak δ", de: "Entoron" }, illustrator: "Midori Harada", diff --git a/data/EX/Holon Phantoms/48.ts b/data/EX/Holon Phantoms/48.ts index 0f62c1855..df94c15aa 100644 --- a/data/EX/Holon Phantoms/48.ts +++ b/data/EX/Holon Phantoms/48.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Persian δ", - fr: "Persian δ ESPÈCES DELTA", + fr: "Persian δ", de: "Snobilikat" }, illustrator: "Midori Harada", diff --git a/data/EX/Holon Phantoms/49.ts b/data/EX/Holon Phantoms/49.ts index 81eed1455..35d208d58 100644 --- a/data/EX/Holon Phantoms/49.ts +++ b/data/EX/Holon Phantoms/49.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Pidgeotto δ", - fr: "Roucoups δ ESPÈCES DELTA", + fr: "Roucoups δ", de: "Tauboga" }, illustrator: "Atsuko Nishida", diff --git a/data/EX/Holon Phantoms/5.ts b/data/EX/Holon Phantoms/5.ts index 571d3f4d6..1ed1ab4cd 100644 --- a/data/EX/Holon Phantoms/5.ts +++ b/data/EX/Holon Phantoms/5.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Deoxys δ", - fr: "Deoxys δ ESPÈCES DELTA", + fr: "Deoxys δ", de: "Deoxys" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Holon Phantoms/50.ts b/data/EX/Holon Phantoms/50.ts index 679c505ea..93db17da7 100644 --- a/data/EX/Holon Phantoms/50.ts +++ b/data/EX/Holon Phantoms/50.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Primeape δ", - fr: "Colossinge δ ESPÈCES DELTA", + fr: "Colossinge δ", de: "Rasaff" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Holon Phantoms/52.ts b/data/EX/Holon Phantoms/52.ts index a493ce09c..0b080b9dd 100644 --- a/data/EX/Holon Phantoms/52.ts +++ b/data/EX/Holon Phantoms/52.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Seadra δ", - fr: "Hypocéan δ ESPÈCES DELTA", + fr: "Hypocéan δ", de: "Seemon" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Holon Phantoms/53.ts b/data/EX/Holon Phantoms/53.ts index 45fe40a0d..9816989f8 100644 --- a/data/EX/Holon Phantoms/53.ts +++ b/data/EX/Holon Phantoms/53.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Sharpedo δ", - fr: "Sharpedo δ ESPÈCES DELTA", + fr: "Sharpedo δ", de: "Tohaido" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Holon Phantoms/54.ts b/data/EX/Holon Phantoms/54.ts index 90193af39..6143c3c38 100644 --- a/data/EX/Holon Phantoms/54.ts +++ b/data/EX/Holon Phantoms/54.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Vibrava δ", - fr: "Vibraninf δ ESPÈCES DELTA", + fr: "Vibraninf δ", de: "Vibrava" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Holon Phantoms/57.ts b/data/EX/Holon Phantoms/57.ts index 1031b0dd2..eec9aa337 100644 --- a/data/EX/Holon Phantoms/57.ts +++ b/data/EX/Holon Phantoms/57.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Anorith δ", - fr: "Anorith δ ESPÈCES DELTA", + fr: "Anorith δ", de: "Anorith" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Holon Phantoms/6.ts b/data/EX/Holon Phantoms/6.ts index 91f6c462d..c8cac3154 100644 --- a/data/EX/Holon Phantoms/6.ts +++ b/data/EX/Holon Phantoms/6.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Deoxys δ", - fr: "Deoxys δ ESPÈCES DELTA", + fr: "Deoxys δ", de: "Deoxys" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Holon Phantoms/61.ts b/data/EX/Holon Phantoms/61.ts index f35730a56..b28b58845 100644 --- a/data/EX/Holon Phantoms/61.ts +++ b/data/EX/Holon Phantoms/61.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Carvanha δ", - fr: "Carvanha δ ESPÈCES DELTA", + fr: "Carvanha δ", de: "Kanivanha" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Holon Phantoms/65.ts b/data/EX/Holon Phantoms/65.ts index 880f8bc88..bab9ea25d 100644 --- a/data/EX/Holon Phantoms/65.ts +++ b/data/EX/Holon Phantoms/65.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Exeggcute δ", - fr: "Noeunoeuf δ ESPÈCES DELTA", + fr: "Noeunoeuf δ", de: "Owei" }, illustrator: "Atsuko Nishida", diff --git a/data/EX/Holon Phantoms/66.ts b/data/EX/Holon Phantoms/66.ts index 766a335c8..d6bf033f3 100644 --- a/data/EX/Holon Phantoms/66.ts +++ b/data/EX/Holon Phantoms/66.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Horsea δ", - fr: "Hypotrempe δ ESPÈCES DELTA", + fr: "Hypotrempe δ", de: "Seeper" }, illustrator: "Atsuko Nishida", diff --git a/data/EX/Holon Phantoms/67.ts b/data/EX/Holon Phantoms/67.ts index 09f513171..584a5b942 100644 --- a/data/EX/Holon Phantoms/67.ts +++ b/data/EX/Holon Phantoms/67.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Kabuto δ", - fr: "Kabuto δ ESPÈCES DELTA", + fr: "Kabuto δ", de: "Kabuto" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Holon Phantoms/68.ts b/data/EX/Holon Phantoms/68.ts index f674b372e..39cba5539 100644 --- a/data/EX/Holon Phantoms/68.ts +++ b/data/EX/Holon Phantoms/68.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Lileep δ", - fr: "Lilia δ ESPÈCES DELTA", + fr: "Lilia δ", de: "Liliep" }, illustrator: "Kagemaru Himeno", diff --git a/data/EX/Holon Phantoms/69.ts b/data/EX/Holon Phantoms/69.ts index 819050709..5476a19c9 100644 --- a/data/EX/Holon Phantoms/69.ts +++ b/data/EX/Holon Phantoms/69.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Magikarp δ", - fr: "Magicarpe δ ESPÈCES DELTA", + fr: "Magicarpe δ", de: "Karpador" }, illustrator: "Midori Harada", diff --git a/data/EX/Holon Phantoms/7.ts b/data/EX/Holon Phantoms/7.ts index acbc6fd04..f819f8bbd 100644 --- a/data/EX/Holon Phantoms/7.ts +++ b/data/EX/Holon Phantoms/7.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Flygon δ", - fr: "Libegon δ ESPÈCES DELTA", + fr: "Libegon δ", de: "Libelldra" }, illustrator: "Kagemaru Himeno", diff --git a/data/EX/Holon Phantoms/70.ts b/data/EX/Holon Phantoms/70.ts index af26e853e..efd27c91e 100644 --- a/data/EX/Holon Phantoms/70.ts +++ b/data/EX/Holon Phantoms/70.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Mankey δ", - fr: "Férosinge δ ESPÈCES DELTA", + fr: "Férosinge δ", de: "Menki" }, illustrator: "Atsuko Nishida", diff --git a/data/EX/Holon Phantoms/71.ts b/data/EX/Holon Phantoms/71.ts index 7e18da0cd..75419682f 100644 --- a/data/EX/Holon Phantoms/71.ts +++ b/data/EX/Holon Phantoms/71.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Meowth δ", - fr: "Miaouss δ ESPÈCES DELTA", + fr: "Miaouss δ", de: "Mauzi" }, illustrator: "Kagemaru Himeno", diff --git a/data/EX/Holon Phantoms/73.ts b/data/EX/Holon Phantoms/73.ts index a2dab7715..cb12be448 100644 --- a/data/EX/Holon Phantoms/73.ts +++ b/data/EX/Holon Phantoms/73.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Oddish δ", - fr: "Mystherbe δ ESPÈCES DELTA", + fr: "Mystherbe δ", de: "Myrapla" }, illustrator: "Atsuko Nishida", diff --git a/data/EX/Holon Phantoms/74.ts b/data/EX/Holon Phantoms/74.ts index e912b4149..d6ddea9e2 100644 --- a/data/EX/Holon Phantoms/74.ts +++ b/data/EX/Holon Phantoms/74.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Omanyte δ", - fr: "Amonita δ ESPÈCES DELTA", + fr: "Amonita δ", de: "Amonitas" }, illustrator: "Kagemaru Himeno", diff --git a/data/EX/Holon Phantoms/76.ts b/data/EX/Holon Phantoms/76.ts index 3f185fe0c..b7809a65b 100644 --- a/data/EX/Holon Phantoms/76.ts +++ b/data/EX/Holon Phantoms/76.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Pichu δ", - fr: "Pichu δ ESPÈCES DELTA", + fr: "Pichu δ", de: "Pichu" }, illustrator: "Kouki Saitou", diff --git a/data/EX/Holon Phantoms/77.ts b/data/EX/Holon Phantoms/77.ts index a984cad7f..ca73dd214 100644 --- a/data/EX/Holon Phantoms/77.ts +++ b/data/EX/Holon Phantoms/77.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Pidgey δ", - fr: "Roucool δ ESPÈCES DELTA", + fr: "Roucool δ", de: "Taubsi" }, illustrator: "Mitsuhiro Arita", diff --git a/data/EX/Holon Phantoms/79.ts b/data/EX/Holon Phantoms/79.ts index ccba1abd7..4c3c44b18 100644 --- a/data/EX/Holon Phantoms/79.ts +++ b/data/EX/Holon Phantoms/79.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Pikachu δ", - fr: "Pikachu δ ESPÈCES DELTA", + fr: "Pikachu δ", de: "Pikachu" }, illustrator: "Atsuko Nishida", diff --git a/data/EX/Holon Phantoms/8.ts b/data/EX/Holon Phantoms/8.ts index 878c448a7..e55e052d8 100644 --- a/data/EX/Holon Phantoms/8.ts +++ b/data/EX/Holon Phantoms/8.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Gyarados δ", - fr: "Leviator δ ESPÈCES DELTA", + fr: "Leviator δ", de: "Garados" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Holon Phantoms/81.ts b/data/EX/Holon Phantoms/81.ts index f1fb2b0f7..bb73e1000 100644 --- a/data/EX/Holon Phantoms/81.ts +++ b/data/EX/Holon Phantoms/81.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Psyduck δ", - fr: "Psykokwak δ ESPÈCES DELTA", + fr: "Psykokwak δ", de: "Enton" }, illustrator: "Hajime Kusajima", diff --git a/data/EX/Holon Phantoms/9.ts b/data/EX/Holon Phantoms/9.ts index e097713dd..4824b559c 100644 --- a/data/EX/Holon Phantoms/9.ts +++ b/data/EX/Holon Phantoms/9.ts @@ -4,7 +4,7 @@ import Set from '../Holon Phantoms' const card: Card = { name: { en: "Kabutops δ", - fr: "Kabutops δ ESPÈCES DELTA", + fr: "Kabutops δ", de: "Kabutops" }, illustrator: "Masakazu Fukuda", diff --git a/data/EX/Legend Maker.ts b/data/EX/Legend Maker.ts index e779e205e..7d22ab5d1 100644 --- a/data/EX/Legend Maker.ts +++ b/data/EX/Legend Maker.ts @@ -18,7 +18,12 @@ const ex12: Set = { official: 92 }, - releaseDate: "2006-02-13" + releaseDate: "2006-02-13", + + abbreviations: { + official: "LM", + fr: "CDL" + } } export default ex12 diff --git a/data/EX/Legend Maker/93.ts b/data/EX/Legend Maker/93.ts index 0b4fb7c90..b3df509ff 100644 --- a/data/EX/Legend Maker/93.ts +++ b/data/EX/Legend Maker/93.ts @@ -4,7 +4,7 @@ import Set from '../Legend Maker' const card: Card = { name: { en: "Pikachu δ", - fr: "Pikachu δ ESPÈCES DELTA", + fr: "Pikachu δ", de: "Pikachu" }, illustrator: "Ryo Ueda", diff --git a/data/EX/Power Keepers.ts b/data/EX/Power Keepers.ts index df00533d1..0e4e1c275 100644 --- a/data/EX/Power Keepers.ts +++ b/data/EX/Power Keepers.ts @@ -17,7 +17,12 @@ const ex16: Set = { official: 108 }, - releaseDate: "2007-02-17" + releaseDate: "2007-02-17", + + abbreviations: { + official: "PK", + fr: "GDP" + } } export default ex16 diff --git a/data/EX/Ruby & Sapphire.ts b/data/EX/Ruby & Sapphire.ts index 3b8db63fc..d9c6f0c10 100644 --- a/data/EX/Ruby & Sapphire.ts +++ b/data/EX/Ruby & Sapphire.ts @@ -20,7 +20,12 @@ const ex1: Set = { official: 109 }, - releaseDate: "2003-07-01" + releaseDate: "2003-07-01", + + abbreviations: { + official: "RS", + fr: "R&S" + } } export default ex1 diff --git a/data/EX/Sandstorm.ts b/data/EX/Sandstorm.ts index 76b015b32..06113acd3 100644 --- a/data/EX/Sandstorm.ts +++ b/data/EX/Sandstorm.ts @@ -18,7 +18,12 @@ const ex2: Set = { official: 100 }, - releaseDate: "2003-09-18" + releaseDate: "2003-09-18", + + abbreviations: { + official: "SS", + fr: "TES" + } } export default ex2 diff --git a/data/EX/Team Magma vs Team Aqua.ts b/data/EX/Team Magma vs Team Aqua.ts index a952c1921..fb977fbb7 100644 --- a/data/EX/Team Magma vs Team Aqua.ts +++ b/data/EX/Team Magma vs Team Aqua.ts @@ -18,7 +18,12 @@ const ex4: Set = { official: 95 }, - releaseDate: "2004-03-01" + releaseDate: "2004-03-01", + + abbreviations: { + official: "MA", + fr: "M&A" + } } export default ex4 diff --git a/data/EX/Team Rocket Returns.ts b/data/EX/Team Rocket Returns.ts index 6773956f3..fcb4b521a 100644 --- a/data/EX/Team Rocket Returns.ts +++ b/data/EX/Team Rocket Returns.ts @@ -16,7 +16,11 @@ const ex7: Set = { official: 109 }, - releaseDate: "2004-11-01" + releaseDate: "2004-11-01", + + abbreviations: { + official: "TR" + } } export default ex7 diff --git a/data/EX/Unseen Forces.ts b/data/EX/Unseen Forces.ts index 9f2a04ca2..92dc3160b 100644 --- a/data/EX/Unseen Forces.ts +++ b/data/EX/Unseen Forces.ts @@ -20,7 +20,12 @@ const ex10: Set = { official: 115 }, - releaseDate: "2005-08-22" + releaseDate: "2005-08-22", + + abbreviations: { + official: "UF", + fr: "FCH" + } } export default ex10 diff --git a/data/Gym/Gym Challenge.ts b/data/Gym/Gym Challenge.ts index 56fc6ece0..731569524 100644 --- a/data/Gym/Gym Challenge.ts +++ b/data/Gym/Gym Challenge.ts @@ -15,7 +15,11 @@ const gym2: Set = { official: 132 }, - releaseDate: "2000-10-16" + releaseDate: "2000-10-16", + + abbreviations: { + official: "G2" + } } export default gym2 diff --git a/data/Gym/Gym Heroes.ts b/data/Gym/Gym Heroes.ts index 3b5a9306c..dd482dac3 100644 --- a/data/Gym/Gym Heroes.ts +++ b/data/Gym/Gym Heroes.ts @@ -15,7 +15,11 @@ const gym1: Set = { official: 132 }, - releaseDate: "2000-08-14" + releaseDate: "2000-08-14", + + abbreviations: { + official: "G1" + } } export default gym1 diff --git a/data/HeartGold & SoulSilver/HeartGold SoulSilver.ts b/data/HeartGold & SoulSilver/HeartGold SoulSilver.ts index 60f8ef081..8775d63b6 100644 --- a/data/HeartGold & SoulSilver/HeartGold SoulSilver.ts +++ b/data/HeartGold & SoulSilver/HeartGold SoulSilver.ts @@ -20,7 +20,12 @@ const hgss1: Set = { official: 123 }, - releaseDate: "2010-02-10" + releaseDate: "2010-02-10", + + abbreviations: { + official: "HS", + fr: "HGS" + } } export default hgss1 diff --git a/data/HeartGold & SoulSilver/Triumphant.ts b/data/HeartGold & SoulSilver/Triumphant.ts index a74657515..4632f1d59 100644 --- a/data/HeartGold & SoulSilver/Triumphant.ts +++ b/data/HeartGold & SoulSilver/Triumphant.ts @@ -19,7 +19,12 @@ const hgss4: Set = { official: 102 }, - releaseDate: "2010-11-03" + releaseDate: "2010-11-03", + + abbreviations: { + official: "TRI", + fr: "TRI" + } } export default hgss4 diff --git a/data/HeartGold & SoulSilver/Undaunted.ts b/data/HeartGold & SoulSilver/Undaunted.ts index 16f618baa..28070cc7f 100644 --- a/data/HeartGold & SoulSilver/Undaunted.ts +++ b/data/HeartGold & SoulSilver/Undaunted.ts @@ -19,7 +19,12 @@ const hgss3: Set = { official: 90 }, - releaseDate: "2010-08-18" + releaseDate: "2010-08-18", + + abbreviations: { + official: "UND", + fr: "IND" + } } export default hgss3 diff --git a/data/HeartGold & SoulSilver/Unleashed.ts b/data/HeartGold & SoulSilver/Unleashed.ts index a50edab71..0d23293bc 100644 --- a/data/HeartGold & SoulSilver/Unleashed.ts +++ b/data/HeartGold & SoulSilver/Unleashed.ts @@ -20,7 +20,12 @@ const hgss2: Set = { official: 95 }, - releaseDate: "2010-05-12" + releaseDate: "2010-05-12", + + abbreviations: { + official: "UL", + fr: "DCH" + } } export default hgss2 diff --git a/data/Legendary Collection/Legendary Collection.ts b/data/Legendary Collection/Legendary Collection.ts index a76220356..502a703c7 100644 --- a/data/Legendary Collection/Legendary Collection.ts +++ b/data/Legendary Collection/Legendary Collection.ts @@ -15,7 +15,11 @@ const lc: Set = { official: 110 }, - releaseDate: "2002-05-24" + releaseDate: "2002-05-24", + + abbreviations: { + official: "LC" + } } export default lc diff --git a/data/McDonald's Collection/Macdonald's Collection 2011.ts b/data/McDonald's Collection/Macdonald's Collection 2011.ts index 87db18ebe..fdbc8f8d3 100644 --- a/data/McDonald's Collection/Macdonald's Collection 2011.ts +++ b/data/McDonald's Collection/Macdonald's Collection 2011.ts @@ -18,7 +18,12 @@ const s2011bw: Set = { official: 12 }, - releaseDate: "2011-06-17" + releaseDate: "2011-06-17", + + abbreviations: { + official: "MCD11", + fr: "M12" + } } export default s2011bw diff --git a/data/McDonald's Collection/Macdonald's Collection 2012.ts b/data/McDonald's Collection/Macdonald's Collection 2012.ts index 227d5d7a7..9ae44a0d0 100644 --- a/data/McDonald's Collection/Macdonald's Collection 2012.ts +++ b/data/McDonald's Collection/Macdonald's Collection 2012.ts @@ -16,7 +16,11 @@ const s2012bw: Set = { official: 12 }, - releaseDate: "2012-06-15" + releaseDate: "2012-06-15", + + abbreviations: { + official: "MCD12" + } } export default s2012bw diff --git a/data/McDonald's Collection/Macdonald's Collection 2014.ts b/data/McDonald's Collection/Macdonald's Collection 2014.ts index 6144e15c7..fee03b732 100644 --- a/data/McDonald's Collection/Macdonald's Collection 2014.ts +++ b/data/McDonald's Collection/Macdonald's Collection 2014.ts @@ -16,7 +16,12 @@ const s2014xy: Set = { official: 12 }, - releaseDate: "2014-05-23" + releaseDate: "2014-05-23", + + abbreviations: { + official: "MCD14", + fr: "M14" + } } export default s2014xy diff --git a/data/McDonald's Collection/Macdonald's Collection 2015.ts b/data/McDonald's Collection/Macdonald's Collection 2015.ts index 055372630..9ae596932 100644 --- a/data/McDonald's Collection/Macdonald's Collection 2015.ts +++ b/data/McDonald's Collection/Macdonald's Collection 2015.ts @@ -16,7 +16,12 @@ const s2015xy: Set = { official: 12 }, - releaseDate: "2015-11-27" + releaseDate: "2015-11-27", + + abbreviations: { + official: "MCD15", + fr: "M15" + } } export default s2015xy diff --git a/data/McDonald's Collection/Macdonald's Collection 2016.ts b/data/McDonald's Collection/Macdonald's Collection 2016.ts index 6b71cefc4..468418e33 100644 --- a/data/McDonald's Collection/Macdonald's Collection 2016.ts +++ b/data/McDonald's Collection/Macdonald's Collection 2016.ts @@ -16,7 +16,12 @@ const s2016xy: Set = { official: 12 }, - releaseDate: "2016-08-20" + releaseDate: "2016-08-20", + + abbreviations: { + official: "MCD16", + fr: "M16" + } } export default s2016xy diff --git a/data/McDonald's Collection/Macdonald's Collection 2017.ts b/data/McDonald's Collection/Macdonald's Collection 2017.ts index 54defdbfd..483058e32 100644 --- a/data/McDonald's Collection/Macdonald's Collection 2017.ts +++ b/data/McDonald's Collection/Macdonald's Collection 2017.ts @@ -17,7 +17,12 @@ const s2017sm: Set = { official: 12 }, - releaseDate: "2017-08-03" + releaseDate: "2017-08-03", + + abbreviations: { + official: "MCD17", + fr: "M17" + } } export default s2017sm diff --git a/data/McDonald's Collection/Macdonald's Collection 2018.ts b/data/McDonald's Collection/Macdonald's Collection 2018.ts index d45322c89..a360dcbb3 100644 --- a/data/McDonald's Collection/Macdonald's Collection 2018.ts +++ b/data/McDonald's Collection/Macdonald's Collection 2018.ts @@ -15,7 +15,11 @@ const s2018sm: Set = { official: 12 }, - releaseDate: "2018-10-19" + releaseDate: "2018-10-19", + + abbreviations: { + official: "MCD18" + } } export default s2018sm diff --git a/data/McDonald's Collection/Macdonald's Collection 2019.ts b/data/McDonald's Collection/Macdonald's Collection 2019.ts index bb2a3d412..d5664e317 100644 --- a/data/McDonald's Collection/Macdonald's Collection 2019.ts +++ b/data/McDonald's Collection/Macdonald's Collection 2019.ts @@ -16,7 +16,11 @@ const s2019sm: Set = { official: 12 }, - releaseDate: "2019-10-15" + releaseDate: "2019-10-15", + + abbreviations: { + official: "MCD19" + } } export default s2019sm diff --git a/data/McDonald's Collection/Macdonald's Collection 2021.ts b/data/McDonald's Collection/Macdonald's Collection 2021.ts index dc2483b19..9ad2597c9 100644 --- a/data/McDonald's Collection/Macdonald's Collection 2021.ts +++ b/data/McDonald's Collection/Macdonald's Collection 2021.ts @@ -18,7 +18,12 @@ const s2021swsh: Set = { official: 25 }, - releaseDate: "2021-02-09" + releaseDate: "2021-02-09", + + abbreviations: { + official: "MCD21", + fr: "M21" + } } export default s2021swsh diff --git a/data/Neo/Neo Destiny.ts b/data/Neo/Neo Destiny.ts index 3141ba429..db87a7ad9 100644 --- a/data/Neo/Neo Destiny.ts +++ b/data/Neo/Neo Destiny.ts @@ -18,7 +18,12 @@ const neo4: Set = { official: 105 }, - releaseDate: "2002-02-28" + releaseDate: "2002-02-28", + + abbreviations: { + official: "N4", + fr: "NDT" + } } export default neo4 diff --git a/data/Neo/Neo Discovery.ts b/data/Neo/Neo Discovery.ts index 3c7d31259..8de42f965 100644 --- a/data/Neo/Neo Discovery.ts +++ b/data/Neo/Neo Discovery.ts @@ -18,7 +18,12 @@ const neo2: Set = { official: 75 }, - releaseDate: "2001-06-01" + releaseDate: "2001-06-01", + + abbreviations: { + official: "N2", + fr: "NDS" + } } export default neo2 diff --git a/data/Neo/Neo Genesis.ts b/data/Neo/Neo Genesis.ts index f38a45177..29fe8bffa 100644 --- a/data/Neo/Neo Genesis.ts +++ b/data/Neo/Neo Genesis.ts @@ -19,7 +19,12 @@ const neo1: Set = { official: 111 }, - releaseDate: "2000-12-16" + releaseDate: "2000-12-16", + + abbreviations: { + official: "N1", + fr: "NGS" + } } export default neo1 diff --git a/data/Neo/Neo Revelation.ts b/data/Neo/Neo Revelation.ts index 957be9eff..311aae1a2 100644 --- a/data/Neo/Neo Revelation.ts +++ b/data/Neo/Neo Revelation.ts @@ -18,7 +18,12 @@ const neo3: Set = { official: 64 }, - releaseDate: "2001-09-21" + releaseDate: "2001-09-21", + + abbreviations: { + official: "N3", + fr: "NRE" + } } export default neo3 diff --git a/data/Neo/Southern Islands.ts b/data/Neo/Southern Islands.ts index f2f56641b..c533f2061 100644 --- a/data/Neo/Southern Islands.ts +++ b/data/Neo/Southern Islands.ts @@ -14,7 +14,11 @@ const si1: Set = { official: 18 }, - releaseDate: "2001-07-31" + releaseDate: "2001-07-31", + + abbreviations: { + official: "SI" + } } export default si1 diff --git a/data/POP/POP Series 1.ts b/data/POP/POP Series 1.ts index a33c5ffa9..987522a04 100644 --- a/data/POP/POP Series 1.ts +++ b/data/POP/POP Series 1.ts @@ -17,7 +17,12 @@ const pop1: Set = { official: 17 }, - releaseDate: "2004-09-01" + releaseDate: "2004-09-01", + + abbreviations: { + official: "P1", + fr: "P01" + } } export default pop1 diff --git a/data/POP/POP Series 2.ts b/data/POP/POP Series 2.ts index d7e225b50..8b6c91726 100644 --- a/data/POP/POP Series 2.ts +++ b/data/POP/POP Series 2.ts @@ -17,7 +17,12 @@ const pop2: Set = { official: 17 }, - releaseDate: "2005-08-01" + releaseDate: "2005-08-01", + + abbreviations: { + official: "P2", + fr: "P02" + } } export default pop2 diff --git a/data/POP/POP Series 3.ts b/data/POP/POP Series 3.ts index 0369a0e3c..34e6d8fb4 100644 --- a/data/POP/POP Series 3.ts +++ b/data/POP/POP Series 3.ts @@ -17,7 +17,12 @@ const pop3: Set = { official: 17 }, - releaseDate: "2006-04-01" + releaseDate: "2006-04-01", + + abbreviations: { + official: "P3", + fr: "P03" + } } export default pop3 diff --git a/data/POP/POP Series 4.ts b/data/POP/POP Series 4.ts index a9c79df30..1ec19fe2c 100644 --- a/data/POP/POP Series 4.ts +++ b/data/POP/POP Series 4.ts @@ -17,7 +17,12 @@ const pop4: Set = { official: 17 }, - releaseDate: "2006-08-01" + releaseDate: "2006-08-01", + + abbreviations: { + official: "P4", + fr: "P04" + } } export default pop4 diff --git a/data/POP/POP Series 4/2.ts b/data/POP/POP Series 4/2.ts index d871289fb..8dbb725b5 100644 --- a/data/POP/POP Series 4/2.ts +++ b/data/POP/POP Series 4/2.ts @@ -4,7 +4,7 @@ import Set from '../POP Series 4' const card: Card = { name: { en: "Deoxys δ", - fr: "Deoxys δ ESPÈCES DELTA" + fr: "Deoxys δ" }, illustrator: "Kouki Saitou", diff --git a/data/POP/POP Series 5.ts b/data/POP/POP Series 5.ts index 0b3a2cd13..103fc9b35 100644 --- a/data/POP/POP Series 5.ts +++ b/data/POP/POP Series 5.ts @@ -16,7 +16,11 @@ const pop5: Set = { official: 17 }, - releaseDate: "2007-03-01" + releaseDate: "2007-03-01", + + abbreviations: { + official: "P5" + } } export default pop5 diff --git a/data/POP/POP Series 6.ts b/data/POP/POP Series 6.ts index 05d84c075..6b9390378 100644 --- a/data/POP/POP Series 6.ts +++ b/data/POP/POP Series 6.ts @@ -15,7 +15,11 @@ const pop6: Set = { official: 17 }, - releaseDate: "2007-09-01" + releaseDate: "2007-09-01", + + abbreviations: { + official: "P6" + } } export default pop6 diff --git a/data/POP/POP Series 7.ts b/data/POP/POP Series 7.ts index fe6ba27bd..3069a395d 100644 --- a/data/POP/POP Series 7.ts +++ b/data/POP/POP Series 7.ts @@ -17,7 +17,12 @@ const pop7: Set = { official: 17 }, - releaseDate: "2008-03-01" + releaseDate: "2008-03-01", + + abbreviations: { + official: "P7", + fr: "P07" + } } export default pop7 diff --git a/data/POP/POP Series 8.ts b/data/POP/POP Series 8.ts index 6124b2e5b..8f01ded2f 100644 --- a/data/POP/POP Series 8.ts +++ b/data/POP/POP Series 8.ts @@ -15,7 +15,11 @@ const pop8: Set = { official: 17 }, - releaseDate: "2008-09-01" + releaseDate: "2008-09-01", + + abbreviations: { + official: "P8" + } } export default pop8 diff --git a/data/POP/POP Series 9.ts b/data/POP/POP Series 9.ts index 5fb8792bd..d3b927574 100644 --- a/data/POP/POP Series 9.ts +++ b/data/POP/POP Series 9.ts @@ -17,7 +17,12 @@ const pop9: Set = { official: 17 }, - releaseDate: "2009-03-01" + releaseDate: "2009-03-01", + + abbreviations: { + official: "P9", + fr: "P09" + } } export default pop9 diff --git a/data/Platinum/Arceus.ts b/data/Platinum/Arceus.ts index bce657af1..8c5473239 100644 --- a/data/Platinum/Arceus.ts +++ b/data/Platinum/Arceus.ts @@ -18,7 +18,11 @@ const pl4: Set = { official: 99 }, - releaseDate: "2009-11-04" + releaseDate: "2009-11-04", + + abbreviations: { + official: "AR" + } } export default pl4 diff --git a/data/Platinum/Platinum.ts b/data/Platinum/Platinum.ts index 80a36afd2..3cb2e78de 100644 --- a/data/Platinum/Platinum.ts +++ b/data/Platinum/Platinum.ts @@ -19,7 +19,12 @@ const pl1: Set = { official: 127 }, - releaseDate: "2009-02-11" + releaseDate: "2009-02-11", + + abbreviations: { + official: "PL", + fr: "PLA" + } } export default pl1 diff --git a/data/Platinum/Pokémon Rumble.ts b/data/Platinum/Pokémon Rumble.ts index d1bd5e888..fd8e539ee 100644 --- a/data/Platinum/Pokémon Rumble.ts +++ b/data/Platinum/Pokémon Rumble.ts @@ -15,7 +15,11 @@ const ru1: Set = { official: 16 }, - releaseDate: "2009-12-02" + releaseDate: "2009-12-02", + + abbreviations: { + official: "RM" + } } export default ru1 diff --git a/data/Platinum/Rising Rivals.ts b/data/Platinum/Rising Rivals.ts index 5842a8440..9f56684f7 100644 --- a/data/Platinum/Rising Rivals.ts +++ b/data/Platinum/Rising Rivals.ts @@ -18,7 +18,12 @@ const pl2: Set = { official: 111 }, - releaseDate: "2009-05-16" + releaseDate: "2009-05-16", + + abbreviations: { + official: "RR", + fr: "REM" + } } export default pl2 diff --git a/data/Platinum/Supreme Victors.ts b/data/Platinum/Supreme Victors.ts index c85fa3829..e4fb6685b 100644 --- a/data/Platinum/Supreme Victors.ts +++ b/data/Platinum/Supreme Victors.ts @@ -17,7 +17,12 @@ const pl3: Set = { official: 147 }, - releaseDate: "2009-08-19" + releaseDate: "2009-08-19", + + abbreviations: { + official: "SV", + fr: "VSU" + } } export default pl3 diff --git a/data/Pokémon TCG Pocket.ts b/data/Pokémon TCG Pocket.ts new file mode 100644 index 000000000..137e5ac5e --- /dev/null +++ b/data/Pokémon TCG Pocket.ts @@ -0,0 +1,10 @@ +import { Serie } from '../interfaces' + +const serie: Serie = { + id: "tcgp", + name: { + en: "Pokémon TCG Pocket" + }, +} + +export default serie diff --git a/data/Pokémon TCG Pocket/Genetic Apex.ts b/data/Pokémon TCG Pocket/Genetic Apex.ts new file mode 100644 index 000000000..a147f5551 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex.ts @@ -0,0 +1,25 @@ +import { Set } from '../../interfaces' +import serie from '../Pokémon TCG Pocket' + +const set: Set = { + id: "A1", + + name: { + // de: "Unschlagbare Gene", + en: "Genetic Apex", + // es: "Genes Formidables", + // fr: "Puissance Génétique", + // it: "Geni Supremi", + // pt: "Dominação Genética" + }, + + serie: serie, + + cardCount: { + official: 226 + }, + + releaseDate: "2024-10-30" +} + +export default set diff --git a/data/Pokémon TCG Pocket/Genetic Apex/001.ts b/data/Pokémon TCG Pocket/Genetic Apex/001.ts new file mode 100644 index 000000000..620740f87 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/001.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Bulbasaur" + }, + + illustrator: "Narumi Sato", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Vine Whip" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "There is a plant seed on its back right from the day this Pokémon is born. The seed slowly grows larger.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/002.ts b/data/Pokémon TCG Pocket/Genetic Apex/002.ts new file mode 100644 index 000000000..0a49d42d4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/002.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Ivysaur" + }, + + illustrator: "Kurata So", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Bulbasaur" + }, + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Razor Leaf" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "When the bulb on its back grows large, it appears to lose the ability to stand on its hind legs.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/003.ts b/data/Pokémon TCG Pocket/Genetic Apex/003.ts new file mode 100644 index 000000000..4051f65fa --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/003.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Venusaur" + }, + + illustrator: "Ryota Murayama", + category: "Pokemon", + hp: 160, + types: ["Grass"], + stage: "Stage2", + evolveFrom: { + en: "Ivysaur" + }, + + attacks: [{ + cost: ["Grass", "Grass", "Colorless", "Colorless"], + + name: { + en: "Mega Drain" + }, + + effect: { + en: "Heal 30 damage from this Pokémon." + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "Its plant blooms when it is absorbing solar energy. It stays on the move to seek sunlight.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/004.ts b/data/Pokémon TCG Pocket/Genetic Apex/004.ts new file mode 100644 index 000000000..9d6524e70 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/004.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Venusaur ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 190, + types: ["Grass"], + stage: "Stage2", + evolveFrom: { + en: "Ivysaur" + }, + suffix: "EX", + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Razor Leaf" + }, + + damage: "60" + }, { + cost: ["Grass", "Grass", "Colorless", "Colorless"], + + name: { + en: "Giant Bloom" + }, + + effect: { + en: "Heal 30 damage from this Pokémon." + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/005.ts b/data/Pokémon TCG Pocket/Genetic Apex/005.ts new file mode 100644 index 000000000..3ae879333 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/005.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Caterpie" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 50, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Find a Friend" + }, + + effect: { + en: "Put 1 random G Pokémon from your deck into your hand." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "For protection, it releases a horrible stench from the antenna on its head to drive away enemies.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/006.ts b/data/Pokémon TCG Pocket/Genetic Apex/006.ts new file mode 100644 index 000000000..3d28d3ad2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/006.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Metapod" + }, + + illustrator: "Yuka Morii", + category: "Pokemon", + hp: 80, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Caterpie" + }, + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Bug Bite" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "It is waiting for the moment to evolve. At this stage, it can only harden, so it remains motionless to avoid attack.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/007.ts b/data/Pokémon TCG Pocket/Genetic Apex/007.ts new file mode 100644 index 000000000..8137d7299 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/007.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Butterfree" + }, + + illustrator: "Shin Nagasawa", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Stage2", + evolveFrom: { + en: "Metapod" + }, + + abilities: [{ + type: "Ability", + + name: { + en: "Powder Heal" + }, + + effect: { + en: "Once during your turn, you may heal 20 damage from each of your Pokémon." + } + }], + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Gust" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "In battle, it flaps its wings at great speed to release highly toxic dust into the air.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/008.ts b/data/Pokémon TCG Pocket/Genetic Apex/008.ts new file mode 100644 index 000000000..2266ddc41 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/008.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Weedle" + }, + + illustrator: "Hajime Kusajima", + category: "Pokemon", + hp: 50, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Sting" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Often found in forests and grasslands. It has a sharp, toxic barb of around two inches on top of its head.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/009.ts b/data/Pokémon TCG Pocket/Genetic Apex/009.ts new file mode 100644 index 000000000..8fc124afa --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/009.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Kakuna" + }, + + illustrator: "miki kudo", + category: "Pokemon", + hp: 80, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Weedle" + }, + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Bug Bite" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "Almost incapable of moving, this Pokémon can only harden its shell to protect itself when it is in danger.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/010.ts b/data/Pokémon TCG Pocket/Genetic Apex/010.ts new file mode 100644 index 000000000..d8582fd86 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/010.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Beedrill" + }, + + illustrator: "You Iribi", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Stage2", + evolveFrom: { + en: "Kakuna" + }, + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Sharp Sting" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "It has three poisonous stingers on its forelegs and its tail. They are used to jab its enemy repeatedly.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/011.ts b/data/Pokémon TCG Pocket/Genetic Apex/011.ts new file mode 100644 index 000000000..872a493d5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/011.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Oddish" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Ram" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "If exposed to moonlight, it starts to move. It roams far and wide at night to scatter its seeds.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/012.ts b/data/Pokémon TCG Pocket/Genetic Apex/012.ts new file mode 100644 index 000000000..842f45ba2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/012.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gloom" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 80, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Oddish" + }, + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Drool" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "Its pistils exude an incredibly foul odor. The horrid stench can cause fainting at a distance of 1.25 miles.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/013.ts b/data/Pokémon TCG Pocket/Genetic Apex/013.ts new file mode 100644 index 000000000..1f26a27c0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/013.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Vileplume" + }, + + illustrator: "Kyoko Umemoto", + category: "Pokemon", + hp: 140, + types: ["Grass"], + stage: "Stage2", + evolveFrom: { + en: "Gloom" + }, + + attacks: [{ + cost: ["Grass", "Grass", "Colorless"], + + name: { + en: "Soothing Scent" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Asleep" + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "It has the world's largest petals. With every step, the petals shake out heavy clouds of toxic pollen.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/014.ts b/data/Pokémon TCG Pocket/Genetic Apex/014.ts new file mode 100644 index 000000000..f7a6e88f6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/014.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Paras" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Scratch" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "The mushrooms, known as tochukaso, are controlling the bug. Even if the bug bugs the mushrooms, they tell it to bug off.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/015.ts b/data/Pokémon TCG Pocket/Genetic Apex/015.ts new file mode 100644 index 000000000..c83ab18e8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/015.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Parasect" + }, + + illustrator: "Eri Yamaki", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Paras" + }, + + attacks: [{ + cost: ["Grass", "Grass", "Colorless"], + + name: { + en: "Slash" + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "The bug is mostly dead, with the mushroom on its back having become the main body. If the mushroom comes off, the bug stops moving.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/016.ts b/data/Pokémon TCG Pocket/Genetic Apex/016.ts new file mode 100644 index 000000000..72488f26b --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/016.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Venonat" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 50, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Tackle" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Poison oozes from all over its body. It catches small bug Pokémon at night that are attracted by light.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/017.ts b/data/Pokémon TCG Pocket/Genetic Apex/017.ts new file mode 100644 index 000000000..048548d06 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/017.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Venomoth" + }, + + illustrator: "Mina Nakai", + category: "Pokemon", + hp: 80, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Venonat" + }, + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Poison Powder" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "The wings are covered with dustlike scales. Every time it flaps its wings, it looses highly toxic dust.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/018.ts b/data/Pokémon TCG Pocket/Genetic Apex/018.ts new file mode 100644 index 000000000..984862070 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/018.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Bellsprout" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Vine Whip" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Even though its body is extremely skinny, it is blindingly fast when catching its prey.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/019.ts b/data/Pokémon TCG Pocket/Genetic Apex/019.ts new file mode 100644 index 000000000..13e2c37da --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/019.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Weepinbell" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Bellsprout" + }, + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Razor Leaf" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "The leafy parts act as cutters for slashing foes. It spits a fluid that dissolves everything.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/020.ts b/data/Pokémon TCG Pocket/Genetic Apex/020.ts new file mode 100644 index 000000000..2dfab3e77 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/020.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Victreebel" + }, + + illustrator: "Sumiyoshi Kizuki", + category: "Pokemon", + hp: 140, + types: ["Grass"], + stage: "Stage2", + evolveFrom: { + en: "Weepinbell" + }, + + abilities: [{ + type: "Ability", + + name: { + en: "Fragrance Trap" + }, + + effect: { + en: "If this Pokémon is in the Active Spot, once during your turn, you may switch in 1 of your opponent's Benched Basic Pokémon to the Active Spot." + } + }], + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Vine Whip" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "Said to live in huge colonies deep in jungles, although no one has ever returned from there.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/021.ts b/data/Pokémon TCG Pocket/Genetic Apex/021.ts new file mode 100644 index 000000000..cfd11ef80 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/021.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Exeggcute" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 50, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Seed Bomb" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Though it may look like it's just a bunch of eggs, it's a proper Pokémon. Exeggcute communicates with others of its kind via telepathy, apparently.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/022.ts b/data/Pokémon TCG Pocket/Genetic Apex/022.ts new file mode 100644 index 000000000..28d3fe6c8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/022.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Exeggutor" + }, + + illustrator: "Yukiko Baba", + category: "Pokemon", + hp: 160, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Exeggcute" + }, + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Stomp" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + }, + + damage: "30+" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "Each of Exeggutor's three heads is thinking different thoughts. The three don't seem to be very interested in one another.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/023.ts b/data/Pokémon TCG Pocket/Genetic Apex/023.ts new file mode 100644 index 000000000..36cb6b8ce --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/023.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Exeggutor ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 160, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Exeggcute" + }, + attacks: [{ + cost: ["Grass"], + + name: { + en: "Tropical Swing" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 40 more damage." + }, + + damage: "40+" + }], + suffix: "EX", + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/024.ts b/data/Pokémon TCG Pocket/Genetic Apex/024.ts new file mode 100644 index 000000000..66e3bdbad --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/024.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Tangela" + }, + + illustrator: "Midori Harada", + category: "Pokemon", + hp: 80, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Absorb" + }, + + effect: { + en: "Heal 10 damage from this Pokémon." + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "Hidden beneath a tangle of vines that grows nonstop even if the vines are torn off, this Pokémon's true appearance remains a mystery.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/025.ts b/data/Pokémon TCG Pocket/Genetic Apex/025.ts new file mode 100644 index 000000000..6d5713871 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/025.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Scyther" + }, + + illustrator: "Hasuno", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Sharp Scythe" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It slashes through grass with its sharp scythes, moving too fast for the human eye to track.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/026.ts b/data/Pokémon TCG Pocket/Genetic Apex/026.ts new file mode 100644 index 000000000..ab89ed16d --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/026.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pinsir" + }, + + illustrator: "Eri Yamaki", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Grass"], + + name: { + en: "Double Horn" + }, + + effect: { + en: "Flip 2 coins. This attack does 50 damage for each heads." + }, + + damage: "50×" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "These Pokémon judge one another based on pincers. Thicker, more impressive pincers make for more popularity with the opposite gender.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/027.ts b/data/Pokémon TCG Pocket/Genetic Apex/027.ts new file mode 100644 index 000000000..bd8e857b2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/027.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Cottonee" + }, + + illustrator: "Kanako Eo", + category: "Pokemon", + hp: 50, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Attach" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It shoots cotton from its body to protect itself. If it gets caught up in hurricane-strength winds, it can get sent to the other side of the Earth.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/028.ts b/data/Pokémon TCG Pocket/Genetic Apex/028.ts new file mode 100644 index 000000000..64543ef2e --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/028.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Whimsicott" + }, + + illustrator: "Atsuko Nishida", + category: "Pokemon", + hp: 80, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Cottonee" + }, + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Rolling Tackle" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "It scatters cotton all over the place as a prank. If it gets wet, it'll become too heavy to move and have no choice but to answer for its mischief.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/029.ts b/data/Pokémon TCG Pocket/Genetic Apex/029.ts new file mode 100644 index 000000000..287a6e21e --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/029.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Petilil" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Blot" + }, + + effect: { + en: "Heal 10 damage from this Pokémon." + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "The leaves on its head grow right back even if they fall out. These bitter leaves refresh those who eat them.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/030.ts b/data/Pokémon TCG Pocket/Genetic Apex/030.ts new file mode 100644 index 000000000..2499bbf39 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/030.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Lilligant" + }, + + illustrator: "You Iribi", + category: "Pokemon", + hp: 100, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Petilil" + }, + + + attacks: [{ + cost: ["Grass", "Grass"], + + name: { + en: "Leaf Supply" + }, + + effect: { + en: "Take a G Energy from your Energy Zone and attach it to 1 of your Benched G Pokémon." + }, + + damage: "50" + }], + + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "The fragrance of the garland on its head has a relaxing effect, but taking care of it is very difficult.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/031.ts b/data/Pokémon TCG Pocket/Genetic Apex/031.ts new file mode 100644 index 000000000..bb43bcece --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/031.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Skiddo" + }, + + illustrator: "Naoki Saito", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Surprise Attack" + }, + + effect: { + en: "Flip a coin. If tails, this attack does nothing." + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Until recently, people living in the mountains would ride on the backs of these Pokémon to traverse the mountain paths.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/032.ts b/data/Pokémon TCG Pocket/Genetic Apex/032.ts new file mode 100644 index 000000000..f22386dd4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/032.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gogoat" + }, + + illustrator: "You Iribi", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Skiddo" + }, + + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Razor Leaf" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "It can sense the feelings of others by touching them with its horns. This species has assisted people with their work since 5,000 years ago.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/033.ts b/data/Pokémon TCG Pocket/Genetic Apex/033.ts new file mode 100644 index 000000000..2c41f6698 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/033.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Charmander" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 60, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Ember" + }, + + effect: { + en: "Discard a R Energy from this Pokémon." + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/034.ts b/data/Pokémon TCG Pocket/Genetic Apex/034.ts new file mode 100644 index 000000000..cb1803d69 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/034.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Charmeleon" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 90, + types: ["Fire"], + stage: "Stage1", + evolveFrom: { + en: "Charmander" + }, + + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Fire Claws" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "It spits fire that is hot enough to melt boulders. It may cause forest fires by blowing flames.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/035.ts b/data/Pokémon TCG Pocket/Genetic Apex/035.ts new file mode 100644 index 000000000..7e4d045bb --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/035.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Charizard" + }, + + illustrator: "takuyoa", + category: "Pokemon", + hp: 150, + types: ["Fire"], + stage: "Stage2", + evolveFrom: { + en: "Charmeleon" + }, + + + attacks: [{ + cost: ["Fire", "Fire", "Colorless", "Colorless"], + + name: { + en: "Fire Spin" + }, + + effect: { + en: "Discard 2 R Energy from this Pokémon." + }, + + damage: "150" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "It has a barbaric nature. In battle, it whips its fiery tail around and slashes away with sharp claws.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/036.ts b/data/Pokémon TCG Pocket/Genetic Apex/036.ts new file mode 100644 index 000000000..519e7f6bf --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/036.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 180, + types: ["Fire"], + stage: "Stage2", + evolveFrom: { + en: "Charmeleon" + }, + + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Slash" + }, + + damage: "60" + }, { + cost: ["Fire", "Fire", "Colorless", "Colorless"], + + name: { + en: "Crimson Storm" + }, + + effect: { + en: "Discard 2 R Energy from this Pokémon." + }, + + damage: "200" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/037.ts b/data/Pokémon TCG Pocket/Genetic Apex/037.ts new file mode 100644 index 000000000..172804c07 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/037.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Vulpix" + }, + + illustrator: "Toshinao Aoki", + category: "Pokemon", + hp: 50, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Tail Whip" + }, + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon can't attack during your opponent's next turn." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "While young, it has six gorgeous tails. When it grows, several new tails are sprouted.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/038.ts b/data/Pokémon TCG Pocket/Genetic Apex/038.ts new file mode 100644 index 000000000..9e1631728 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/038.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Ninetales" + }, + + illustrator: "You Iribi", + category: "Pokemon", + hp: 90, + types: ["Fire"], + stage: "Stage1", + evolveFrom: { + en: "Vulpix" + }, + + + attacks: [{ + cost: ["Fire", "Fire"], + + name: { + en: "Flamethrower" + }, + + effect: { + en: "Discard 1 R Energy from this Pokémon." + }, + + damage: "90" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "It is said to live 1,000 years, and each of its tails is loaded with supernatural powers.", + }, + +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/039.ts b/data/Pokémon TCG Pocket/Genetic Apex/039.ts new file mode 100644 index 000000000..a4f8b4b96 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/039.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Growlithe" + }, + + illustrator: "Mizue", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Bite" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It has a brave and trustworthy nature. It fearlessly stands up to bigger and stronger foes.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/040.ts b/data/Pokémon TCG Pocket/Genetic Apex/040.ts new file mode 100644 index 000000000..5dcf4a084 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/040.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Arcanine" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 150, + types: ["Fire"], + stage: "Stage1", + evolveFrom: { + en: "Growlithe" + }, + + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Heat Tackle" + }, + + effect: { + en: "This Pokémon also does 20 damage to itself." + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "An ancient picture scroll shows that people were captivated by its movement as it ran through prairies.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/041.ts b/data/Pokémon TCG Pocket/Genetic Apex/041.ts new file mode 100644 index 000000000..a09101d2c --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/041.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Arcanine ex" + }, + + illustrator: "PLANETA Saito", + category: "Pokemon", + hp: 150, + types: ["Fire"], + stage: "Stage1", + evolveFrom: { + en: "Growlithe" + }, + + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Inferno Onrush" + }, + + effect: { + en: "This Pokémon also does 20 damage to itself." + }, + + damage: "120" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/042.ts b/data/Pokémon TCG Pocket/Genetic Apex/042.ts new file mode 100644 index 000000000..6e025d78d --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/042.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Ponyta" + }, + + illustrator: "Uta", + category: "Pokemon", + hp: 60, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Flare" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It can't run properly when it's newly born. As it races around with others of its kind, its legs grow stronger.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/043.ts b/data/Pokémon TCG Pocket/Genetic Apex/043.ts new file mode 100644 index 000000000..6acdb7bff --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/043.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Rapidash" + }, + + illustrator: "Misa Tsutsui", + category: "Pokemon", + hp: 100, + types: ["Fire"], + stage: "Stage1", + evolveFrom: { + en: "Ponyta" + }, + + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Fire Mane" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "This Pokémon can be seen galloping through fields at speeds of up to 150 mph, its fiery mane fluttering in the wind.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/044.ts b/data/Pokémon TCG Pocket/Genetic Apex/044.ts new file mode 100644 index 000000000..c138e01eb --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/044.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Magmar" + }, + + illustrator: "Ryuta Fuse", + category: "Pokemon", + hp: 80, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Fire"], + + name: { + en: "Magma Punch" + }, + + damage: "50" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "Magmar dispatches its prey with fire. But it regrets this habit once it realizes that it has burned its intended prey to a charred crisp.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/045.ts b/data/Pokémon TCG Pocket/Genetic Apex/045.ts new file mode 100644 index 000000000..c9b27779e --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/045.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Flareon" + }, + + illustrator: "sui", + category: "Pokemon", + hp: 120, + types: ["Fire"], + stage: "Stage1", + evolveFrom: { + en: "Eevee" + }, + + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Flamethrower" + }, + + effect: { + en: "Discard 1 R Energy from this Pokémon." + }, + + damage: "110" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "Inhaled air is carried to its flame sac, heated, and exhaled as fire that reaches over 3,000 degrees Fahrenheit.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/046.ts b/data/Pokémon TCG Pocket/Genetic Apex/046.ts new file mode 100644 index 000000000..27abaa876 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/046.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Moltres" + }, + + illustrator: "Hitoshi Ariga", + category: "Pokemon", + hp: 100, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Sky Attack" + }, + + effect: { + en: "Flip a coin. If tails, this attack does nothing" + }, + + damage: "130" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "It's one of the legendary bird Pokémon. When Moltres flaps its flaming wings, they glimmer with a dazzling red glow.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/047.ts b/data/Pokémon TCG Pocket/Genetic Apex/047.ts new file mode 100644 index 000000000..bb033e42c --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/047.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Moltres ex" + }, + + illustrator: "PLANETA Tsuji", + category: "Pokemon", + hp: 140, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Inferno Dance" + }, + + effect: { + en: "Flip 3 coins. Take an amount of R Energy from your Energy Zone equal to the number of heads and attach it to your Benched R Pokémon in any way you like." + } + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Heat Blast" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/048.ts b/data/Pokémon TCG Pocket/Genetic Apex/048.ts new file mode 100644 index 000000000..1850e52f6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/048.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Heatmor" + }, + + illustrator: "Suwama Chiaki", + category: "Pokemon", + hp: 80, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Combustion" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "There's a hole in its tail that allows it to draw in the air it needs to keep its fire burning. If the hole gets blocked, this Pokémon will fall ill.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/049.ts b/data/Pokémon TCG Pocket/Genetic Apex/049.ts new file mode 100644 index 000000000..f5195f7fb --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/049.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Salandit" + }, + + illustrator: "Kyoko Umemoto", + category: "Pokemon", + hp: 60, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Scratch" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It taunts its prey and lures them into narrow, rocky areas where it then sprays them with toxic gas to make them dizzy and take them down.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/050.ts b/data/Pokémon TCG Pocket/Genetic Apex/050.ts new file mode 100644 index 000000000..b8d91db4b --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/050.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Salazzle" + }, + + illustrator: "hatachu", + category: "Pokemon", + hp: 90, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + en: "Fire Claws" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Salazzle makes its opponents light-headed with poisonous gas, then captivates them with alluring movements to turn them into loyal servants.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/051.ts b/data/Pokémon TCG Pocket/Genetic Apex/051.ts new file mode 100644 index 000000000..0cebc4ddb --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/051.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Sizzlipede" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 60, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Gnaw" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It stores flammable gas in its body and uses it to generate heat. The yellow sections on its belly get particularly hot.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/052.ts b/data/Pokémon TCG Pocket/Genetic Apex/052.ts new file mode 100644 index 000000000..5581f40ad --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/052.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Centiskorch" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Stage1", + evolveFrom: { + en: "Sizzlipede" + }, + + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Fire Blast" + }, + + effect: { + en: "Discard a R Energy from this Pokémon." + }, + + damage: "130" + }], + + retreat: 3, + rarity: "Two Diamond", + + description: { + en: "When it heats up, its body temperature reaches about 1,500 degrees Fahrenheit. It lashes its body like a whip and launches itself at enemies.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/053.ts b/data/Pokémon TCG Pocket/Genetic Apex/053.ts new file mode 100644 index 000000000..1f497e6cf --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/053.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Squirtle" + }, + + illustrator: "Mizue", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Water Gun" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "When it retracts its long neck into its shell, it squirts out water with vigorous force.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/054.ts b/data/Pokémon TCG Pocket/Genetic Apex/054.ts new file mode 100644 index 000000000..2b5c35030 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/054.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Wartortle" + }, + + illustrator: "Nelnal", + category: "Pokemon", + hp: 80, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Squirtle" + }, + + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Wave Splash" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "It is recognized as a symbol of longevity. If its shell has algae on it, that Wartortle is very old.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/055.ts b/data/Pokémon TCG Pocket/Genetic Apex/055.ts new file mode 100644 index 000000000..159197fa0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/055.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Blastoise" + }, + + illustrator: "Nurikabe", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Stage2", + evolveFrom: { + en: "Wartortle" + }, + + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Hydro Pump" + }, + + effect: { + en: "If this Pokémon has at least 2 extra W Energy attached, this attack does 60 more damage." + }, + + damage: "80+" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "It crushes its foe under its heavy body to cause fainting. In a pinch, it will withdraw inside its shell.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/056.ts b/data/Pokémon TCG Pocket/Genetic Apex/056.ts new file mode 100644 index 000000000..13b47f6a7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/056.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Blastoise ex" + }, + + illustrator: "PLANETA Tsuji", + category: "Pokemon", + hp: 180, + types: ["Water"], + stage: "Stage2", + evolveFrom: { + en: "Wartortle" + }, + + suffix: "EX", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Surf" + }, + + damage: "40" + }, { + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Hydro Bazooka" + }, + + effect: { + en: "If this Pokémon has at least 2 extra W Energy attached, this attack does 60 more damage." + }, + + damage: "100+" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/057.ts b/data/Pokémon TCG Pocket/Genetic Apex/057.ts new file mode 100644 index 000000000..316d35fc3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/057.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Psyduck" + }, + + illustrator: "Shibuzoh.", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Headache" + }, + + effect: { + en: "Your opponent can't use any Supporter cards from their hand during their next turn." + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It is constantly wracked by a headache. When the headache turns intense, it begins using mysterious powers.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/058.ts b/data/Pokémon TCG Pocket/Genetic Apex/058.ts new file mode 100644 index 000000000..797470c27 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/058.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Golduck" + }, + + illustrator: "Naoki Saito", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Psyduck" + }, + + + attacks: [{ + cost: ["Water", "Water"], + + name: { + en: "Aqua Edge" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "When it swims at full speed using its long, webbed limbs, its forehead somehow begins to glow.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/059.ts b/data/Pokémon TCG Pocket/Genetic Apex/059.ts new file mode 100644 index 000000000..0d7b25e1a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/059.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Poliwag" + }, + + illustrator: "Shibuzoh.", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Razor Fin" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "For Poliwag, swimming is easier than walking. The swirl pattern on its belly is actually part of the Pokémon's innards showing through the skin.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/060.ts b/data/Pokémon TCG Pocket/Genetic Apex/060.ts new file mode 100644 index 000000000..1700b9836 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/060.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Poliwhirl" + }, + + illustrator: "Yuka Morii", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Poliwag" + }, + + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Knuckle Punch" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "Staring at the swirl on its belly causes drowsiness. This trait of Poliwhirl's has been used in place of lullabies to get children to go to sleep.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/061.ts b/data/Pokémon TCG Pocket/Genetic Apex/061.ts new file mode 100644 index 000000000..8fcbf0cca --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/061.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Poliwrath" + }, + + illustrator: "Akira Komayama", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Stage2", + evolveFrom: { + en: "Poliwhirl" + }, + + + abilities: [{ + type: "Ability", + + name: { + en: "Counterattack" + }, + + effect: { + en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent's Pokémon, do 20 damage to the Attacking Pokémon." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Mega Punch" + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "Its body is solid muscle. When swimming through cold seas, Poliwrath uses its impressive arms to smash through drift ice and plow forward.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/062.ts b/data/Pokémon TCG Pocket/Genetic Apex/062.ts new file mode 100644 index 000000000..0091a2618 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/062.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Tentacool" + }, + + illustrator: "Shinya Komatsu", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Gentle Slap" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Tentacool is not a particularly strong swimmer. It drifts across the surface of shallow seas as it searches for prey.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/063.ts b/data/Pokémon TCG Pocket/Genetic Apex/063.ts new file mode 100644 index 000000000..95b93ffa0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/063.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Tentacruel" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 110, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Tentacool" + }, + + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Poison Tentacles" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + }, + + damage: "50" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "When the red orbs on Tentacruel's head glow brightly, watch out. The Pokémon is about to fire off a burst of ultrasonic waves.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/064.ts b/data/Pokémon TCG Pocket/Genetic Apex/064.ts new file mode 100644 index 000000000..48c0bba7d --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/064.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Seel" + }, + + illustrator: "Masako Yamashita", + category: "Pokemon", + hp: 80, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Headbutt" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "Thanks to its thick fat, cold seas don't bother it at all, but it gets tired pretty easily in warm waters.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/065.ts b/data/Pokémon TCG Pocket/Genetic Apex/065.ts new file mode 100644 index 000000000..e57e76a8a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/065.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Dewgong" + }, + + illustrator: "Kanako Eo", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Seel" + }, + + + attacks: [{ + cost: ["Water", "Water", "Water"], + + name: { + en: "Surf" + }, + + damage: "90" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond", + + description: { + en: "It sunbathes on the beach after meals. The rise in its body temperature helps its digestion.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/066.ts b/data/Pokémon TCG Pocket/Genetic Apex/066.ts new file mode 100644 index 000000000..789f735de --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/066.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Shellder" + }, + + illustrator: "Sumiyoshi Kizuki", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Tongue Slap" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It is encased in a shell that is harder than diamond. Inside, however, it is surprisingly tender.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/067.ts b/data/Pokémon TCG Pocket/Genetic Apex/067.ts new file mode 100644 index 000000000..9855bcf4a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/067.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Cloyster" + }, + + illustrator: "Saya Tsuruta", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Shellder" + }, + + + abilities: [{ + type: "Ability", + + name: { + en: "Shell Armor" + }, + + effect: { + en: "This Pokémon takes -10 damage from attacks." + } + }], + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Surf" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond", + + description: { + en: "Cloyster that live in seas with harsh tidal currents grow large, sharp spikes on their shells.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/068.ts b/data/Pokémon TCG Pocket/Genetic Apex/068.ts new file mode 100644 index 000000000..cc3c56ce8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/068.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Krabby" + }, + + illustrator: "Tomokazu Komiya", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Vise Grip" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "It can be found near the sea. The large pincers grow back if they are torn out of their sockets.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/069.ts b/data/Pokémon TCG Pocket/Genetic Apex/069.ts new file mode 100644 index 000000000..584f06bc2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/069.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Kingler" + }, + + illustrator: "Shigenori Negishi", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Krabby" + }, + + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + en: "KO Crab" + }, + + effect: { + en: "Flip 2 coins. If both of them are heads, this attack does 80 more damage" + }, + + damage: "80+" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond", + + description: { + en: "Its large and hard pincer has 10,000-horsepower strength. However, being so big, it is unwieldy to move.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/070.ts b/data/Pokémon TCG Pocket/Genetic Apex/070.ts new file mode 100644 index 000000000..3bb74396c --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/070.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Horsea" + }, + + illustrator: "Saya Tsuruta", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Water Gun" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Horsea makes its home in oceans with gentle currents. If this Pokémon is under attack, it spits out pitch-black ink and escapes.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/071.ts b/data/Pokémon TCG Pocket/Genetic Apex/071.ts new file mode 100644 index 000000000..91d563d1b --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/071.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Seadra" + }, + + illustrator: "Sanosuke Sakuma", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Horsea" + }, + + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Water Arrow" + }, + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "It's the males that raise the offspring. While Seadra are raising young, the spines on their backs secrete thicker and stronger poison.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/072.ts b/data/Pokémon TCG Pocket/Genetic Apex/072.ts new file mode 100644 index 000000000..fa030fecf --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/072.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Goldeen" + }, + + illustrator: "Kyoko Umemoto", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Flop" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Its dorsal, pectoral, and tail fins wave elegantly in water. That is why it is known as the Water Dancer.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/073.ts b/data/Pokémon TCG Pocket/Genetic Apex/073.ts new file mode 100644 index 000000000..077303c38 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/073.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Seaking" + }, + + illustrator: "Kyoko Umemoto", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Goldeen" + }, + + + attacks: [{ + cost: ["Water"], + + name: { + en: "Horn Hazard" + }, + + effect: { + en: "Flip a coin. If tails, this attack does nothing." + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "In autumn, its body becomes more fatty in preparing to propose to a mate. It takes on beautiful colors.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/074.ts b/data/Pokémon TCG Pocket/Genetic Apex/074.ts new file mode 100644 index 000000000..12590b170 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/074.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Staryu" + }, + + illustrator: "Hiroki Asanuma", + category: "Pokemon", + hp: 50, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Smack" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "If you visit a beach at the end of summer, you'll be able to see groups of Staryu lighting up in a steady rhythm.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/075.ts b/data/Pokémon TCG Pocket/Genetic Apex/075.ts new file mode 100644 index 000000000..e857b22e5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/075.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Starmie" + }, + + illustrator: "Yukiko Baba", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Staryu" + }, + + + attacks: [{ + cost: ["Water"], + + name: { + en: "Wave Splash" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 0, + rarity: "Two Diamond", + + description: { + en: "This Pokémon has an organ known as its core. The organ glows in seven colors when Starmie is unleashing its potent psychic powers.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/076.ts b/data/Pokémon TCG Pocket/Genetic Apex/076.ts new file mode 100644 index 000000000..8d366b720 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/076.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Starmie ex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 130, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Staryu" + }, + + suffix: "EX", + + attacks: [{ + cost: ["Water", "Water"], + + name: { + en: "Hydro Splash" + }, + + damage: "90" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 0, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/077.ts b/data/Pokémon TCG Pocket/Genetic Apex/077.ts new file mode 100644 index 000000000..ab70105d0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/077.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Magikarp" + }, + + illustrator: "Sekio", + category: "Pokemon", + hp: 30, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Splash" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "An underpowered, pathetic Pokémon. It may jump high on rare occasions but never more than seven feet.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/078.ts b/data/Pokémon TCG Pocket/Genetic Apex/078.ts new file mode 100644 index 000000000..3f80c3121 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/078.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gyarados" + }, + + illustrator: "Mituhiro Arita", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Magikarp" + }, + + + attacks: [{ + cost: ["Water", "Water", "Water", "Water"], + + name: { + en: "Hyper Beam" + }, + + effect: { + en: "Discard a random Energy from your opponent's Active Pokémon." + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 4, + rarity: "Three Diamond", + + description: { + en: "Once it appears, it goes on a rampage. It remains enraged until it demolishes everything around it.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/079.ts b/data/Pokémon TCG Pocket/Genetic Apex/079.ts new file mode 100644 index 000000000..a338299e5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/079.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Lapras" + }, + + illustrator: "Sekio", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Hydro Pump" + }, + + effect: { + en: "If this Pokémon has at least 3 extra W Energy attached, this attack does 70 more damage." + }, + + damage: "20+" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "A smart and kindhearted Pokémon, it glides across the surface of the sea while its beautiful song echoes around it.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/080.ts b/data/Pokémon TCG Pocket/Genetic Apex/080.ts new file mode 100644 index 000000000..60ba612b2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/080.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Vaporeon" + }, + + illustrator: "Kagemaru Himeno", + category: "Pokemon", + hp: 130, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Eevee" + }, + + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Bubble Drain" + }, + + effect: { + en: "Heal 30 damage from this Pokémon." + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "It lives close to water. Its long tail is ridged with a fin, which is often mistaken for a mermaid's.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/081.ts b/data/Pokémon TCG Pocket/Genetic Apex/081.ts new file mode 100644 index 000000000..73eb7039c --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/081.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Omanyte" + }, + + illustrator: "Suwama Chiaki", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Helix Fossil" + }, + + + attacks: [{ + cost: ["Water"], + + name: { + en: "Water Gun" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "Because some Omanyte manage to escape after being restored or are released into the wild by people, this species is becoming a problem.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/082.ts b/data/Pokémon TCG Pocket/Genetic Apex/082.ts new file mode 100644 index 000000000..4a20c50bb --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/082.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Omastar" + }, + + illustrator: "kirisAki", + category: "Pokemon", + hp: 140, + types: ["Water"], + stage: "Stage2", + evolveFrom: { + en: "Omanyte" + }, + + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Ancient Whirlpool" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't attack" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "Weighed down by a large and heavy shell, Omastar couldn't move very fast. Some say it went extinct because it was unable to catch food.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/083.ts b/data/Pokémon TCG Pocket/Genetic Apex/083.ts new file mode 100644 index 000000000..74fe5666d --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/083.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Articuno" + }, + + illustrator: "Hitoshi Ariga", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Ice Beam" + }, + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "It's said that this Pokémon's beautiful blue wings are made of ice. Articuno flies over snowy mountains, its long tail fluttering along behind it.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/084.ts b/data/Pokémon TCG Pocket/Genetic Apex/084.ts new file mode 100644 index 000000000..094ab6287 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/084.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Articuno ex" + }, + + illustrator: "PLANETA Saito", + category: "Pokemon", + hp: 140, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Ice Wing" + }, + + damage: "40" + }, { + cost: ["Water", "Water", "Water"], + + name: { + en: "Blizzard" + }, + + effect: { + en: "This attack does 10 damage to each of your opponent's Benched Pokémon." + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/085.ts b/data/Pokémon TCG Pocket/Genetic Apex/085.ts new file mode 100644 index 000000000..4f754f44f --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/085.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Ducklett" + }, + + illustrator: "Yumi", + category: "Pokemon", + hp: 50, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Flap" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "When attacked, it uses its feathers to splash water, escaping under cover of the spray.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/086.ts b/data/Pokémon TCG Pocket/Genetic Apex/086.ts new file mode 100644 index 000000000..b3266ea02 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/086.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Swanna" + }, + + illustrator: "sui", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Ducklett" + }, + + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Wing Attack" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "Despite their elegant appearance, they can flap their wings strongly and fly for thousands of miles.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/087.ts b/data/Pokémon TCG Pocket/Genetic Apex/087.ts new file mode 100644 index 000000000..6a442578e --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/087.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Froakie" + }, + + illustrator: "Aya Kusube", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Flop" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It secretes flexible bubbles from its chest and back. The bubbles reduce the damage it would otherwise take when attacked." + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/088.ts b/data/Pokémon TCG Pocket/Genetic Apex/088.ts new file mode 100644 index 000000000..39bc7f68c --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/088.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Frogadier" + }, + + illustrator: "Akira Komayama", + category: "Pokemon", + hp: 80, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Froakie" + }, + + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Water Drip" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "It can throw bubble-covered pebbles with precise control, hitting empty cans up to a hundred feet away.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/089.ts b/data/Pokémon TCG Pocket/Genetic Apex/089.ts new file mode 100644 index 000000000..d3f95ccbc --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/089.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Greninja" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Stage2", + evolveFrom: { + en: "Frogadier" + }, + + + abilities: [{ + type: "Ability", + + name: { + en: "Water Shuriken" + }, + + effect: { + en: "Once during your turn, you may do 20 damage to 1 of your opponent's Pokémon." + } + }], + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Mist Slash" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "It creates throwing stars out of compressed water. When it spins them and throws them at high speed, these stars can split metal in two.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/090.ts b/data/Pokémon TCG Pocket/Genetic Apex/090.ts new file mode 100644 index 000000000..485d858e1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/090.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pyukumuku" + }, + + illustrator: "OOYAMA", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Rain Splash" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It lives in warm, shallow waters. If it encounters a foe, it will spit out its internal organs as a means to punch them.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/091.ts b/data/Pokémon TCG Pocket/Genetic Apex/091.ts new file mode 100644 index 000000000..baea674f1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/091.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Bruxish" + }, + + illustrator: "Mizue", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Second Strike" + }, + + effect: { + en: "If your opponent's Active Pokémon has damage on it, this attack does 60 more damage." + }, + + damage: "10+" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "It grinds its teeth with great force to stimulate its brain. It fires the psychic energy created by this process from the protuberance on its head.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/092.ts b/data/Pokémon TCG Pocket/Genetic Apex/092.ts new file mode 100644 index 000000000..a1c5603b9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/092.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Snom" + }, + + illustrator: "ryoma uratsuka", + category: "Pokemon", + hp: 50, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Ram" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It eats snow that has accumulated on the ground. It prefers soft, freshly fallen snow, so it will eat its way up a mountain, aiming for the peak.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/093.ts b/data/Pokémon TCG Pocket/Genetic Apex/093.ts new file mode 100644 index 000000000..d65f358aa --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/093.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Frosmoth" + }, + + illustrator: "aoki", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Snom" + }, + + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Powder Snow" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Asleep." + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "Frosmoth senses air currents with its antennae. It sends its scales drifting on frigid air, making them fall like snow.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/094.ts b/data/Pokémon TCG Pocket/Genetic Apex/094.ts new file mode 100644 index 000000000..9d93a0f86 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/094.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Gnaw" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "When it is angered, it immediately discharges the energy stored in the pouches in its cheeks.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/095.ts b/data/Pokémon TCG Pocket/Genetic Apex/095.ts new file mode 100644 index 000000000..17d9d5eb9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/095.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Raichu" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 100, + types: ["Lightning"], + stage: "Stage1", + evolveFrom: { + en: "Pikachu" + }, + + + attacks: [{ + cost: ["Lightning", "Lightning", "Lightning"], + + name: { + en: "Thunderbolt" + }, + + effect: { + en: "Discard all Energy from this Pokémon." + }, + + damage: "140" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "Its tail discharges electricity into the ground, protecting it from getting shocked.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/096.ts b/data/Pokémon TCG Pocket/Genetic Apex/096.ts new file mode 100644 index 000000000..7714bf056 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/096.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Lightning", "Lightning"], + + name: { + en: "Circle Circuit" + }, + + effect: { + en: "This attack does 30 damage for each of your Benched L Pokémon." + }, + + damage: "30×" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/097.ts b/data/Pokémon TCG Pocket/Genetic Apex/097.ts new file mode 100644 index 000000000..e199f8636 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/097.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Magnemite" + }, + + illustrator: "sowsow", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Lightning Ball" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "The electromagnetic waves emitted by the units at the sides of its head expel antigravity, which allows it to float.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/098.ts b/data/Pokémon TCG Pocket/Genetic Apex/098.ts new file mode 100644 index 000000000..218195a6d --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/098.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Magneton" + }, + + illustrator: "kirisAki", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + stage: "Stage1", + evolveFrom: { + en: "Magnemite" + }, + + + abilities: [{ + type: "Ability", + + name: { + en: "Volt Charge" + }, + + effect: { + en: "Once during your turn, you may take a L Energy from your Energy Zone and attach it to this Pokémon." + } + }], + + attacks: [{ + cost: ["Lightning", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Spinning Attack" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "Three Magnemite are linked by a strong magnetic force. Earaches will occur if you get too close.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/099.ts b/data/Pokémon TCG Pocket/Genetic Apex/099.ts new file mode 100644 index 000000000..81dc06a2f --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/099.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Voltorb" + }, + + illustrator: "SATOSHI NAKAI", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Tackle" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It rolls to move. If the ground is uneven, a sudden jolt from hitting a bump can cause it to explode.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/100.ts b/data/Pokémon TCG Pocket/Genetic Apex/100.ts new file mode 100644 index 000000000..22fe5965b --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/100.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Electrode" + }, + + illustrator: "Asako Ito", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + stage: "Stage1", + evolveFrom: { + en: "Voltorb" + }, + + + attacks: [{ + cost: ["Lightning", "Lightning"], + + name: { + en: "Electro Ball" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 0, + rarity: "Two Diamond", + + description: { + en: "The more energy it charges up, the faster it gets. But this also makes it more likely to explode.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/101.ts b/data/Pokémon TCG Pocket/Genetic Apex/101.ts new file mode 100644 index 000000000..8847658b3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/101.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Electabuzz" + }, + + illustrator: "Ryuta Fuse", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Lightning"], + + name: { + en: "Thunder Punch" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 40 more damage. If tails, this Pokémon does 20 damage to itself." + }, + + damage: "40+" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Many power plants keep Ground-type Pokémon around as a defense against Electabuzz that come seeking electricity.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/102.ts b/data/Pokémon TCG Pocket/Genetic Apex/102.ts new file mode 100644 index 000000000..accd8a628 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/102.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Jolteon" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + stage: "Stage1", + evolveFrom: { + en: "Eevee" + }, + + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Pin Missile" + }, + + effect: { + en: "Flip 4 coins. This attack does 40 damage for each heads." + }, + + damage: "40×" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "It concentrates the weak electric charges emitted by its cells and launches wicked lightning bolts.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/103.ts b/data/Pokémon TCG Pocket/Genetic Apex/103.ts new file mode 100644 index 000000000..6164ee623 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/103.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Zapdos" + }, + + illustrator: "Hitoshi Ariga", + category: "Pokemon", + hp: 130, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Raging Thunder" + }, + + effect: { + en: "This attack also does 30 damage to 1 of your Benched Pokémon." + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "This Pokémon has complete control over electricity. There are tales of Zapdos nesting in the dark depths of pitch-black thunderclouds.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/104.ts b/data/Pokémon TCG Pocket/Genetic Apex/104.ts new file mode 100644 index 000000000..0e2e0ad30 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/104.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Zapdos ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 130, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Peck" + }, + + damage: "20" + }, { + cost: ["Lightning", "Lightning", "Lightning"], + + name: { + en: "Thundering Hurricane" + }, + + effect: { + en: "Flip 4 coins. This attack does 50 damage for each heads." + }, + + damage: "50×" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/105.ts b/data/Pokémon TCG Pocket/Genetic Apex/105.ts new file mode 100644 index 000000000..a3f5f05c5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/105.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Blitzle" + }, + + illustrator: "Shin Nagasawa", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Zap Kick" + }, + + damage: "20" + + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "When thunderclouds cover the sky, it will appear. It can catch lightning with its mane and store the electricity.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/106.ts b/data/Pokémon TCG Pocket/Genetic Apex/106.ts new file mode 100644 index 000000000..6eb198634 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/106.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Zebstrika" + }, + + illustrator: "Misa Tsutsui", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + stage: "Stage1", + evolveFrom: { + en: "Blitzle" + }, + + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Thunder Spear" + }, + + effect: { + en: "This attack does 30 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "When this ill-tempered Pokémon runs wild, it shoots lightning from its mane in all directions.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/107.ts b/data/Pokémon TCG Pocket/Genetic Apex/107.ts new file mode 100644 index 000000000..533077cd5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/107.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Tynamo" + }, + + illustrator: "Asako Ito", + category: "Pokemon", + hp: 30, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Tiny Charge" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "While one alone doesn't have much power, a chain of many Tynamo can be as powerful as lightning.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/108.ts b/data/Pokémon TCG Pocket/Genetic Apex/108.ts new file mode 100644 index 000000000..ff0545b53 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/108.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Eelektrik" + }, + + illustrator: "Midori Harada", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + stage: "Stage1", + evolveFrom: { + en: "Tynamo" + }, + + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Head Bolt" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "They coil around foes and shock them with electricity-generating organs that seem simply to be circular patterns.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/109.ts b/data/Pokémon TCG Pocket/Genetic Apex/109.ts new file mode 100644 index 000000000..d54350738 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/109.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Eelektross" + }, + + illustrator: "hatachu", + category: "Pokemon", + hp: 140, + types: ["Lightning"], + stage: "Stage2", + evolveFrom: { + en: "Eelektrik" + }, + + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Thunder Fang" + }, + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "They crawl out of the ocean using their arms. They will attack prey on shore and immediately drag it into the ocean.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/110.ts b/data/Pokémon TCG Pocket/Genetic Apex/110.ts new file mode 100644 index 000000000..0bd8879b9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/110.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Helioptile" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Tail Whap" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "When spread, the frills on its head act like solar panels, generating the power behind this Pokémon's electric moves.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/111.ts b/data/Pokémon TCG Pocket/Genetic Apex/111.ts new file mode 100644 index 000000000..ed0391f69 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/111.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Heliolisk" + }, + + illustrator: "otumami", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + stage: "Stage1", + evolveFrom: { + en: "Helioptile" + }, + + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Quick Attack" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 40 more damage." + }, + + damage: "40+" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "One Heliolisk basking in the sun with its frill outspread is all it would take to produce enough electricity to power a city.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/112.ts b/data/Pokémon TCG Pocket/Genetic Apex/112.ts new file mode 100644 index 000000000..3ec26f2ca --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/112.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pincurchin" + }, + + illustrator: "Tika Matsuno", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Lightning"], + + name: { + en: "Thunder Shock" + }, + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "This Pokémon generates electricity when it digests food. It uses its five hard teeth to scrape seaweed off surfaces and eat it.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/113.ts b/data/Pokémon TCG Pocket/Genetic Apex/113.ts new file mode 100644 index 000000000..b6aab7698 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/113.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Clefairy" + }, + + illustrator: "kirisAki", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Slap" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It is said that happiness will come to those who see a gathering of Clefairy dancing under a full moon.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/114.ts b/data/Pokémon TCG Pocket/Genetic Apex/114.ts new file mode 100644 index 000000000..b6dd44aff --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/114.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Clefable" + }, + + illustrator: "Sanosuke Sakuma", + category: "Pokemon", + hp: 100, + types: ["Psychic"], + stage: "Stage1", + evolveFrom: { + en: "Clefairy" + }, + + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Magical Shot" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "A timid fairy Pokémon that is rarely seen, it will run and hide the moment it senses people.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/115.ts b/data/Pokémon TCG Pocket/Genetic Apex/115.ts new file mode 100644 index 000000000..eea664017 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/115.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Abra" + }, + + illustrator: "Aya Kusube", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Teleport" + }, + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "This Pokémon uses its psychic powers while it sleeps. The contents of Abra's dreams affect the powers that the Pokémon wields.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/116.ts b/data/Pokémon TCG Pocket/Genetic Apex/116.ts new file mode 100644 index 000000000..54c8ff391 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/116.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Kadabra" + }, + + illustrator: "Ken Sugimori", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + stage: "Stage1", + evolveFrom: { + en: "Abra" + }, + + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Super Psy Bolt" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "Using its psychic power, Kadabra levitates as it sleeps. It uses its springy tail as a pillow.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/117.ts b/data/Pokémon TCG Pocket/Genetic Apex/117.ts new file mode 100644 index 000000000..316910ab9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/117.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Alakazam" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Stage2", + evolveFrom: { + en: "Kadabra" + }, + + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Psychic" + }, + + effect: { + en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon." + }, + + damage: "60+" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "It has an incredibly high level of intelligence. Some say that Alakazam remembers everything that ever happens to it, from birth till death.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/118.ts b/data/Pokémon TCG Pocket/Genetic Apex/118.ts new file mode 100644 index 000000000..3fceec6ff --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/118.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Slowpoke" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Tail Whap" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "It is incredibly slow and dopey. It takes five seconds for it to feel pain when under attack.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/119.ts b/data/Pokémon TCG Pocket/Genetic Apex/119.ts new file mode 100644 index 000000000..497e6e6dc --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/119.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Slowbro" + }, + + illustrator: "Kogemaru Himeno", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Stage1", + evolveFrom: { + en: "Slowpoke" + }, + + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Super Psy Bolt" + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond", + + description: { + en: "When a Slowpoke went hunting in the sea, its tail was bitten by a Shellder. That made it evolve into Slowbro.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/120.ts b/data/Pokémon TCG Pocket/Genetic Apex/120.ts new file mode 100644 index 000000000..0d749729e --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/120.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gastly" + }, + + illustrator: "Masako Yamashita", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Suffocating Gas" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It wraps its opponent in its gas-like body, slowly weakening its prey by poisoning it through the skin.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/121.ts b/data/Pokémon TCG Pocket/Genetic Apex/121.ts new file mode 100644 index 000000000..ce49b61ba --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/121.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Haunter" + }, + + illustrator: "Nisota Niso", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + stage: "Stage1", + evolveFrom: { + en: "Gastly" + }, + + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Will-O-Wisp" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "It likes to lurk in the dark and tap shoulders with a gaseous hand. Its touch causes endless shuddering.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/122.ts b/data/Pokémon TCG Pocket/Genetic Apex/122.ts new file mode 100644 index 000000000..25e5a743d --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/122.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gengar" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Stage2", + evolveFrom: { + en: "Haunter" + }, + + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Bother" + }, + + effect: { + en: "Your opponent can't use any Supporter cards from their hand during their next turn." + }, + + damage: "50" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "To steal the life of its target, it slips into the prey's shadow and silently waits for an opportunity.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/123.ts b/data/Pokémon TCG Pocket/Genetic Apex/123.ts new file mode 100644 index 000000000..eb2566c9b --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/123.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gengar ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 170, + types: ["Psychic"], + stage: "Stage2", + evolveFrom: { + en: "Haunter" + }, + + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Shadowy Spellbind" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, your opponent can't use any Supporter cards from their hand." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Psychic"], + + name: { + en: "Spooky Shot" + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/124.ts b/data/Pokémon TCG Pocket/Genetic Apex/124.ts new file mode 100644 index 000000000..1ff88c999 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/124.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Drowzee" + }, + + illustrator: "Yukiko Baba", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Mumble" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "It remembers every dream it eats. It rarely eats the dreams of adults because children's are much tastier.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/125.ts b/data/Pokémon TCG Pocket/Genetic Apex/125.ts new file mode 100644 index 000000000..94e5f6525 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/125.ts @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Hypno" + }, + + illustrator: "Shigenori Negishi", + category: "Pokemon", + hp: 100, + types: ["Psychic"], + stage: "Stage1", + evolveFrom: { + en: "Drowzee" + }, + + + abilities: [{ + type: "Ability", + + name: { + en: "Sleep Pendulum" + }, + + effect: { + en: "Once during your turn, you may flip a coin. If heads, your opponent's Active Pokémon is now Asleep." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Psypunch" + }, + + damage: "50" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "When it locks eyes with an enemy, it will use a mix of psi moves, such as Hypnosis and Confusion.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/126.ts b/data/Pokémon TCG Pocket/Genetic Apex/126.ts new file mode 100644 index 000000000..63dad9e13 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/126.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mr. Mime" + }, + + illustrator: "Kagemaru Himeno", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Barrier Attack" + }, + + effect: { + en: "During your opponent's next turn, this Pokémon takes -20 damage from attacks." + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "The broadness of its hands may be no coincidence—many scientists believe its palms became enlarged specifically for pantomiming.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/127.ts b/data/Pokémon TCG Pocket/Genetic Apex/127.ts new file mode 100644 index 000000000..fb072a6f3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/127.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Jynx" + }, + + illustrator: "Oswaldo KATO", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Psychic" + }, + + effect: { + en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon." + }, + + damage: "30+" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Its strange cries sound like human language. There are some musicians who compose songs for Jynx to sing.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/128.ts b/data/Pokémon TCG Pocket/Genetic Apex/128.ts new file mode 100644 index 000000000..0d406f364 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/128.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mewtwo" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless", "Colorless"], + + name: { + en: "Power Blast" + }, + + effect: { + en: "Discard 2 P Energy from this Pokémon." + }, + + damage: "120" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "It was created by a scientist after years of horrific gene-splicing and DNA-engineering experiments.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/129.ts b/data/Pokémon TCG Pocket/Genetic Apex/129.ts new file mode 100644 index 000000000..07bb3a3e6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/129.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mewtwo ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Psychic Sphere" + }, + + damage: "50" + }, { + cost: ["Psychic", "Psychic", "Colorless", "Colorless"], + + name: { + en: "Psydrive" + }, + + effect: { + en: "Discard 2 P Energy from this Pokémon." + }, + + damage: "150" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/130.ts b/data/Pokémon TCG Pocket/Genetic Apex/130.ts new file mode 100644 index 000000000..24ce4f2b3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/130.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Ralts" + }, + + illustrator: "Yuka Morii", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Ram" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "The horns on its head provide a strong power that enables it to sense people's emotions.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/131.ts b/data/Pokémon TCG Pocket/Genetic Apex/131.ts new file mode 100644 index 000000000..484c63848 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/131.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Kirlia" + }, + + illustrator: "sowsow", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + stage: "Stage1", + evolveFrom: { + en: "Ralts" + }, + + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Smack" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "It has a psychic power that enables it to distort the space around it and see into the future.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/132.ts b/data/Pokémon TCG Pocket/Genetic Apex/132.ts new file mode 100644 index 000000000..680e05ecd --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/132.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gardevoir" + }, + + illustrator: "Yuu Nishida", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + stage: "Stage2", + evolveFrom: { + en: "Kirlia" + }, + + + abilities: [{ + type: "Ability", + + name: { + en: "Psy Shadow" + }, + + effect: { + en: "Once during your turn, you may take 1 P Energy from your Energy Zone and attach it to the P Pokémon in the Active Spot." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Psyshot" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "To protect its Trainer, it will expend all its psychic power to create a small black hole.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/133.ts b/data/Pokémon TCG Pocket/Genetic Apex/133.ts new file mode 100644 index 000000000..7cdb9042a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/133.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Woobat" + }, + + illustrator: "MAHOU", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Gnaw" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "While inside a cave, if you look up and see lots of heart-shaped marks lining the walls, it's evidence that Woobat live there.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/134.ts b/data/Pokémon TCG Pocket/Genetic Apex/134.ts new file mode 100644 index 000000000..bdc02e2a6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/134.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Swoobat" + }, + + illustrator: "Masakazu Fukuda", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Stage1", + evolveFrom: { + en: "Woobat" + }, + + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Heart Stamp" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Emitting powerful sound waves tires it out. Afterward, it won't be able to fly for a little while.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/135.ts b/data/Pokémon TCG Pocket/Genetic Apex/135.ts new file mode 100644 index 000000000..99e9bcf2a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/135.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Golett" + }, + + illustrator: "Kyoko Umemoto", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Mega Punch" + }, + + damage: "50" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 3, + rarity: "One Diamond", + + description: { + en: "They were sculpted from clay in ancient times. No one knows why, but some of them are driven to continually line up boulders.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/136.ts b/data/Pokémon TCG Pocket/Genetic Apex/136.ts new file mode 100644 index 000000000..84fcf12d7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/136.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Golurk" + }, + + illustrator: "match", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + stage: "Stage1", + evolveFrom: { + en: "Golett" + }, + + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless", "Colorless"], + + name: { + en: "Double Lariat" + }, + + effect: { + en: "Flip 2 coins. This attack does 100 damage for each heads." + }, + + damage: "100×" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 4, + rarity: "Two Diamond", + + description: { + en: "Artillery platforms built into the walls of ancient castles served as perches from which Golurk could fire energy beams.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/137.ts b/data/Pokémon TCG Pocket/Genetic Apex/137.ts new file mode 100644 index 000000000..6730ba078 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/137.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Sandshrew" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Scratch" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It loves to bathe in the grit of dry, sandy areas. By sand bathing, the Pokémon rids itself of dirt and moisture clinging to its body.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/138.ts b/data/Pokémon TCG Pocket/Genetic Apex/138.ts new file mode 100644 index 000000000..2703c2458 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/138.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Sandslash" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Sandshrew" + }, + + + attacks: [{ + cost: ["Fighting", "Fighting"], + + name: { + en: "Slash" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "The drier the area Sandslash lives in, the harder and smoother the Pokémon's spikes will feel when touched.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/139.ts b/data/Pokémon TCG Pocket/Genetic Apex/139.ts new file mode 100644 index 000000000..8ca592875 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/139.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Diglett" + }, + + illustrator: "Masako Yamashita", + category: "Pokemon", + hp: 50, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Mud Slap" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It lives about one yard underground, where it feeds on plant roots. It sometimes appears aboveground.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/140.ts b/data/Pokémon TCG Pocket/Genetic Apex/140.ts new file mode 100644 index 000000000..f9c509b62 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/140.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Dugtrio" + }, + + illustrator: "Akira Komayama", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Diglett" + }, + + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Dig" + }, + + 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." + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "Its three heads bob separately up and down to loosen the soil nearby, making it easier for it to burrow.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/141.ts b/data/Pokémon TCG Pocket/Genetic Apex/141.ts new file mode 100644 index 000000000..94a79877a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/141.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mankey" + }, + + illustrator: "Kanako Eo", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Low Kick" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It lives in groups in the treetops. If it loses sight of its group, it becomes infuriated by its loneliness.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/142.ts b/data/Pokémon TCG Pocket/Genetic Apex/142.ts new file mode 100644 index 000000000..683800cae --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/142.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Primeape" + }, + + illustrator: "Kagemaru Himeno", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Mankey" + }, + + + attacks: [{ + cost: ["Fighting", "Fighting"], + + name: { + en: "Fight Back" + }, + + effect: { + en: "If this Pokémon has damage on it, this attack does 60 more damage." + }, + + damage: "40+" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "It becomes wildly furious if it even senses someone looking at it. It chases anyone that meets its glare.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/143.ts b/data/Pokémon TCG Pocket/Genetic Apex/143.ts new file mode 100644 index 000000000..ce819573a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/143.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Machop" + }, + + illustrator: "Kyoko Umemoto", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Knuckle Punch" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "Its whole body is composed of muscles. Even though it's the size of a human child, it can hurl 100 grown-ups.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/144.ts b/data/Pokémon TCG Pocket/Genetic Apex/144.ts new file mode 100644 index 000000000..2276b9f48 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/144.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Machoke" + }, + + illustrator: "match", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Machop" + }, + + + attacks: [{ + cost: ["Fighting", "Fighting"], + + name: { + en: "Strength" + }, + + damage: "50" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "Its muscular body is so powerful, it must wear a power-save belt to be able to regulate its motions.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/145.ts b/data/Pokémon TCG Pocket/Genetic Apex/145.ts new file mode 100644 index 000000000..940402471 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/145.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Machamp" + }, + + illustrator: "Hitoshi Ariga", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + stage: "Stage2", + evolveFrom: { + en: "Machoke" + }, + + + attacks: [{ + cost: ["Fighting", "Fighting", "Fighting"], + + name: { + en: "Seismic Toss" + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "It quickly swings its four arms to rock its opponents with ceaseless punches and chops from all angles.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/146.ts b/data/Pokémon TCG Pocket/Genetic Apex/146.ts new file mode 100644 index 000000000..5ba275348 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/146.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Machamp ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 180, + types: ["Fighting"], + stage: "Stage2", + evolveFrom: { + en: "Machoke" + }, + + suffix: "EX", + + attacks: [{ + cost: ["Fighting", "Fighting", "Fighting"], + + name: { + en: "Mega Punch" + }, + + damage: "120" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 3, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/147.ts b/data/Pokémon TCG Pocket/Genetic Apex/147.ts new file mode 100644 index 000000000..0adee5dbf --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/147.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Geodude" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Tackle" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "Geodude that have lived a long life have had all their edges smoothed out until they're totally round. They also have a calm, quiet disposition.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/148.ts b/data/Pokémon TCG Pocket/Genetic Apex/148.ts new file mode 100644 index 000000000..fb2232514 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/148.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Graveler" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Geodude" + }, + + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Rollout" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond", + + description: { + en: "It climbs up cliffs as it heads toward the peak of a mountain. As soon as it reaches the summit, it rolls back down the way it came.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/149.ts b/data/Pokémon TCG Pocket/Genetic Apex/149.ts new file mode 100644 index 000000000..e8933c8fd --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/149.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Golem" + }, + + illustrator: "Sumiyoshi Kizuki", + category: "Pokemon", + hp: 160, + types: ["Fighting"], + stage: "Stage2", + evolveFrom: { + en: "Graveler" + }, + + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Double-Edge" + }, + + effect: { + en: "This Pokémon also does 50 damage to itself." + }, + + damage: "150" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 4, + rarity: "Three Diamond", + + description: { + en: "When Golem grow old, they stop shedding their shells. Those that have lived a long, long time have shells green with moss.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/150.ts b/data/Pokémon TCG Pocket/Genetic Apex/150.ts new file mode 100644 index 000000000..f657fb1df --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/150.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Onix" + }, + + illustrator: "otumami", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Fighting", "Fighting"], + + name: { + en: "Land Crush" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 4, + rarity: "Two Diamond", + + description: { + en: "As it digs through the ground, it absorbs many hard objects. This is what makes its body so solid.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/151.ts b/data/Pokémon TCG Pocket/Genetic Apex/151.ts new file mode 100644 index 000000000..2dd1711e2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/151.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Cubone" + }, + + illustrator: "sowsow", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Growl" + }, + + effect: { + en: "During your opponent's next turn, attacked used by the Defending Pokémon do -20 damage" + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "When the memory of its departed mother brings it to tears, its cries echo mournfully within the skull it wears on its head.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/152.ts b/data/Pokémon TCG Pocket/Genetic Apex/152.ts new file mode 100644 index 000000000..b443f34f7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/152.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Marowak" + }, + + illustrator: "Shin Nagasawa", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Cubone" + }, + + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Bone Beatdown" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "This Pokémon overcame its sorrow to evolve a sturdy new body. Marowak faces its opponents bravely, using a bone as a weapon.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/153.ts b/data/Pokémon TCG Pocket/Genetic Apex/153.ts new file mode 100644 index 000000000..9590920d3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/153.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Marowak ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Cubone" + }, + + suffix: "EX", + + attacks: [{ + cost: ["Fighting", "Fighting"], + + name: { + en: "Bonemerang" + }, + + effect: { + en: "Flip 2 coins. This attack does 80 damage for each heads." + }, + + damage: "80×" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/154.ts b/data/Pokémon TCG Pocket/Genetic Apex/154.ts new file mode 100644 index 000000000..d345d17fd --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/154.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Hitmonlee" + }, + + illustrator: "Yukiko Baba", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Stretch Kick" + }, + + effect: { + en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "This amazing Pokémon has an awesome sense of balance. It can kick in succession from any position.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/155.ts b/data/Pokémon TCG Pocket/Genetic Apex/155.ts new file mode 100644 index 000000000..eb5b9e244 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/155.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Hitmonchan" + }, + + illustrator: "Ken Sugimori", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Jab" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Its punches slice the air. They are launched at such high speed, even a slight graze could cause a burn.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/156.ts b/data/Pokémon TCG Pocket/Genetic Apex/156.ts new file mode 100644 index 000000000..c71c31c62 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/156.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Rhyhorn" + }, + + illustrator: "Midori Harada", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Tackle" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 3, + rarity: "One Diamond", + + description: { + en: "Strong, but not too bright, this Pokémon can shatter even a skyscraper with its charging tackles.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/157.ts b/data/Pokémon TCG Pocket/Genetic Apex/157.ts new file mode 100644 index 000000000..7322d9392 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/157.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Rhydon" + }, + + illustrator: "Masakazu Fukuda", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Rhyhorn" + }, + + + attacks: [{ + cost: ["Fighting", "Fighting", "Fighting", "Colorless"], + + name: { + en: "Horn Drill" + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 4, + rarity: "Two Diamond", + + description: { + en: "It begins walking on its hind legs after evolution. It can punch holes through boulders with its horn.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/158.ts b/data/Pokémon TCG Pocket/Genetic Apex/158.ts new file mode 100644 index 000000000..2112ab7e5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/158.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Kabuto" + }, + + illustrator: "sui", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Dome Fossil" + }, + + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Shell Attack" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "This species is almost entirely extinct. Kabuto molt every three days, making their shells harder and harder.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/159.ts b/data/Pokémon TCG Pocket/Genetic Apex/159.ts new file mode 100644 index 000000000..12fb40786 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/159.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Kabutops" + }, + + illustrator: "Shin Nagasawa", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Stage2", + evolveFrom: { + en: "Kabuto" + }, + + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Leech Life" + }, + + effect: { + en: "Heal from this Pokémon the same amount of damage you did to your opponent's Active Pokémon." + }, + + damage: "50" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "Kabutops slices its prey apart and sucks out the fluids. The discarded body parts become food for other Pokémon.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/160.ts b/data/Pokémon TCG Pocket/Genetic Apex/160.ts new file mode 100644 index 000000000..a89bd03d1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/160.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mienfoo" + }, + + illustrator: "match", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Pound" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "In one minute, a well-trained Mienfoo can chop with its arms more than 100 times.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/161.ts b/data/Pokémon TCG Pocket/Genetic Apex/161.ts new file mode 100644 index 000000000..3986bddf7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/161.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mienshao" + }, + + illustrator: "Atsuko Nishida", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Mienfoo" + }, + + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Spiral Kick" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "When Mienshao comes across a truly challenging opponent, it will lighten itself by biting off the fur on its arms.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/162.ts b/data/Pokémon TCG Pocket/Genetic Apex/162.ts new file mode 100644 index 000000000..3b3e4f2e6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/162.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Clobbopus" + }, + + illustrator: "Yuu Nishida", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + en: "Knuckle Punch" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "It's very curious, but its means of investigating things is to try to punch them with its tentacles. The search for food is what brings it onto land.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/163.ts b/data/Pokémon TCG Pocket/Genetic Apex/163.ts new file mode 100644 index 000000000..6836f38e0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/163.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Grapploct" + }, + + illustrator: "kurumitsu", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Clobbopus" + }, + + + attacks: [{ + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Knock Back" + }, + + effect: { + en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond", + + description: { + en: "A body made up of nothing but muscle makes the grappling moves this Pokémon performs with its tentacles tremendously powerful.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/164.ts b/data/Pokémon TCG Pocket/Genetic Apex/164.ts new file mode 100644 index 000000000..9a2b1dd82 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/164.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Ekans" + }, + + illustrator: "MAHOU", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Bite" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "By dislocating its jaw, it can swallow prey larger than itself. After a meal, it curls up and rests.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/165.ts b/data/Pokémon TCG Pocket/Genetic Apex/165.ts new file mode 100644 index 000000000..df88bb968 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/165.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Arbok" + }, + + illustrator: "Naoki Saito", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + stage: "Stage1", + evolveFrom: { + en: "Ekans" + }, + + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + en: "Corner" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat." + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "The latest research has determined that there are over 20 possible arrangements of the patterns on its stomach.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/166.ts b/data/Pokémon TCG Pocket/Genetic Apex/166.ts new file mode 100644 index 000000000..d106e3ce9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/166.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Nidoran♀" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Call for Family" + }, + + effect: { + en: "Put 1 random Nidoran♂ from your deck onto your Bench." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Females are more sensitive to smells than males. While foraging, they'll use their whiskers to check wind direction and stay downwind of predators.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/167.ts b/data/Pokémon TCG Pocket/Genetic Apex/167.ts new file mode 100644 index 000000000..5c1f9e862 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/167.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Nidorina" + }, + + illustrator: "Kagemaru Himeno", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + stage: "Stage1", + evolveFrom: { + en: "Nidoran♀" + }, + + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Bite" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "The horn on its head has atrophied. It's thought that this happens so Nidorina's children won't get poked while their mother is feeding them.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/168.ts b/data/Pokémon TCG Pocket/Genetic Apex/168.ts new file mode 100644 index 000000000..c8120ac5e --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/168.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Nidoqueen" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + stage: "Stage2", + evolveFrom: { + en: "Nidorina" + }, + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Lovestrike" + }, + + effect: { + en: "This attack does 50 more damage for each of your Benched Nidoking" + }, + + damage: "80+" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond", + + description: { + en: "Nidoqueen is better at defense than offense. With scales like armor, this Pokémon will shield its children from any kind of attack.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/169.ts b/data/Pokémon TCG Pocket/Genetic Apex/169.ts new file mode 100644 index 000000000..707068905 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/169.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Nidoran♂" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Peck" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "The horn on a male Nidoran's forehead contains a powerful poison. This is a very cautious Pokémon, always straining its large ears.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/170.ts b/data/Pokémon TCG Pocket/Genetic Apex/170.ts new file mode 100644 index 000000000..7e6272428 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/170.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Nidorino" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + stage: "Stage1", + evolveFrom: { + en: "Nidoran♂" + }, + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + en: "Horn Attack" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "With a horn that's harder than diamond, this Pokémon goes around shattering boulders as it searches for a moon stone.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/171.ts b/data/Pokémon TCG Pocket/Genetic Apex/171.ts new file mode 100644 index 000000000..c100b5356 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/171.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Nidoking" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 150, + types: ["Darkness"], + stage: "Stage2", + evolveFrom: { + en: "Nidorino" + }, + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Poison Horn" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + }, + + damage: "90" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "When it goes on a rampage, it's impossible to control. But in the presence of a Nidoqueen it's lived with for a long time, Nidoking calms down.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/172.ts b/data/Pokémon TCG Pocket/Genetic Apex/172.ts new file mode 100644 index 000000000..734fc97e1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/172.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Zubat" + }, + + illustrator: "match", + category: "Pokemon", + hp: 50, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Glide" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It emits ultrasonic waves from its mouth to check its surroundings. Even in tight caves, Zubat flies around with skill.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/173.ts b/data/Pokémon TCG Pocket/Genetic Apex/173.ts new file mode 100644 index 000000000..69d465137 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/173.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Golbat" + }, + + illustrator: "Masakazu Fukuda", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + stage: "Stage1", + evolveFrom: { + en: "Zubat" + }, + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Wing Attack" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "It loves to drink other creatures' blood. It's said that if it finds others of its kind going hungry, it sometimes shares the blood it's gathered.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/174.ts b/data/Pokémon TCG Pocket/Genetic Apex/174.ts new file mode 100644 index 000000000..f435a333e --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/174.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Grimer" + }, + + illustrator: "Pani Kobayashi", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Poison Gas" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3, + rarity: "One Diamond", + + description: { + en: "Born from sludge, these Pokémon now gather in polluted places and increase the bacteria in their bodies.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/175.ts b/data/Pokémon TCG Pocket/Genetic Apex/175.ts new file mode 100644 index 000000000..bc48e9aeb --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/175.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Muk" + }, + + illustrator: "Hajime Kusajima", + category: "Pokemon", + hp: 130, + types: ["Darkness"], + stage: "Stage1", + evolveFrom: { + en: "Grimer" + }, + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Venoshock" + }, + + effect: { + en: "If your opponent's Active Pokémon is Poisoned, this attack does 50 more damage." + }, + + damage: "70+" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "It's thickly covered with a filthy, vile sludge. It is so toxic, even its footprints contain poison.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/176.ts b/data/Pokémon TCG Pocket/Genetic Apex/176.ts new file mode 100644 index 000000000..ee4f0ac68 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/176.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Koffing" + }, + + illustrator: "Saya Tsuruta", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Suffocating Gas" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Its body is full of poisonous gas. It floats into garbage dumps, seeking out the fumes of raw, rotting trash.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/177.ts b/data/Pokémon TCG Pocket/Genetic Apex/177.ts new file mode 100644 index 000000000..75b0717c9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/177.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Weezing" + }, + + illustrator: "OOYAMA", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + stage: "Stage1", + evolveFrom: { + en: "Koffing" + }, + + abilities: [{ + type: "Ability", + + name: { + en: "Gas Leak" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you make take your opponent's Active Pokémon Poisoned." + } + }], + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Tackle" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "If one of the twin Koffing inflates, the other one deflates. It constantly mixes its poisonous gases.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/178.ts b/data/Pokémon TCG Pocket/Genetic Apex/178.ts new file mode 100644 index 000000000..25937e748 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/178.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mawile" + }, + + illustrator: "Kagemaru Himeno", + category: "Pokemon", + hp: 70, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Crunch" + }, + + effect: { + en: "Flip a coin. If heads, discard a random Energy from your opponent's Active Pokémon." + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It uses its docile-looking face to lull foes into complacency, then bites with its huge, relentless jaws.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/179.ts b/data/Pokémon TCG Pocket/Genetic Apex/179.ts new file mode 100644 index 000000000..8c27b215a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/179.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pawniard" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 50, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Pierce" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Pawniard will fearlessly challenge even powerful foes. In a pinch, it will cling to opponents and pierce them with the blades all over its body.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/180.ts b/data/Pokémon TCG Pocket/Genetic Apex/180.ts new file mode 100644 index 000000000..6f1303367 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/180.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Bisharp" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 90, + types: ["Metal"], + stage: "Stage1", + evolveFrom: { + en: "Pawniard" + }, + + attacks: [{ + cost: ["Metal", "Metal"], + + name: { + en: "Metal Claw" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "This Pokémon commands a group of several Pawniard. Groups that are defeated in territorial disputes are absorbed by the winning side.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/181.ts b/data/Pokémon TCG Pocket/Genetic Apex/181.ts new file mode 100644 index 000000000..a6018a458 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/181.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Meltan" + }, + + illustrator: "Shin Nagasawa", + category: "Pokemon", + hp: 70, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Amass" + }, + + effect: { + en: "Take 1 M Energy from your Energy Zone and attach it to this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It dissolves and eats metal. Circulating liquid metal within its body is how it generates energy.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/182.ts b/data/Pokémon TCG Pocket/Genetic Apex/182.ts new file mode 100644 index 000000000..bfcddad68 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/182.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Melmetal" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 130, + types: ["Metal"], + stage: "Stage1", + evolveFrom: { + en: "Meltan" + }, + + abilities: [{ + type: "Ability", + + name: { + en: "Hard Coat" + }, + + effect: { + en: "This Pokémon takes -20 damage from attacks." + } + }], + + attacks: [{ + cost: ["Metal", "Metal", "Metal", "Colorless"], + + name: { + en: "Heavy Impact" + }, + + damage: "120" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "At the end of its life-span, Melmetal will rust and fall apart. The small shards left behind will eventually be reborn as Meltan.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/183.ts b/data/Pokémon TCG Pocket/Genetic Apex/183.ts new file mode 100644 index 000000000..bbfc9501b --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/183.ts @@ -0,0 +1,35 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Dratini" + }, + + illustrator: "Ayaka Yoshida", + category: "Pokemon", + hp: 70, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Water", "Lightning"], + + name: { + en: "Ram" + }, + + damage: "40" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "It sheds many layers of skin as it grows larger. During this process, it is protected by a rapid waterfall.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/184.ts b/data/Pokémon TCG Pocket/Genetic Apex/184.ts new file mode 100644 index 000000000..9a548f38f --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/184.ts @@ -0,0 +1,38 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Dragonair" + }, + + illustrator: "kirisAki", + category: "Pokemon", + hp: 100, + types: ["Dragon"], + stage: "Stage1", + evolveFrom: { + en: "Dratini" + }, + + attacks: [{ + cost: ["Water", "Lightning", "Colorless"], + + name: { + en: "Tail Smack" + }, + + damage: "80" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "They say that if it emits an aura from its whole body, the weather will begin to change instantly.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/185.ts b/data/Pokémon TCG Pocket/Genetic Apex/185.ts new file mode 100644 index 000000000..ac6634d13 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/185.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Dragonite" + }, + + illustrator: "Hiroyuki Yamamoto", + category: "Pokemon", + hp: 160, + types: ["Dragon"], + stage: "Stage2", + evolveFrom: { + en: "Dragonair" + }, + + attacks: [{ + cost: ["Water", "Lightning", "Colorless", "Colorless"], + + name: { + en: "Draco Meteor" + }, + + effect: { + en: "1 of your opponent's Pokémon is chosen at random 4 times. For each time a Pokémon was chosen, do 50 damage to it." + } + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "It is said that somewhere in the ocean lies an island where these gather. Only they live there.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/186.ts b/data/Pokémon TCG Pocket/Genetic Apex/186.ts new file mode 100644 index 000000000..e2d652929 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/186.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pidgey" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Gust" + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 0, + rarity: "One Diamond", + + description: { + en: "A common sight in forests and woods. It flaps its wings at ground level to kick up blinding sand.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/187.ts b/data/Pokémon TCG Pocket/Genetic Apex/187.ts new file mode 100644 index 000000000..899550f23 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/187.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pidgeotto" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Pidgey" + }, + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Gust" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "The claws on its feet are well developed. It can carry prey such as an Exeggcute to its nest over 60 miles away.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/188.ts b/data/Pokémon TCG Pocket/Genetic Apex/188.ts new file mode 100644 index 000000000..80608bc7b --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/188.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pidgeot" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + stage: "Stage2", + evolveFrom: { + en: "Pidgeotto" + }, + + abilities: [{ + type: "Ability", + + name: { + en: "Drive Off" + }, + + effect: { + en: "Once during your turn, you may switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Wing Attack" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "When hunting, it skims the surface of water at high speed to pick off unwary prey such as Magikarp.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/189.ts b/data/Pokémon TCG Pocket/Genetic Apex/189.ts new file mode 100644 index 000000000..9a611648a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/189.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Rattata" + }, + + illustrator: "Atsushi Furusawa", + category: "Pokemon", + hp: 40, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Gnaw" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Its incisors grow continuously throughout its life. If its incisors get too long, this Pokémon becomes unable to eat, and it starves to death.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/190.ts b/data/Pokémon TCG Pocket/Genetic Apex/190.ts new file mode 100644 index 000000000..6a6e0cda7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/190.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Raticate" + }, + + illustrator: "Shigenori Negishi", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Rattata" + }, + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Bite" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "People say that it fled from its enemies by using its small webbed hind feet to swim from island to island in Alola.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/191.ts b/data/Pokémon TCG Pocket/Genetic Apex/191.ts new file mode 100644 index 000000000..d20187c72 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/191.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Spearow" + }, + + illustrator: "Shiburingaru", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Peck" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Its reckless nature leads it to stand up to others—even large Pokémon—if it has to protect its territory.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/192.ts b/data/Pokémon TCG Pocket/Genetic Apex/192.ts new file mode 100644 index 000000000..aaa1a8612 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/192.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Fearow" + }, + + illustrator: "Satoshi Shirai", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Spearow" + }, + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Drill Run" + }, + + effect: { + en: "Flip a coin. If heads, discard a random Energy from your opponent's Active Pokémon." + }, + + damage: "50" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Carrying food through Fearow's territory is dangerous. It will snatch the food away from you in a flash!", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/193.ts b/data/Pokémon TCG Pocket/Genetic Apex/193.ts new file mode 100644 index 000000000..cedd01d99 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/193.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Jigglypuff" + }, + + illustrator: "Mizue", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Pound" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "When its huge eyes waver, it sings a mysteriously soothing melody that lulls its enemies to sleep.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/194.ts b/data/Pokémon TCG Pocket/Genetic Apex/194.ts new file mode 100644 index 000000000..885ae8c38 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/194.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Wigglytuff" + }, + + illustrator: "Atsuko Nishida", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Jigglypuff" + }, + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Hyper Voice" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "It has a very fine fur. Take care not to make it angry, or it may inflate steadily and hit with a body slam.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/195.ts b/data/Pokémon TCG Pocket/Genetic Apex/195.ts new file mode 100644 index 000000000..748a0c681 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/195.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Wigglytuff ex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Jigglypuff" + }, + suffix: "EX", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Sleepy Song" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Asleep." + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/196.ts b/data/Pokémon TCG Pocket/Genetic Apex/196.ts new file mode 100644 index 000000000..09f16bc75 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/196.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Meowth" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Pay Day" + }, + + effect: { + en: "Draw 1 card." + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "All it does is sleep during the daytime. At night, it patrols its territory with its eyes aglow.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/197.ts b/data/Pokémon TCG Pocket/Genetic Apex/197.ts new file mode 100644 index 000000000..3c249dcc8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/197.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Persian" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Meowth" + }, + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Shadow Claw" + }, + + effect: { + en: "Flip a coin. If heads, discard a random card from your opponent's hand." + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "Although its fur has many admirers, it is tough to raise as a pet because of its fickle meanness.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/198.ts b/data/Pokémon TCG Pocket/Genetic Apex/198.ts new file mode 100644 index 000000000..fb36b779e --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/198.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Farfetch'd" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Leek Slap" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "The stalk this Pokémon carries in its wings serves as a sword to cut down opponents. In a dire situation, the stalk can also serve as food.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/199.ts b/data/Pokémon TCG Pocket/Genetic Apex/199.ts new file mode 100644 index 000000000..b4e5ba0df --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/199.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Doduo" + }, + + illustrator: "Yuya Oka", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Peck" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "A two-headed Pokémon that was discovered as a sudden mutation. It runs at a pace of over 60 miles per hour.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/200.ts b/data/Pokémon TCG Pocket/Genetic Apex/200.ts new file mode 100644 index 000000000..514f6b05f --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/200.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Dodrio" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Doduo" + }, + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Drill Peck" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 0, + rarity: "Two Diamond", + + description: { + en: "An enemy that takes its eyes off any of the three heads—even for a second—will get pecked severely.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/201.ts b/data/Pokémon TCG Pocket/Genetic Apex/201.ts new file mode 100644 index 000000000..74dabb85f --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/201.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Lickitung" + }, + + illustrator: "Kagemaru Himeno", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Continuous Lick" + }, + + effect: { + en: "Flip a coin until you get tails. This attack does 60 damage for each heads." + }, + + damage: "60×" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond", + + description: { + en: "If this Pokémon's sticky saliva gets on you and you don't clean it off, an intense itch will set in. The itch won't go away, either.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/202.ts b/data/Pokémon TCG Pocket/Genetic Apex/202.ts new file mode 100644 index 000000000..89ff229a4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/202.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Chansey" + }, + + illustrator: "MAHOU", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Gentle Slap" + }, + + damage: "60" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond", + + description: { + en: "This kindly Pokémon lays highly nutritious eggs and shares them with injured Pokémon or people.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/203.ts b/data/Pokémon TCG Pocket/Genetic Apex/203.ts new file mode 100644 index 000000000..3499ed153 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/203.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Kangaskhan" + }, + + illustrator: "Ken Sugimori", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Dizzy Punch" + }, + + effect: { + en: "Flip 2 coins. This attack does 30 damage times the number of heads." + }, + + damage: "30×" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond", + + description: { + en: "Although it's carrying its baby in a pouch on its belly, Kangaskhan is swift on its feet. It intimidates its opponents with quick jabs.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/204.ts b/data/Pokémon TCG Pocket/Genetic Apex/204.ts new file mode 100644 index 000000000..fae011913 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/204.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Tauros" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Horn Attack" + }, + + damage: "50" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond", + + description: { + en: "When Tauros begins whipping itself with its tails, it's a warning that the Pokémon is about to charge with astounding speed.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/205.ts b/data/Pokémon TCG Pocket/Genetic Apex/205.ts new file mode 100644 index 000000000..ae73cafb7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/205.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Ditto" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Copy Anything" + }, + + effect: { + en: "CHose 1 of your opponent's Pokémon's attacks and use it as this attack. If this Pokémon doesn't ahve the necessary Energy to use that attack, this attack does nothing" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "Its transformation ability is perfect. However, if made to laugh, it can't maintain its disguise.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/206.ts b/data/Pokémon TCG Pocket/Genetic Apex/206.ts new file mode 100644 index 000000000..5ce942737 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/206.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Eevee" + }, + + illustrator: "Atsuko Nishida", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Tackle" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Its ability to evolve into many forms allows it to adapt smoothly and perfectly to any environment.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/207.ts b/data/Pokémon TCG Pocket/Genetic Apex/207.ts new file mode 100644 index 000000000..818252572 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/207.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Eevee" + }, + + illustrator: "Hasuno", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Tackle" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Its ability to evolve into many forms allows it to adapt smoothly and perfectly to any environment.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/208.ts b/data/Pokémon TCG Pocket/Genetic Apex/208.ts new file mode 100644 index 000000000..bd6159356 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/208.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Eevee" + }, + + illustrator: "Sekio", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Tackle" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Its ability to evolve into many forms allows it to adapt smoothly and perfectly to any environment.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/209.ts b/data/Pokémon TCG Pocket/Genetic Apex/209.ts new file mode 100644 index 000000000..8a5f23e62 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/209.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Porygon" + }, + + illustrator: "Ayaka Yoshida", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Data Scan" + }, + + effect: { + en: "Once during your turn, you may look at the top card of your deck." + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Sharpen" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "State-of-the-art technology was used to create Porygon. It was the first artificial Pokémon to be created via computer programming.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/210.ts b/data/Pokémon TCG Pocket/Genetic Apex/210.ts new file mode 100644 index 000000000..65446f844 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/210.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Aerodactyl" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Old Amber" + }, + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Primal Wingbeat" + }, + + effect: { + en: "Flip a coin. If heads, your opponent shuffles their Active Pokémon back into their deck." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond", + + description: { + en: "This is a ferocious Pokémon from ancient times. Apparently even modern technology is incapable of producing a perfectly restored specimen.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/211.ts b/data/Pokémon TCG Pocket/Genetic Apex/211.ts new file mode 100644 index 000000000..4eb405380 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/211.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Snorlax" + }, + + illustrator: "Naoki Saito", + category: "Pokemon", + hp: 150, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Rollout" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 4, + rarity: "Three Diamond", + + description: { + en: "It is not satisfied unless it eats over 880 pounds of food every day. When it is done eating, it goes promptly to sleep.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/212.ts b/data/Pokémon TCG Pocket/Genetic Apex/212.ts new file mode 100644 index 000000000..dcc1f3cf9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/212.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Minccino" + }, + + illustrator: "sui", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Tail Smack" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "The way it brushes away grime with its tail can be helpful when cleaning. But its focus on spotlessness can make cleaning more of a hassle.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/213.ts b/data/Pokémon TCG Pocket/Genetic Apex/213.ts new file mode 100644 index 000000000..ccda112b9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/213.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Cinccino" + }, + + illustrator: "0313", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Minccino" + }, + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Do the Wave" + }, + + effect: { + en: "This attack does 30 damage for each of your Benched Pokémon." + }, + + damage: "30×" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond", + + description: { + en: "Its body secretes oil that this Pokémon spreads over its nest as a coating to protect it from dust. Cinccino won't tolerate even a speck of the stuff.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/214.ts b/data/Pokémon TCG Pocket/Genetic Apex/214.ts new file mode 100644 index 000000000..176510e93 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/214.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Wooloo" + }, + + illustrator: "Yoriyuki Ikegami", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Tackle" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond", + + description: { + en: "Its curly fleece is such an effective cushion that this Pokémon could fall off a cliff and stand right back up at the bottom, unharmed.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/215.ts b/data/Pokémon TCG Pocket/Genetic Apex/215.ts new file mode 100644 index 000000000..0666d683b --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/215.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Dubwool" + }, + + illustrator: "saino misaki", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Wooloo" + }, + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Rolling Tackle" + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond", + + description: { + en: "Weave a carpet from its springy wool, and you end up with something closer to a trampoline. You'll start to bounce the moment you set foot on it.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/216.ts b/data/Pokémon TCG Pocket/Genetic Apex/216.ts new file mode 100644 index 000000000..9331801b3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/216.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Helix Fossil" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + en: "Play this card as if it were a 40-HP Basic C Pokémon.\nAt any time during your turn, you may discard this card from play.\nThis card can't retreat." + }, + + trainerType: "Item", + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/217.ts b/data/Pokémon TCG Pocket/Genetic Apex/217.ts new file mode 100644 index 000000000..ff837c084 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/217.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Dome Fossil" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + en: "Play this card as if it were a 40-HP Basic C Pokémon.\nAt any time during your turn, you may discard this card from play.\nThis card can't retreat." + }, + + trainerType: "Item", + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/218.ts b/data/Pokémon TCG Pocket/Genetic Apex/218.ts new file mode 100644 index 000000000..83433d08e --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/218.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Old Amber" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + en: "Play this card as if it were a 40-HP Basic C Pokémon.\nAt any time during your turn, you may discard this card from play.\nThis card can't retreat." + }, + + trainerType: "Item", + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/219.ts b/data/Pokémon TCG Pocket/Genetic Apex/219.ts new file mode 100644 index 000000000..80a2672f1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/219.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Erika" + }, + + illustrator: "kirisAki", + category: "Trainer", + + effect: { + en: "Heal 50 damage from 1 of your G Pokémon." + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/220.ts b/data/Pokémon TCG Pocket/Genetic Apex/220.ts new file mode 100644 index 000000000..a39d2339d --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/220.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Misty" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + en: "Choose 1 of your W Pokémon, and flip a coin until you get tails. For each heads, take a W Energy from your Energy Zone and attach it to that Pokémon." + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/221.ts b/data/Pokémon TCG Pocket/Genetic Apex/221.ts new file mode 100644 index 000000000..2e6e62170 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/221.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Blaine" + }, + + illustrator: "GOSSAN", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Ninetales, Rapidash or Magmar do +30 damage to your opponent's Active Pokémon" + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/222.ts b/data/Pokémon TCG Pocket/Genetic Apex/222.ts new file mode 100644 index 000000000..bf9227eaa --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/222.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Koga" + }, + + illustrator: "Souichirou Gunjima", + category: "Trainer", + + effect: { + en: "Put your Muk or Weezing in the Active Spot into your hand." + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/223.ts b/data/Pokémon TCG Pocket/Genetic Apex/223.ts new file mode 100644 index 000000000..9c93a9104 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/223.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Giovanni" + }, + + illustrator: "Hideki Ishikawa", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do +10 damage to your opponent's Active Pokémon." + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/224.ts b/data/Pokémon TCG Pocket/Genetic Apex/224.ts new file mode 100644 index 000000000..b9d0fc603 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/224.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Brock" + }, + + illustrator: "Taira Akitsu", + category: "Trainer", + + effect: { + en: "Take 1 F Energy from your Energy Zone and attach it to your Golem or Onix." + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/225.ts b/data/Pokémon TCG Pocket/Genetic Apex/225.ts new file mode 100644 index 000000000..88a26fde5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/225.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Sabrina" + }, + + illustrator: "Yuu Nishida", + category: "Trainer", + + effect: { + en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent choses the new Active Pokémon)" + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/226.ts b/data/Pokémon TCG Pocket/Genetic Apex/226.ts new file mode 100644 index 000000000..b4772ade3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/226.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Lt. Surge" + }, + + illustrator: "nagimiso", + category: "Trainer", + + effect: { + en: "Move all L Energy from your Benched Pokémon to your Raichu, Electrode or Electabuzz in the Active Spot." + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/227.ts b/data/Pokémon TCG Pocket/Genetic Apex/227.ts new file mode 100644 index 000000000..b7bf73ac6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/227.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Bulbasaur" + }, + + illustrator: "Ryota Murayama", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Vine Whip" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "There is a plant seed on its back right from the day this Pokémon is born. The seed slowly grows larger.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/228.ts b/data/Pokémon TCG Pocket/Genetic Apex/228.ts new file mode 100644 index 000000000..b13a1b01c --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/228.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gloom" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 80, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Oddish" + }, + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Drool" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "One Star", + + description: { + en: "Its pistils exude an incredibly foul odor. The horrid stench can cause fainting at a distance of 1.25 miles.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/229.ts b/data/Pokémon TCG Pocket/Genetic Apex/229.ts new file mode 100644 index 000000000..0fc79686d --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/229.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pinsir" + }, + + illustrator: "Scav", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Grass"], + + name: { + en: "Double Horn" + }, + + effect: { + en: "Flip 2 coins. This attack does 50 damage for each heads." + }, + + damage: "50×" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "One Star", + + description: { + en: "These Pokémon judge one another based on pincers. Thicker, more impressive pincers make for more popularity with the opposite gender.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/230.ts b/data/Pokémon TCG Pocket/Genetic Apex/230.ts new file mode 100644 index 000000000..334898291 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/230.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Charmander" + }, + + illustrator: "GIDORA", + category: "Pokemon", + hp: 60, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Ember" + }, + + effect: { + en: "Discard a R Energy from this Pokémon." + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/231.ts b/data/Pokémon TCG Pocket/Genetic Apex/231.ts new file mode 100644 index 000000000..138fbdebb --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/231.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Rapidash" + }, + + illustrator: "Taira Akitsu", + category: "Pokemon", + hp: 100, + types: ["Fire"], + stage: "Stage1", + evolveFrom: { + en: "Ponyta" + }, + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Fire Mane" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "This Pokémon can be seen galloping through fields at speeds of up to 150 mph, its fiery mane fluttering in the wind.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/232.ts b/data/Pokémon TCG Pocket/Genetic Apex/232.ts new file mode 100644 index 000000000..007f1f6fd --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/232.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Squirtle" + }, + + illustrator: "Taira Akitsu", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Water Gun" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "When it retracts its long neck into its shell, it squirts out water with vigorous force.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/233.ts b/data/Pokémon TCG Pocket/Genetic Apex/233.ts new file mode 100644 index 000000000..35ea4417f --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/233.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gyarados" + }, + + illustrator: "Nurikabe", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Magikarp" + }, + + attacks: [{ + cost: ["Water", "Water", "Water", "Water"], + + name: { + en: "Hyper Beam" + }, + + effect: { + en: "Discard a random Energy from your opponent's Active Pokémon." + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 0, + rarity: "One Star", + + description: { + en: "Once it appears, it goes on a rampage. It remains enraged until it demolishes everything around it.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/234.ts b/data/Pokémon TCG Pocket/Genetic Apex/234.ts new file mode 100644 index 000000000..69b76922d --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/234.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Lapras" + }, + + illustrator: "Haru Akasaka", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Hydro Pump" + }, + + effect: { + en: "If this Pokémon has at least 3 extra W Energy attached, this attack does 70 more damage." + }, + + damage: "20+" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "One Star", + + description: { + en: "A smart and kindhearted Pokémon, it glides across the surface of the sea while its beautiful song echoes around it.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/235.ts b/data/Pokémon TCG Pocket/Genetic Apex/235.ts new file mode 100644 index 000000000..8e662372e --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/235.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Electrode" + }, + + illustrator: "DOM", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + stage: "Stage1", + evolveFrom: { + en: "Voltorb" + }, + + attacks: [{ + cost: ["Lightning", "Lightning"], + + name: { + en: "Electro Ball" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 0, + rarity: "One Star", + + description: { + en: "The more energy it charges up, the faster it gets. But this also makes it more likely to explode.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/236.ts b/data/Pokémon TCG Pocket/Genetic Apex/236.ts new file mode 100644 index 000000000..d7f56f3cf --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/236.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Alakazam" + }, + + illustrator: "Akira Egawa", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Stage2", + evolveFrom: { + en: "Kadabra" + }, + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Psychic" + }, + + effect: { + en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon." + }, + + damage: "60+" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "One Star", + + description: { + en: "It has an incredibly high level of intelligence. Some say that Alakazam remembers everything that ever happens to it, from birth till death.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/237.ts b/data/Pokémon TCG Pocket/Genetic Apex/237.ts new file mode 100644 index 000000000..e2c60ce44 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/237.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Slowpoke" + }, + + illustrator: "Miki Tanaka", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Tail Whap" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "One Star", + + description: { + en: "It is incredibly slow and dopey. It takes five seconds for it to feel pain when under attack.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/238.ts b/data/Pokémon TCG Pocket/Genetic Apex/238.ts new file mode 100644 index 000000000..47d382cb1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/238.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Diglett" + }, + + illustrator: "Shinya Komatsu", + category: "Pokemon", + hp: 50, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Mud Slap" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "It lives about one yard underground, where it feeds on plant roots. It sometimes appears aboveground.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/239.ts b/data/Pokémon TCG Pocket/Genetic Apex/239.ts new file mode 100644 index 000000000..4b8ca6833 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/239.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Cubone" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Growl" + }, + + effect: { + en: "During your opponent's next turn, attacked used by the Defending Pokémon do -20 damage" + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "When the memory of its departed mother brings it to tears, its cries echo mournfully within the skull it wears on its head.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/240.ts b/data/Pokémon TCG Pocket/Genetic Apex/240.ts new file mode 100644 index 000000000..1687a44a7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/240.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Nidoqueen" + }, + + illustrator: "aoki", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + stage: "Stage2", + evolveFrom: { + en: "Nidorina" + }, + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Lovestrike" + }, + + effect: { + en: "This attack does 50 more damage for each of your Benched Nidoking" + }, + + damage: "80+" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "One Star", + + description: { + en: "Nidoqueen is better at defense than offense. With scales like armor, this Pokémon will shield its children from any kind of attack.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/241.ts b/data/Pokémon TCG Pocket/Genetic Apex/241.ts new file mode 100644 index 000000000..7fd8b63db --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/241.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Nidoking" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 150, + types: ["Darkness"], + stage: "Stage2", + evolveFrom: { + en: "Nidorino" + }, + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Poison Horn" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + }, + + damage: "90" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 0, + rarity: "One Star", + + description: { + en: "When it goes on a rampage, it's impossible to control. But in the presence of a Nidoqueen it's lived with for a long time, Nidoking calms down.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/242.ts b/data/Pokémon TCG Pocket/Genetic Apex/242.ts new file mode 100644 index 000000000..c53cb7ac9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/242.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Golbat" + }, + + illustrator: "Tomokazu Komiya", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + stage: "Stage1", + evolveFrom: { + en: "Zubat" + }, + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Wing Attack" + }, + + damage: "40" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "It loves to drink other creatures' blood. It's said that if it finds others of its kind going hungry, it sometimes shares the blood it's gathered.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/243.ts b/data/Pokémon TCG Pocket/Genetic Apex/243.ts new file mode 100644 index 000000000..cc6314cfc --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/243.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Weezing" + }, + + illustrator: "KEIICHIRO ITO", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + stage: "Stage1", + evolveFrom: { + en: "Koffing" + }, + + abilities: [{ + type: "Ability", + + name: { + en: "Gas Leak" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you make take your opponent's Active Pokémon Poisoned." + } + }], + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Tackle" + }, + + damage: "30" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3, + rarity: "One Star", + + description: { + en: "If one of the twin Koffing inflates, the other one deflates. It constantly mixes its poisonous gases.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/244.ts b/data/Pokémon TCG Pocket/Genetic Apex/244.ts new file mode 100644 index 000000000..c3f1cf5fd --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/244.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Dragonite" + }, + + illustrator: "Gemi", + category: "Pokemon", + hp: 160, + types: ["Dragon"], + stage: "Stage2", + evolveFrom: { + en: "Dragonair" + }, + + attacks: [{ + cost: ["Water", "Lightning", "Colorless", "Colorless"], + + name: { + en: "Draco Meteor" + }, + + effect: { + en: "1 of your opponent's Pokémon is chosen at random 4 times. For each time a Pokémon was chosen, do 50 damage to it." + } + }], + + retreat: 3, + rarity: "One Star", + + description: { + en: "It is said that somewhere in the ocean lies an island where these gather. Only they live there.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/245.ts b/data/Pokémon TCG Pocket/Genetic Apex/245.ts new file mode 100644 index 000000000..4f4e84c08 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/245.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pidgeot" + }, + + illustrator: "Anesaki Dynamic", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + stage: "Stage2", + evolveFrom: { + en: "Pidgeotto" + }, + + abilities: [{ + type: "Ability", + + name: { + en: "Drive Off" + }, + + effect: { + en: "Once during your turn, you may switch out your opponent's Active Pokémon to the Bench. (Your opponent choses the new Active Pokémon.)" + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Wing Attack" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "When hunting, it skims the surface of water at high speed to pick off unwary prey such as Magikarp.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/246.ts b/data/Pokémon TCG Pocket/Genetic Apex/246.ts new file mode 100644 index 000000000..0edf14bb8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/246.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Meowth" + }, + + illustrator: "Mina Nakai", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Pay Day" + }, + + effect: { + en: "Draw 1 card." + }, + + damage: "10" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "All it does is sleep during the daytime. At night, it patrols its territory with its eyes aglow.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/247.ts b/data/Pokémon TCG Pocket/Genetic Apex/247.ts new file mode 100644 index 000000000..411f7d738 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/247.ts @@ -0,0 +1,42 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Ditto" + }, + + illustrator: "Jerky", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Copy Anything" + }, + + effect: { + en: "CHose 1 of your opponent's Pokémon's attacks and use it as this attack. If this Pokémon doesn't ahve the necessary Energy to use that attack, this attack does nothing" + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "Its transformation ability is perfect. However, if made to laugh, it can't maintain its disguise.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/248.ts b/data/Pokémon TCG Pocket/Genetic Apex/248.ts new file mode 100644 index 000000000..801f3d2a8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/248.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Eevee" + }, + + illustrator: "sowsow", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Tackle" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "Its ability to evolve into many forms allows it to adapt smoothly and perfectly to any environment.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/249.ts b/data/Pokémon TCG Pocket/Genetic Apex/249.ts new file mode 100644 index 000000000..ce7762e1c --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/249.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Porygon" + }, + + illustrator: "Akira Komayama", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Data Scan" + }, + + effect: { + en: "Once during your turn, you may look at the top card of your deck." + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Sharpen" + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Star", + + description: { + en: "State-of-the-art technology was used to create Porygon. It was the first artificial Pokémon to be created via computer programming.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/250.ts b/data/Pokémon TCG Pocket/Genetic Apex/250.ts new file mode 100644 index 000000000..6da7e64f9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/250.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Snorlax" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 150, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Rollout" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 4, + rarity: "One Star", + + description: { + en: "It is not satisfied unless it eats over 880 pounds of food every day. When it is done eating, it goes promptly to sleep.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/251.ts b/data/Pokémon TCG Pocket/Genetic Apex/251.ts new file mode 100644 index 000000000..f177d3dc5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/251.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Venusaur ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 190, + types: ["Grass"], + stage: "Stage2", + evolveFrom: { + en: "Ivysaur" + }, + suffix: "EX", + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Razor Leaf" + }, + + damage: "60" + }, { + cost: ["Grass", "Grass", "Colorless", "Colorless"], + + name: { + en: "Giant Bloom" + }, + + effect: { + en: "Heal 30 damage from this Pokémon." + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/252.ts b/data/Pokémon TCG Pocket/Genetic Apex/252.ts new file mode 100644 index 000000000..b46abcecd --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/252.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Exeggutor ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 160, + types: ["Grass"], + stage: "Stage1", + evolveFrom: { + en: "Exeggcute" + }, + suffix: "EX", + attacks: [{ + cost: ["Grass"], + + name: { + en: "Tropical Swing" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 40 more damage." + }, + + damage: "40+" + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/253.ts b/data/Pokémon TCG Pocket/Genetic Apex/253.ts new file mode 100644 index 000000000..5c25930a1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/253.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "", + category: "Pokemon", + hp: 180, + types: ["Fire"], + stage: "Stage2", + evolveFrom: { + en: "Charmeleon" + }, + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Slash" + }, + + damage: "60" + }, { + cost: ["Fire", "Fire", "Colorless", "Colorless"], + + name: { + en: "Crimson Storm" + }, + + effect: { + en: "Discard 2 R Energy from this Pokémon." + }, + + damage: "200" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/254.ts b/data/Pokémon TCG Pocket/Genetic Apex/254.ts new file mode 100644 index 000000000..062799ce6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/254.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Arcanine ex" + }, + + illustrator: "PLANETA Saito", + category: "Pokemon", + hp: 150, + types: ["Fire"], + stage: "Stage1", + evolveFrom: { + en: "Growlithe" + }, + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Inferno Onrush" + }, + + effect: { + en: "This Pokémon also does 20 damage to itself." + }, + + damage: "120" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/255.ts b/data/Pokémon TCG Pocket/Genetic Apex/255.ts new file mode 100644 index 000000000..879b4cf73 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/255.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Moltres ex" + }, + + illustrator: "PLANETA Saito", + category: "Pokemon", + hp: 140, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Inferno Dance" + }, + + effect: { + en: "Flip 3 coins. Take an amount of R Energy from your Energy Zone equal to the number of heads and attach it to your Benched R Pokémon in any way you like." + } + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Heat Blast" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/256.ts b/data/Pokémon TCG Pocket/Genetic Apex/256.ts new file mode 100644 index 000000000..acef6e09c --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/256.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Blastoise ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 180, + types: ["Water"], + stage: "Stage2", + evolveFrom: { + en: "Wartortle" + }, + suffix: "EX", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Surf" + }, + + damage: "40" + }, { + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Hydro Bazooka" + }, + + effect: { + en: "If this Pokémon has at least 2 extra W Energy attached, this attack does 60 more damage." + }, + + damage: "100+" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/257.ts b/data/Pokémon TCG Pocket/Genetic Apex/257.ts new file mode 100644 index 000000000..038951e63 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/257.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Starmie ex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 130, + types: ["Water"], + stage: "Stage1", + evolveFrom: { + en: "Staryu" + }, + suffix: "EX", + + attacks: [{ + cost: ["Water", "Water"], + + name: { + en: "Hydro Splash" + }, + + damage: "90" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 0, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/258.ts b/data/Pokémon TCG Pocket/Genetic Apex/258.ts new file mode 100644 index 000000000..3c11a0aab --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/258.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Articuno ex" + }, + + illustrator: "PLANETA Saito", + category: "Pokemon", + hp: 140, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Ice Wing" + }, + + damage: "40" + }, { + cost: ["Water", "Water", "Water"], + + name: { + en: "Blizzard" + }, + + effect: { + en: "This attack does 10 damage to each of your opponent's Benched Pokémon." + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/259.ts b/data/Pokémon TCG Pocket/Genetic Apex/259.ts new file mode 100644 index 000000000..e34236b10 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/259.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Lightning", "Lightning"], + + name: { + en: "Circle Circuit" + }, + + effect: { + en: "This attack does 30 damage for each of your Benched L Pokémon." + }, + + damage: "30×" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/260.ts b/data/Pokémon TCG Pocket/Genetic Apex/260.ts new file mode 100644 index 000000000..d8bdbcf26 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/260.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Zapdos ex" + }, + + illustrator: "PLANETA Saito", + category: "Pokemon", + hp: 130, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Raging Thunder" + }, + + effect: { + en: "This attack also does 30 damage to 1 of your Benched Pokémon." + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/261.ts b/data/Pokémon TCG Pocket/Genetic Apex/261.ts new file mode 100644 index 000000000..08bdcca23 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/261.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gengar ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 170, + types: ["Psychic"], + stage: "Stage2", + evolveFrom: { + en: "Haunter" + }, + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Shadowy Spellbind" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, your opponent can't use any Supporter cards from their hand." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Psychic"], + + name: { + en: "Spooky Shot" + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 0, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/262.ts b/data/Pokémon TCG Pocket/Genetic Apex/262.ts new file mode 100644 index 000000000..b86b9ed34 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/262.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mewtwo ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Psychic Sphere" + }, + + damage: "50" + }, { + cost: ["Psychic", "Psychic", "Colorless", "Colorless"], + + name: { + en: "Psydrive" + }, + + effect: { + en: "Discard 2 P Energy from this Pokémon." + }, + + damage: "150" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/263.ts b/data/Pokémon TCG Pocket/Genetic Apex/263.ts new file mode 100644 index 000000000..d934821b2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/263.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Machamp ex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 180, + types: ["Fighting"], + stage: "Stage2", + evolveFrom: { + en: "Machoke" + }, + suffix: "EX", + + attacks: [{ + cost: ["Fighting", "Fighting", "Fighting"], + + name: { + en: "Mega Punch" + }, + + damage: "120" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 3, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/264.ts b/data/Pokémon TCG Pocket/Genetic Apex/264.ts new file mode 100644 index 000000000..afadb85ef --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/264.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Marowak ex" + }, + + illustrator: "PLANETA Mochizuki", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Stage1", + evolveFrom: { + en: "Cubone" + }, + suffix: "EX", + + attacks: [{ + cost: ["Fighting", "Fighting"], + + name: { + en: "Bonemerang" + }, + + effect: { + en: "Flip 2 coins. This attack does 80 damage for each heads." + }, + + damage: "80×" + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/265.ts b/data/Pokémon TCG Pocket/Genetic Apex/265.ts new file mode 100644 index 000000000..cbb97409f --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/265.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Wigglytuff ex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Jigglypuff" + }, + suffix: "EX", + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Sleepy Song" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Asleep." + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "None" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/266.ts b/data/Pokémon TCG Pocket/Genetic Apex/266.ts new file mode 100644 index 000000000..cd5f44dd9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/266.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Erika" + }, + + illustrator: "saino misaki", + category: "Trainer", + + effect: { + en: "Heal 50 damage from 1 of your G Pokémon." + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/267.ts b/data/Pokémon TCG Pocket/Genetic Apex/267.ts new file mode 100644 index 000000000..2558a1dd4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/267.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Misty" + }, + + illustrator: "Sanosuke Sakuma", + category: "Trainer", + + effect: { + en: "Choose 1 of your W Pokémon, and flip a coin until you get tails. For each heads, take a W Energy from your Energy Zone and attach it to that Pokémon." + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/268.ts b/data/Pokémon TCG Pocket/Genetic Apex/268.ts new file mode 100644 index 000000000..7aacabc1f --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/268.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Blaine" + }, + + illustrator: "Hideki Ishikawa", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Ninetales, Rapidash or Magmar do +30 damage to your opponent's Active Pokémon" + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/269.ts b/data/Pokémon TCG Pocket/Genetic Apex/269.ts new file mode 100644 index 000000000..31817829f --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/269.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Koga" + }, + + illustrator: "Souichirou Gunjima", + category: "Trainer", + + effect: { + en: "Put your Muk or Weezing in the Active Spot into your hand." + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/270.ts b/data/Pokémon TCG Pocket/Genetic Apex/270.ts new file mode 100644 index 000000000..eb03e9055 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/270.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Giovanni" + }, + + illustrator: "Hideki Ishikawa", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do +10 damage to your opponent's Active Pokémon." + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/271.ts b/data/Pokémon TCG Pocket/Genetic Apex/271.ts new file mode 100644 index 000000000..bb6c1b434 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/271.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Brock" + }, + + illustrator: "Ryuta Fuse", + category: "Trainer", + + effect: { + en: "Take 1 F Energy from your Energy Zone and attach it to your Golem or Onix." + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/272.ts b/data/Pokémon TCG Pocket/Genetic Apex/272.ts new file mode 100644 index 000000000..f57b3e59a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/272.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Sabrina" + }, + + illustrator: "GIDORA", + category: "Trainer", + + effect: { + en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent choses the new Active Pokémon)" + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/273.ts b/data/Pokémon TCG Pocket/Genetic Apex/273.ts new file mode 100644 index 000000000..93bc6d309 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/273.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Lt. Surge" + }, + + illustrator: "nagimiso", + category: "Trainer", + + effect: { + en: "Move all L Energy from your Benched Pokémon to your Raichu, Electrode or Electabuzz in the Active Spot." + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/274.ts b/data/Pokémon TCG Pocket/Genetic Apex/274.ts new file mode 100644 index 000000000..54944fc86 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/274.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Moltres ex" + }, + + illustrator: "hncl", + category: "Pokemon", + hp: 140, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Inferno Dance" + }, + + effect: { + en: "Flip 3 coins. Take an amount of R Energy from your Energy Zone equal to the number of heads and attach it to your Benched R Pokémon in any way you like." + } + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Heat Blast" + }, + + damage: "70" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/275.ts b/data/Pokémon TCG Pocket/Genetic Apex/275.ts new file mode 100644 index 000000000..809ca6f65 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/275.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Articuno ex" + }, + + illustrator: "kodama", + category: "Pokemon", + hp: 140, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Ice Wing" + }, + + damage: "40" + }, { + cost: ["Water", "Water", "Water"], + + name: { + en: "Blizzard" + }, + + effect: { + en: "This attack does 10 damage to each of your opponent's Benched Pokémon." + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/276.ts b/data/Pokémon TCG Pocket/Genetic Apex/276.ts new file mode 100644 index 000000000..59f41147f --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/276.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Zapdos ex" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 130, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Peck" + }, + + damage: "20" + }, { + cost: ["Lightning", "Lightning", "Lightning"], + + name: { + en: "Thundering Hurricane" + }, + + effect: { + en: "Flip 4 coins. This attack does 50 damage for each heads." + }, + + damage: "50×" + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/277.ts b/data/Pokémon TCG Pocket/Genetic Apex/277.ts new file mode 100644 index 000000000..f59c037dc --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/277.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Gengar ex" + }, + + illustrator: "NC Empire", + category: "Pokemon", + hp: 170, + types: ["Psychic"], + stage: "Stage2", + evolveFrom: { + en: "Haunter" + }, + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Shadowy Spellbind" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, your opponent can't use any Supporter cards from their hand." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Psychic"], + + name: { + en: "Spooky Shot" + }, + + damage: "100" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/278.ts b/data/Pokémon TCG Pocket/Genetic Apex/278.ts new file mode 100644 index 000000000..f711c433c --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/278.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Machamp ex" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 180, + types: ["Fighting"], + stage: "Stage2", + evolveFrom: { + en: "Machoke" + }, + suffix: "EX", + + attacks: [{ + cost: ["Fighting", "Fighting", "Fighting"], + + name: { + en: "Mega Punch" + }, + + damage: "120" + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 3, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/279.ts b/data/Pokémon TCG Pocket/Genetic Apex/279.ts new file mode 100644 index 000000000..31b9ed82c --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/279.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Wigglytuff ex" + }, + + illustrator: "Shibuzoh.", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + stage: "Stage1", + evolveFrom: { + en: "Jigglypuff" + }, + suffix: "EX", + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Sleepy Song" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Asleep." + }, + + damage: "80" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "None" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/280.ts b/data/Pokémon TCG Pocket/Genetic Apex/280.ts new file mode 100644 index 000000000..243f23cd0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/280.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 180, + types: ["Fire"], + stage: "Stage2", + evolveFrom: { + en: "Charmeleon" + }, + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Slash" + }, + + damage: "60" + }, { + cost: ["Fire", "Fire", "Colorless", "Colorless"], + + name: { + en: "Crimson Storm" + }, + + effect: { + en: "Discard 2 R Energy from this Pokémon." + }, + + damage: "200" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Three Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/281.ts b/data/Pokémon TCG Pocket/Genetic Apex/281.ts new file mode 100644 index 000000000..107309e07 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/281.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "Ryota Murayama", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Lightning", "Lightning"], + + name: { + en: "Circle Circuit" + }, + + effect: { + en: "This attack does 30 damage for each of your Benched L Pokémon." + }, + + damage: "30×" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Three Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/282.ts b/data/Pokémon TCG Pocket/Genetic Apex/282.ts new file mode 100644 index 000000000..6000a26d7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/282.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mewtwo ex" + }, + + illustrator: "Nurikabe", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Psychic Sphere" + }, + + damage: "50" + }, { + cost: ["Psychic", "Psychic", "Colorless", "Colorless"], + + name: { + en: "Psydrive" + }, + + effect: { + en: "Discard 2 P Energy from this Pokémon." + }, + + damage: "150" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "Three Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/283.ts b/data/Pokémon TCG Pocket/Genetic Apex/283.ts new file mode 100644 index 000000000..b8be60a48 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/283.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mew" + }, + + illustrator: "Amelicart", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Psy Report" + }, + + effect: { + en: "Your opponent reveals their hand." + }, + + damage: "20" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Three Star", + + description: { + en: "Because it can use all kinds of moves, many scientists believe Mew to be the ancestor of Pokémon.", + } +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/284.ts b/data/Pokémon TCG Pocket/Genetic Apex/284.ts new file mode 100644 index 000000000..dcdd25c6a --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/284.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 180, + types: ["Fire"], + stage: "Stage2", + evolveFrom: { + en: "Charmeleon" + }, + suffix: "EX", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Slash" + }, + + damage: "60" + }, { + cost: ["Fire", "Fire", "Colorless", "Colorless"], + + name: { + en: "Crimson Storm" + }, + + effect: { + en: "Discard 2 R Energy from this Pokémon." + }, + + damage: "200" + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Crown" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/285.ts b/data/Pokémon TCG Pocket/Genetic Apex/285.ts new file mode 100644 index 000000000..61d217581 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/285.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Lightning", "Lightning"], + + name: { + en: "Circle Circuit" + }, + + effect: { + en: "This attack does 30 damage for each of your Benched L Pokémon." + }, + + damage: "30×" + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Crown" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Genetic Apex/286.ts b/data/Pokémon TCG Pocket/Genetic Apex/286.ts new file mode 100644 index 000000000..d186ad628 --- /dev/null +++ b/data/Pokémon TCG Pocket/Genetic Apex/286.ts @@ -0,0 +1,49 @@ +import { Card } from "../../../interfaces" +import Set from "../Genetic Apex" + +const card: Card = { + set: Set, + + name: { + en: "Mewtwo ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Psychic Sphere" + }, + + damage: "50" + }, { + cost: ["Psychic", "Psychic", "Colorless", "Colorless"], + + name: { + en: "Psydrive" + }, + + effect: { + en: "Discard 2 P Energy from this Pokémon." + }, + + damage: "150" + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2, + rarity: "Crown" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island.ts b/data/Pokémon TCG Pocket/Mythical Island.ts new file mode 100644 index 000000000..11d472b73 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island.ts @@ -0,0 +1,25 @@ +import { Set } from '../../interfaces' +import serie from '../Pokémon TCG Pocket' + +const set: Set = { + id: "A1a", + + name: { + // de: "Unschlagbare Gene", + en: "Mythical Island", + // es: "Genes Formidables", + // fr: "Puissance Génétique", + // it: "Geni Supremi", + // pt: "Dominação Genética" + }, + + serie: serie, + + cardCount: { + official: 68 + }, + + releaseDate: "2024-12-17" +} + +export default set diff --git a/data/Pokémon TCG Pocket/Mythical Island/001.ts b/data/Pokémon TCG Pocket/Mythical Island/001.ts new file mode 100644 index 000000000..ec1dccef0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/001.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Exeggcute" + }, + + illustrator: "Yuka Morii", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Though it may look like it's just a bunch of eggs, it's a proper Pokémon. Exeggcute communicates with others of its kind via telepathy, apparently." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Growth Spurt" + }, + + cost: ["Colorless"], + + effect: { + en: "Take a Energy from your Energy Zone and attach it to this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/002.ts b/data/Pokémon TCG Pocket/Mythical Island/002.ts new file mode 100644 index 000000000..fd75b8c59 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/002.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Exeggutor" + }, + + illustrator: "Masakazu Fukuda", + category: "Pokemon", + hp: 130, + types: ["Grass"], + + evolveFrom: { + en: "Exeggcute" + }, + + description: { + en: "Each of Exeggutor's three heads is thinking different thoughts. The three don't seem to be very interested in one another." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Psychic" + }, + + damage: "80+", + cost: ["Grass", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/003.ts b/data/Pokémon TCG Pocket/Mythical Island/003.ts new file mode 100644 index 000000000..6a7a0c748 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/003.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Celebi ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 130, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Powerful Bloom" + }, + + damage: "50×", + cost: ["Grass", "Colorless"], + + effect: { + en: "Flip a coin for each Energy attached to this Pokémon. This attack does 50 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Four Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/004.ts b/data/Pokémon TCG Pocket/Mythical Island/004.ts new file mode 100644 index 000000000..859965f10 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/004.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Snivy" + }, + + illustrator: "Kagemaru Himeno", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + en: "Being exposed to sunlight makes its movements swifter. It uses vines more adeptly than its hands." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Vine Whip" + }, + + damage: 40, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/005.ts b/data/Pokémon TCG Pocket/Mythical Island/005.ts new file mode 100644 index 000000000..26fa27040 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/005.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Servine" + }, + + illustrator: "Shigenori Negishi", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Snivy" + }, + + description: { + en: "It moves along the ground as if sliding. Its swift movements befuddle its foes, and it then attacks with a vine whip." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Vine Whip" + }, + + damage: 50, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/006.ts b/data/Pokémon TCG Pocket/Mythical Island/006.ts new file mode 100644 index 000000000..fa053682e --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/006.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Serperior" + }, + + illustrator: "Yoshioka", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + evolveFrom: { + en: "Servine" + }, + + description: { + en: "It only gives its all against strong opponents who are not fazed by the glare from Serperior's noble eyes." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Jungle Totem" + }, + + effect: { + en: "Each Energy attached to your Pokémon provides 2 Energy. This effect doesn't stack." + } + }], + + attacks: [{ + name: { + en: "Solar Beam" + }, + + damage: 70, + cost: ["Grass", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/007.ts b/data/Pokémon TCG Pocket/Mythical Island/007.ts new file mode 100644 index 000000000..e7d3080d2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/007.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Morelull" + }, + + illustrator: "Saya Tsuruta", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "Pokémon living in the forest eat the delicious caps on Morelull's head. The caps regrow overnight." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ram" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/008.ts b/data/Pokémon TCG Pocket/Mythical Island/008.ts new file mode 100644 index 000000000..fb23f3b1b --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/008.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Shiinotic" + }, + + illustrator: "Mizue", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + evolveFrom: { + en: "Morelull" + }, + + description: { + en: "Its flickering spores lure in prey and put them to sleep. Once this Pokémon has its prey snoozing, it drains their vitality with its fingertips." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Flickering Spores" + }, + + damage: 50, + cost: ["Grass", "Grass"], + + effect: { + en: "Your opponent's Active Pokémon is now Asleep." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/009.ts b/data/Pokémon TCG Pocket/Mythical Island/009.ts new file mode 100644 index 000000000..a0205cf90 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/009.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Dhelmise" + }, + + illustrator: "Hasuno", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + en: "After a piece of seaweed merged with debris from a sunken ship, it was reborn as this ghost Pokémon." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Energy Whip" + }, + + damage: "20+", + cost: ["Grass"], + + effect: { + en: "If this Pokémon has at least 3 extra Energy attached, this attack does 70 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/010.ts b/data/Pokémon TCG Pocket/Mythical Island/010.ts new file mode 100644 index 000000000..d05b5d614 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/010.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Ponyta" + }, + + illustrator: "Tomokazu Komiya", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It can't run properly when it's newly born. As it races around with others of its kind, its legs grow stronger." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Stomp" + }, + + damage: "10+", + cost: ["Fire"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/011.ts b/data/Pokémon TCG Pocket/Mythical Island/011.ts new file mode 100644 index 000000000..299f1761a --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/011.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Rapidash" + }, + + illustrator: "AKIRA EGAWA", + category: "Pokemon", + hp: 100, + types: ["Fire"], + + evolveFrom: { + en: "Ponyta" + }, + + description: { + en: "This Pokémon can be seen galloping through fields at speeds of up to 150 mph, its fiery mane fluttering in the wind." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Rising Lunge" + }, + + damage: "40+", + cost: ["Fire", "Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/012.ts b/data/Pokémon TCG Pocket/Mythical Island/012.ts new file mode 100644 index 000000000..f97e21e2c --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/012.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Magmar" + }, + + illustrator: "sui", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + description: { + en: "Magmar dispatches its prey with fire. But it regrets this habit once it realizes that it has burned its intended prey to a charred crisp." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Fire Blast" + }, + + damage: 80, + cost: ["Fire", "Fire"], + + effect: { + en: "Discard 2 Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/013.ts b/data/Pokémon TCG Pocket/Mythical Island/013.ts new file mode 100644 index 000000000..9f33061e2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/013.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Larvesta" + }, + + illustrator: "kawayoo", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + description: { + en: "This Pokémon was called the Larva That Stole the Sun. The fire Larvesta spouts from its horns can cut right through a sheet of iron." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Combustion" + }, + + damage: 30, + cost: ["Fire", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/014.ts b/data/Pokémon TCG Pocket/Mythical Island/014.ts new file mode 100644 index 000000000..f2678f0e4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/014.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Volcarona" + }, + + illustrator: "DOM", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + evolveFrom: { + en: "Larvesta" + }, + + description: { + en: "Its burning body causes it to be unpopular in hot parts of the world, but in cold ones, Volcarona is revered as an embodiment of the sun." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Volcanic Ash" + }, + + cost: ["Fire", "Fire", "Colorless"], + + effect: { + en: "Discard 2 Energy from this Pokémon. This attack does 80 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/015.ts b/data/Pokémon TCG Pocket/Mythical Island/015.ts new file mode 100644 index 000000000..7648b19a6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/015.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Salandit" + }, + + illustrator: "Naoki Saito", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It taunts its prey and lures them into narrow, rocky areas where it then sprays them with toxic gas to make them dizzy and take them down." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Venoshock" + }, + + damage: "10+", + cost: ["Colorless"], + + effect: { + en: "If your opponent's Active Pokémon is Poisoned, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/016.ts b/data/Pokémon TCG Pocket/Mythical Island/016.ts new file mode 100644 index 000000000..e8764b75a --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/016.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Salazzle" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + evolveFrom: { + en: "Salandit" + }, + + description: { + en: "Salazzle makes its opponents light-headed with poisonous gas, then captivates them with alluring movements to turn them into loyal servants." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Poison Claws" + }, + + damage: 30, + cost: ["Fire"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/017.ts b/data/Pokémon TCG Pocket/Mythical Island/017.ts new file mode 100644 index 000000000..530f3a9f6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/017.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Magikarp" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 30, + types: ["Water"], + + description: { + en: "An underpowered, pathetic Pokémon. It may jump high on rare occasions but never more than seven feet." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Leap Out" + }, + + cost: ["Water"], + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/018.ts b/data/Pokémon TCG Pocket/Mythical Island/018.ts new file mode 100644 index 000000000..a59c7faec --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/018.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Gyarados ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 180, + types: ["Water"], + + evolveFrom: { + en: "Magikarp" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Rampaging Whirlpool" + }, + + damage: 140, + cost: ["Water", "Water", "Water", "Colorless"], + + effect: { + en: "Discard a random Energy from among the Energy attached to all Pokémon (both yours and your opponent's)." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "Four Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/019.ts b/data/Pokémon TCG Pocket/Mythical Island/019.ts new file mode 100644 index 000000000..336713e67 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/019.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Vaporeon" + }, + + illustrator: "LINNE", + category: "Pokemon", + hp: 120, + types: ["Water"], + + evolveFrom: { + en: "Eevee" + }, + + description: { + en: "It lives close to water. Its long tail is ridged with a fin, which is often mistaken for a mermaid's." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Wash Out" + }, + + effect: { + en: "As often as you like during your turn, you may move a Energy from 1 of your Benched Pokémon to your Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Wave Splash" + }, + + damage: 60, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/020.ts b/data/Pokémon TCG Pocket/Mythical Island/020.ts new file mode 100644 index 000000000..6db0940ee --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/020.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Finneon" + }, + + illustrator: "sui", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "The line running down its side can store sunlight. It shines vividly at night." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/021.ts b/data/Pokémon TCG Pocket/Mythical Island/021.ts new file mode 100644 index 000000000..b1f819652 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/021.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Lumineon" + }, + + illustrator: "Sekio", + category: "Pokemon", + hp: 80, + types: ["Water"], + + evolveFrom: { + en: "Finneon" + }, + + description: { + en: "With its shining light, it lures its prey close. However, the light also happens to attract ferocious fish Pokémon—its natural predators." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Aqua Liner" + }, + + cost: ["Water", "Water"], + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 0, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/022.ts b/data/Pokémon TCG Pocket/Mythical Island/022.ts new file mode 100644 index 000000000..68c67fa55 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/022.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Chewtle" + }, + + illustrator: "Taiga Kayama", + category: "Pokemon", + hp: 80, + types: ["Water"], + + description: { + en: "Its large front tooth is still growing in. When the tooth itches, this Pokémon will bite another Chewtle's horn, and the two Pokémon will tussle." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 30, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/023.ts b/data/Pokémon TCG Pocket/Mythical Island/023.ts new file mode 100644 index 000000000..e322d3749 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/023.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Drednaw" + }, + + illustrator: "nisimono", + category: "Pokemon", + hp: 130, + types: ["Water"], + + evolveFrom: { + en: "Chewtle" + }, + + description: { + en: "Its massive, jagged teeth can crush a boulder in a single bite. This Pokémon has an extremely vicious disposition." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Crunch" + }, + + damage: 70, + cost: ["Water", "Water", "Water"], + + effect: { + en: "Flip a coin. If heads, discard a random Energy from your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/024.ts b/data/Pokémon TCG Pocket/Mythical Island/024.ts new file mode 100644 index 000000000..fa05ab005 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/024.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Cramorant" + }, + + illustrator: "Jerky", + category: "Pokemon", + hp: 80, + types: ["Water"], + + description: { + en: "It's so strong that it can knock out some opponents in a single hit, but it also may forget what it's battling midfight." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Dive" + }, + + damage: 60, + cost: ["Water", "Water", "Colorless"], + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/025.ts b/data/Pokémon TCG Pocket/Mythical Island/025.ts new file mode 100644 index 000000000..fe9a348ef --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/025.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "When it is angered, it immediately discharges the energy stored in the pouches in its cheeks." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Circle Circuit" + }, + + damage: "10×", + cost: ["Lightning"], + + effect: { + en: "This attack does 10 damage for each of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/026.ts b/data/Pokémon TCG Pocket/Mythical Island/026.ts new file mode 100644 index 000000000..331ea21a3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/026.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Raichu" + }, + + illustrator: "hncl", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + evolveFrom: { + en: "Pikachu" + }, + + description: { + en: "Its tail discharges electricity into the ground, protecting it from getting shocked." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Gigashock" + }, + + damage: 60, + cost: ["Lightning", "Lightning", "Lightning"], + + effect: { + en: "This attack also does 20 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/027.ts b/data/Pokémon TCG Pocket/Mythical Island/027.ts new file mode 100644 index 000000000..95a591336 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/027.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Electabuzz" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "Many power plants keep Ground-type Pokémon around as a defense against Electabuzz that come seeking electricity." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Thunder Spear" + }, + + cost: ["Lightning", "Lightning"], + + effect: { + en: "This attack does 40 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/028.ts b/data/Pokémon TCG Pocket/Mythical Island/028.ts new file mode 100644 index 000000000..82a96a0df --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/028.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Joltik" + }, + + illustrator: "MINAMINAMI Take", + category: "Pokemon", + hp: 40, + types: ["Lightning"], + + description: { + en: "Joltik can be found clinging to other Pokémon. It's soaking up static electricity because it can't produce a charge on its own." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bug Bite" + }, + + damage: 30, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/029.ts b/data/Pokémon TCG Pocket/Mythical Island/029.ts new file mode 100644 index 000000000..6d5785c4d --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/029.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Galvantula" + }, + + illustrator: "Mitsuhiro Arita", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + + evolveFrom: { + en: "Joltik" + }, + + description: { + en: "It launches electrified fur from its abdomen as its means of attack. Opponents hit by the fur could be in for three full days and nights of paralysis." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Electroweb" + }, + + damage: 70, + cost: ["Lightning", "Lightning"], + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/030.ts b/data/Pokémon TCG Pocket/Mythical Island/030.ts new file mode 100644 index 000000000..3295aa2bf --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/030.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Dedenne" + }, + + illustrator: "Taiga Kayama", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "It's small and its electricity-generating organ is not fully developed, so it uses its tail to absorb electricity from people's homes and charge itself." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Thunder Shock" + }, + + damage: 10, + cost: ["Lightning"], + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/031.ts b/data/Pokémon TCG Pocket/Mythical Island/031.ts new file mode 100644 index 000000000..7f510a4b6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/031.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Mew" + }, + + illustrator: "Saya Tsuruta", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "Because it can use all kinds of moves, many scientists believe Mew to be the ancestor of Pokémon." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Psy Report" + }, + + damage: 20, + cost: ["Psychic"], + + effect: { + en: "Your opponent reveals their hand." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/032.ts b/data/Pokémon TCG Pocket/Mythical Island/032.ts new file mode 100644 index 000000000..69afd446c --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/032.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Mew ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Psyshot" + }, + + damage: 20, + cost: ["Psychic"] + }, { + name: { + en: "Genome Hacking" + }, + + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Four Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/033.ts b/data/Pokémon TCG Pocket/Mythical Island/033.ts new file mode 100644 index 000000000..3840da95f --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/033.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Sigilyph" + }, + + illustrator: "Shigenori Negishi", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + description: { + en: "Psychic power allows these Pokémon to fly. Some say they were the guardians of an ancient city. Others say they were the guardians' emissaries." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Spike Draw" + }, + + damage: 10, + cost: ["Psychic"], + + effect: { + en: "Draw a card." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/034.ts b/data/Pokémon TCG Pocket/Mythical Island/034.ts new file mode 100644 index 000000000..5190f1425 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/034.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Elgyem" + }, + + illustrator: "Kouki Saitou", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "If this Pokémon stands near a TV, strange scenery will appear on the screen. That scenery is said to be from its home." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Headbutt" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/035.ts b/data/Pokémon TCG Pocket/Mythical Island/035.ts new file mode 100644 index 000000000..3c7b24e2f --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/035.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Beheeyem" + }, + + illustrator: "sowsow", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + evolveFrom: { + en: "Elgyem" + }, + + description: { + en: "Whenever a Beheeyem visits a farm, a Dubwool mysteriously disappears." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Mind Jack" + }, + + damage: "10+", + cost: ["Psychic"], + + effect: { + en: "This attack does 20 more damage for each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/036.ts b/data/Pokémon TCG Pocket/Mythical Island/036.ts new file mode 100644 index 000000000..9c0f4989b --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/036.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Flabébé" + }, + + illustrator: "Cona Nitanda", + category: "Pokemon", + hp: 40, + types: ["Psychic"], + + description: { + en: "This Pokémon can draw forth the power hidden within blooming wild flowers. It is particularly fond of red flowers." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Hypnotic Gaze" + }, + + cost: ["Psychic"], + + effect: { + en: "Your opponent's Active Pokémon is now Asleep." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/037.ts b/data/Pokémon TCG Pocket/Mythical Island/037.ts new file mode 100644 index 000000000..a5246eb86 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/037.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Floette" + }, + + illustrator: "Cona Nitanda", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + evolveFrom: { + en: "Flabébé" + }, + + description: { + en: "This Pokémon draws forth what power is left in withered flowers to make them healthy again. It holds a red flower." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Leaf Drain" + }, + + damage: 40, + cost: ["Psychic"], + + effect: { + en: "Heal 10 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/038.ts b/data/Pokémon TCG Pocket/Mythical Island/038.ts new file mode 100644 index 000000000..847862472 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/038.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Florges" + }, + + illustrator: "Cona Nitanda", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + evolveFrom: { + en: "Floette" + }, + + description: { + en: "This Pokémon creates an impressive flower garden in its territory. It draws forth the power of the red flowers around its neck." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Bloomshine" + }, + + damage: 80, + cost: ["Psychic", "Psychic"], + + effect: { + en: "Heal 20 damage from each of your Pokémon." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/039.ts b/data/Pokémon TCG Pocket/Mythical Island/039.ts new file mode 100644 index 000000000..18c75d1fb --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/039.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Swirlix" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "It eats its own weight in sugar every day. If it doesn't get enough sugar, it becomes incredibly grumpy." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Fairy Wind" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/040.ts b/data/Pokémon TCG Pocket/Mythical Island/040.ts new file mode 100644 index 000000000..c5d38e178 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/040.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Slurpuff" + }, + + illustrator: "Kagemaru Himeno", + category: "Pokemon", + hp: 100, + types: ["Psychic"], + + evolveFrom: { + en: "Swirlix" + }, + + description: { + en: "By taking in a person's scent, it can sniff out their mental and physical condition. It's hoped that this skill will have many medical applications." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Magical Shot" + }, + + damage: 60, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/041.ts b/data/Pokémon TCG Pocket/Mythical Island/041.ts new file mode 100644 index 000000000..7885c054d --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/041.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Mankey" + }, + + illustrator: "Akira Komayama", + category: "Pokemon", + hp: 50, + types: ["Fighting"], + + description: { + en: "It lives in groups in the treetops. If it loses sight of its group, it becomes infuriated by its loneliness." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Focus Fist" + }, + + damage: 50, + cost: ["Fighting"], + + effect: { + en: "Flip a coin. If tails, this attack does nothing." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/042.ts b/data/Pokémon TCG Pocket/Mythical Island/042.ts new file mode 100644 index 000000000..544dac21c --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/042.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Primeape" + }, + + illustrator: "Taiga Kayama", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + evolveFrom: { + en: "Mankey" + }, + + description: { + en: "It becomes wildly furious if it even senses someone looking at it. It chases anyone that meets its glare." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 50, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/043.ts b/data/Pokémon TCG Pocket/Mythical Island/043.ts new file mode 100644 index 000000000..fdd1a45bb --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/043.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Geodude" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "Geodude that have lived a long life have had all their edges smoothed out until they're totally round. They also have a calm, quiet disposition." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Light Punch" + }, + + damage: 30, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/044.ts b/data/Pokémon TCG Pocket/Mythical Island/044.ts new file mode 100644 index 000000000..f47aa64e2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/044.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Graveler" + }, + + illustrator: "Ayaka Yoshida", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + evolveFrom: { + en: "Geodude" + }, + + description: { + en: "It climbs up cliffs as it heads toward the peak of a mountain. As soon as it reaches the summit, it rolls back down the way it came." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Lunge Out" + }, + + damage: 40, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/045.ts b/data/Pokémon TCG Pocket/Mythical Island/045.ts new file mode 100644 index 000000000..0e848fea4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/045.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Golem" + }, + + illustrator: "Masakazu Fukuda", + category: "Pokemon", + hp: 160, + types: ["Fighting"], + + evolveFrom: { + en: "Graveler" + }, + + description: { + en: "When Golem grow old, they stop shedding their shells. Those that have lived a long, long time have shells green with moss." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Guard Press" + }, + + damage: 120, + cost: ["Fighting", "Fighting", "Fighting", "Colorless"], + + effect: { + en: "During your opponent's next turn, this Pokémon takes −30 damage from attacks." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3, + rarity: "Three Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/046.ts b/data/Pokémon TCG Pocket/Mythical Island/046.ts new file mode 100644 index 000000000..1c152e999 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/046.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Aerodactyl ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Primeval Law" + }, + + effect: { + en: "Your opponent can't play any Pokémon from their hand to evolve their Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Land Crush" + }, + + damage: 80, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Four Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/047.ts b/data/Pokémon TCG Pocket/Mythical Island/047.ts new file mode 100644 index 000000000..fac32ac72 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/047.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Marshadow" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "It slips into the shadows of others and mimics their powers and movements. As it improves, it becomes stronger than those it's imitating." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Revenge" + }, + + damage: "40+", + cost: ["Fighting", "Colorless"], + + effect: { + en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "Three Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/048.ts b/data/Pokémon TCG Pocket/Mythical Island/048.ts new file mode 100644 index 000000000..624845cf7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/048.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Stonjourner" + }, + + illustrator: "Teeziro", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + + description: { + en: "The elemental composition of the rocks that form its body were found to match the bedrock of a land far away from this Pokémon's habitat." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Mega Kick" + }, + + damage: 90, + cost: ["Fighting", "Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/049.ts b/data/Pokémon TCG Pocket/Mythical Island/049.ts new file mode 100644 index 000000000..8712cad43 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/049.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Koffing" + }, + + illustrator: "Naoyo Kimura", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + en: "Its body is full of poisonous gas. It floats into garbage dumps, seeking out the fumes of raw, rotting trash." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Division" + }, + + cost: ["Darkness"], + + effect: { + en: "Put 1 random Koffing from your deck onto your Bench." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/050.ts b/data/Pokémon TCG Pocket/Mythical Island/050.ts new file mode 100644 index 000000000..3a93e2cc3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/050.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Weezing" + }, + + illustrator: "Mousho", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + + evolveFrom: { + en: "Koffing" + }, + + description: { + en: "If one of the twin Koffing inflates, the other one deflates. It constantly mixes its poisonous gases." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Smokescreen" + }, + + damage: 50, + cost: ["Darkness", "Darkness"], + + effect: { + en: "During your opponent's next turn, if the Defending Pokémon tries to use an attack, your opponent flips a coin. If tails, that attack doesn't happen." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/051.ts b/data/Pokémon TCG Pocket/Mythical Island/051.ts new file mode 100644 index 000000000..255d628e7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/051.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Purrloin" + }, + + illustrator: "Kagemaru Himeno", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "It steals things from people just to amuse itself with their frustration. A rivalry exists between this Pokémon and Nickit." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Scratch" + }, + + damage: 20, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/052.ts b/data/Pokémon TCG Pocket/Mythical Island/052.ts new file mode 100644 index 000000000..faa079265 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/052.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Liepard" + }, + + illustrator: "GIDORA", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + + evolveFrom: { + en: "Purrloin" + }, + + description: { + en: "Don't be fooled by its gorgeous fur and elegant figure. This is a moody and vicious Pokémon." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 40, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/053.ts b/data/Pokémon TCG Pocket/Mythical Island/053.ts new file mode 100644 index 000000000..76ccef0ee --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/053.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Venipede" + }, + + illustrator: "Yukiko Baba", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "Venipede and Sizzlipede are similar species, but when the two meet, a huge fight ensues." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ram" + }, + + damage: 20, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/054.ts b/data/Pokémon TCG Pocket/Mythical Island/054.ts new file mode 100644 index 000000000..003fe9337 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/054.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Whirlipede" + }, + + illustrator: "Shin Nagasawa", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + + evolveFrom: { + en: "Venipede" + }, + + description: { + en: "This Pokémon spins itself rapidly and charges into its opponents. Its top speed is just over 60 mph." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Poison Sting" + }, + + damage: 20, + cost: ["Darkness"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/055.ts b/data/Pokémon TCG Pocket/Mythical Island/055.ts new file mode 100644 index 000000000..9fc651e21 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/055.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Scolipede" + }, + + illustrator: "5ban Graphics", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + + evolveFrom: { + en: "Whirlipede" + }, + + description: { + en: "Scolipede latches on to its prey with the claws on its neck before slamming them into the ground and jabbing them with its claws' toxic spikes." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Venoshock" + }, + + damage: "70+", + cost: ["Darkness", "Colorless"], + + effect: { + en: "If your opponent's Active Pokémon is Poisoned, this attack does 50 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/056.ts b/data/Pokémon TCG Pocket/Mythical Island/056.ts new file mode 100644 index 000000000..228553b7d --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/056.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Druddigon" + }, + + illustrator: "Ryota Murayama", + category: "Pokemon", + hp: 100, + types: ["Dragon"], + + description: { + en: "Druddigon lives in caves, but it never skips sunbathing—it won't be able to move if its body gets too cold." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Rough Skin" + }, + + effect: { + en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent's Pokémon, do 20 damage to the Attacking Pokémon." + } + }], + + attacks: [{ + name: { + en: "Dragon Claw" + }, + + damage: 90, + cost: ["Fire", "Water", "Colorless"] + }], + + retreat: 2, + rarity: "Two Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/057.ts b/data/Pokémon TCG Pocket/Mythical Island/057.ts new file mode 100644 index 000000000..5bec46d0a --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/057.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Pidgey" + }, + + illustrator: "Shigenori Negishi", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + en: "A common sight in forests and woods. It flaps its wings at ground level to kick up blinding sand." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flap" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/058.ts b/data/Pokémon TCG Pocket/Mythical Island/058.ts new file mode 100644 index 000000000..8931dd4e8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/058.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Pidgeotto" + }, + + illustrator: "Taiga Kayama", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + evolveFrom: { + en: "Pidgey" + }, + + description: { + en: "The claws on its feet are well developed. It can carry prey such as an Exeggcute to its nest over 60 miles away." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Wing Attack" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/059.ts b/data/Pokémon TCG Pocket/Mythical Island/059.ts new file mode 100644 index 000000000..4a5909706 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/059.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Pidgeot ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 170, + types: ["Colorless"], + + evolveFrom: { + en: "Pidgeotto" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Scattering Cyclone" + }, + + damage: "80+", + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Four Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/060.ts b/data/Pokémon TCG Pocket/Mythical Island/060.ts new file mode 100644 index 000000000..608056a18 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/060.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Tauros" + }, + + illustrator: "KEIICHIRO ITO", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + description: { + en: "When Tauros begins whipping itself with its tails, it's a warning that the Pokémon is about to charge with astounding speed." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Fighting Tackle" + }, + + damage: "40+", + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2, + rarity: "Three Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/061.ts b/data/Pokémon TCG Pocket/Mythical Island/061.ts new file mode 100644 index 000000000..85d81bbea --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/061.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Eevee" + }, + + illustrator: "Hitoshi Ariga", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "Its ability to evolve into many forms allows it to adapt smoothly and perfectly to any environment." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Continuous Steps" + }, + + damage: 20, + cost: ["Colorless"], + + effect: { + en: "Flip a coin until you get tails. This attack does 20 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/062.ts b/data/Pokémon TCG Pocket/Mythical Island/062.ts new file mode 100644 index 000000000..0a37a529f --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/062.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Chatot" + }, + + illustrator: "Masako Tomii", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "It mimics the cries of other Pokémon to trick them into thinking it's one of them. This way they won't attack it." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Mimic" + }, + + cost: ["Colorless"], + + effect: { + en: "Shuffle your hand into your deck. Draw a card for each card in your opponent's hand." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/063.ts b/data/Pokémon TCG Pocket/Mythical Island/063.ts new file mode 100644 index 000000000..43cc3daa7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/063.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Old Amber" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + en: "Play this card as if it were a 40-HP Basic C Pokémon.\nAt any time during your turn, you may discard this card from play.\nThis card can't retreat." + }, + + trainerType: "Item", + rarity: "One Diamond" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/064.ts b/data/Pokémon TCG Pocket/Mythical Island/064.ts new file mode 100644 index 000000000..fa435d960 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/064.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Pokémon Flute" + }, + + illustrator: "Toyste Beach", + category: "Trainer", + + effect: { + en: "Put 1a Basic Pokémon from your opponent's discard pile onto their Bench." + }, + + trainerType: "Item", + rarity: "Two Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/065.ts b/data/Pokémon TCG Pocket/Mythical Island/065.ts new file mode 100644 index 000000000..ce233a28a --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/065.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Mythical Slab" + }, + + illustrator: "AYUMI ODASHIMA", + category: "Trainer", + + effect: { + en: "Look at the top card of your deck. If that card is a Pokémon, put it into your hand. If it is not a Pokémon, put it on the bottom of your deck." + }, + + trainerType: "Item", + rarity: "Two Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/066.ts b/data/Pokémon TCG Pocket/Mythical Island/066.ts new file mode 100644 index 000000000..82186f544 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/066.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Budding Expeditioner" + }, + + illustrator: "Yuu Nishida", + category: "Trainer", + + effect: { + en: "Put your Mew ex in the Active Spot into your hand." + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/067.ts b/data/Pokémon TCG Pocket/Mythical Island/067.ts new file mode 100644 index 000000000..dd7472bc3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/067.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Blue" + }, + + illustrator: "Ryuta Fuse", + category: "Trainer", + + effect: { + en: "During your opponent's next turn, all of your Pokémon take −10 damage from attacks from your opponent's Pokémon." + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/068.ts b/data/Pokémon TCG Pocket/Mythical Island/068.ts new file mode 100644 index 000000000..a1c57f8d5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/068.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Leaf" + }, + + illustrator: "En Morikura", + category: "Trainer", + + effect: { + en: "During this turn, the Retreat Cost of your Active Pokémon is 2 less." + }, + + trainerType: "Supporter", + rarity: "Two Diamond" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/069.ts b/data/Pokémon TCG Pocket/Mythical Island/069.ts new file mode 100644 index 000000000..fcec702e4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/069.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Exeggutor" + }, + + illustrator: "Gapao", + category: "Pokemon", + hp: 130, + types: ["Grass"], + + evolveFrom: { + en: "Exeggcute" + }, + + description: { + en: "Each of Exeggutor's three heads is thinking different thoughts. The three don't seem to be very interested in one another." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Psychic" + }, + + damage: "80+", + cost: ["Grass", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3, + rarity: "One Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/070.ts b/data/Pokémon TCG Pocket/Mythical Island/070.ts new file mode 100644 index 000000000..02204f2a4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/070.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Serperior" + }, + + illustrator: "rika", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + evolveFrom: { + en: "Servine" + }, + + description: { + en: "It only gives its all against strong opponents who are not fazed by the glare from Serperior's noble eyes." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Jungle Totem" + }, + + effect: { + en: "Each Energy attached to your Pokémon provides 2 Energy. This effect doesn't stack." + } + }], + + attacks: [{ + name: { + en: "Solar Beam" + }, + + damage: 70, + cost: ["Grass", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "One Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/071.ts b/data/Pokémon TCG Pocket/Mythical Island/071.ts new file mode 100644 index 000000000..0327884e5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/071.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Salandit" + }, + + illustrator: "Nurikabe", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It taunts its prey and lures them into narrow, rocky areas where it then sprays them with toxic gas to make them dizzy and take them down." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Venoshock" + }, + + damage: "10+", + cost: ["Colorless"], + + effect: { + en: "If your opponent's Active Pokémon is Poisoned, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/072.ts b/data/Pokémon TCG Pocket/Mythical Island/072.ts new file mode 100644 index 000000000..457f3c3de --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/072.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Vaporeon" + }, + + illustrator: "aspara", + category: "Pokemon", + hp: 120, + types: ["Water"], + + evolveFrom: { + en: "Eevee" + }, + + description: { + en: "It lives close to water. Its long tail is ridged with a fin, which is often mistaken for a mermaid's." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Wash Out" + }, + + effect: { + en: "As often as you like during your turn, you may move a Energy from 1 of your Benched Pokémon to your Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Wave Splash" + }, + + damage: 60, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2, + rarity: "One Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/073.ts b/data/Pokémon TCG Pocket/Mythical Island/073.ts new file mode 100644 index 000000000..5f98d7571 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/073.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Dedenne" + }, + + illustrator: "Yuu Nishida", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "It's small and its electricity-generating organ is not fully developed, so it uses its tail to absorb electricity from people's homes and charge itself." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Thunder Shock" + }, + + damage: 10, + cost: ["Lightning"], + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/074.ts b/data/Pokémon TCG Pocket/Mythical Island/074.ts new file mode 100644 index 000000000..0f938b4ce --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/074.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Marshadow" + }, + + illustrator: "OKACHEKE", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "It slips into the shadows of others and mimics their powers and movements. As it improves, it becomes stronger than those it's imitating." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Revenge" + }, + + damage: "40+", + cost: ["Fighting", "Colorless"], + + effect: { + en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "One Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/075.ts b/data/Pokémon TCG Pocket/Mythical Island/075.ts new file mode 100644 index 000000000..72745da44 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/075.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Celebi ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 130, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Powerful Bloom" + }, + + damage: "50×", + cost: ["Grass", "Colorless"], + + effect: { + en: "Flip a coin for each Energy attached to this Pokémon. This attack does 50 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/076.ts b/data/Pokémon TCG Pocket/Mythical Island/076.ts new file mode 100644 index 000000000..2a1858e57 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/076.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Gyarados ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 180, + types: ["Water"], + + evolveFrom: { + en: "Magikarp" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Rampaging Whirlpool" + }, + + damage: 140, + cost: ["Water", "Water", "Water", "Colorless"], + + effect: { + en: "Discard a random Energy from among the Energy attached to all Pokémon (both yours and your opponent's)." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "Two Star" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/077.ts b/data/Pokémon TCG Pocket/Mythical Island/077.ts new file mode 100644 index 000000000..8c9b5ba2f --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/077.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Mew ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Psyshot" + }, + + damage: 20, + cost: ["Psychic"] + }, { + name: { + en: "Genome Hacking" + }, + + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Two Star" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/078.ts b/data/Pokémon TCG Pocket/Mythical Island/078.ts new file mode 100644 index 000000000..978a68262 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/078.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Aerodactyl ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Primeval Law" + }, + + effect: { + en: "Your opponent can't play any Pokémon from their hand to evolve their Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Land Crush" + }, + + damage: 80, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Two Star" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/079.ts b/data/Pokémon TCG Pocket/Mythical Island/079.ts new file mode 100644 index 000000000..84542869d --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/079.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Pidgeot ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 170, + types: ["Colorless"], + + evolveFrom: { + en: "Pidgeotto" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Scattering Cyclone" + }, + + damage: "80+", + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Two Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/080.ts b/data/Pokémon TCG Pocket/Mythical Island/080.ts new file mode 100644 index 000000000..8f9799ced --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/080.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Budding Expeditioner" + }, + + illustrator: "Yuu Nishida", + category: "Trainer", + + effect: { + en: "Put your Mew ex in the Active Spot into your hand." + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/081.ts b/data/Pokémon TCG Pocket/Mythical Island/081.ts new file mode 100644 index 000000000..748946c7e --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/081.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Blue" + }, + + illustrator: "Ryuta Fuse", + category: "Trainer", + + effect: { + en: "During your opponent's next turn, all of your Pokémon take −10 damage from attacks from your opponent's Pokémon." + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/082.ts b/data/Pokémon TCG Pocket/Mythical Island/082.ts new file mode 100644 index 000000000..5a67a2826 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/082.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Leaf" + }, + + illustrator: "En Morikura", + category: "Trainer", + + effect: { + en: "During this turn, the Retreat Cost of your Active Pokémon is 2 less." + }, + + trainerType: "Supporter", + rarity: "Two Star" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/083.ts b/data/Pokémon TCG Pocket/Mythical Island/083.ts new file mode 100644 index 000000000..f6e007e27 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/083.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Mew ex" + }, + + illustrator: "HYOGONOSUKE", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Psyshot" + }, + + damage: 20, + cost: ["Psychic"] + }, { + name: { + en: "Genome Hacking" + }, + + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Two Star" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/084.ts b/data/Pokémon TCG Pocket/Mythical Island/084.ts new file mode 100644 index 000000000..061bb57dc --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/084.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Aerodactyl ex" + }, + + illustrator: "danciao", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Primeval Law" + }, + + effect: { + en: "Your opponent can't play any Pokémon from their hand to evolve their Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Land Crush" + }, + + damage: 80, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Two Star" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Mythical Island/085.ts b/data/Pokémon TCG Pocket/Mythical Island/085.ts new file mode 100644 index 000000000..865926e07 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/085.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Celebi ex" + }, + + illustrator: "kantaro", + category: "Pokemon", + hp: 130, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Powerful Bloom" + }, + + damage: "50×", + cost: ["Grass", "Colorless"], + + effect: { + en: "Flip a coin for each Energy attached to this Pokémon. This attack does 50 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Three Star" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Mythical Island/086.ts b/data/Pokémon TCG Pocket/Mythical Island/086.ts new file mode 100644 index 000000000..06a5a95e8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Mythical Island/086.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Mythical Island" + +const card: Card = { + set: Set, + + name: { + en: "Mew ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Psyshot" + }, + + damage: 20, + cost: ["Psychic"] + }, { + name: { + en: "Genome Hacking" + }, + + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1, + rarity: "Crown" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Promos-A.ts b/data/Pokémon TCG Pocket/Promos-A.ts new file mode 100644 index 000000000..16bd09e89 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A.ts @@ -0,0 +1,25 @@ +import { Set } from '../../interfaces' +import serie from '../Pokémon TCG Pocket' + +const set: Set = { + id: "P-A", + + name: { + // de: "Unschlagbare Gene", + en: "Promos-A", + // es: "Genes Formidables", + // fr: "Puissance Génétique", + // it: "Geni Supremi", + // pt: "Dominação Genética" + }, + + serie: serie, + + cardCount: { + official: 0 + }, + + releaseDate: "2024-10-30" +} + +export default set diff --git a/data/Pokémon TCG Pocket/Promos-A/001.ts b/data/Pokémon TCG Pocket/Promos-A/001.ts new file mode 100644 index 000000000..5f61a964c --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/001.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Potion" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Trainer", + + effect: { + en: "Heal 20 damage from 1 of your Pokémon." + }, + + trainerType: "Item" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/002.ts b/data/Pokémon TCG Pocket/Promos-A/002.ts new file mode 100644 index 000000000..0380521e4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/002.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "X Speed" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + en: "During this turn, the Retreat Cost of your Active Pokémon is 1 less." + }, + + trainerType: "Item" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/003.ts b/data/Pokémon TCG Pocket/Promos-A/003.ts new file mode 100644 index 000000000..61afe2679 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/003.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Hand Scope" + }, + + illustrator: "Toyste Beach", + rarity: "None", + category: "Trainer", + + effect: { + en: "Your opponent reveals their hand." + }, + + trainerType: "Item" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/004.ts b/data/Pokémon TCG Pocket/Promos-A/004.ts new file mode 100644 index 000000000..8d0734cfb --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/004.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Pokédex" + }, + + illustrator: "Ryo Ueda", + rarity: "None", + category: "Trainer", + + effect: { + en: "Look at the top 3 cards of your deck." + }, + + trainerType: "Item" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/005.ts b/data/Pokémon TCG Pocket/Promos-A/005.ts new file mode 100644 index 000000000..b36b59240 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/005.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Poké Ball" + }, + + illustrator: "Ryo Ueda", + rarity: "None", + category: "Trainer", + + effect: { + en: "Put 1 random Basic Pokémon from your deck into your hand." + }, + + trainerType: "Item" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/006.ts b/data/Pokémon TCG Pocket/Promos-A/006.ts new file mode 100644 index 000000000..e97dad53f --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/006.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Red Card" + }, + + illustrator: "5ban Graphics", + rarity: "None", + category: "Trainer", + + effect: { + en: "Your opponent shuffles their hand into their deck and draws 3 cards." + }, + + trainerType: "Item" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/007.ts b/data/Pokémon TCG Pocket/Promos-A/007.ts new file mode 100644 index 000000000..6f9a1430b --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/007.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Professor's Research" + }, + + illustrator: "Naoki Saito", + rarity: "None", + category: "Trainer", + + effect: { + en: "Draw 2 cards." + }, + + trainerType: "Supporter" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/008.ts b/data/Pokémon TCG Pocket/Promos-A/008.ts new file mode 100644 index 000000000..01eab9955 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/008.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Pokédex" + }, + + illustrator: "Yuu Nishida", + rarity: "None", + category: "Trainer", + + effect: { + en: "Look at the top 3 cards of your deck." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Promos-A/009.ts b/data/Pokémon TCG Pocket/Promos-A/009.ts new file mode 100644 index 000000000..e472ba424 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/009.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu" + }, + + illustrator: "Atsushi Furusawa", + rarity: "None", + category: "Pokemon", + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + name: { + en: "Gnaw" + }, + + cost: ["Lightning"], + damage: 20 + }], + + hp: 60, + + description: { + en: "When it is angered, it immediately discharges the energy stored in the pouches in its cheeks." + }, + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/010.ts b/data/Pokémon TCG Pocket/Promos-A/010.ts new file mode 100644 index 000000000..749597133 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/010.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Mewtwo" + }, + + illustrator: "Krgc", + rarity: "None", + category: "Pokemon", + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + name: { + en: "Power Blast" + }, + + cost: ["Psychic", "Psychic", "Colorless", "Colorless"], + damage: 120, + + effect: { + en: "Discard 2 P Energy from this Pokémon." + } + }], + + hp: 120, + + description: { + en: "It was created by a scientist after years of horrific gene-splicing and DNA-engineering experiments." + }, + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/011.ts b/data/Pokémon TCG Pocket/Promos-A/011.ts new file mode 100644 index 000000000..3d4e5ce86 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/011.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Chansey" + }, + + illustrator: "sowsow", + rarity: "None", + category: "Pokemon", + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + name: { + en: "Gentle Slap" + }, + + cost: ["Colorless", "Colorless", "Colorless"], + damage: 60 + }], + + hp: 120, + + description: { + en: "This kindly Pokémon lays highly nutritious eggs and shares them with injured Pokémon or people." + }, + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/012.ts b/data/Pokémon TCG Pocket/Promos-A/012.ts new file mode 100644 index 000000000..98d369f9c --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/012.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Meowth" + }, + + illustrator: "Shigenori Negishi", + rarity: "None", + category: "Pokemon", + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + name: { + en: "Pay Day" + }, + + cost: ["Colorless"], + damage: 10, + + effect: { + en: "Draw a card." + } + }], + + hp: 60, + + description: { + en: "All it does is sleep during the daytime. At night, it patrols its territory with its eyes aglow." + }, + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/013.ts b/data/Pokémon TCG Pocket/Promos-A/013.ts new file mode 100644 index 000000000..32442e27b --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/013.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Butterfree" + }, + + illustrator: "miki kudo", + rarity: "None", + category: "Pokemon", + types: ["Grass"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Powder Heal" + }, + + effect: { + en: "Once during your turn, you may heal 20 damage from each of your Pokémon." + } + }], + + attacks: [{ + name: { + en: "Gust" + }, + + cost: ["Grass", "Colorless", "Colorless"], + damage: 60 + }], + + hp: 120, + + evolveFrom: { + en: "Metapod" + }, + + description: { + en: "In battle, it flaps its wings at great speed to release highly toxic dust into the air." + }, + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/014.ts b/data/Pokémon TCG Pocket/Promos-A/014.ts new file mode 100644 index 000000000..72b753143 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/014.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Lapras ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "None", + category: "Pokemon", + types: ["Water"], + stage: "Basic", + + attacks: [{ + name: { + en: "Bubble Drain" + }, + + cost: ["Water", "Water", "Colorless"], + damage: 80, + + effect: { + en: "Heal 20 damage from this Pokémon." + } + }], + + hp: 140, + suffix: "EX", + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Promos-A/015.ts b/data/Pokémon TCG Pocket/Promos-A/015.ts new file mode 100644 index 000000000..152a17aa2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/015.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu" + }, + + illustrator: "Kouki Saitou", + rarity: "None", + category: "Pokemon", + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + name: { + en: "Gnaw" + }, + + cost: ["Lightning"], + damage: 20 + }], + + hp: 60, + + description: { + en: "When it is angered, it immediately discharges the energy stored in the pouches in its cheeks." + }, + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/016.ts b/data/Pokémon TCG Pocket/Promos-A/016.ts new file mode 100644 index 000000000..b8e5a7cab --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/016.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Clefairy" + }, + + illustrator: "Shibuzoh.", + rarity: "None", + category: "Pokemon", + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + name: { + en: "Slap" + }, + + cost: ["Psychic"], + damage: 20 + }], + + hp: 60, + + description: { + en: "It is said that happiness will come to those who see a gathering of Clefairy dancing under a full moon." + }, + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/017.ts b/data/Pokémon TCG Pocket/Promos-A/017.ts new file mode 100644 index 000000000..dfdd44399 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/017.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Mankey" + }, + + illustrator: "Souichirou Gunjima", + rarity: "None", + category: "Pokemon", + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + name: { + en: "Reckless Charge" + }, + + cost: ["Fighting"], + damage: 30, + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + hp: 50, + + description: { + en: "It lives in groups in the treetops. If it loses sight of its group, it becomes infuriated by its loneliness." + }, + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/018.ts b/data/Pokémon TCG Pocket/Promos-A/018.ts new file mode 100644 index 000000000..7cfe94a93 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/018.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Venusaur" + }, + + illustrator: "Kuroimori", + rarity: "None", + category: "Pokemon", + types: ["Grass"], + stage: "Stage2", + + attacks: [{ + name: { + en: "Mega Drain" + }, + + cost: ["Grass", "Grass", "Colorless", "Colorless"], + damage: 80, + + effect: { + en: "Heal 30 damage from this Pokémon." + } + }], + + hp: 160, + + evolveFrom: { + en: "Ivysaur" + }, + + description: { + en: "Its plant blooms when it is absorbing solar energy. It stays on the move to seek sunlight." + }, + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/019.ts b/data/Pokémon TCG Pocket/Promos-A/019.ts new file mode 100644 index 000000000..e627dd522 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/019.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Greninja" + }, + + illustrator: "Sanosuke Sakuma", + rarity: "None", + category: "Pokemon", + types: ["Water"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Water Shuriken" + }, + + effect: { + en: "Once during your turn, you may do 20 damage to 1 of your opponent's Pokémon." + } + }], + + attacks: [{ + name: { + en: "Mist Slash" + }, + + cost: ["Water", "Colorless"], + damage: 60 + }], + + hp: 120, + + evolveFrom: { + en: "Frogadier" + }, + + description: { + en: "It creates throwing stars out of compressed water. When it spins them and throws them at high speed, these stars can split metal in two." + }, + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/020.ts b/data/Pokémon TCG Pocket/Promos-A/020.ts new file mode 100644 index 000000000..0d37a14bf --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/020.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Haunter" + }, + + illustrator: "Mékayu", + rarity: "None", + category: "Pokemon", + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + name: { + en: "Surprise Attack" + }, + + cost: ["Psychic"], + damage: 50, + + effect: { + en: "Flip a coin. If tails, this attack does nothing." + } + }], + + hp: 70, + + evolveFrom: { + en: "Gastly" + }, + + description: { + en: "It likes to lurk in the dark and tap shoulders with a gaseous hand. Its touch causes endless shuddering." + }, + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/021.ts b/data/Pokémon TCG Pocket/Promos-A/021.ts new file mode 100644 index 000000000..dff5e9027 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/021.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Onix" + }, + + illustrator: "Tomokazu Komiya", + rarity: "None", + category: "Pokemon", + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + name: { + en: "Land Crush" + }, + + cost: ["Fighting", "Fighting", "Fighting"], + damage: 70 + }], + + hp: 110, + + description: { + en: "As it digs through the ground, it absorbs many hard objects. This is what makes its body so solid." + }, + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/022.ts b/data/Pokémon TCG Pocket/Promos-A/022.ts new file mode 100644 index 000000000..34fa9339b --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/022.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Jigglypuff" + }, + + illustrator: "Kurata So", + rarity: "None", + category: "Pokemon", + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + name: { + en: "Sing" + }, + + cost: ["Colorless"], + + effect: { + en: "Your opponent's Active Pokémon is now Asleep." + } + }], + + hp: 50, + + description: { + en: "When its huge eyes waver, it sings a mysteriously soothing melody that lulls its enemies to sleep." + }, + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/023.ts b/data/Pokémon TCG Pocket/Promos-A/023.ts new file mode 100644 index 000000000..73f3991c0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/023.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Bulbasaur" + }, + + illustrator: "Kouki Saitou", + rarity: "None", + category: "Pokemon", + types: ["Grass"], + stage: "Basic", + + attacks: [{ + name: { + en: "Vine Whip" + }, + + cost: ["Grass", "Colorless"], + damage: 40 + }], + + hp: 70, + + description: { + en: "There is a plant seed on its back right from the day this Pokémon is born. The seed slowly grows larger." + }, + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/024.ts b/data/Pokémon TCG Pocket/Promos-A/024.ts new file mode 100644 index 000000000..2a8b66239 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/024.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Magnemite" + }, + + illustrator: "Miki Tanaka", + rarity: "None", + category: "Pokemon", + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + name: { + en: "Lightning Ball" + }, + + cost: ["Lightning"], + damage: 20 + }], + + hp: 60, + + description: { + en: "The electromagnetic waves emitted by the units at the sides of its head expel antigravity, which allows it to float." + }, + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/025.ts b/data/Pokémon TCG Pocket/Promos-A/025.ts new file mode 100644 index 000000000..67a7b44f3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/025.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Moltres ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "None", + category: "Pokemon", + hp: 140, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Inferno Dance" + }, + + cost: ["Fire"], + + effect: { + en: "Flip 3 coins. Take an amount of Energy from your Energy Zone equal to the number of heads and attach it to your Benched Pokémon in any way you like." + } + }, { + name: { + en: "Heat Blast" + }, + + damage: 70, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Promos-A/026.ts b/data/Pokémon TCG Pocket/Promos-A/026.ts new file mode 100644 index 000000000..23637aa90 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/026.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu" + }, + + illustrator: "Kouki Saitou", + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "When it is angered, it immediately discharges the energy stored in the pouches in its cheeks." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Gnaw" + }, + + damage: 20, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/027.ts b/data/Pokémon TCG Pocket/Promos-A/027.ts new file mode 100644 index 000000000..2846cc7ed --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/027.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Snivy" + }, + + illustrator: "Yoriyuki Ikegami", + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "Being exposed to sunlight makes its movements swifter. It uses vines more adeptly than its hands." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/028.ts b/data/Pokémon TCG Pocket/Promos-A/028.ts new file mode 100644 index 000000000..4c06eb6ac --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/028.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Volcarona" + }, + + illustrator: "Shin Nagasawa", + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + evolveFrom: { + en: "Larvesta" + }, + + description: { + en: "Its burning body causes it to be unpopular in hot parts of the world, but in cold ones, Volcarona is revered as an embodiment of the sun." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Volcanic Ash" + }, + + cost: ["Fire", "Fire", "Colorless"], + + effect: { + en: "Discard 2 Energy from this Pokémon. This attack does 80 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/029.ts b/data/Pokémon TCG Pocket/Promos-A/029.ts new file mode 100644 index 000000000..aed447891 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/029.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Blastoise" + }, + + illustrator: "danciao", + rarity: "None", + category: "Pokemon", + hp: 150, + types: ["Water"], + + evolveFrom: { + en: "Wartortle" + }, + + description: { + en: "It crushes its foe under its heavy body to cause fainting. In a pinch, it will withdraw inside its shell." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Hydro Pump" + }, + + damage: "80+", + cost: ["Water", "Water", "Colorless"], + + effect: { + en: "If this Pokémon has at least 2 extra Energy attached, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/030.ts b/data/Pokémon TCG Pocket/Promos-A/030.ts new file mode 100644 index 000000000..82bdaea3b --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/030.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Eevee" + }, + + illustrator: "En Morikura", + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "Its ability to evolve into many forms allows it to adapt smoothly and perfectly to any environment." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Growl" + }, + + cost: ["Colorless"], + + effect: { + en: "During your opponent's next turn, attacks used by the Defending Pokémon do −20 damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/031.ts b/data/Pokémon TCG Pocket/Promos-A/031.ts new file mode 100644 index 000000000..366f8ce6f --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/031.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Cinccino" + }, + + illustrator: "MAHOU", + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + evolveFrom: { + en: "Minccino" + }, + + description: { + en: "Its body secretes oil that this Pokémon spreads over its nest as a coating to protect it from dust. Cinccino won't tolerate even a speck of the stuff." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Do the Wave" + }, + + damage: "30×", + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 30 damage for each of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/032.ts b/data/Pokémon TCG Pocket/Promos-A/032.ts new file mode 100644 index 000000000..778ff1ffe --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/032.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Charmander" + }, + + illustrator: "Naoyo Kimura", + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ember" + }, + + damage: 30, + cost: ["Fire"], + + effect: { + en: "Discard a Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/033.ts b/data/Pokémon TCG Pocket/Promos-A/033.ts new file mode 100644 index 000000000..c689a5294 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/033.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Squirtle" + }, + + illustrator: "Kanako Eo", + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "When it retracts its long neck into its shell, it squirts out water with vigorous force." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/034.ts b/data/Pokémon TCG Pocket/Promos-A/034.ts new file mode 100644 index 000000000..ce1ecc30c --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/034.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Piplup" + }, + + illustrator: "Kariya", + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "It doesn't like to be taken care of. It's difficult to bond with since it won't listen to its Trainer." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Nap" + }, + + cost: ["Colorless"], + + effect: { + en: "Heal 20 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card + diff --git a/data/Pokémon TCG Pocket/Promos-A/035.ts b/data/Pokémon TCG Pocket/Promos-A/035.ts new file mode 100644 index 000000000..5aba870a0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/035.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Turtwig" + }, + + illustrator: "Atsuko Nishida", + rarity: "None", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + description: { + en: "It uses its whole body to photosynthesize when exposed to sunlight. Its shell is made from hardened soil." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 30, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/036.ts b/data/Pokémon TCG Pocket/Promos-A/036.ts new file mode 100644 index 000000000..f0f4319df --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/036.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Electivire" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + evolveFrom: { + en: "Electabuzz" + }, + + description: { + en: "The amount of electrical energy this Pokémon produces is proportional to the rate of its pulse. The voltage jumps while Electivire is battling." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Exciting Voltage" + }, + + damage: "40+", + cost: ["Lightning", "Lightning"], + + effect: { + en: "If this Pokémon has at least 2 extra Energy attached, this attack does 80 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/037.ts b/data/Pokémon TCG Pocket/Promos-A/037.ts new file mode 100644 index 000000000..9bf3795b9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/037.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Cresselia ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "None", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Lunar Plumage" + }, + + effect: { + en: "Whenever you attach a Energy from your Energy Zone to this Pokémon, heal 20 damage from this Pokémon." + } + }], + + attacks: [{ + name: { + en: "Psychic Flash" + }, + + damage: 80, + cost: ["Psychic", "Psychic", "Colorless"], + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/038.ts b/data/Pokémon TCG Pocket/Promos-A/038.ts new file mode 100644 index 000000000..42760e21c --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/038.ts @@ -0,0 +1,38 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Misdreavus" + }, + + illustrator: "Miki Tanaka", + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + description: { + en: "This Pokémon startles people in the middle of the night. It gathers fear as its energy." + }, + + attacks: [{ + name: { + en: "Confuse Ray" + }, + + cost: ["Psychic"], + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/039.ts b/data/Pokémon TCG Pocket/Promos-A/039.ts new file mode 100644 index 000000000..f1515a4ef --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/039.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Skarmory" + }, + + illustrator: "Anesaki Dynamic", + rarity: "None", + category: "Pokemon", + hp: 80, + types: ["Metal"], + + description: { + en: "People fashion swords from Skarmory's shed feathers, so this Pokémon is a popular element in heraldic designs." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Metal Arms" + }, + + damage: "20+", + cost: ["Metal"], + + effect: { + en: "If this Pokémon has a Pokémon Tool attached, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/040.ts b/data/Pokémon TCG Pocket/Promos-A/040.ts new file mode 100644 index 000000000..54d227ce3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/040.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Chimchar" + }, + + illustrator: "sui", + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "Its fiery rear end is fueled by gas made in its belly. Even rain can't extinguish the fire." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Scratch" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Promos-A/041.ts b/data/Pokémon TCG Pocket/Promos-A/041.ts new file mode 100644 index 000000000..9ce38c3d6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Promos-A/041.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Promos-A" + +const card: Card = { + set: Set, + + name: { + en: "Togepi" + }, + + illustrator: "Naoyo Kimura", + rarity: "None", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + + description: { + en: "The shell seems to be filled with joy. It is said that it will share good luck when treated kindly." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Pound" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Shining Revelry.ts b/data/Pokémon TCG Pocket/Shining Revelry.ts new file mode 100644 index 000000000..dec5f6219 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry.ts @@ -0,0 +1,25 @@ +import { Set } from '../../interfaces' +import serie from '../Pokémon TCG Pocket' + +const set: Set = { + id: "A2b", + + name: { + // de: "Unschlagbare Gene", + en: "Shining Revelry", + // es: "Genes Formidables", + // fr: "Puissance Génétique", + // it: "Geni Supremi", + // pt: "Dominação Genética" + }, + + serie: serie, + + cardCount: { + official: 78 + }, + + releaseDate: "2025-03-27" +} + +export default set diff --git a/data/Pokémon TCG Pocket/Shining Revelry/001.ts b/data/Pokémon TCG Pocket/Shining Revelry/001.ts new file mode 100644 index 000000000..a611a350c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/001.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Weedle" + }, + + illustrator: "Akira Komayama", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Often found in forests and grasslands. It has a sharp, toxic barb of around two inches on top of its head." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Multiply" + }, + + cost: ["Grass"], + + effect: { + en: "Put 1 random Weedle from your deck onto your Bench." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/002.ts b/data/Pokémon TCG Pocket/Shining Revelry/002.ts new file mode 100644 index 000000000..8f089fcb4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/002.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Kakuna" + }, + + illustrator: "Yuka Morii", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Weedle" + }, + + description: { + en: "Almost incapable of moving, this Pokémon can only harden its shell to protect itself when it is in danger." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "String Shot" + }, + + damage: 20, + cost: ["Grass"], + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/003.ts b/data/Pokémon TCG Pocket/Shining Revelry/003.ts new file mode 100644 index 000000000..87b5f8434 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/003.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Beedrill ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 170, + types: ["Grass"], + + evolveFrom: { + en: "Kakuna" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Crushing Spear" + }, + + damage: 80, + cost: ["Grass", "Grass"], + + effect: { + en: "Discard a random Energy from your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/004.ts b/data/Pokémon TCG Pocket/Shining Revelry/004.ts new file mode 100644 index 000000000..afefa17ef --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/004.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pinsir" + }, + + illustrator: "Satoshi Shirai", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + en: "These Pokémon judge one another based on pincers. Thicker, more impressive pincers make for more popularity with the opposite gender." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Guillotine Rush" + }, + + damage: 50, + cost: ["Grass", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin until you get tails. This attack does 40 more damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/005.ts b/data/Pokémon TCG Pocket/Shining Revelry/005.ts new file mode 100644 index 000000000..44670ebc9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/005.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Sprigatito" + }, + + illustrator: "mashu", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "Its fluffy fur is similar in composition to plants. This Pokémon frequently washes its face to keep it from drying out." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Cry for Help" + }, + + cost: ["Grass"], + + effect: { + en: "Put 1 random Pokémon from your deck into your hand." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/006.ts b/data/Pokémon TCG Pocket/Shining Revelry/006.ts new file mode 100644 index 000000000..2950b82d1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/006.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Floragato" + }, + + illustrator: "mashu", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + evolveFrom: { + en: "Sprigatito" + }, + + description: { + en: "Floragato deftly wields the vine hidden beneath its long fur, slamming the hard flower bud against its opponents." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 40, + cost: ["Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/007.ts b/data/Pokémon TCG Pocket/Shining Revelry/007.ts new file mode 100644 index 000000000..f9f2743e3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/007.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Meowscarada" + }, + + illustrator: "mashu", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Floragato" + }, + + description: { + en: "This Pokémon uses the reflective fur lining its cape to camouflage the stem of its flower, creating the illusion that the flower is floating." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Fighting Claws" + }, + + damage: 60, + cost: ["Grass", "Grass"], + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 70 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/008.ts b/data/Pokémon TCG Pocket/Shining Revelry/008.ts new file mode 100644 index 000000000..d4c237be4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/008.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charmander" + }, + + illustrator: "Megumi Mizutani", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Combustion" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/009.ts b/data/Pokémon TCG Pocket/Shining Revelry/009.ts new file mode 100644 index 000000000..731b480d3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/009.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charmeleon" + }, + + illustrator: "kodama", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + evolveFrom: { + en: "Charmander" + }, + + description: { + en: "It has a barbaric nature. In battle, it whips its fiery tail around and slashes away with sharp claws." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Combustion" + }, + + damage: 40, + cost: ["Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/010.ts b/data/Pokémon TCG Pocket/Shining Revelry/010.ts new file mode 100644 index 000000000..a35bdf3df --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/010.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 180, + types: ["Fire"], + + evolveFrom: { + en: "Charmeleon" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Stoke" + }, + + cost: ["Fire"], + + effect: { + en: "Take 3 Energy from your Energy Zone and attach it to this Pokémon." + } + }, { + name: { + en: "Steam Artillery" + }, + + damage: 150, + cost: ["Fire", "Fire", "Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/011.ts b/data/Pokémon TCG Pocket/Shining Revelry/011.ts new file mode 100644 index 000000000..5874c894a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/011.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Magmar" + }, + + illustrator: "Miki Tanaka", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + en: "Magmar dispatches its prey with fire. But it regrets this habit once it realizes that it has burned its intended prey to a charred crisp." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flare" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/012.ts b/data/Pokémon TCG Pocket/Shining Revelry/012.ts new file mode 100644 index 000000000..e6ac2164b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/012.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Magmortar" + }, + + illustrator: "Miki Tanaka", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + evolveFrom: { + en: "Magmar" + }, + + description: { + en: "When Magmortar inhales deeply, the fire burning in its belly intensifies, rising in temperature to over 3,600 degrees Fahrenheit." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Smoke Bomb" + }, + + damage: 70, + cost: ["Fire", "Fire", "Colorless"], + + effect: { + en: "During your opponent's next turn, if the Defending Pokémon tries to use an attack, your opponent flips a coin. If tails, that attack doesn't happen." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/013.ts b/data/Pokémon TCG Pocket/Shining Revelry/013.ts new file mode 100644 index 000000000..0ba6404bc --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/013.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Tauros" + }, + + illustrator: "Minahamu", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Fire"], + + description: { + en: "When heated by fire energy, its horns can get hotter than 1,800 degrees Fahrenheit. Those gored by them will suffer both wounds and burns." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Blaze Tackle" + }, + + damage: 80, + cost: ["Fire", "Colorless", "Colorless"], + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/014.ts b/data/Pokémon TCG Pocket/Shining Revelry/014.ts new file mode 100644 index 000000000..0c9619088 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/014.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tentacool" + }, + + illustrator: "Shibuzoh.", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "Tentacool is not a particularly strong swimmer. It drifts across the surface of shallow seas as it searches for prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rain Splash" + }, + + damage: 10, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/015.ts b/data/Pokémon TCG Pocket/Shining Revelry/015.ts new file mode 100644 index 000000000..fdc56d9ef --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/015.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tentacruel" + }, + + illustrator: "match", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Water"], + + evolveFrom: { + en: "Tentacool" + }, + + description: { + en: "When the red orbs on Tentacruel's head glow brightly, watch out. The Pokémon is about to fire off a burst of ultrasonic waves." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Wave Splash" + }, + + damage: 40, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/016.ts b/data/Pokémon TCG Pocket/Shining Revelry/016.ts new file mode 100644 index 000000000..e466b4e3a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/016.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Buizel" + }, + + illustrator: "sui", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "It inflates its flotation sac, keeping its face above water in order to watch for prey movement." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 10, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/017.ts b/data/Pokémon TCG Pocket/Shining Revelry/017.ts new file mode 100644 index 000000000..385ff9845 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/017.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Floatzel" + }, + + illustrator: "Kouki Saitou", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Water"], + + evolveFrom: { + en: "Buizel" + }, + + description: { + en: "With its flotation sac inflated, it can carry people on its back. It deflates the sac before it dives." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Water Arrow" + }, + + cost: ["Water"], + + effect: { + en: "This attack does 30 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/018.ts b/data/Pokémon TCG Pocket/Shining Revelry/018.ts new file mode 100644 index 000000000..bf09929c1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/018.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wiglett" + }, + + illustrator: "miki kudo", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "This Pokémon can pick up the scent of a Veluza just over 65 feet away and will hide itself in the sand." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Spring Out" + }, + + cost: ["Water"], + + effect: { + en: "1 of your opponent's Pokémon is chosen at random. Do 30 damage to it." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/019.ts b/data/Pokémon TCG Pocket/Shining Revelry/019.ts new file mode 100644 index 000000000..1408fd8c4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/019.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wugtrio ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Water"], + + evolveFrom: { + en: "Wiglett" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Pop Out Throughout" + }, + + cost: ["Water", "Water", "Water"], + + effect: { + en: "1 of your opponent's Pokémon is chosen at random 3 times. For each time a Pokémon was chosen, do 50 damage to it." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/020.ts b/data/Pokémon TCG Pocket/Shining Revelry/020.ts new file mode 100644 index 000000000..f922e8c32 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/020.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Dondozo" + }, + + illustrator: "Tomowaka", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Water"], + + description: { + en: "This Pokémon is a glutton, but it's bad at getting food. It teams up with a Tatsugiri to catch prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ocean Cyclone" + }, + + damage: 80, + cost: ["Water", "Water", "Colorless", "Colorless"], + + effect: { + en: "This attack also does 10 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/021.ts b/data/Pokémon TCG Pocket/Shining Revelry/021.ts new file mode 100644 index 000000000..33546395c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/021.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tatsugiri" + }, + + illustrator: "Tomowaka", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "This is a small dragon Pokémon. It lives inside the mouth of Dondozo to protect itself from enemies on the outside." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Retreat Directive" + }, + + effect: { + en: "Your Active Dondozo has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Rain Splash" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/022.ts b/data/Pokémon TCG Pocket/Shining Revelry/022.ts new file mode 100644 index 000000000..75fb28178 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/022.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Thunderbolt" + }, + + damage: 150, + cost: ["Lightning", "Lightning", "Lightning"], + + effect: { + en: "Discard all Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/023.ts b/data/Pokémon TCG Pocket/Shining Revelry/023.ts new file mode 100644 index 000000000..5eaa8ddab --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/023.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Voltorb" + }, + + illustrator: "Masakazu Fukuda", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "It rolls to move. If the ground is uneven, a sudden jolt from hitting a bump can cause it to explode." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Lightning Ball" + }, + + damage: 10, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/024.ts b/data/Pokémon TCG Pocket/Shining Revelry/024.ts new file mode 100644 index 000000000..4f22761fe --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/024.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Electrode" + }, + + illustrator: "Shigenori Negishi", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + evolveFrom: { + en: "Voltorb" + }, + + description: { + en: "The more energy it charges up, the faster it gets. But this also makes it more likely to explode." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Tumbling Attack" + }, + + damage: 50, + cost: ["Lightning", "Lightning"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/025.ts b/data/Pokémon TCG Pocket/Shining Revelry/025.ts new file mode 100644 index 000000000..83b66748f --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/025.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pachirisu" + }, + + illustrator: "imoniii", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "It's one of the kinds of Pokémon with electric cheek pouches. It shoots charges from its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Plasma" + }, + + damage: 10, + cost: ["Lightning"], + + effect: { + en: "Take a Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/026.ts b/data/Pokémon TCG Pocket/Shining Revelry/026.ts new file mode 100644 index 000000000..7c14596a6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/026.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pawmi" + }, + + illustrator: "Saboteri", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "It has underdeveloped electric sacs on its cheeks. These sacs can produce electricity only if Pawmi rubs them furiously with the pads on its forepaws." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 20, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/027.ts b/data/Pokémon TCG Pocket/Shining Revelry/027.ts new file mode 100644 index 000000000..1d85b82e6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/027.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pawmo" + }, + + illustrator: "Saboteri", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + evolveFrom: { + en: "Pawmi" + }, + + description: { + en: "When its group is attacked, Pawmo is the first to leap into battle, defeating enemies with a fighting technique that utilizes electric shocks." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 40, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/028.ts b/data/Pokémon TCG Pocket/Shining Revelry/028.ts new file mode 100644 index 000000000..f7a97479c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/028.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pawmot" + }, + + illustrator: "Saboteri", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Lightning"], + + evolveFrom: { + en: "Pawmo" + }, + + description: { + en: "This Pokémon normally is slow to react, but once it enters battle, it will strike down its enemies with lightning-fast movements." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Counterattack" + }, + + effect: { + en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent's Pokémon, do 20 damage to the Attacking Pokémon." + } + }], + + attacks: [{ + name: { + en: "Electric Punch" + }, + + damage: 70, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/029.ts b/data/Pokémon TCG Pocket/Shining Revelry/029.ts new file mode 100644 index 000000000..9c37c0ed4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/029.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Abra" + }, + + illustrator: "Mousho", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "This Pokémon uses its psychic powers while it sleeps. The contents of Abra's dreams affect the powers that the Pokémon wields." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Psyshot" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/030.ts b/data/Pokémon TCG Pocket/Shining Revelry/030.ts new file mode 100644 index 000000000..06ccc60ab --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/030.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Kadabra" + }, + + illustrator: "Mousho", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + evolveFrom: { + en: "Abra" + }, + + description: { + en: "Using its psychic power, Kadabra levitates as it sleeps. It uses its springy tail as a pillow." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Psyshot" + }, + + damage: 30, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/031.ts b/data/Pokémon TCG Pocket/Shining Revelry/031.ts new file mode 100644 index 000000000..ef55c44da --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/031.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Alakazam" + }, + + illustrator: "Mousho", + rarity: "Three Diamond", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + + evolveFrom: { + en: "Kadabra" + }, + + description: { + en: "It has an incredibly high level of intelligence. Some say that Alakazam remembers everything that ever happens to it, from birth till death." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Psychic Suppression" + }, + + damage: 80, + cost: ["Psychic", "Psychic"], + + effect: { + en: "This attack also does 20 damage to each of your opponent's Benched Pokémon that has any Energy attached." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/032.ts b/data/Pokémon TCG Pocket/Shining Revelry/032.ts new file mode 100644 index 000000000..5871146eb --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/032.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Mr. Mime" + }, + + illustrator: "Atsuko Nishida", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + en: "The broadness of its hands may be no coincidence—many scientists believe its palms became enlarged specifically for pantomiming." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Juggling" + }, + + damage: 20, + cost: ["Psychic", "Colorless"], + + effect: { + en: "Flip 4 coins. This attack does 20 damage for each heads." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/033.ts b/data/Pokémon TCG Pocket/Shining Revelry/033.ts new file mode 100644 index 000000000..5a3da6c75 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/033.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Drifloon" + }, + + illustrator: "kodama", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "It is whispered that any child who mistakes Drifloon for a balloon and holds on to it could wind up missing." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ram" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/034.ts b/data/Pokémon TCG Pocket/Shining Revelry/034.ts new file mode 100644 index 000000000..0d0dd0871 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/034.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Drifblim" + }, + + illustrator: "Hajime Kusajima", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + evolveFrom: { + en: "Drifloon" + }, + + description: { + en: "It can generate and release gas within its body. That's how it can control the altitude of its drift." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Gust" + }, + + damage: 40, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/035.ts b/data/Pokémon TCG Pocket/Shining Revelry/035.ts new file mode 100644 index 000000000..0b5fc04f7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/035.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Giratina ex" + }, + + illustrator: "PLANETA Yamashita", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Broken-Space Bellow" + }, + + effect: { + en: "Once during your turn, you may take a Energy from your Energy Zone and attach it to this Pokémon. If you use this Ability, your turn ends." + } + }], + + attacks: [{ + name: { + en: "Chaotic Impact" + }, + + damage: 130, + cost: ["Psychic", "Psychic", "Psychic", "Colorless"], + + effect: { + en: "This Pokémon also does 20 damage to itself." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/036.ts b/data/Pokémon TCG Pocket/Shining Revelry/036.ts new file mode 100644 index 000000000..a4030c978 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/036.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Gimmighoul" + }, + + illustrator: "HYOGONOSUKE", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "This Pokémon was born inside a treasure chest about 1,500 years ago. It sucks the life-force out of scoundrels who try to steal the treasure." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Chest-ouflage" + }, + + cost: ["Colorless"], + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/037.ts b/data/Pokémon TCG Pocket/Shining Revelry/037.ts new file mode 100644 index 000000000..34b7c0fd7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/037.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Machop" + }, + + illustrator: "Mina Nakai", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "Its whole body is composed of muscles. Even though it's the size of a human child, it can hurl 100 grown-ups." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Low Kick" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/038.ts b/data/Pokémon TCG Pocket/Shining Revelry/038.ts new file mode 100644 index 000000000..e6e49cae3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/038.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Machoke" + }, + + illustrator: "Kouki Saitou", + rarity: "One Diamond", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + evolveFrom: { + en: "Machop" + }, + + description: { + en: "Its muscular body is so powerful, it must wear a power-save belt to be able to regulate its motions." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Pummel" + }, + + damage: 30, + cost: ["Fighting", "Fighting"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/039.ts b/data/Pokémon TCG Pocket/Shining Revelry/039.ts new file mode 100644 index 000000000..71fa798c7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/039.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Machamp" + }, + + illustrator: "Kouki Saitou", + rarity: "Three Diamond", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + evolveFrom: { + en: "Machoke" + }, + + description: { + en: "It quickly swings its four arms to rock its opponents with ceaseless punches and chops from all angles." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Power Press" + }, + + damage: 70, + cost: ["Fighting", "Fighting"], + + effect: { + en: "If this Pokémon has at least 2 extra Energy attached, this attack does 50 more damage." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/040.ts b/data/Pokémon TCG Pocket/Shining Revelry/040.ts new file mode 100644 index 000000000..9125ff6c7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/040.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Hitmonlee" + }, + + illustrator: "Tomokazu Komiya", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "This amazing Pokémon has an awesome sense of balance. It can kick in succession from any position." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Kick" + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/041.ts b/data/Pokémon TCG Pocket/Shining Revelry/041.ts new file mode 100644 index 000000000..e342bf3ae --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/041.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Hitmonchan" + }, + + illustrator: "Tomokazu Komiya", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + + description: { + en: "Its punches slice the air. They are launched at such high speed, even a slight graze could cause a burn." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Magnum Punch" + }, + + damage: 90, + cost: ["Fighting", "Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/042.ts b/data/Pokémon TCG Pocket/Shining Revelry/042.ts new file mode 100644 index 000000000..a8b3e22f7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/042.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Riolu" + }, + + illustrator: "You Iribi", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "They communicate with one another using their auras. They are able to run all through the night." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 40, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/043.ts b/data/Pokémon TCG Pocket/Shining Revelry/043.ts new file mode 100644 index 000000000..697f72af1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/043.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lucario ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + evolveFrom: { + en: "Riolu" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Aura Sphere" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Fighting"], + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/044.ts b/data/Pokémon TCG Pocket/Shining Revelry/044.ts new file mode 100644 index 000000000..bc4f9de66 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/044.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Flamigo" + }, + + illustrator: "REND", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "This Pokémon apparently ties the base of its neck into a knot so that energy stored in its belly does not escape from its beak." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Double Kick" + }, + + damage: 50, + cost: ["Fighting", "Fighting"], + + effect: { + en: "Flip 2 coins. This attack does 50 damage for each heads." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/045.ts b/data/Pokémon TCG Pocket/Shining Revelry/045.ts new file mode 100644 index 000000000..8950e9a26 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/045.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Ekans" + }, + + illustrator: "Midori Harada", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + en: "By dislocating its jaw, it can swallow prey larger than itself. After a meal, it curls up and rests." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ram" + }, + + damage: 30, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/046.ts b/data/Pokémon TCG Pocket/Shining Revelry/046.ts new file mode 100644 index 000000000..a4a3b958e --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/046.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Arbok" + }, + + illustrator: "Midori Harada", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + + evolveFrom: { + en: "Ekans" + }, + + description: { + en: "After stunning its opponents with the pattern on its stomach, it quickly wraps them up in its body and waits for them to stop moving." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Venomous Fang" + }, + + damage: 70, + cost: ["Darkness", "Darkness", "Colorless"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/047.ts b/data/Pokémon TCG Pocket/Shining Revelry/047.ts new file mode 100644 index 000000000..1fc1f34a1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/047.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Wooper" + }, + + illustrator: "Mori Yuu", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Darkness"], + + description: { + en: "After losing a territorial struggle, Wooper began living on land. The Pokémon changed over time, developing a poisonous film to protect its body." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Poison Jab" + }, + + damage: 10, + cost: ["Darkness"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/048.ts b/data/Pokémon TCG Pocket/Shining Revelry/048.ts new file mode 100644 index 000000000..a74b71999 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/048.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Clodsire ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Four Diamond", + category: "Pokemon", + hp: 160, + types: ["Darkness"], + + evolveFrom: { + en: "Paldean Wooper" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Venoshock" + }, + + damage: 60, + cost: ["Darkness", "Darkness"], + + effect: { + en: "If your opponent's Active Pokémon is Poisoned, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/049.ts b/data/Pokémon TCG Pocket/Shining Revelry/049.ts new file mode 100644 index 000000000..4c30d26d8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/049.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Spiritomb" + }, + + illustrator: "Shin Nagasawa", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + + description: { + en: "Its constant mischief and misdeeds resulted in it being bound to an Odd Keystone by a mysterious spell." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Confuse Ray" + }, + + damage: 20, + cost: ["Darkness"], + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Confused." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/050.ts b/data/Pokémon TCG Pocket/Shining Revelry/050.ts new file mode 100644 index 000000000..515d94a77 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/050.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Shroodle" + }, + + illustrator: "Krgc", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "Though usually a mellow Pokémon, it will sink its sharp, poison-soaked front teeth into any that anger it, causing paralysis in the object of its ire." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Gnaw" + }, + + damage: 20, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/051.ts b/data/Pokémon TCG Pocket/Shining Revelry/051.ts new file mode 100644 index 000000000..c145eff5f --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/051.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Grafaiai" + }, + + illustrator: "Krgc", + rarity: "Three Diamond", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + + evolveFrom: { + en: "Shroodle" + }, + + description: { + en: "The color of the poisonous saliva depends on what the Pokémon eats. Grafaiai covers its fingers in its saliva and draws patterns on trees in forests." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Poison Coating" + }, + + effect: { + en: "Once during your turn, you may flip a coin. If heads, your opponent's Active Pokémon is now Poisoned." + } + }], + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 40, + cost: ["Darkness", "Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/052.ts b/data/Pokémon TCG Pocket/Shining Revelry/052.ts new file mode 100644 index 000000000..613a82c10 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/052.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tinkatink" + }, + + illustrator: "miki kudo", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Metal"], + + description: { + en: "It swings its handmade hammer around to protect itself, but the hammer is often stolen by Pokémon that eat metal." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Corkscrew Punch" + }, + + damage: 20, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/053.ts b/data/Pokémon TCG Pocket/Shining Revelry/053.ts new file mode 100644 index 000000000..79f1b2fc4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/053.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tinkatuff" + }, + + illustrator: "miki kudo", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Metal"], + + evolveFrom: { + en: "Tinkatink" + }, + + description: { + en: "This Pokémon will attack groups of Pawniard and Bisharp, gathering metal from them in order to create a large and sturdy hammer." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Tenacious Hammer" + }, + + damage: 30, + cost: ["Metal", "Metal"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/054.ts b/data/Pokémon TCG Pocket/Shining Revelry/054.ts new file mode 100644 index 000000000..a0ec41da6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/054.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tinkaton ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Four Diamond", + category: "Pokemon", + hp: 170, + types: ["Metal"], + + evolveFrom: { + en: "Tinkatuff" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Terrific Thumping" + }, + + damage: 80, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 80 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/055.ts b/data/Pokémon TCG Pocket/Shining Revelry/055.ts new file mode 100644 index 000000000..06eda177f --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/055.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Varoom" + }, + + illustrator: "Souichirou Gunjima", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + en: "It is said that this Pokémon was born when an unknown poison Pokémon entered and inspirited an engine left at a scrap-processing factory." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Headbutt" + }, + + damage: 10, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/056.ts b/data/Pokémon TCG Pocket/Shining Revelry/056.ts new file mode 100644 index 000000000..5f1323434 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/056.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Revavroom" + }, + + illustrator: "Souichirou Gunjima", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + evolveFrom: { + en: "Varoom" + }, + + description: { + en: "It creates a gas out of poison and minerals from rocks. It then detonates the gas in its cylinders— now numbering eight—to generate energy." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Spinning Drift" + }, + + damage: 70, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/057.ts b/data/Pokémon TCG Pocket/Shining Revelry/057.ts new file mode 100644 index 000000000..29c62367a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/057.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Gholdengo" + }, + + illustrator: "HYOGONOSUKE", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Metal"], + + evolveFrom: { + en: "Gimmighoul" + }, + + description: { + en: "Its body seems to be made up of 1,000 coins. This Pokémon gets along well with others and is quick to make friends with anybody." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Scintillating Surfing" + }, + + damage: 50, + cost: ["Metal", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin for each Energy attached to this Pokémon. This attack does 50 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/058.ts b/data/Pokémon TCG Pocket/Shining Revelry/058.ts new file mode 100644 index 000000000..9a9410886 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/058.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Rattata" + }, + + illustrator: "Eri Yamaki", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + en: "Its incisors grow continuously throughout its life. If its incisors get too long, this Pokémon becomes unable to eat, and it starves to death." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/059.ts b/data/Pokémon TCG Pocket/Shining Revelry/059.ts new file mode 100644 index 000000000..aeecc2b4c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/059.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Raticate" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + evolveFrom: { + en: "Rattata" + }, + + description: { + en: "People say that it fled from its enemies by using its small webbed hind feet to swim from island to island in Alola." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/060.ts b/data/Pokémon TCG Pocket/Shining Revelry/060.ts new file mode 100644 index 000000000..4d623a5ba --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/060.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Jigglypuff" + }, + + illustrator: "Kanako Eo", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "It hugely inflates its stomach and sings a mysterious melody. If you hear this melody, you'll become sleepy right away." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rollout" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/061.ts b/data/Pokémon TCG Pocket/Shining Revelry/061.ts new file mode 100644 index 000000000..5ba648ef8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/061.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wigglytuff" + }, + + illustrator: "miki kudo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + evolveFrom: { + en: "Jigglypuff" + }, + + description: { + en: "It has a very fine fur. Take care not to make it angry, or it may inflate steadily and hit with a body slam." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Comforting Song" + }, + + effect: { + en: "Once during your turn, you may heal 20 damage from your Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Gentle Slap" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/062.ts b/data/Pokémon TCG Pocket/Shining Revelry/062.ts new file mode 100644 index 000000000..b01831799 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/062.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lickitung" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + en: "If this Pokémon's sticky saliva gets on you and you don't clean it off, an intense itch will set in. The itch won't go away, either." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rollout" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/063.ts b/data/Pokémon TCG Pocket/Shining Revelry/063.ts new file mode 100644 index 000000000..a10cb6456 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/063.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lickilicky" + }, + + illustrator: "Suwama Chiaki", + rarity: "One Diamond", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + evolveFrom: { + en: "Lickitung" + }, + + description: { + en: "Lickilicky's strange tongue can stretch to many times the length of its body. No one has figured out how Lickilicky's tongue can stretch so far." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Rollout" + }, + + damage: 70, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/064.ts b/data/Pokémon TCG Pocket/Shining Revelry/064.ts new file mode 100644 index 000000000..16025b58a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/064.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Bidoof" + }, + + illustrator: "Sekio", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + en: "With nerves of steel, nothing can perturb it. It is more agile and active than it appears." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Headbutt" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/065.ts b/data/Pokémon TCG Pocket/Shining Revelry/065.ts new file mode 100644 index 000000000..2b39ec5fc --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/065.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Bibarel ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + + evolveFrom: { + en: "Bidoof" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Carefree Press" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "Heal 30 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/066.ts b/data/Pokémon TCG Pocket/Shining Revelry/066.ts new file mode 100644 index 000000000..1f61faa1e --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/066.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Buneary" + }, + + illustrator: "Kagemaru Himeno", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + en: "If both of Buneary's ears are rolled up, something is wrong with its body or mind. It's a sure sign the Pokémon is in need of care." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Pound" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/067.ts b/data/Pokémon TCG Pocket/Shining Revelry/067.ts new file mode 100644 index 000000000..ae539fc36 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/067.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lopunny" + }, + + illustrator: "Minahamu", + rarity: "One Diamond", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + evolveFrom: { + en: "Buneary" + }, + + description: { + en: "Lopunny is constantly monitoring its surroundings. If danger approaches, this Pokémon responds with superdestructive kicks." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Hopping Shot" + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/068.ts b/data/Pokémon TCG Pocket/Shining Revelry/068.ts new file mode 100644 index 000000000..bd03244a0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/068.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Cyclizar" + }, + + illustrator: "HAGIYA Kaoru", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + en: "Apparently Cyclizar has been allowing people to ride on its back since ancient times. Depictions of this have been found in 10,000-year-old murals." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Overacceleration" + }, + + damage: 20, + cost: ["Colorless"], + + effect: { + en: "During your next turn, this Pokémon's Overacceleration attack does +20 damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/069.ts b/data/Pokémon TCG Pocket/Shining Revelry/069.ts new file mode 100644 index 000000000..158e2992b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/069.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Iono" + }, + + illustrator: "saino misaki", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Each player shuffles the cards in their hand into their deck, then draws that many cards." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/070.ts b/data/Pokémon TCG Pocket/Shining Revelry/070.ts new file mode 100644 index 000000000..022c5dc76 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/070.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pokémon Center Lady" + }, + + illustrator: "Susumu Maeya", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Heal 30 damage from 1 of your Pokémon, and it recovers from all Special Conditions." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/071.ts b/data/Pokémon TCG Pocket/Shining Revelry/071.ts new file mode 100644 index 000000000..8b7bdd96c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/071.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Red" + }, + + illustrator: "Teeziro", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do +20 damage to your opponent's Active Pokémon ex." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/072.ts b/data/Pokémon TCG Pocket/Shining Revelry/072.ts new file mode 100644 index 000000000..87a53fac9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/072.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Team Rocket Grunt" + }, + + illustrator: "kantaro", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Flip a coin until you get tails. For each heads, discard a random Energy from your opponent's Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/073.ts b/data/Pokémon TCG Pocket/Shining Revelry/073.ts new file mode 100644 index 000000000..6b8a866e5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/073.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Meowscarada" + }, + + illustrator: "danciao", + rarity: "One Star", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Floragato" + }, + + description: { + en: "This Pokémon uses the reflective fur lining its cape to camouflage the stem of its flower, creating the illusion that the flower is floating." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Fighting Claws" + }, + + damage: 60, + cost: ["Grass", "Grass"], + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 70 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/074.ts b/data/Pokémon TCG Pocket/Shining Revelry/074.ts new file mode 100644 index 000000000..301c09d5b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/074.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Buizel" + }, + + illustrator: "Shimaris Yukichi", + rarity: "One Star", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "It inflates its flotation sac, keeping its face above water in order to watch for prey movement." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 10, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/075.ts b/data/Pokémon TCG Pocket/Shining Revelry/075.ts new file mode 100644 index 000000000..af0f1364e --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/075.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tatsugiri" + }, + + illustrator: "cochi8i", + rarity: "One Star", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "This is a small dragon Pokémon. It lives inside the mouth of Dondozo to protect itself from enemies on the outside." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Retreat Directive" + }, + + effect: { + en: "Your Active Dondozo has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Rain Splash" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/076.ts b/data/Pokémon TCG Pocket/Shining Revelry/076.ts new file mode 100644 index 000000000..8e0d5c2f5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/076.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Grafaiai" + }, + + illustrator: "Teeziro", + rarity: "One Star", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + + evolveFrom: { + en: "Shroodle" + }, + + description: { + en: "The color of the poisonous saliva depends on what the Pokémon eats. Grafaiai covers its fingers in its saliva and draws patterns on trees in forests." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Poison Coating" + }, + + effect: { + en: "Once during your turn, you may flip a coin. If heads, your opponent's Active Pokémon is now Poisoned." + } + }], + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 40, + cost: ["Darkness", "Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/077.ts b/data/Pokémon TCG Pocket/Shining Revelry/077.ts new file mode 100644 index 000000000..f3a6fe778 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/077.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Gholdengo" + }, + + illustrator: "Jerky", + rarity: "One Star", + category: "Pokemon", + hp: 120, + types: ["Metal"], + + evolveFrom: { + en: "Gimmighoul" + }, + + description: { + en: "Its body seems to be made up of 1,000 coins. This Pokémon gets along well with others and is quick to make friends with anybody." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Scintillating Surfing" + }, + + damage: 50, + cost: ["Metal", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin for each Energy attached to this Pokémon. This attack does 50 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/078.ts b/data/Pokémon TCG Pocket/Shining Revelry/078.ts new file mode 100644 index 000000000..572273a98 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/078.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wigglytuff" + }, + + illustrator: "5ban Graphics", + rarity: "One Star", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + evolveFrom: { + en: "Jigglypuff" + }, + + description: { + en: "It has a very fine fur. Take care not to make it angry, or it may inflate steadily and hit with a body slam." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Comforting Song" + }, + + effect: { + en: "Once during your turn, you may heal 20 damage from your Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Gentle Slap" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/079.ts b/data/Pokémon TCG Pocket/Shining Revelry/079.ts new file mode 100644 index 000000000..99cae9686 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/079.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Beedrill ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Two Star", + category: "Pokemon", + hp: 170, + types: ["Grass"], + + evolveFrom: { + en: "Kakuna" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Crushing Spear" + }, + + damage: 80, + cost: ["Grass", "Grass"], + + effect: { + en: "Discard a random Energy from your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/080.ts b/data/Pokémon TCG Pocket/Shining Revelry/080.ts new file mode 100644 index 000000000..f96fd11c0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/080.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Two Star", + category: "Pokemon", + hp: 180, + types: ["Fire"], + + evolveFrom: { + en: "Charmeleon" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Stoke" + }, + + cost: ["Fire"], + + effect: { + en: "Take 3 Energy from your Energy Zone and attach it to this Pokémon." + } + }, { + name: { + en: "Steam Artillery" + }, + + damage: 150, + cost: ["Fire", "Fire", "Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/081.ts b/data/Pokémon TCG Pocket/Shining Revelry/081.ts new file mode 100644 index 000000000..d24923584 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/081.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wugtrio ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Water"], + + evolveFrom: { + en: "Wiglett" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Pop Out Throughout" + }, + + cost: ["Water", "Water", "Water"], + + effect: { + en: "1 of your opponent's Pokémon is chosen at random 3 times. For each time a Pokémon was chosen, do 50 damage to it." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/082.ts b/data/Pokémon TCG Pocket/Shining Revelry/082.ts new file mode 100644 index 000000000..d07c3436c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/082.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Two Star", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Thunderbolt" + }, + + damage: 150, + cost: ["Lightning", "Lightning", "Lightning"], + + effect: { + en: "Discard all Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/083.ts b/data/Pokémon TCG Pocket/Shining Revelry/083.ts new file mode 100644 index 000000000..17a00eba4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/083.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Giratina ex" + }, + + illustrator: "PLANETA Yamashita", + rarity: "Two Star", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Broken-Space Bellow" + }, + + effect: { + en: "Once during your turn, you may take a Energy from your Energy Zone and attach it to this Pokémon. If you use this Ability, your turn ends." + } + }], + + attacks: [{ + name: { + en: "Chaotic Impact" + }, + + damage: 130, + cost: ["Psychic", "Psychic", "Psychic", "Colorless"], + + effect: { + en: "This Pokémon also does 20 damage to itself." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/084.ts b/data/Pokémon TCG Pocket/Shining Revelry/084.ts new file mode 100644 index 000000000..23bd75cd6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/084.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lucario ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + evolveFrom: { + en: "Riolu" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Aura Sphere" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Fighting"], + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/085.ts b/data/Pokémon TCG Pocket/Shining Revelry/085.ts new file mode 100644 index 000000000..36462cede --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/085.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Clodsire ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Two Star", + category: "Pokemon", + hp: 160, + types: ["Darkness"], + + evolveFrom: { + en: "Paldean Wooper" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Venoshock" + }, + + damage: 60, + cost: ["Darkness", "Darkness"], + + effect: { + en: "If your opponent's Active Pokémon is Poisoned, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/086.ts b/data/Pokémon TCG Pocket/Shining Revelry/086.ts new file mode 100644 index 000000000..a4671bc0d --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/086.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tinkaton ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Two Star", + category: "Pokemon", + hp: 170, + types: ["Metal"], + + evolveFrom: { + en: "Tinkatuff" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Terrific Thumping" + }, + + damage: 80, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 80 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/087.ts b/data/Pokémon TCG Pocket/Shining Revelry/087.ts new file mode 100644 index 000000000..83cd03b0a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/087.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Bibarel ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + + evolveFrom: { + en: "Bidoof" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Carefree Press" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "Heal 30 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/088.ts b/data/Pokémon TCG Pocket/Shining Revelry/088.ts new file mode 100644 index 000000000..4931664d1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/088.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Iono" + }, + + illustrator: "saino misaki", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Each player shuffles the cards in their hand into their deck, then draws that many cards." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/089.ts b/data/Pokémon TCG Pocket/Shining Revelry/089.ts new file mode 100644 index 000000000..9bacae14b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/089.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pokémon Center Lady" + }, + + illustrator: "Susumu Maeya", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Heal 30 damage from 1 of your Pokémon, and it recovers from all Special Conditions." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/090.ts b/data/Pokémon TCG Pocket/Shining Revelry/090.ts new file mode 100644 index 000000000..527d7ac4a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/090.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Red" + }, + + illustrator: "Teeziro", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do +20 damage to your opponent's Active Pokémon ex." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/091.ts b/data/Pokémon TCG Pocket/Shining Revelry/091.ts new file mode 100644 index 000000000..af9a6d150 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/091.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Team Rocket Grunt" + }, + + illustrator: "kantaro", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Flip a coin until you get tails. For each heads, discard a random Energy from your opponent's Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/092.ts b/data/Pokémon TCG Pocket/Shining Revelry/092.ts new file mode 100644 index 000000000..d2acfdcbf --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/092.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "You Iribi", + rarity: "Two Star", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Thunderbolt" + }, + + damage: 150, + cost: ["Lightning", "Lightning", "Lightning"], + + effect: { + en: "Discard all Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/093.ts b/data/Pokémon TCG Pocket/Shining Revelry/093.ts new file mode 100644 index 000000000..6893de16b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/093.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Clodsire ex" + }, + + illustrator: "REND", + rarity: "Two Star", + category: "Pokemon", + hp: 160, + types: ["Darkness"], + + evolveFrom: { + en: "Paldean Wooper" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Venoshock" + }, + + damage: 60, + cost: ["Darkness", "Darkness"], + + effect: { + en: "If your opponent's Active Pokémon is Poisoned, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/094.ts b/data/Pokémon TCG Pocket/Shining Revelry/094.ts new file mode 100644 index 000000000..494149b87 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/094.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tinkaton ex" + }, + + illustrator: "kurumitsu", + rarity: "Two Star", + category: "Pokemon", + hp: 170, + types: ["Metal"], + + evolveFrom: { + en: "Tinkatuff" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Terrific Thumping" + }, + + damage: 80, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 80 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/095.ts b/data/Pokémon TCG Pocket/Shining Revelry/095.ts new file mode 100644 index 000000000..33c8af74d --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/095.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Bibarel ex" + }, + + illustrator: "USGMEN", + rarity: "Two Star", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + + evolveFrom: { + en: "Bidoof" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Carefree Press" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "Heal 30 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/096.ts b/data/Pokémon TCG Pocket/Shining Revelry/096.ts new file mode 100644 index 000000000..1f9d82367 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/096.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Giratina ex" + }, + + illustrator: "Shinji Kanda", + rarity: "Three Star", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Broken-Space Bellow" + }, + + effect: { + en: "Once during your turn, you may take a Energy from your Energy Zone and attach it to this Pokémon. If you use this Ability, your turn ends." + } + }], + + attacks: [{ + name: { + en: "Chaotic Impact" + }, + + damage: 130, + cost: ["Psychic", "Psychic", "Psychic", "Colorless"], + + effect: { + en: "This Pokémon also does 20 damage to itself." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/097.ts b/data/Pokémon TCG Pocket/Shining Revelry/097.ts new file mode 100644 index 000000000..82950d1b0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/097.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Weedle" + }, + + illustrator: "Sanosuke Sakuma", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Often found in forests and grasslands. It has a sharp, toxic barb of around two inches on top of its head." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Multiply" + }, + + cost: ["Grass"], + + effect: { + en: "Put 1 random Weedle from your deck onto your Bench." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/098.ts b/data/Pokémon TCG Pocket/Shining Revelry/098.ts new file mode 100644 index 000000000..d5558403b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/098.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Kakuna" + }, + + illustrator: "Sanosuke Sakuma", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Weedle" + }, + + description: { + en: "Almost incapable of moving, this Pokémon can only harden its shell to protect itself when it is in danger." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "String Shot" + }, + + damage: 20, + cost: ["Grass"], + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/099.ts b/data/Pokémon TCG Pocket/Shining Revelry/099.ts new file mode 100644 index 000000000..ad40c7efd --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/099.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charmander" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Combustion" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/100.ts b/data/Pokémon TCG Pocket/Shining Revelry/100.ts new file mode 100644 index 000000000..1f53dd540 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/100.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charmeleon" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + evolveFrom: { + en: "Charmander" + }, + + description: { + en: "It has a barbaric nature. In battle, it whips its fiery tail around and slashes away with sharp claws." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Combustion" + }, + + damage: 40, + cost: ["Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/101.ts b/data/Pokémon TCG Pocket/Shining Revelry/101.ts new file mode 100644 index 000000000..5be19cfca --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/101.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wiglett" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "This Pokémon can pick up the scent of a Veluza just over 65 feet away and will hide itself in the sand." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Spring Out" + }, + + cost: ["Water"], + + effect: { + en: "1 of your opponent's Pokémon is chosen at random. Do 30 damage to it." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/102.ts b/data/Pokémon TCG Pocket/Shining Revelry/102.ts new file mode 100644 index 000000000..04285c20e --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/102.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Dondozo" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 120, + types: ["Water"], + + description: { + en: "This Pokémon is a glutton, but it's bad at getting food. It teams up with a Tatsugiri to catch prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ocean Cyclone" + }, + + damage: 80, + cost: ["Water", "Water", "Colorless", "Colorless"], + + effect: { + en: "This attack also does 10 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/103.ts b/data/Pokémon TCG Pocket/Shining Revelry/103.ts new file mode 100644 index 000000000..48b10540c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/103.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pachirisu" + }, + + illustrator: "Tomowaka", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "It's one of the kinds of Pokémon with electric cheek pouches. It shoots charges from its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Plasma" + }, + + damage: 10, + cost: ["Lightning"], + + effect: { + en: "Take a Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/104.ts b/data/Pokémon TCG Pocket/Shining Revelry/104.ts new file mode 100644 index 000000000..22f51a458 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/104.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Riolu" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "They communicate with one another using their auras. They are able to run all through the night." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 40, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/105.ts b/data/Pokémon TCG Pocket/Shining Revelry/105.ts new file mode 100644 index 000000000..f3afe207b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/105.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Varoom" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + en: "It is said that this Pokémon was born when an unknown poison Pokémon entered and inspirited an engine left at a scrap-processing factory." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Headbutt" + }, + + damage: 10, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/106.ts b/data/Pokémon TCG Pocket/Shining Revelry/106.ts new file mode 100644 index 000000000..111e02a92 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/106.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Revavroom" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + evolveFrom: { + en: "Varoom" + }, + + description: { + en: "It creates a gas out of poison and minerals from rocks. It then detonates the gas in its cylinders— now numbering eight—to generate energy." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Spinning Drift" + }, + + damage: 70, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/107.ts b/data/Pokémon TCG Pocket/Shining Revelry/107.ts new file mode 100644 index 000000000..a3b018d0e --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/107.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Beedrill ex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 170, + types: ["Grass"], + + evolveFrom: { + en: "Kakuna" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Crushing Spear" + }, + + damage: 80, + cost: ["Grass", "Grass"], + + effect: { + en: "Discard a random Energy from your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "Two Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/108.ts b/data/Pokémon TCG Pocket/Shining Revelry/108.ts new file mode 100644 index 000000000..1bb499608 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/108.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 180, + types: ["Fire"], + + evolveFrom: { + en: "Charmeleon" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Stoke" + }, + + cost: ["Fire"], + + effect: { + en: "Take 3 Energy from your Energy Zone and attach it to this Pokémon." + } + }, { + name: { + en: "Steam Artillery" + }, + + damage: 150, + cost: ["Fire", "Fire", "Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3, + rarity: "Two Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/109.ts b/data/Pokémon TCG Pocket/Shining Revelry/109.ts new file mode 100644 index 000000000..11812ba74 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/109.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wugtrio ex" + }, + + illustrator: "PLANETA Tsuji", + category: "Pokemon", + hp: 140, + types: ["Water"], + + evolveFrom: { + en: "Wiglett" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Pop Out Throughout" + }, + + cost: ["Water", "Water", "Water"], + + effect: { + en: "1 of your opponent's Pokémon is chosen at random 3 times. For each time a Pokémon was chosen, do 50 damage to it." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1, + rarity: "Two Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/110.ts b/data/Pokémon TCG Pocket/Shining Revelry/110.ts new file mode 100644 index 000000000..731de3e64 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/110.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lucario ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + evolveFrom: { + en: "Riolu" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Aura Sphere" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Fighting"], + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2, + rarity: "Two Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/111.ts b/data/Pokémon TCG Pocket/Shining Revelry/111.ts new file mode 100644 index 000000000..aae9ae3e4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/111.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Poké Ball" + }, + + illustrator: "Toyste Beach", + rarity: "Crown", + category: "Trainer", + + effect: { + en: "Put a random Basic Pokémon from your deck into your hand." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown.ts new file mode 100644 index 000000000..d5c407c17 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown.ts @@ -0,0 +1,25 @@ +import { Set } from '../../interfaces' +import serie from '../Pokémon TCG Pocket' + +const set: Set = { + id: "A2", + + name: { + // de: "Unschlagbare Gene", + en: "Space-Time Smackdown", + // es: "Genes Formidables", + // fr: "Puissance Génétique", + // it: "Geni Supremi", + // pt: "Dominação Genética" + }, + + serie: serie, + + cardCount: { + official: 140 + }, + + releaseDate: "2025-01-30" +} + +export default set diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/001.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/001.ts new file mode 100644 index 000000000..ff59258e9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/001.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Oddish" + }, + + illustrator: "Asako Ito", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "If exposed to moonlight, it starts to move. It roams far and wide at night to scatter its seeds." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Blot" + }, + + damage: 10, + cost: ["Grass"], + + effect: { + en: "Heal 10 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/002.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/002.ts new file mode 100644 index 000000000..c6b9d12c2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/002.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Gloom" + }, + + illustrator: "Shibuzoh.", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Oddish" + }, + + description: { + en: "Its pistils exude an incredibly foul odor. The horrid stench can cause fainting at a distance of 1.25 miles." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Razor Leaf" + }, + + damage: 30, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/003.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/003.ts new file mode 100644 index 000000000..a86b813c8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/003.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Bellossom" + }, + + illustrator: "Naoyo Kimura", + rarity: "Two Diamond", + category: "Pokemon", + hp: 130, + types: ["Grass"], + + evolveFrom: { + en: "Gloom" + }, + + description: { + en: "Plentiful in the tropics. When it dances, its petals rub together and make a pleasant ringing sound." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Leaf Step" + }, + + damage: 80, + cost: ["Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/004.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/004.ts new file mode 100644 index 000000000..0120b2319 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/004.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Tangela" + }, + + illustrator: "Narumi Sato", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + en: "Hidden beneath a tangle of vines that grows nonstop even if the vines are torn off, this Pokémon's true appearance remains a mystery." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Vine Whip" + }, + + damage: 30, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/005.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/005.ts new file mode 100644 index 000000000..829962871 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/005.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Tangrowth" + }, + + illustrator: "kodama", + rarity: "Two Diamond", + category: "Pokemon", + hp: 130, + types: ["Grass"], + + evolveFrom: { + en: "Tangela" + }, + + description: { + en: "Tangrowth has two arms that it can extend as it pleases. Recent research has shown that these arms are, in fact, bundles of vines." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Mega Drain" + }, + + damage: 90, + cost: ["Grass", "Grass", "Grass", "Colorless"], + + effect: { + en: "Heal 30 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/006.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/006.ts new file mode 100644 index 000000000..62fccd112 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/006.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Yanma" + }, + + illustrator: "Eri Yamaki", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Its eyes can see 360 degrees without moving its head. It won't miss prey—even those behind it." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flap" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/007.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/007.ts new file mode 100644 index 000000000..8d0186c9c --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/007.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Yanmega ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Yanma" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Air Slash" + }, + + damage: 120, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Discard a random Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/008.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/008.ts new file mode 100644 index 000000000..413a11066 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/008.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Roselia" + }, + + illustrator: "kirisAki", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + en: "Its flowers give off a relaxing fragrance. The stronger its aroma, the healthier the Roselia is." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Sting" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/009.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/009.ts new file mode 100644 index 000000000..952b8b563 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/009.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Roserade" + }, + + illustrator: "Masakazu Fukuda", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + evolveFrom: { + en: "Roselia" + }, + + description: { + en: "After captivating opponents with its sweet scent, it lashes them with its thorny whips." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Poisonous Whip" + }, + + damage: 50, + cost: ["Grass", "Colorless"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/010.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/010.ts new file mode 100644 index 000000000..1d171206f --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/010.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Turtwig" + }, + + illustrator: "OOYAMA", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + description: { + en: "It uses its whole body to photosynthesize when exposed to sunlight. Its shell is made from hardened soil." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 30, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/011.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/011.ts new file mode 100644 index 000000000..dac6894e3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/011.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Grotle" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + evolveFrom: { + en: "Turtwig" + }, + + description: { + en: "It lives along water in forests. In the daytime, it leaves the forest to sunbathe its treed shell." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Razor Leaf" + }, + + damage: 60, + cost: ["Grass", "Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/012.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/012.ts new file mode 100644 index 000000000..311c81a6f --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/012.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Torterra" + }, + + illustrator: "kawayoo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 160, + types: ["Grass"], + + evolveFrom: { + en: "Grotle" + }, + + description: { + en: "Ancient people imagined that beneath the ground dwelt a gigantic Torterra." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Frenzy Plant" + }, + + damage: 150, + cost: ["Grass", "Grass", "Colorless", "Colorless"], + + effect: { + en: "During your next turn, this Pokémon can't use ." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/013.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/013.ts new file mode 100644 index 000000000..94cbdf3cb --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/013.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Kricketot" + }, + + illustrator: "Shigenori Negishi", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "Its legs are short. Whenever it stumbles, its stiff antennae clack with a xylophone-like sound." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bug Bite" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/014.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/014.ts new file mode 100644 index 000000000..4e2483e7e --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/014.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Kricketune" + }, + + illustrator: "Naoyo Kimura", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + evolveFrom: { + en: "Kricketot" + }, + + description: { + en: "By allowing its cry to resonate in the hollow of its belly, it produces a captivating sound." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Entrancing Melody" + }, + + damage: 50, + cost: ["Grass", "Colorless"], + + effect: { + en: "Your opponent's Active Pokémon is now Confused." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/015.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/015.ts new file mode 100644 index 000000000..dd8b45f30 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/015.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Burmy" + }, + + illustrator: "Mugi Hamada", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "To shelter itself from cold, wintry winds, it covers itself with a cloak made of twigs and leaves." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/016.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/016.ts new file mode 100644 index 000000000..75aea0fdf --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/016.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Wormadam" + }, + + illustrator: "Kouki Saitou", + rarity: "One Diamond", + category: "Pokemon", + hp: 120, + types: ["Grass"], + + evolveFrom: { + en: "Burmy" + }, + + description: { + en: "Its appearance changes depending on where it evolved. The materials on hand become a part of its body." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Leaf Cutter" + }, + + damage: "60+", + cost: ["Grass", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/017.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/017.ts new file mode 100644 index 000000000..fa77ad29e --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/017.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Combee" + }, + + illustrator: "Yukiko Baba", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "At night, Combee sleep in a group of about a hundred, packed closely together in a lump." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Call for Family" + }, + + cost: ["Colorless"], + + effect: { + en: "Put 1 random from your deck onto your Bench." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/018.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/018.ts new file mode 100644 index 000000000..d977f5f76 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/018.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Vespiquen" + }, + + illustrator: "chibi", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + evolveFrom: { + en: "Combee" + }, + + description: { + en: "It houses its colony in cells in its body and releases various pheromones to make those grubs do its bidding." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Pierce" + }, + + damage: 70, + cost: ["Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/019.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/019.ts new file mode 100644 index 000000000..15a5045e9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/019.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Carnivine" + }, + + illustrator: "Anesaki Dynamic", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + en: "It attracts prey with its sweet-smelling saliva, then chomps down. It takes a whole day to eat prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flog" + }, + + damage: "40+", + cost: ["Grass", "Grass", "Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 50 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/020.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/020.ts new file mode 100644 index 000000000..f8a92bde8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/020.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Leafeon" + }, + + illustrator: "Kouki Saitou", + rarity: "Three Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + evolveFrom: { + en: "Eevee" + }, + + description: { + en: "When you see Leafeon asleep in a patch of sunshine, you'll know it is using photosynthesis to produce clean air." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Leafy Cyclone" + }, + + damage: 90, + cost: ["Grass", "Colorless"], + + effect: { + en: "During your next turn, this Pokémon can't attack." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/021.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/021.ts new file mode 100644 index 000000000..a264175a5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/021.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mow Rotom" + }, + + illustrator: "kawayoo", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + description: { + en: "The lawn mower is one of the household appliances that led to the development of the Rotom Dex." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Energy Cutoff" + }, + + damage: 30, + cost: ["Grass", "Colorless"], + + effect: { + en: "Flip a coin. If heads, discard a random Energy from your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/022.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/022.ts new file mode 100644 index 000000000..7e5e2b34f --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/022.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Shaymin" + }, + + illustrator: "Narumi Sato", + rarity: "Three Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "It can dissolve toxins in the air to instantly transform ruined land into a lush field of flowers." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Fragrant Flower Garden" + }, + + effect: { + en: "Once during your turn, you may heal 10 damage from each of your Pokémon." + } + }], + + attacks: [{ + name: { + en: "Flop" + }, + + damage: 30, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/023.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/023.ts new file mode 100644 index 000000000..f5bfd1cd3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/023.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Magmar" + }, + + illustrator: "Hiroki Asanuma", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + description: { + en: "Magmar dispatches its prey with fire. But it regrets this habit once it realizes that it has burned its intended prey to a charred crisp." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Stoke" + }, + + cost: ["Fire"], + + effect: { + en: "Take a Energy from your Energy Zone and attach it to this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/024.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/024.ts new file mode 100644 index 000000000..27825c421 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/024.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Magmortar" + }, + + illustrator: "KEIICHIRO ITO", + rarity: "Three Diamond", + category: "Pokemon", + hp: 130, + types: ["Fire"], + + evolveFrom: { + en: "Magmar" + }, + + description: { + en: "When Magmortar inhales deeply, the fire burning in its belly intensifies, rising in temperature to over 3,600 degrees Fahrenheit." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Bursting Inferno" + }, + + damage: 100, + cost: ["Fire", "Fire", "Fire", "Fire"], + + effect: { + en: "Your opponent's Active Pokémon is now Burned." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/025.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/025.ts new file mode 100644 index 000000000..eb5f53dd1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/025.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Slugma" + }, + + illustrator: "Naoyo Kimura", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + en: "A common sight in volcanic areas, it slowly slithers around in a constant search for warm places." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flare" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/026.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/026.ts new file mode 100644 index 000000000..a5e731fe5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/026.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Magcargo" + }, + + illustrator: "Oswaldo KATO", + rarity: "Two Diamond", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + evolveFrom: { + en: "Slugma" + }, + + description: { + en: "Its brittle shell occasionally spouts intense flames that circulate throughout its body." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Searing Flame" + }, + + damage: 30, + cost: ["Fire", "Colorless"], + + effect: { + en: "Your opponent's Active Pokémon is now Burned." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/027.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/027.ts new file mode 100644 index 000000000..2666d2fc5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/027.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Chimchar" + }, + + illustrator: "Kagemaru Himeno", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "Its fiery rear end is fueled by gas made in its belly. Even rain can't extinguish the fire." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Scratch" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/028.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/028.ts new file mode 100644 index 000000000..727fcb13b --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/028.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Monferno" + }, + + illustrator: "Masakazu Fukuda", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + evolveFrom: { + en: "Chimchar" + }, + + description: { + en: "It skillfully controls the intensity of the fire on its tail to keep its foes at an ideal distance." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Fiery Punch" + }, + + damage: 30, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/029.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/029.ts new file mode 100644 index 000000000..fc7b03ee7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/029.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Infernape ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 170, + types: ["Fire"], + + evolveFrom: { + en: "Monferno" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Flare Blitz" + }, + + damage: 140, + cost: ["Fire", "Fire"], + + effect: { + en: "Discard all Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/030.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/030.ts new file mode 100644 index 000000000..dea23b8a3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/030.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Heat Rotom" + }, + + illustrator: "Kedamahadaitai Yawarakai", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + description: { + en: "If the convection microwave oven is not working properly, then the Rotom inhabiting it will become lethargic." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Heat Breath" + }, + + damage: "30+", + cost: ["Fire", "Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/031.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/031.ts new file mode 100644 index 000000000..6429fac98 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/031.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Swinub" + }, + + illustrator: "Eri Yamaki", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "It rubs its snout on the ground to find and dig up food. It sometimes discovers hot springs." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Headbutt" + }, + + damage: 40, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/032.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/032.ts new file mode 100644 index 000000000..5cbf2359f --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/032.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Piloswine" + }, + + illustrator: "Suwama Chiaki", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Water"], + + evolveFrom: { + en: "Swinub" + }, + + description: { + en: "If it charges at an enemy, the hairs on its back stand up straight. It is very sensitive to sound." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Thick Fat" + }, + + effect: { + en: "This Pokémon takes −20 damage from attacks from or Pokémon." + } + }], + + attacks: [{ + name: { + en: "Hammer In" + }, + + damage: 60, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/033.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/033.ts new file mode 100644 index 000000000..4924f39ca --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/033.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mamoswine" + }, + + illustrator: "match", + rarity: "Three Diamond", + category: "Pokemon", + hp: 160, + types: ["Water"], + + evolveFrom: { + en: "Piloswine" + }, + + description: { + en: "This Pokémon can be spotted in wall paintings from as far back as 10,000 years ago. For a while, it was thought to have gone extinct." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Thick Fat" + }, + + effect: { + en: "This Pokémon takes −30 damage from attacks from or Pokémon." + } + }], + + attacks: [{ + name: { + en: "Frosty Flattening" + }, + + damage: 120, + cost: ["Water", "Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/034.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/034.ts new file mode 100644 index 000000000..2ee1c1fc5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/034.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Regice" + }, + + illustrator: "Tomokazu Komiya", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Water"], + + description: { + en: "With cold air that can reach temperatures as low as −328 degrees Fahrenheit, Regice instantly freezes any creature that approaches it." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Crystal Body" + }, + + effect: { + en: "Prevent all effects of attacks used by your opponent's Pokémon done to this Pokémon." + } + }], + + attacks: [{ + name: { + en: "Frost Smash" + }, + + damage: 50, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/035.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/035.ts new file mode 100644 index 000000000..5e9a35ff9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/035.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Piplup" + }, + + illustrator: "Hajime Kusajima", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "It doesn't like to be taken care of. It's difficult to bond with since it won't listen to its Trainer." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Nap" + }, + + cost: ["Colorless"], + + effect: { + en: "Heal 20 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/036.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/036.ts new file mode 100644 index 000000000..4f47fd4f8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/036.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Prinplup" + }, + + illustrator: "Mizue", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Water"], + + evolveFrom: { + en: "Piplup" + }, + + description: { + en: "It lives alone, away from others. Apparently, every one of them believes it is the most important." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Surf" + }, + + damage: 30, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/037.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/037.ts new file mode 100644 index 000000000..87e13ad82 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/037.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Empoleon" + }, + + illustrator: "Satoshi Shirai", + rarity: "Three Diamond", + category: "Pokemon", + hp: 150, + types: ["Water"], + + evolveFrom: { + en: "Prinplup" + }, + + description: { + en: "It swims as fast as a jet boat. The edges of its wings are sharp and can slice apart drifting ice." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Aqua Jet" + }, + + damage: 80, + cost: ["Water", "Water", "Colorless"], + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/038.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/038.ts new file mode 100644 index 000000000..98b47c290 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/038.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Buizel" + }, + + illustrator: "OKUBO", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "It spins its two tails like a screw to propel itself through water. The tails also slice clinging seaweed." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/039.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/039.ts new file mode 100644 index 000000000..47bf73295 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/039.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Floatzel" + }, + + illustrator: "Kanako Eo", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Water"], + + evolveFrom: { + en: "Buizel" + }, + + description: { + en: "With its flotation sac inflated, it can carry people on its back. It deflates the sac before it dives." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Jet Screw" + }, + + damage: "30+", + cost: ["Water"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/040.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/040.ts new file mode 100644 index 000000000..43a2f8394 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/040.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Shellos" + }, + + illustrator: "Teeziro", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "It used to have a shell on its back long ago. This species is closely related to Pokémon like Shellder." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Mud-Slap" + }, + + damage: 30, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/041.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/041.ts new file mode 100644 index 000000000..e355924a4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/041.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Gastrodon" + }, + + illustrator: "Aya Kusube", + rarity: "Two Diamond", + category: "Pokemon", + hp: 120, + types: ["Water"], + + evolveFrom: { + en: "Shellos" + }, + + description: { + en: "They normally inhabit rocky seashores, but in times of continuous rain, they can sometimes be found in the mountains, far from the sea." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Muddy Water" + }, + + damage: 60, + cost: ["Water", "Colorless", "Colorless"], + + effect: { + en: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/042.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/042.ts new file mode 100644 index 000000000..17f1c7f21 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/042.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Finneon" + }, + + illustrator: "Shigenori Negishi", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + en: "The line running down its side can store sunlight. It shines vividly at night." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Elegant Swim" + }, + + damage: 10, + cost: ["Water"], + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/043.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/043.ts new file mode 100644 index 000000000..4769d0014 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/043.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Lumineon" + }, + + illustrator: "rika", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Water"], + + evolveFrom: { + en: "Finneon" + }, + + description: { + en: "With its shining light, it lures its prey close. However, the light also happens to attract ferocious fish Pokémon—its natural predators." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Waterfall" + }, + + damage: 50, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/044.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/044.ts new file mode 100644 index 000000000..b5c05c376 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/044.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Snover" + }, + + illustrator: "match", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "During cold seasons, it migrates to the mountain's lower reaches. It returns to the snow-covered summit in the spring." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ice Shard" + }, + + damage: "10+", + cost: ["Water"], + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/045.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/045.ts new file mode 100644 index 000000000..e16017d34 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/045.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Abomasnow" + }, + + illustrator: "Shin Nagasawa", + rarity: "Two Diamond", + category: "Pokemon", + hp: 140, + types: ["Water"], + + evolveFrom: { + en: "Snover" + }, + + description: { + en: "It lives a quiet life on mountains that are perpetually covered in snow. It hides itself by whipping up blizzards." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Frost Breath" + }, + + damage: 120, + cost: ["Water", "Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/046.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/046.ts new file mode 100644 index 000000000..4913d1778 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/046.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Glaceon" + }, + + illustrator: "Naoyo Kimura", + rarity: "Three Diamond", + category: "Pokemon", + hp: 90, + types: ["Water"], + + evolveFrom: { + en: "Eevee" + }, + + description: { + en: "It can control its body temperature at will. This enables it to freeze the moisture in the atmosphere, creating flurries of diamond dust." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Ice Beam" + }, + + damage: 60, + cost: ["Water", "Water"], + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/047.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/047.ts new file mode 100644 index 000000000..f3bbfc759 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/047.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Wash Rotom" + }, + + illustrator: "Saboteri", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Water"], + + description: { + en: "This Rotom has entered a washing machine. It nods with satisfaction after it floods the surrounding area." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Wave Splash" + }, + + damage: 30, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/048.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/048.ts new file mode 100644 index 000000000..f9d70d694 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/048.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Frost Rotom" + }, + + illustrator: "MAHOU", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Water"], + + description: { + en: "This Rotom has entered a refrigerator. It leaps around gleefully after it uses cold air to freeze the area around it." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Blizzard" + }, + + damage: 30, + cost: ["Water", "Water"], + + effect: { + en: "This attack also does 10 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/049.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/049.ts new file mode 100644 index 000000000..57ea53723 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/049.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Palkia ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 30, + cost: ["Water"] + }, { + name: { + en: "Dimensional Storm" + }, + + damage: 150, + cost: ["Water", "Water", "Water", "Colorless"], + + effect: { + en: "Discard 3 Energy from this Pokémon. This attack also does 20 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/050.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/050.ts new file mode 100644 index 000000000..523f1eb22 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/050.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Manaphy" + }, + + illustrator: "MINAMINAMI Take", + rarity: "Two Diamond", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + en: "It is born with a wondrous power that lets it bond with any kind of Pokémon." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Oceanic Gift" + }, + + cost: ["Water"], + + effect: { + en: "Choose 2 of your Benched Pokémon. For each of those Pokémon, take a Energy from your Energy Zone and attach it to that Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/051.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/051.ts new file mode 100644 index 000000000..2deeae1b2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/051.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Magnemite" + }, + + illustrator: "MAHOU", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "The electromagnetic waves emitted by the units at the sides of its head expel antigravity, which allows it to float." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ram" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/052.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/052.ts new file mode 100644 index 000000000..9d11ab44d --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/052.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Magneton" + }, + + illustrator: "Yumi", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + + evolveFrom: { + en: "Magnemite" + }, + + description: { + en: "Three Magnemite are linked by a strong magnetic force. Earaches will occur if you get too close." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Lightning Ball" + }, + + damage: 50, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/053.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/053.ts new file mode 100644 index 000000000..346aa32d8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/053.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Magnezone" + }, + + illustrator: "Yoshinobu Saito", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Lightning"], + + evolveFrom: { + en: "Magneton" + }, + + description: { + en: "As it zooms through the sky, this Pokémon seems to be receiving signals of unknown origin while transmitting signals of unknown purpose." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Thunder Blast" + }, + + damage: 110, + cost: ["Lightning", "Colorless", "Colorless"], + + effect: { + en: "Discard a Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/054.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/054.ts new file mode 100644 index 000000000..3a146ec76 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/054.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Voltorb" + }, + + illustrator: "Midori Harada", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "It rolls to move. If the ground is uneven, a sudden jolt from hitting a bump can cause it to explode." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Big Explosion" + }, + + damage: 30, + cost: ["Lightning"], + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/055.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/055.ts new file mode 100644 index 000000000..626a95b72 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/055.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Electrode" + }, + + illustrator: "Anesaki Dynamic", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + + evolveFrom: { + en: "Voltorb" + }, + + description: { + en: "The more energy it charges up, the faster it gets. But this also makes it more likely to explode." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Rolling Attack" + }, + + damage: 50, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/056.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/056.ts new file mode 100644 index 000000000..490bb1745 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/056.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Electabuzz" + }, + + illustrator: "Shin Nagasawa", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + + description: { + en: "Many power plants keep Ground-type Pokémon around as a defense against Electabuzz that come seeking electricity." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Charge" + }, + + cost: ["Lightning"], + + effect: { + en: "Take a Energy from your Energy Zone and attach it to this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/057.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/057.ts new file mode 100644 index 000000000..0179a25e4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/057.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Electivire" + }, + + illustrator: "kawayoo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + + evolveFrom: { + en: "Electabuzz" + }, + + description: { + en: "The amount of electrical energy this Pokémon produces is proportional to the rate of its pulse. The voltage jumps while Electivire is battling." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Exciting Voltage" + }, + + damage: "40+", + cost: ["Lightning", "Lightning"], + + effect: { + en: "If this Pokémon has at least 2 extra Energy attached, this attack does 80 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/058.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/058.ts new file mode 100644 index 000000000..0a71770e8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/058.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Shinx" + }, + + illustrator: "Shibuzoh.", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "The extension and contraction of its muscles generates electricity. It glows when in trouble." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Hide" + }, + + cost: ["Lightning"], + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/059.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/059.ts new file mode 100644 index 000000000..2c8436210 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/059.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Luxio" + }, + + illustrator: "Naoki Saito", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + evolveFrom: { + en: "Shinx" + }, + + description: { + en: "Strong electricity courses through the tips of its sharp claws. A light scratch causes fainting in foes." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Electric Claws" + }, + + damage: 40, + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/060.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/060.ts new file mode 100644 index 000000000..a2a2e7ffb --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/060.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Luxray" + }, + + illustrator: "Hitoshi Ariga", + rarity: "Three Diamond", + category: "Pokemon", + hp: 130, + types: ["Lightning"], + + evolveFrom: { + en: "Luxio" + }, + + description: { + en: "It can see clearly through walls to track down its prey and seek its lost young." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Volt Bolt" + }, + + cost: ["Lightning", "Lightning", "Lightning"], + + effect: { + en: "Discard all Energy from this Pokémon. This attack does 120 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 0 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/061.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/061.ts new file mode 100644 index 000000000..11641a6a3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/061.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Pachirisu ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Four Diamond", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Sparking Gadget" + }, + + damage: "40+", + cost: ["Lightning", "Lightning"], + + effect: { + en: "If this Pokémon has a Pokémon Tool attached, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/062.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/062.ts new file mode 100644 index 000000000..07d834846 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/062.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Rotom" + }, + + illustrator: "Krgc", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "Its electricity-like body can enter some kinds of machines and take control in order to make mischief." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Assault Laser" + }, + + damage: "20+", + cost: ["Colorless"], + + effect: { + en: "If your opponent's Active Pokémon has a Pokémon Tool attached, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/063.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/063.ts new file mode 100644 index 000000000..9cb1fc608 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/063.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Togepi" + }, + + illustrator: "Narumi Sato", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + + description: { + en: "The shell seems to be filled with joy. It is said that it will share good luck when treated kindly." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Pound" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/064.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/064.ts new file mode 100644 index 000000000..0349a7035 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/064.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Togetic" + }, + + illustrator: "Kanako Eo", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + evolveFrom: { + en: "Togepi" + }, + + description: { + en: "They say that it will appear before kindhearted, caring people and shower them with happiness." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Fairy Wind" + }, + + damage: 40, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/065.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/065.ts new file mode 100644 index 000000000..df70f87ac --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/065.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Togekiss" + }, + + illustrator: "kawayoo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + evolveFrom: { + en: "Togetic" + }, + + description: { + en: "These Pokémon are never seen anywhere near conflict or turmoil. In recent times, they've hardly been seen at all." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Overdrive Smash" + }, + + damage: 60, + cost: ["Psychic", "Psychic"], + + effect: { + en: "During your next turn, this Pokémon's attack does +60 damage." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/066.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/066.ts new file mode 100644 index 000000000..7ae0faab9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/066.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Misdreavus" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "This Pokémon startles people in the middle of the night. It gathers fear as its energy." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Mumble" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/067.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/067.ts new file mode 100644 index 000000000..242880ac9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/067.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mismagius ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + evolveFrom: { + en: "Misdreavus" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Magical Delusion" + }, + + damage: 70, + cost: ["Psychic", "Psychic"], + + effect: { + en: "Your opponent's Active Pokémon is now Confused." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/068.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/068.ts new file mode 100644 index 000000000..7a9c06d11 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/068.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Ralts" + }, + + illustrator: "Miki Tanaka", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "The horns on its head provide a strong power that enables it to sense people's emotions." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Teleport" + }, + + cost: ["Colorless"], + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/069.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/069.ts new file mode 100644 index 000000000..d21bfa0bc --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/069.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Kirlia" + }, + + illustrator: "Yukiko Baba", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + evolveFrom: { + en: "Ralts" + }, + + description: { + en: "It has a psychic power that enables it to distort the space around it and see into the future." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slap" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/070.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/070.ts new file mode 100644 index 000000000..5c2a3a081 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/070.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Duskull" + }, + + illustrator: "ryoma uratsuka", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "If it finds bad children who won't listen to their parents, it will spirit them away—or so it's said." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Will-O-Wisp" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/071.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/071.ts new file mode 100644 index 000000000..c27a0c3a5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/071.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Dusclops" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + evolveFrom: { + en: "Duskull" + }, + + description: { + en: "It seeks drifting will-o'-the-wisps and sucks them into its empty body. What happens inside is a mystery." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Psypunch" + }, + + damage: 50, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/072.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/072.ts new file mode 100644 index 000000000..9d8b82c9d --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/072.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Dusknoir" + }, + + illustrator: "Suwama Chiaki", + rarity: "Three Diamond", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + + evolveFrom: { + en: "Dusclops" + }, + + description: { + en: "At the bidding of transmissions from the spirit world, it steals people and Pokémon away. No one knows whether it has a will of its own." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Shadow Void" + }, + + effect: { + en: "As often as you like during your turn, you may choose 1 of your Pokémon that has damage on it, and move all of its damage to this Pokémon." + } + }], + + attacks: [{ + name: { + en: "Devour Soul" + }, + + damage: 70, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/073.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/073.ts new file mode 100644 index 000000000..a30b79a90 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/073.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Drifloon" + }, + + illustrator: "Atsuko Nishida", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + + description: { + en: "It is whispered that any child who mistakes Drifloon for a balloon and holds on to it could wind up missing." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Expand" + }, + + damage: 10, + cost: ["Psychic"], + + effect: { + en: "During your opponent's next turn, this Pokémon takes −20 damage from attacks." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/074.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/074.ts new file mode 100644 index 000000000..d4d2f340c --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/074.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Drifblim" + }, + + illustrator: "Miki Tanaka", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Psychic"], + + evolveFrom: { + en: "Drifloon" + }, + + description: { + en: "Some say this Pokémon is a collection of souls burdened with regrets, silently drifting through the dusk." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Balloon Strike" + }, + + damage: 60, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/075.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/075.ts new file mode 100644 index 000000000..9fd33c592 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/075.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Uxie" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + en: "Known as \"The Being of Knowledge.\" It is said that it can wipe out the memory of those who see its eyes." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Mind Boost" + }, + + damage: 20, + cost: ["Psychic"], + + effect: { + en: "Take a Energy from your Energy Zone and attach it to Mesprit or Azelf." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/076.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/076.ts new file mode 100644 index 000000000..1fc64dbba --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/076.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mesprit" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Three Diamond", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + en: "Known as \"The Being of Emotion.\" It taught humans the nobility of sorrow, pain, and joy." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Supreme Blast" + }, + + damage: 160, + cost: ["Psychic", "Psychic", "Psychic"], + + effect: { + en: "You can use this attack only if you have Uxie and Azelf on your Bench. Discard all Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/077.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/077.ts new file mode 100644 index 000000000..b7fa55376 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/077.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Azelf" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + en: "Known as \"The Being of Willpower.\" It sleeps at the bottom of a lake to keep the world in balance." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Psychic Arrow" + }, + + cost: ["Psychic"], + + effect: { + en: "This attack does 20 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/078.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/078.ts new file mode 100644 index 000000000..c4e95e8ac --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/078.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Giratina" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + en: "This Pokémon is said to live in a world on the reverse side of ours, where common knowledge is distorted and strange." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Levitate" + }, + + effect: { + en: "If this Pokémon has any Energy attached, it has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Spooky Shot" + }, + + damage: 70, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/079.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/079.ts new file mode 100644 index 000000000..5c215468b --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/079.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Cresselia" + }, + + illustrator: "Masako Tomii", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + en: "Shiny particles are released from its wings like a veil. It is said to represent the crescent moon." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Moonlight Gain" + }, + + damage: 50, + cost: ["Psychic", "Psychic"], + + effect: { + en: "Heal 20 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/080.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/080.ts new file mode 100644 index 000000000..1c3112206 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/080.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Rhyhorn" + }, + + illustrator: "otumami", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "Strong, but not too bright, this Pokémon can shatter even a skyscraper with its charging tackles." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Horn Attack" + }, + + damage: 40, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/081.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/081.ts new file mode 100644 index 000000000..e61a2a421 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/081.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Rhydon" + }, + + illustrator: "Oswaldo KATO", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + + evolveFrom: { + en: "Rhyhorn" + }, + + description: { + en: "It begins walking on its hind legs after evolution. It can punch holes through boulders with its horn." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Wrack Down" + }, + + damage: 70, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/082.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/082.ts new file mode 100644 index 000000000..3c6770e42 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/082.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Rhyperior" + }, + + illustrator: "Naoki Saito", + rarity: "Three Diamond", + category: "Pokemon", + hp: 160, + types: ["Fighting"], + + evolveFrom: { + en: "Rhydon" + }, + + description: { + en: "It can load up to three projectiles per arm into the holes in its hands. What launches out of those holes could be either rocks or Roggenrola." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Mountain Swing" + }, + + damage: 150, + cost: ["Fighting", "Fighting", "Fighting", "Colorless"], + + effect: { + en: "Discard the top 3 cards of your deck." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/083.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/083.ts new file mode 100644 index 000000000..b3cb6461d --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/083.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Gligar" + }, + + illustrator: "Sanosuke Sakuma", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "It usually clings to cliffs. When it spots its prey, it spreads its wings and glides down to attack." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Pierce" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/084.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/084.ts new file mode 100644 index 000000000..fdb2db1af --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/084.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Gliscor" + }, + + illustrator: "Mizue", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + evolveFrom: { + en: "Gligar" + }, + + description: { + en: "It observes prey while hanging inverted from branches. When the chance presents itself, it swoops!" + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Acrobatics" + }, + + damage: "20+", + cost: ["Fighting"], + + effect: { + en: "Flip 2 coins. This attack does 20 more damage for each heads." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/085.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/085.ts new file mode 100644 index 000000000..7f62911c7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/085.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Hitmontop" + }, + + illustrator: "sowsow", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "It launches kicks while spinning. If it spins at high speed, it may bore its way into the ground." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Spinning Attack" + }, + + damage: 50, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/086.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/086.ts new file mode 100644 index 000000000..6cd2b6223 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/086.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Nosepass" + }, + + illustrator: "Midori Harada", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "It moves less than an inch a year, but when it's in a jam, it will spin and drill down into the ground in a split second." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ram" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/087.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/087.ts new file mode 100644 index 000000000..a3db5391e --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/087.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Regirock" + }, + + illustrator: "Tomokazu Komiya", + rarity: "Two Diamond", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + + description: { + en: "Every bit of Regirock's body is made of stone. As parts of its body erode, this Pokémon sticks rocks to itself to repair what's been lost." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Exoskeleton" + }, + + effect: { + en: "This Pokémon takes −20 damage from attacks." + } + }], + + attacks: [{ + name: { + en: "Boulder Crush" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/088.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/088.ts new file mode 100644 index 000000000..ed14285f6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/088.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Cranidos" + }, + + illustrator: "Kouki Saitou", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + + evolveFrom: { + en: "Skull Fossil" + }, + + description: { + en: "A primeval Pokémon, it possesses a hard and sturdy skull, lacking any intelligence within." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Headbutt" + }, + + damage: 50, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/089.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/089.ts new file mode 100644 index 000000000..b80099e08 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/089.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Rampardos" + }, + + illustrator: "Yoshinobu Saito", + rarity: "Three Diamond", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + evolveFrom: { + en: "Cranidos" + }, + + description: { + en: "In ancient times, people would dig up fossils of this Pokémon and use its skull, which is harder than steel, to make helmets." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Head Smash" + }, + + damage: 130, + cost: ["Fighting"], + + effect: { + en: "If your opponent's Pokémon is Knocked Out by damage from this attack, this Pokémon also does 50 damage to itself." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/090.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/090.ts new file mode 100644 index 000000000..d43100407 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/090.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Wormadam" + }, + + illustrator: "Hajime Kusajima", + rarity: "One Diamond", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + + evolveFrom: { + en: "Burmy" + }, + + description: { + en: "Its appearance changes depending on where it evolved. The materials on hand become a part of its body." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Land Crush" + }, + + damage: 70, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/091.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/091.ts new file mode 100644 index 000000000..39b545bd5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/091.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Riolu" + }, + + illustrator: "AKIRA EGAWA", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "They communicate with one another using their auras. They are able to run all through the night." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Jab" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/092.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/092.ts new file mode 100644 index 000000000..1f0f2b427 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/092.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Lucario" + }, + + illustrator: "nagimiso", + rarity: "Three Diamond", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + evolveFrom: { + en: "Riolu" + }, + + description: { + en: "It's said that no foe can remain invisible to Lucario, since it can detect auras—even those of foes it could not otherwise see." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Fighting Coach" + }, + + effect: { + en: "Attacks used by your Pokémon do +20 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Submarine Blow" + }, + + damage: 40, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/093.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/093.ts new file mode 100644 index 000000000..84aa451a9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/093.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Hippopotas" + }, + + illustrator: "Akira Komayama", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "It shuts its nostrils tight, then travels through sand as if walking. They form colonies of around 10." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rolling Tackle" + }, + + damage: 60, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/094.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/094.ts new file mode 100644 index 000000000..822ac138c --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/094.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Hippowdon" + }, + + illustrator: "KEIICHIRO ITO", + rarity: "Two Diamond", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + + evolveFrom: { + en: "Hippopotas" + }, + + description: { + en: "It is surprisingly quick to anger. It holds its mouth agape as a display of its strength." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Earthen Press" + }, + + damage: 120, + cost: ["Fighting", "Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/095.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/095.ts new file mode 100644 index 000000000..9d7e5ecf8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/095.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Gallade ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 170, + types: ["Fighting"], + + evolveFrom: { + en: "Kirlia" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Energized Blade" + }, + + damage: "70+", + cost: ["Fighting", "Fighting"], + + effect: { + en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/096.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/096.ts new file mode 100644 index 000000000..06722d851 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/096.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Murkrow" + }, + + illustrator: "Yukiko Baba", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "Feared and loathed by many, it is believed to bring misfortune to all those who see it at night." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Peck" + }, + + damage: 20, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/097.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/097.ts new file mode 100644 index 000000000..3a13a2e75 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/097.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Honchkrow" + }, + + illustrator: "Hideki Ishikawa", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + + evolveFrom: { + en: "Murkrow" + }, + + description: { + en: "It is merciless by nature. It is said that it never forgives the mistakes of its Murkrow followers." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Skill Dive" + }, + + cost: ["Darkness", "Darkness"], + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/098.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/098.ts new file mode 100644 index 000000000..e6377c020 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/098.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Sneasel" + }, + + illustrator: "Hasuno", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "This cunning Pokémon hides under the cover of darkness, waiting to attack its prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Double Scratch" + }, + + damage: "20×", + cost: ["Darkness"], + + effect: { + en: "Flip 2 coins. This attack does 20 damage for each heads." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/099.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/099.ts new file mode 100644 index 000000000..b2704a151 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/099.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Weavile ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + + evolveFrom: { + en: "Sneasel" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Scratching Nails" + }, + + damage: "30+", + cost: ["Darkness"], + + effect: { + en: "If your opponent's Active Pokémon has damage on it, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/100.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/100.ts new file mode 100644 index 000000000..4606883ce --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/100.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Poochyena" + }, + + illustrator: "Midori Harada", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "A Pokémon with a persistent nature, it chases its chosen prey until the prey becomes exhausted." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 20, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/101.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/101.ts new file mode 100644 index 000000000..e13d26e4d --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/101.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mightyena" + }, + + illustrator: "Kouki Saitou", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + + evolveFrom: { + en: "Poochyena" + }, + + description: { + en: "It will always obey the commands of a skilled Trainer. Its behavior arises from its living in packs in ancient times." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Darkness Fang" + }, + + damage: 60, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/102.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/102.ts new file mode 100644 index 000000000..ac05cd5ea --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/102.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Stunky" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + en: "It sprays a foul fluid from its rear. Its stench spreads over a mile radius, driving Pokémon away." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Scratch" + }, + + damage: 10, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/103.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/103.ts new file mode 100644 index 000000000..03316c160 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/103.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Skuntank" + }, + + illustrator: "kirisAki", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + + evolveFrom: { + en: "Stunky" + }, + + description: { + en: "It attacks by spraying a horribly smelly fluid from the tip of its tail. Attacks from above confound it." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Poison Gas" + }, + + damage: 50, + cost: ["Darkness", "Colorless"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/104.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/104.ts new file mode 100644 index 000000000..250417d41 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/104.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Spiritomb" + }, + + illustrator: "HYOGONOSUKE", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + + description: { + en: "Its constant mischief and misdeeds resulted in it being bound to an Odd Keystone by a mysterious spell." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Swirling Disaster" + }, + + cost: ["Colorless"], + + effect: { + en: "This attack does 10 damage to each of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/105.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/105.ts new file mode 100644 index 000000000..2abb6ada0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/105.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Skorupi" + }, + + illustrator: "Naoki Saito", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + en: "After burrowing into the sand, it waits patiently for prey to come near. This Pokémon and Sizzlipede share common descent." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Pierce" + }, + + damage: 30, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/106.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/106.ts new file mode 100644 index 000000000..9c85ff0fd --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/106.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Drapion" + }, + + illustrator: "Hitoshi Ariga", + rarity: "Two Diamond", + category: "Pokemon", + hp: 120, + types: ["Darkness"], + + evolveFrom: { + en: "Skorupi" + }, + + description: { + en: "Its poison is potent, but it rarely sees use. This Pokémon prefers to use physical force instead, going on rampages with its car-crushing strength." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Cross Poison" + }, + + damage: "40×", + cost: ["Darkness", "Darkness", "Darkness"], + + effect: { + en: "Flip 4 coins. This attack does 40 damage for each heads. If at least 2 of them are heads, your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/107.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/107.ts new file mode 100644 index 000000000..143f9b6d7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/107.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Croagunk" + }, + + illustrator: "Masakazu Fukuda", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "Inflating its poison sacs, it fills the area with an odd sound and hits flinching opponents with a poison jab." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Group Beatdown" + }, + + damage: "20×", + cost: ["Darkness", "Darkness"], + + effect: { + en: "Flip a coin for each Pokémon you have in play. This attack does 20 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/108.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/108.ts new file mode 100644 index 000000000..b026d64c4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/108.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Toxicroak" + }, + + illustrator: "Hajime Kusajima", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + + evolveFrom: { + en: "Croagunk" + }, + + description: { + en: "Swaying and dodging the attacks of its foes, it weaves its flexible body in close, then lunges out with its poisonous claws." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Group Beatdown" + }, + + damage: "40×", + cost: ["Darkness", "Darkness"], + + effect: { + en: "Flip a coin for each Pokémon you have in play. This attack does 40 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/109.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/109.ts new file mode 100644 index 000000000..5675b991b --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/109.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Darkrai" + }, + + illustrator: "Masako Tomii", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + + description: { + en: "It chases people and Pokémon from its territory by causing them to experience deep, nightmarish slumbers." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Dark Void" + }, + + damage: 60, + cost: ["Darkness", "Darkness", "Colorless"], + + effect: { + en: "Your opponent's Active Pokémon is now Asleep." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/110.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/110.ts new file mode 100644 index 000000000..7a4941713 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/110.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Darkrai ex" + }, + + illustrator: "PLANETA Yamashita", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Nightmare Aura" + }, + + effect: { + en: "Whenever you attach a Energy from your Energy Zone to this Pokémon, do 20 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Dark Prism" + }, + + damage: 80, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/111.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/111.ts new file mode 100644 index 000000000..9e52726d9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/111.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Skarmory" + }, + + illustrator: "Oswaldo KATO", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Metal"], + + description: { + en: "People fashion swords from Skarmory's shed feathers, so this Pokémon is a popular element in heraldic designs." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Metal Arms" + }, + + damage: "20+", + cost: ["Metal"], + + effect: { + en: "If this Pokémon has a Pokémon Tool attached, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/112.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/112.ts new file mode 100644 index 000000000..d9273cb89 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/112.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Registeel" + }, + + illustrator: "Tomokazu Komiya", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + description: { + en: "Registeel's body is made of a strange material that is flexible enough to stretch and shrink but also more durable than any metal." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Metal Claw" + }, + + damage: 90, + cost: ["Metal", "Metal", "Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/113.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/113.ts new file mode 100644 index 000000000..a983c6451 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/113.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Shieldon" + }, + + illustrator: "Kouki Saitou", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Metal"], + + evolveFrom: { + en: "Armor Fossil" + }, + + description: { + en: "A mild-mannered, herbivorous Pokémon, it used its face to dig up tree roots to eat. The skin on its face was plenty tough." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Headbutt" + }, + + damage: 50, + cost: ["Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/114.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/114.ts new file mode 100644 index 000000000..b14d1674e --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/114.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Bastiodon" + }, + + illustrator: "Kagemaru Himeno", + rarity: "Three Diamond", + category: "Pokemon", + hp: 160, + types: ["Metal"], + + evolveFrom: { + en: "Shieldon" + }, + + description: { + en: "The bones of its face are huge and hard, so they were mistaken for its spine until after this Pokémon was successfully restored." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Guarded Grill" + }, + + effect: { + en: "If any damage is done to this Pokémon by attacks, flip a coin. If heads, this Pokémon takes −100 damage from that attack." + } + }], + + attacks: [{ + name: { + en: "Headbang" + }, + + damage: 80, + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/115.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/115.ts new file mode 100644 index 000000000..31a47333a --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/115.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Wormadam" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + evolveFrom: { + en: "Burmy" + }, + + description: { + en: "Its appearance changes depending on where it evolved. The materials on hand become a part of its body." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Iron Head" + }, + + damage: "50+", + cost: ["Metal", "Metal"], + + effect: { + en: "Flip a coin until you get tails. This attack does 30 more damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/116.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/116.ts new file mode 100644 index 000000000..47c069b6c --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/116.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Bronzor" + }, + + illustrator: "Miki Tanaka", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Metal"], + + description: { + en: "Ancient people believed that the pattern on Bronzor's back contained a mysterious power." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 30, + cost: ["Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/117.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/117.ts new file mode 100644 index 000000000..9ee142d92 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/117.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Bronzong" + }, + + illustrator: "Yuka Morii", + rarity: "Two Diamond", + category: "Pokemon", + hp: 120, + types: ["Metal"], + + evolveFrom: { + en: "Bronzor" + }, + + description: { + en: "In ages past, this Pokémon was revered as a bringer of rain. It was found buried in the ground." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Guard Press" + }, + + damage: 60, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "During your opponent's next turn, this Pokémon takes −20 damage from attacks." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/118.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/118.ts new file mode 100644 index 000000000..56fd17e4a --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/118.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Probopass" + }, + + illustrator: "MAHOU", + rarity: "Two Diamond", + category: "Pokemon", + hp: 130, + types: ["Metal"], + + evolveFrom: { + en: "Nosepass" + }, + + description: { + en: "Although it can control its units known as Mini-Noses, they sometimes get lost and don't come back." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Triple Nose" + }, + + damage: "30+", + cost: ["Metal", "Metal", "Metal", "Colorless"], + + effect: { + en: "Flip 3 coins. This attack does 50 more damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/119.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/119.ts new file mode 100644 index 000000000..1c3080cf2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/119.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Dialga ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Metallic Turbo" + }, + + damage: 30, + cost: ["Metal", "Metal"], + + effect: { + en: "Take 2 Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }, { + name: { + en: "Heavy Impact" + }, + + damage: 100, + cost: ["Metal", "Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/120.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/120.ts new file mode 100644 index 000000000..0b469fa14 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/120.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Heatran" + }, + + illustrator: "Oswaldo KATO", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Metal"], + + description: { + en: "It dwells in volcanic caves. It digs in with its cross-shaped feet to crawl on ceilings and walls." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Steel Tackle" + }, + + damage: 110, + cost: ["Metal", "Metal", "Metal"], + + effect: { + en: "This Pokémon also does 20 damage to itself." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/121.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/121.ts new file mode 100644 index 000000000..2d8b6b502 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/121.ts @@ -0,0 +1,35 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Gible" + }, + + illustrator: "Naoyo Kimura", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Dragon"], + + description: { + en: "It skulks in caves, and when prey or an enemy passes by, it leaps out and chomps them. The force of its attack sometimes chips its teeth." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Gnaw" + }, + + damage: 20, + cost: ["Colorless"] + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/122.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/122.ts new file mode 100644 index 000000000..c57406edd --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/122.ts @@ -0,0 +1,39 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Gabite" + }, + + illustrator: "Shigenori Negishi", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Dragon"], + + evolveFrom: { + en: "Gible" + }, + + description: { + en: "In rare cases, it molts and sheds its scales. Medicine containing its scales as an ingredient will make a weary body feel invigorated." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 60, + cost: ["Water", "Fighting"] + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/123.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/123.ts new file mode 100644 index 000000000..c1e02525a --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/123.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Garchomp" + }, + + illustrator: "Atsushi Furusawa", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Dragon"], + + evolveFrom: { + en: "Gabite" + }, + + description: { + en: "It is said that when one runs at high speed, its wings create blades of wind that can fell nearby trees." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Reckless Shearing" + }, + + effect: { + en: "You must discard a card from your hand in order to use this Ability. Once during your turn, you may draw a card." + } + }], + + attacks: [{ + name: { + en: "Dragon Claw" + }, + + damage: 100, + cost: ["Water", "Fighting"] + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/124.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/124.ts new file mode 100644 index 000000000..19ce8ff25 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/124.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Lickitung" + }, + + illustrator: "Yukiko Baba", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + en: "If this Pokémon's sticky saliva gets on you and you don't clean it off, an intense itch will set in. The itch won't go away, either." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tongue Slap" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/125.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/125.ts new file mode 100644 index 000000000..6d617cdba --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/125.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Lickilicky ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + + evolveFrom: { + en: "Lickitung" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Licking Fury" + }, + + damage: "100+", + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin until you get tails. This attack does 40 more damage for each heads." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/126.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/126.ts new file mode 100644 index 000000000..1d8b6d67c --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/126.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Eevee" + }, + + illustrator: "Shibuzoh.", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "Its ability to evolve into many forms allows it to adapt smoothly and perfectly to any environment." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Quick Attack" + }, + + damage: 10, + cost: ["Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 20 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/127.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/127.ts new file mode 100644 index 000000000..bad472267 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/127.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Porygon" + }, + + illustrator: "Shin Nagasawa", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "State-of-the-art technology was used to create Porygon. It was the first artificial Pokémon to be created via computer programming." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Beam" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/128.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/128.ts new file mode 100644 index 000000000..31949d9fc --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/128.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Porygon2" + }, + + illustrator: "sowsow", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + evolveFrom: { + en: "Porygon" + }, + + description: { + en: "This is a Porygon that was updated with special data. Porygon2 develops itself by learning about many different subjects all on its own." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Sharpen" + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/129.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/129.ts new file mode 100644 index 000000000..af7a085d9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/129.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Porygon-Z" + }, + + illustrator: "Shin Nagasawa", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + + evolveFrom: { + en: "Porygon2" + }, + + description: { + en: "Porygon-Z had a program installed to allow it to move between dimensions, but the program also caused instability in Porygon-Z's behavior." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Buggy Beam" + }, + + damage: 80, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Change the type of the next Energy that will be generated for your opponent to 1 of the following at random: , , , , , , , or ." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/130.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/130.ts new file mode 100644 index 000000000..74589b081 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/130.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Aipom" + }, + + illustrator: "Miki Tanaka", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "As it did more and more with its tail, its hands became clumsy. It makes its nest high in the treetops." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tail Jab" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/131.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/131.ts new file mode 100644 index 000000000..b5b9dae04 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/131.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Ambipom" + }, + + illustrator: "Naoyo Kimura", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + evolveFrom: { + en: "Aipom" + }, + + description: { + en: "It uses its tails for everything. If it wraps both of its tails around you and gives you a squeeze, that's proof it really likes you." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Double Hit" + }, + + damage: "40×", + cost: ["Colorless"], + + effect: { + en: "Flip 2 coins. This attack does 40 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/132.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/132.ts new file mode 100644 index 000000000..d22c56e49 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/132.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Starly" + }, + + illustrator: "Atsuko Nishida", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + en: "They flock around mountains and fields, chasing after bug Pokémon. Their singing is noisy and annoying." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Pluck" + }, + + damage: 20, + cost: ["Colorless"], + + effect: { + en: "Before doing damage, discard all Pokémon Tools from your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/133.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/133.ts new file mode 100644 index 000000000..a0570f2aa --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/133.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Staravia" + }, + + illustrator: "REND", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + evolveFrom: { + en: "Starly" + }, + + description: { + en: "Recognizing their own weakness, they always live in a group. When alone, a Staravia cries noisily." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Wing Attack" + }, + + damage: 40, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/134.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/134.ts new file mode 100644 index 000000000..24166fa6b --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/134.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Staraptor" + }, + + illustrator: "Sekio", + rarity: "Two Diamond", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + + evolveFrom: { + en: "Staravia" + }, + + description: { + en: "When Staravia evolve into Staraptor, they leave the flock to live alone. They have sturdy wings." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Clutch" + }, + + damage: 80, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/135.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/135.ts new file mode 100644 index 000000000..f9503325e --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/135.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Bidoof" + }, + + illustrator: "Kagemaru Himeno", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "With nerves of steel, nothing can perturb it. It is more agile and active than it appears." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Super Fang" + }, + + cost: ["Colorless", "Colorless"], + + effect: { + en: "Halve your opponent's Active Pokémon's remaining HP, rounded down." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/136.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/136.ts new file mode 100644 index 000000000..ee39dbc6f --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/136.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Bibarel" + }, + + illustrator: "kirisAki", + rarity: "One Diamond", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + evolveFrom: { + en: "Bidoof" + }, + + description: { + en: "It busily makes its nest with stacks of branches and roots it has cut up with its sharp incisors." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Rolling Tackle" + }, + + damage: 60, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/137.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/137.ts new file mode 100644 index 000000000..bc9f77b69 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/137.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Buneary" + }, + + illustrator: "Narumi Sato", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "If both of Buneary's ears are rolled up, something is wrong with its body or mind. It's a sure sign the Pokémon is in need of care." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Splash" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/138.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/138.ts new file mode 100644 index 000000000..8abe01394 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/138.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Lopunny" + }, + + illustrator: "Sanosuke Sakuma", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + evolveFrom: { + en: "Buneary" + }, + + description: { + en: "Lopunny is constantly monitoring its surroundings. If danger approaches, this Pokémon responds with superdestructive kicks." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Jump Kick" + }, + + damage: 20, + cost: ["Colorless"], + + effect: { + en: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/139.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/139.ts new file mode 100644 index 000000000..5763631b8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/139.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Glameow" + }, + + illustrator: "sowsow", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "It claws if displeased and purrs when affectionate. Its fickleness is very popular among some." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Pose" + }, + + damage: 40, + cost: ["Colorless"], + + effect: { + en: "Flip a coin. If tails, this attack does nothing." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/140.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/140.ts new file mode 100644 index 000000000..4f584e2d6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/140.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Purugly" + }, + + illustrator: "Kagemaru Himeno", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + evolveFrom: { + en: "Glameow" + }, + + description: { + en: "It would claim another Pokémon's nest as its own if it finds a nest sufficiently comfortable." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Interrupt" + }, + + damage: 60, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Your opponent reveals their hand. Choose a card you find there and shuffle it into your opponent's deck." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/141.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/141.ts new file mode 100644 index 000000000..bb547f996 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/141.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Chatot" + }, + + illustrator: "HYOGONOSUKE", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + en: "It mimics the cries of other Pokémon to trick them into thinking it's one of them. This way they won't attack it." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Fury Attack" + }, + + damage: 20, + cost: ["Colorless"], + + effect: { + en: "Flip 3 coins. This attack does 20 damage for each heads." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/142.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/142.ts new file mode 100644 index 000000000..ae94b059d --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/142.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Fan Rotom" + }, + + illustrator: "Masakazu Fukuda", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + en: "This Rotom has entered an electric fan. It smirks with satisfaction over a prank well pulled after it blows away everything around it." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Spin Storm" + }, + + cost: ["Colorless", "Colorless"], + + effect: { + en: "Flip a coin. If heads, put your opponent's Active Pokémon into their hand." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/143.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/143.ts new file mode 100644 index 000000000..cc735a158 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/143.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Regigigas" + }, + + illustrator: "Tomokazu Komiya", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + + description: { + en: "It is said to have made Pokémon that look like itself from a special ice mountain, rocks, and magma." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Raging Hammer" + }, + + damage: "50+", + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does more damage equal to the damage this Pokémon has on it." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/144.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/144.ts new file mode 100644 index 000000000..b4a20cf40 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/144.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Skull Fossil" + }, + + illustrator: "Toyste Beach", + rarity: "One Diamond", + category: "Trainer", + + effect: { + en: "Play this card as if it were a 40-HP Basic Pokémon. At any time during your turn, you may discard this card from play. This card can't retreat." + }, + + trainerType: "Item" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/145.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/145.ts new file mode 100644 index 000000000..f41af2a06 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/145.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Armor Fossil" + }, + + illustrator: "Toyste Beach", + rarity: "One Diamond", + category: "Trainer", + + effect: { + en: "Play this card as if it were a 40-HP Basic Pokémon. At any time during your turn, you may discard this card from play. This card can't retreat." + }, + + trainerType: "Item" +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/146.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/146.ts new file mode 100644 index 000000000..76ad6cd2c --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/146.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Pokémon Communication" + }, + + illustrator: "Ayaka Yoshida", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Choose a Pokémon in your hand and switch it with a random Pokémon in your deck." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/147.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/147.ts new file mode 100644 index 000000000..cfba81ef5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/147.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Giant Cape" + }, + + illustrator: "Ryo Ueda", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "The Pokémon this card is attached to gets +20 HP." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/148.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/148.ts new file mode 100644 index 000000000..18ee695f1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/148.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Rocky Helmet" + }, + + illustrator: "Ayaka Yoshida", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is in the Active Spot and is damaged by an attack from your opponent's Pokémon, do 20 damage to the Attacking Pokémon." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/149.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/149.ts new file mode 100644 index 000000000..14d266f2d --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/149.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Lum Berry" + }, + + illustrator: "Yoshinobu Saito", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "At the end of each turn, if the Pokémon this card is attached to is affected by any Special Conditions, it recovers from all of them, and discard this card." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/150.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/150.ts new file mode 100644 index 000000000..3413597c0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/150.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Cyrus" + }, + + illustrator: "akagi", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Switch in 1 of your opponent's Benched Pokémon that has damage on it to the Active Spot." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/151.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/151.ts new file mode 100644 index 000000000..c0e4c04f7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/151.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Team Galactic Grunt" + }, + + illustrator: "GOSSAN", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Put 1 random Glameow, Stunky, or Croagunk from your deck into your hand." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/152.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/152.ts new file mode 100644 index 000000000..0b50dfabc --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/152.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Cynthia" + }, + + illustrator: "Ryuta Fuse", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Garchomp or Togekiss do +50 damage to your opponent's Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/153.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/153.ts new file mode 100644 index 000000000..30d662ba1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/153.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Volkner" + }, + + illustrator: "GIDORA", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Choose 1 of your Electivire or Luxray. Attach 2 Energy from your discard pile to that Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/154.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/154.ts new file mode 100644 index 000000000..e194aaaae --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/154.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Dawn" + }, + + illustrator: "saino misaki", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Move an Energy from 1 of your Benched Pokémon to your Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/155.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/155.ts new file mode 100644 index 000000000..5b7bdd0b7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/155.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mars" + }, + + illustrator: "Yuu Nishida", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Your opponent shuffles their hand into their deck and draws a card for each of their remaining points needed to win." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/156.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/156.ts new file mode 100644 index 000000000..238b022f7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/156.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Tangrowth" + }, + + illustrator: "Saboteri", + rarity: "One Star", + category: "Pokemon", + hp: 130, + types: ["Grass"], + + evolveFrom: { + en: "Tangela" + }, + + description: { + en: "Tangrowth has two arms that it can extend as it pleases. Recent research has shown that these arms are, in fact, bundles of vines." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Mega Drain" + }, + + damage: 90, + cost: ["Grass", "Grass", "Grass", "Colorless"], + + effect: { + en: "Heal 30 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/157.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/157.ts new file mode 100644 index 000000000..80571d0c1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/157.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Combee" + }, + + illustrator: "Shibuzoh.", + rarity: "One Star", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "At night, Combee sleep in a group of about a hundred, packed closely together in a lump." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Call for Family" + }, + + cost: ["Colorless"], + + effect: { + en: "Put 1 random from your deck onto your Bench." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/158.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/158.ts new file mode 100644 index 000000000..7a76ac7f9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/158.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Carnivine" + }, + + illustrator: "Yoriyuki Ikegami", + rarity: "One Star", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + en: "It attracts prey with its sweet-smelling saliva, then chomps down. It takes a whole day to eat prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flog" + }, + + damage: "40+", + cost: ["Grass", "Grass", "Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 50 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/159.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/159.ts new file mode 100644 index 000000000..be037d690 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/159.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Shaymin" + }, + + illustrator: "REND", + rarity: "One Star", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "It can dissolve toxins in the air to instantly transform ruined land into a lush field of flowers." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Fragrant Flower Garden" + }, + + effect: { + en: "Once during your turn, you may heal 10 damage from each of your Pokémon." + } + }], + + attacks: [{ + name: { + en: "Flop" + }, + + damage: 30, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/160.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/160.ts new file mode 100644 index 000000000..8d8009c1a --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/160.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mamoswine" + }, + + illustrator: "OKACHEKE", + rarity: "One Star", + category: "Pokemon", + hp: 160, + types: ["Water"], + + evolveFrom: { + en: "Piloswine" + }, + + description: { + en: "This Pokémon can be spotted in wall paintings from as far back as 10,000 years ago. For a while, it was thought to have gone extinct." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Thick Fat" + }, + + effect: { + en: "This Pokémon takes −30 damage from attacks from or Pokémon." + } + }], + + attacks: [{ + name: { + en: "Frosty Flattening" + }, + + damage: 120, + cost: ["Water", "Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/161.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/161.ts new file mode 100644 index 000000000..c27bebe4b --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/161.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Gastrodon" + }, + + illustrator: "takashi shiraishi", + rarity: "One Star", + category: "Pokemon", + hp: 120, + types: ["Water"], + + evolveFrom: { + en: "Shellos" + }, + + description: { + en: "They normally inhabit rocky seashores, but in times of continuous rain, they can sometimes be found in the mountains, far from the sea." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Muddy Water" + }, + + damage: 60, + cost: ["Water", "Colorless", "Colorless"], + + effect: { + en: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/162.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/162.ts new file mode 100644 index 000000000..bb4a7894c --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/162.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Manaphy" + }, + + illustrator: "miki kudo", + rarity: "One Star", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + en: "It is born with a wondrous power that lets it bond with any kind of Pokémon." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Oceanic Gift" + }, + + cost: ["Water"], + + effect: { + en: "Choose 2 of your Benched Pokémon. For each of those Pokémon, take a Energy from your Energy Zone and attach it to that Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/163.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/163.ts new file mode 100644 index 000000000..0c0367b53 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/163.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Shinx" + }, + + illustrator: "Yuu Nishida", + rarity: "One Star", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "The extension and contraction of its muscles generates electricity. It glows when in trouble." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Hide" + }, + + cost: ["Lightning"], + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/164.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/164.ts new file mode 100644 index 000000000..56fc6b3ce --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/164.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Rotom" + }, + + illustrator: "Shimaris Yukichi", + rarity: "One Star", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "Its electricity-like body can enter some kinds of machines and take control in order to make mischief." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Assault Laser" + }, + + damage: "20+", + cost: ["Colorless"], + + effect: { + en: "If your opponent's Active Pokémon has a Pokémon Tool attached, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/165.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/165.ts new file mode 100644 index 000000000..14bf244e5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/165.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Drifloon" + }, + + illustrator: "Orca", + rarity: "One Star", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + + description: { + en: "It is whispered that any child who mistakes Drifloon for a balloon and holds on to it could wind up missing." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Expand" + }, + + damage: 10, + cost: ["Psychic"], + + effect: { + en: "During your opponent's next turn, this Pokémon takes −20 damage from attacks." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/166.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/166.ts new file mode 100644 index 000000000..2043b5293 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/166.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mesprit" + }, + + illustrator: "Orca", + rarity: "One Star", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + en: "Known as \"The Being of Emotion.\" It taught humans the nobility of sorrow, pain, and joy." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Supreme Blast" + }, + + damage: 160, + cost: ["Psychic", "Psychic", "Psychic"], + + effect: { + en: "You can use this attack only if you have Uxie and Azelf on your Bench. Discard all Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/167.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/167.ts new file mode 100644 index 000000000..710b32029 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/167.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Giratina" + }, + + illustrator: "Rond", + rarity: "One Star", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + en: "This Pokémon is said to live in a world on the reverse side of ours, where common knowledge is distorted and strange." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Levitate" + }, + + effect: { + en: "If this Pokémon has any Energy attached, it has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Spooky Shot" + }, + + damage: 70, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/168.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/168.ts new file mode 100644 index 000000000..e879c2498 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/168.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Cresselia" + }, + + illustrator: "rika", + rarity: "One Star", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + description: { + en: "Shiny particles are released from its wings like a veil. It is said to represent the crescent moon." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Moonlight Gain" + }, + + damage: 50, + cost: ["Psychic", "Psychic"], + + effect: { + en: "Heal 20 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/169.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/169.ts new file mode 100644 index 000000000..a23b28b3d --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/169.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Rhyperior" + }, + + illustrator: "Taiga Kayama", + rarity: "One Star", + category: "Pokemon", + hp: 160, + types: ["Fighting"], + + evolveFrom: { + en: "Rhydon" + }, + + description: { + en: "It can load up to three projectiles per arm into the holes in its hands. What launches out of those holes could be either rocks or Roggenrola." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Mountain Swing" + }, + + damage: 150, + cost: ["Fighting", "Fighting", "Fighting", "Colorless"], + + effect: { + en: "Discard the top 3 cards of your deck." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/170.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/170.ts new file mode 100644 index 000000000..ba9bc1af6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/170.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Lucario" + }, + + illustrator: "Akira Komayama", + rarity: "One Star", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + evolveFrom: { + en: "Riolu" + }, + + description: { + en: "It's said that no foe can remain invisible to Lucario, since it can detect auras—even those of foes it could not otherwise see." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Fighting Coach" + }, + + effect: { + en: "Attacks used by your Pokémon do +20 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Submarine Blow" + }, + + damage: 40, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/171.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/171.ts new file mode 100644 index 000000000..e993f2cbf --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/171.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Hippopotas" + }, + + illustrator: "Teeziro", + rarity: "One Star", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "It shuts its nostrils tight, then travels through sand as if walking. They form colonies of around 10." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rolling Tackle" + }, + + damage: 60, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/172.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/172.ts new file mode 100644 index 000000000..534fbcaa8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/172.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Spiritomb" + }, + + illustrator: "Shinji Kanda", + rarity: "One Star", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + + description: { + en: "Its constant mischief and misdeeds resulted in it being bound to an Odd Keystone by a mysterious spell." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Swirling Disaster" + }, + + cost: ["Colorless"], + + effect: { + en: "This attack does 10 damage to each of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/173.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/173.ts new file mode 100644 index 000000000..238b14421 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/173.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Croagunk" + }, + + illustrator: "GOSSAN", + rarity: "One Star", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "Inflating its poison sacs, it fills the area with an odd sound and hits flinching opponents with a poison jab." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Group Beatdown" + }, + + damage: "20×", + cost: ["Darkness", "Darkness"], + + effect: { + en: "Flip a coin for each Pokémon you have in play. This attack does 20 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/174.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/174.ts new file mode 100644 index 000000000..7828793b1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/174.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Heatran" + }, + + illustrator: "OKUBO", + rarity: "One Star", + category: "Pokemon", + hp: 120, + types: ["Metal"], + + description: { + en: "It dwells in volcanic caves. It digs in with its cross-shaped feet to crawl on ceilings and walls." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Steel Tackle" + }, + + damage: 110, + cost: ["Metal", "Metal", "Metal"], + + effect: { + en: "This Pokémon also does 20 damage to itself." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/175.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/175.ts new file mode 100644 index 000000000..b5e1dd7c7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/175.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Garchomp" + }, + + illustrator: "MINAMINAMI Take", + rarity: "One Star", + category: "Pokemon", + hp: 140, + types: ["Dragon"], + + evolveFrom: { + en: "Gabite" + }, + + description: { + en: "It is said that when one runs at high speed, its wings create blades of wind that can fell nearby trees." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Reckless Shearing" + }, + + effect: { + en: "You must discard a card from your hand in order to use this Ability. Once during your turn, you may draw a card." + } + }], + + attacks: [{ + name: { + en: "Dragon Claw" + }, + + damage: 100, + cost: ["Water", "Fighting"] + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/176.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/176.ts new file mode 100644 index 000000000..b042a039e --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/176.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Staraptor" + }, + + illustrator: "Ryota Murayama", + rarity: "One Star", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + + evolveFrom: { + en: "Staravia" + }, + + description: { + en: "When Staravia evolve into Staraptor, they leave the flock to live alone. They have sturdy wings." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Clutch" + }, + + damage: 80, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/177.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/177.ts new file mode 100644 index 000000000..3122dd12f --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/177.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Bidoof" + }, + + illustrator: "Shinya Komatsu", + rarity: "One Star", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "With nerves of steel, nothing can perturb it. It is more agile and active than it appears." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Super Fang" + }, + + cost: ["Colorless", "Colorless"], + + effect: { + en: "Halve your opponent's Active Pokémon's remaining HP, rounded down." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/178.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/178.ts new file mode 100644 index 000000000..85f2e62ce --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/178.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Glameow" + }, + + illustrator: "matazo", + rarity: "One Star", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "It claws if displeased and purrs when affectionate. Its fickleness is very popular among some." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Pose" + }, + + damage: 40, + cost: ["Colorless"], + + effect: { + en: "Flip a coin. If tails, this attack does nothing." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/179.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/179.ts new file mode 100644 index 000000000..9ff720c9a --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/179.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Regigigas" + }, + + illustrator: "Tetsu Kayama", + rarity: "One Star", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + + description: { + en: "It is said to have made Pokémon that look like itself from a special ice mountain, rocks, and magma." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Raging Hammer" + }, + + damage: "50+", + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does more damage equal to the damage this Pokémon has on it." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/180.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/180.ts new file mode 100644 index 000000000..c76c400e6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/180.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Yanmega ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Yanma" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Air Slash" + }, + + damage: 120, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Discard a random Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/181.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/181.ts new file mode 100644 index 000000000..c1a527ed9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/181.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Infernape ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 170, + types: ["Fire"], + + evolveFrom: { + en: "Monferno" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Flare Blitz" + }, + + damage: 140, + cost: ["Fire", "Fire"], + + effect: { + en: "Discard all Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/182.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/182.ts new file mode 100644 index 000000000..db0aa87e9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/182.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Palkia ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 30, + cost: ["Water"] + }, { + name: { + en: "Dimensional Storm" + }, + + damage: 150, + cost: ["Water", "Water", "Water", "Colorless"], + + effect: { + en: "Discard 3 Energy from this Pokémon. This attack also does 20 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/183.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/183.ts new file mode 100644 index 000000000..d9b9113a5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/183.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Pachirisu ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Two Star", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Sparking Gadget" + }, + + damage: "40+", + cost: ["Lightning", "Lightning"], + + effect: { + en: "If this Pokémon has a Pokémon Tool attached, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/184.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/184.ts new file mode 100644 index 000000000..95a55cff9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/184.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mismagius ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + evolveFrom: { + en: "Misdreavus" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Magical Delusion" + }, + + damage: 70, + cost: ["Psychic", "Psychic"], + + effect: { + en: "Your opponent's Active Pokémon is now Confused." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/185.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/185.ts new file mode 100644 index 000000000..2f8842758 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/185.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Gallade ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 170, + types: ["Fighting"], + + evolveFrom: { + en: "Kirlia" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Energized Blade" + }, + + damage: "70+", + cost: ["Fighting", "Fighting"], + + effect: { + en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/186.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/186.ts new file mode 100644 index 000000000..f4582de7a --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/186.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Weavile ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + + evolveFrom: { + en: "Sneasel" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Scratching Nails" + }, + + damage: "30+", + cost: ["Darkness"], + + effect: { + en: "If your opponent's Active Pokémon has damage on it, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/187.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/187.ts new file mode 100644 index 000000000..dcd64b25a --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/187.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Darkrai ex" + }, + + illustrator: "PLANETA Yamashita", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Nightmare Aura" + }, + + effect: { + en: "Whenever you attach a Energy from your Energy Zone to this Pokémon, do 20 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Dark Prism" + }, + + damage: 80, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/188.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/188.ts new file mode 100644 index 000000000..df607031b --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/188.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Dialga ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 150, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Metallic Turbo" + }, + + damage: 30, + cost: ["Metal", "Metal"], + + effect: { + en: "Take 2 Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }, { + name: { + en: "Heavy Impact" + }, + + damage: 100, + cost: ["Metal", "Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/189.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/189.ts new file mode 100644 index 000000000..ed57e1993 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/189.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Lickilicky ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Two Star", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + + evolveFrom: { + en: "Lickitung" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Licking Fury" + }, + + damage: "100+", + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin until you get tails. This attack does 40 more damage for each heads." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/190.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/190.ts new file mode 100644 index 000000000..034165f8d --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/190.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Cyrus" + }, + + illustrator: "akagi", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Switch in 1 of your opponent's Benched Pokémon that has damage on it to the Active Spot." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/191.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/191.ts new file mode 100644 index 000000000..d47001948 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/191.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Team Galactic Grunt" + }, + + illustrator: "GOSSAN", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Put 1 random Glameow, Stunky, or Croagunk from your deck into your hand." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/192.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/192.ts new file mode 100644 index 000000000..6bd12855f --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/192.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Cynthia" + }, + + illustrator: "Ryuta Fuse", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Garchomp or Togekiss do +50 damage to your opponent's Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/193.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/193.ts new file mode 100644 index 000000000..562407971 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/193.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Volkner" + }, + + illustrator: "GIDORA", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Choose 1 of your Electivire or Luxray. Attach 2 Energy from your discard pile to that Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/194.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/194.ts new file mode 100644 index 000000000..1ae438a64 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/194.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Dawn" + }, + + illustrator: "saino misaki", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Move an Energy from 1 of your Benched Pokémon to your Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/195.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/195.ts new file mode 100644 index 000000000..175bb4542 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/195.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mars" + }, + + illustrator: "Yuu Nishida", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Your opponent shuffles their hand into their deck and draws a card for each of their remaining points needed to win." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/196.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/196.ts new file mode 100644 index 000000000..dfeb61931 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/196.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Yanmega ex" + }, + + illustrator: "Mina Nakai", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Yanma" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Air Slash" + }, + + damage: 120, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Discard a random Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/197.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/197.ts new file mode 100644 index 000000000..4d130e9f7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/197.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Infernape ex" + }, + + illustrator: "nagimiso", + rarity: "Two Star", + category: "Pokemon", + hp: 170, + types: ["Fire"], + + evolveFrom: { + en: "Monferno" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Flare Blitz" + }, + + damage: 140, + cost: ["Fire", "Fire"], + + effect: { + en: "Discard all Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/198.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/198.ts new file mode 100644 index 000000000..f80373eee --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/198.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Pachirisu ex" + }, + + illustrator: "Nurikabe", + rarity: "Two Star", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Sparking Gadget" + }, + + damage: "40+", + cost: ["Lightning", "Lightning"], + + effect: { + en: "If this Pokémon has a Pokémon Tool attached, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/199.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/199.ts new file mode 100644 index 000000000..eb86baa49 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/199.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Mismagius ex" + }, + + illustrator: "Kuroimori", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + evolveFrom: { + en: "Misdreavus" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Magical Delusion" + }, + + damage: 70, + cost: ["Psychic", "Psychic"], + + effect: { + en: "Your opponent's Active Pokémon is now Confused." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/200.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/200.ts new file mode 100644 index 000000000..c34040b55 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/200.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Gallade ex" + }, + + illustrator: "Takumi Wada", + rarity: "Two Star", + category: "Pokemon", + hp: 170, + types: ["Fighting"], + + evolveFrom: { + en: "Kirlia" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Energized Blade" + }, + + damage: "70+", + cost: ["Fighting", "Fighting"], + + effect: { + en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/201.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/201.ts new file mode 100644 index 000000000..ebf1f18e6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/201.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Weavile ex" + }, + + illustrator: "hncl", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + + evolveFrom: { + en: "Sneasel" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Scratching Nails" + }, + + damage: "30+", + cost: ["Darkness"], + + effect: { + en: "If your opponent's Active Pokémon has damage on it, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/202.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/202.ts new file mode 100644 index 000000000..ef8161dc3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/202.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Darkrai ex" + }, + + illustrator: "Oswaldo KATO", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Nightmare Aura" + }, + + effect: { + en: "Whenever you attach a Energy from your Energy Zone to this Pokémon, do 20 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Dark Prism" + }, + + damage: 80, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/203.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/203.ts new file mode 100644 index 000000000..83e25e8a0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/203.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Lickilicky ex" + }, + + illustrator: "Jerky", + rarity: "Two Star", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + + evolveFrom: { + en: "Lickitung" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Licking Fury" + }, + + damage: "100+", + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin until you get tails. This attack does 40 more damage for each heads." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 4 +} + +export default card diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/204.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/204.ts new file mode 100644 index 000000000..29b0c72df --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/204.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Palkia ex" + }, + + illustrator: "N-DESIGN Inc.", + rarity: "Three Star", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 30, + cost: ["Water"] + }, { + name: { + en: "Dimensional Storm" + }, + + damage: 150, + cost: ["Water", "Water", "Water", "Colorless"], + + effect: { + en: "Discard 3 Energy from this Pokémon. This attack also does 20 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/205.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/205.ts new file mode 100644 index 000000000..74a6c606c --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/205.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Dialga ex" + }, + + illustrator: "N-DESIGN Inc.", + rarity: "Three Star", + category: "Pokemon", + hp: 150, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Metallic Turbo" + }, + + damage: 30, + cost: ["Metal", "Metal"], + + effect: { + en: "Take 2 Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }, { + name: { + en: "Heavy Impact" + }, + + damage: 100, + cost: ["Metal", "Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/206.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/206.ts new file mode 100644 index 000000000..da93aa441 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/206.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Palkia ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Crown", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 30, + cost: ["Water"] + }, { + name: { + en: "Dimensional Storm" + }, + + damage: 150, + cost: ["Water", "Water", "Water", "Colorless"], + + effect: { + en: "Discard 3 Energy from this Pokémon. This attack also does 20 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Space-Time Smackdown/207.ts b/data/Pokémon TCG Pocket/Space-Time Smackdown/207.ts new file mode 100644 index 000000000..915177852 --- /dev/null +++ b/data/Pokémon TCG Pocket/Space-Time Smackdown/207.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Space-Time Smackdown" + +const card: Card = { + set: Set, + + name: { + en: "Dialga ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Crown", + category: "Pokemon", + hp: 150, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Metallic Turbo" + }, + + damage: 30, + cost: ["Metal", "Metal"], + + effect: { + en: "Take 2 Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }, { + name: { + en: "Heavy Impact" + }, + + damage: 100, + cost: ["Metal", "Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light.ts b/data/Pokémon TCG Pocket/Triumphant Light.ts new file mode 100644 index 000000000..72a05c954 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light.ts @@ -0,0 +1,25 @@ +import { Set } from '../../interfaces' +import serie from '../Pokémon TCG Pocket' + +const set: Set = { + id: "A2a", + + name: { + // de: "Unschlagbare Gene", + en: "Triumphant Light", + // es: "Genes Formidables", + // fr: "Puissance Génétique", + // it: "Geni Supremi", + // pt: "Dominação Genética" + }, + + serie: serie, + + cardCount: { + official: 75 + }, + + releaseDate: "2025-02-28" +} + +export default set diff --git a/data/Pokémon TCG Pocket/Triumphant Light/001.ts b/data/Pokémon TCG Pocket/Triumphant Light/001.ts new file mode 100644 index 000000000..b4b434875 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/001.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Heracross" + }, + + illustrator: "Satoshi Shirai", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + description: { + en: "It loves sweet nectar. To keep all the nectar to
itself, it hurls rivals away with its prized horn." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Single-Horn Throw" + }, + + damage: 50, + cost: ["Grass", "Colorless", "Colorless"], + + effect: { + en: "Flip 2 coins. If both of them are heads, this attack does 70 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/002.ts b/data/Pokémon TCG Pocket/Triumphant Light/002.ts new file mode 100644 index 000000000..56c34f325 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/002.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Burmy" + }, + + illustrator: "miki kudo", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "To shelter itself from cold, wintry winds, it covers
itself with a cloak made of twigs and leaves." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ram" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/003.ts b/data/Pokémon TCG Pocket/Triumphant Light/003.ts new file mode 100644 index 000000000..2513e1f74 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/003.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Mothim" + }, + + illustrator: "MAHOU", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + evolveFrom: { + en: "Burmy" + }, + + description: { + en: "It loves the honey of flowers and steals honey
collected by Combee." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Gust" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/004.ts b/data/Pokémon TCG Pocket/Triumphant Light/004.ts new file mode 100644 index 000000000..63e8a648c --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/004.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Combee" + }, + + illustrator: "Akira Komayama", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "At night, Combee sleep in a group of about a
hundred, packed closely together in a lump." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bug Bite" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/005.ts b/data/Pokémon TCG Pocket/Triumphant Light/005.ts new file mode 100644 index 000000000..6803992d5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/005.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Vespiquen" + }, + + illustrator: "kawayoo", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Grass"], + + evolveFrom: { + en: "Combee" + }, + + description: { + en: "It houses its colony in cells in its body and
releases various pheromones to make those
grubs do its bidding." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Reckless Charge" + }, + + damage: 120, + cost: ["Grass", "Grass", "Grass"], + + effect: { + en: "This Pokémon also does 30 damage to itself." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/006.ts b/data/Pokémon TCG Pocket/Triumphant Light/006.ts new file mode 100644 index 000000000..67b2b8710 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/006.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Cherubi" + }, + + illustrator: "Atsuko Nishida", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "It nimbly dashes about to avoid getting pecked
by bird Pokémon that would love to make off
with its small, nutrient-rich storage ball." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Leafage" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/007.ts b/data/Pokémon TCG Pocket/Triumphant Light/007.ts new file mode 100644 index 000000000..e8a65f78c --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/007.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Cherrim" + }, + + illustrator: "Midori Harada", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Cherubi" + }, + + description: { + en: "As a bud, it barely moves. It sits still, placidly
waiting for sunlight to appear." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Worry Seed" + }, + + damage: 40, + cost: ["Grass"], + + effect: { + en: "Your opponent's Active Pokémon is now Confused." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/008.ts b/data/Pokémon TCG Pocket/Triumphant Light/008.ts new file mode 100644 index 000000000..a1743a5e6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/008.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Cherrim" + }, + + illustrator: "Kagemaru Himeno", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Cherubi" + }, + + description: { + en: "After absorbing plenty of sunlight, Cherrim takes
this form. It's full of energy while it's like this,
and its liveliness will go on until sundown." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Leech Seed" + }, + + damage: 60, + cost: ["Grass", "Grass"], + + effect: { + en: "Heal 20 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/009.ts b/data/Pokémon TCG Pocket/Triumphant Light/009.ts new file mode 100644 index 000000000..d42769544 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/009.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Carnivine" + }, + + illustrator: "Shiburingaru", + rarity: "Three Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + description: { + en: "It attracts prey with its sweet-smelling saliva, then
chomps down. It takes a whole day to eat prey." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Power Link" + }, + + effect: { + en: "If you have Arceus or Arceus ex in play, attacks used by this Pokémon do +30 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Vine Whip" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/010.ts b/data/Pokémon TCG Pocket/Triumphant Light/010.ts new file mode 100644 index 000000000..f248c7f60 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/010.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Leafeon ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Eevee" + }, + + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Forest Breath" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you may take a Energy from your Energy Zone and attach it to 1 of your Pokémon." + } + }], + + attacks: [{ + name: { + en: "Solar Beam" + }, + + damage: 70, + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/011.ts b/data/Pokémon TCG Pocket/Triumphant Light/011.ts new file mode 100644 index 000000000..f13bfa5c9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/011.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Houndour" + }, + + illustrator: "Kouki Saitou", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It is smart enough to hunt in packs. It uses a
variety of cries for communicating with others." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flare" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/012.ts b/data/Pokémon TCG Pocket/Triumphant Light/012.ts new file mode 100644 index 000000000..a0650fe98 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/012.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Houndoom" + }, + + illustrator: "Hajime Kusajima", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Fire"], + + evolveFrom: { + en: "Houndour" + }, + + description: { + en: "If you are burned by the flames it shoots from its
mouth, the pain will never go away." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Corner" + }, + + damage: 60, + cost: ["Fire", "Colorless"], + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/013.ts b/data/Pokémon TCG Pocket/Triumphant Light/013.ts new file mode 100644 index 000000000..97c0da6d2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/013.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Heatran" + }, + + illustrator: "Kazumasa Yasukuni", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Fire"], + + description: { + en: "It dwells in volcanic caves. It digs in with its
cross-shaped feet to crawl on ceilings and walls." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Speed Link" + }, + + effect: { + en: "If you have Arceus or Arceus ex in play, this Pokémon has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Ragin' Mad Strike" + }, + + damage: 40, + cost: ["Fire", "Fire"], + + effect: { + en: "If this Pokémon has damage on it, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/014.ts b/data/Pokémon TCG Pocket/Triumphant Light/014.ts new file mode 100644 index 000000000..f4dd41faf --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/014.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Marill" + }, + + illustrator: "Tika Matsuno", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "The fur on its body naturally repels water. It can
stay dry even when it plays in the water." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/015.ts b/data/Pokémon TCG Pocket/Triumphant Light/015.ts new file mode 100644 index 000000000..a0722e2b4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/015.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Azumarill" + }, + + illustrator: "miki kudo", + rarity: "One Diamond", + category: "Pokemon", + hp: 100, + types: ["Water"], + + evolveFrom: { + en: "Marill" + }, + + description: { + en: "Its long ears are superb sensors. It can distinguish
the movements of things in water and tell what
they are." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Waterfall" + }, + + damage: 60, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/016.ts b/data/Pokémon TCG Pocket/Triumphant Light/016.ts new file mode 100644 index 000000000..5f2120e2e --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/016.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Barboach" + }, + + illustrator: "sui", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "Its two whiskers provide a sensitive radar. Even in
muddy waters, it can detect its prey's location." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Mud-Slap" + }, + + damage: 30, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/017.ts b/data/Pokémon TCG Pocket/Triumphant Light/017.ts new file mode 100644 index 000000000..888df35d4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/017.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Whiscash" + }, + + illustrator: "Shinya Komatsu", + rarity: "Two Diamond", + category: "Pokemon", + hp: 120, + types: ["Water"], + + evolveFrom: { + en: "Barboach" + }, + + description: { + en: "It is extremely protective of its territory. If any
foe approaches, it attacks using vicious tremors." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Thrash" + }, + + damage: 80, + cost: ["Water", "Water", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 60 more damage. If tails, this Pokémon also does 20 damage to itself." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/018.ts b/data/Pokémon TCG Pocket/Triumphant Light/018.ts new file mode 100644 index 000000000..cf9c74a07 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/018.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Snorunt" + }, + + illustrator: "sowsow", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "It is said that several Snorunt gather under giant
leaves and live together in harmony." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Icicle" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/019.ts b/data/Pokémon TCG Pocket/Triumphant Light/019.ts new file mode 100644 index 000000000..0c6a7ce1c --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/019.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Froslass" + }, + + illustrator: "Mizue", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Water"], + + evolveFrom: { + en: "Snorunt" + }, + + description: { + en: "When it finds humans or Pokémon it likes,
it freezes them and takes them to its chilly
den, where they become decorations." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Blizzard" + }, + + damage: 40, + cost: ["Water", "Colorless"], + + effect: { + en: "This attack also does 10 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/020.ts b/data/Pokémon TCG Pocket/Triumphant Light/020.ts new file mode 100644 index 000000000..de68a79ee --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/020.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Snover" + }, + + illustrator: "otumami", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "During cold seasons, it migrates to the
mountain's lower reaches. It returns to the
snow-covered summit in the spring." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Corkscrew Punch" + }, + + damage: 30, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/021.ts b/data/Pokémon TCG Pocket/Triumphant Light/021.ts new file mode 100644 index 000000000..505b85a61 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/021.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Abomasnow" + }, + + illustrator: "nagimiso", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Water"], + + evolveFrom: { + en: "Snover" + }, + + description: { + en: "It lives a quiet life on mountains that are
perpetually covered in snow. It hides itself
by whipping up blizzards." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Vigor Link" + }, + + effect: { + en: "If you have Arceus or Arceus ex in play, attacks used by this Pokémon cost 1 less Energy." + } + }], + + attacks: [{ + name: { + en: "Mega Punch" + }, + + damage: 80, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/022.ts b/data/Pokémon TCG Pocket/Triumphant Light/022.ts new file mode 100644 index 000000000..cd5301bbc --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/022.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Glaceon ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Water"], + + evolveFrom: { + en: "Eevee" + }, + + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Snowy Terrain" + }, + + effect: { + en: "During Pokémon Checkup, if this Pokémon is in the Active Spot, do 10 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Freezing Wind" + }, + + damage: 90, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/023.ts b/data/Pokémon TCG Pocket/Triumphant Light/023.ts new file mode 100644 index 000000000..42323889d --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/023.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Palkia" + }, + + illustrator: "toriyufu", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Water"], + + description: { + en: "It soars across the sky in a form that greatly resembles the
creator of all things. Perhaps this imitation of appearance is
Palkia's strategy for gaining Arceus's powers." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Zone Smash" + }, + + damage: 60, + cost: ["Water", "Water", "Water"], + + effect: { + en: "Flip a coin. If heads, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/024.ts b/data/Pokémon TCG Pocket/Triumphant Light/024.ts new file mode 100644 index 000000000..656689643 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/024.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Phione" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Two Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "When the water warms, they inflate the flotation sac
on their heads and drift languidly on the sea
in packs." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Pulse" + }, + + damage: 40, + cost: ["Water", "Water"], + + effect: { + en: "Your opponent's Active Pokémon is now Asleep." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/025.ts b/data/Pokémon TCG Pocket/Triumphant Light/025.ts new file mode 100644 index 000000000..4887dbd48 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/025.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu" + }, + + illustrator: "MAHOU", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "When it is angered, it immediately discharges the
energy stored in the pouches in its cheeks." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Spark" + }, + + damage: 10, + cost: ["Lightning"], + + effect: { + en: "This attack also does 10 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/026.ts b/data/Pokémon TCG Pocket/Triumphant Light/026.ts new file mode 100644 index 000000000..17b87ec2a --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/026.ts @@ -0,0 +1,60 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Raichu" + }, + + illustrator: "Nisota Niso", + rarity: "Three Diamond", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + evolveFrom: { + en: "Pikachu" + }, + + description: { + en: "Its tail discharges electricity into the ground,
protecting it from getting shocked." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Resilience Link" + }, + + effect: { + en: "If you have Arceus or Arceus ex in play, this Pokémon takes −30 damage from attacks." + } + }], + + attacks: [{ + name: { + en: "Spark" + }, + + damage: 40, + cost: ["Lightning", "Lightning"], + + effect: { + en: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/027.ts b/data/Pokémon TCG Pocket/Triumphant Light/027.ts new file mode 100644 index 000000000..c41f0e561 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/027.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Electrike" + }, + + illustrator: "Shin Nagasawa", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "It stores static electricity in its fur for discharging.
It gives off sparks if a storm approaches." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Zap Kick" + }, + + damage: 20, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/028.ts b/data/Pokémon TCG Pocket/Triumphant Light/028.ts new file mode 100644 index 000000000..a07619ec8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/028.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Manectric" + }, + + illustrator: "match", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + evolveFrom: { + en: "Electrike" + }, + + description: { + en: "It stimulates its own muscles with electricity, so
it can move quickly. It eases its soreness with
electricity, too, so it can recover quickly as well." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Flash" + }, + + damage: 40, + cost: ["Lightning"], + + effect: { + en: "During your opponent's next turn, if the Defending Pokémon tries to use an attack, your opponent flips a coin. If tails, that attack doesn't happen." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/029.ts b/data/Pokémon TCG Pocket/Triumphant Light/029.ts new file mode 100644 index 000000000..260d004fb --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/029.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Clefairy" + }, + + illustrator: "rika", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "It is said that happiness will come to those who
see a gathering of Clefairy dancing under a
full moon." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Smack" + }, + + damage: 30, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/030.ts b/data/Pokémon TCG Pocket/Triumphant Light/030.ts new file mode 100644 index 000000000..6645c812a --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/030.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Clefable" + }, + + illustrator: "sui", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Psychic"], + + evolveFrom: { + en: "Clefairy" + }, + + description: { + en: "A timid fairy Pokémon that is rarely seen, it will
run and hide the moment it senses people." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Moonblast" + }, + + damage: 60, + cost: ["Psychic", "Colorless", "Colorless"], + + effect: { + en: "During your opponent's next turn, attacks used by the Defending Pokémon do −30 damage." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/031.ts b/data/Pokémon TCG Pocket/Triumphant Light/031.ts new file mode 100644 index 000000000..12e0bd47b --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/031.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Gastly" + }, + + illustrator: "Yuu Nishida", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + + description: { + en: "It wraps its opponent in its gas-like body,
slowly weakening its prey by poisoning it
through the skin." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Astonish" + }, + + cost: ["Colorless"], + + effect: { + en: "Flip a coin. If heads, your opponent reveals a random card from their hand and shuffles it into their deck." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/032.ts b/data/Pokémon TCG Pocket/Triumphant Light/032.ts new file mode 100644 index 000000000..a2f1d0b71 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/032.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Haunter" + }, + + illustrator: "Eri Yamaki", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + evolveFrom: { + en: "Gastly" + }, + + description: { + en: "It likes to lurk in the dark and tap shoulders
with a gaseous hand. Its touch causes endless
shuddering." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Mumble" + }, + + damage: 40, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/033.ts b/data/Pokémon TCG Pocket/Triumphant Light/033.ts new file mode 100644 index 000000000..5fabc3005 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/033.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Gengar" + }, + + illustrator: "Midori Harada", + rarity: "Two Diamond", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + evolveFrom: { + en: "Haunter" + }, + + description: { + en: "To steal the life of its target, it slips into
the prey's shadow and silently waits for
an opportunity." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Hypnoblast" + }, + + damage: 70, + cost: ["Psychic", "Psychic"], + + effect: { + en: "Your opponent's Active Pokémon is now Asleep." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/034.ts b/data/Pokémon TCG Pocket/Triumphant Light/034.ts new file mode 100644 index 000000000..694bddb54 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/034.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Unown" + }, + + illustrator: "Tetsu Kayama", + rarity: "Two Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "Its flat, thin body is always stuck on walls. Its shape
appears to have some meaning." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "CHECK" + }, + + effect: { + en: "Once during your turn, you may choose either player. Look at the top card of that player's deck." + } + }], + + attacks: [{ + name: { + en: "Hidden Power" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/035.ts b/data/Pokémon TCG Pocket/Triumphant Light/035.ts new file mode 100644 index 000000000..d9e333946 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/035.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Rotom" + }, + + illustrator: "Anesaki Dynamic", + rarity: "Three Diamond", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + en: "Its electricity-like body can enter some kinds
of machines and take control in order to make
mischief." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Speed Link" + }, + + effect: { + en: "If you have Arceus or Arceus ex in play, this Pokémon has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Dash Attack" + }, + + cost: ["Colorless"], + + effect: { + en: "This attack does 20 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/036.ts b/data/Pokémon TCG Pocket/Triumphant Light/036.ts new file mode 100644 index 000000000..d13e43bd5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/036.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Sudowoodo" + }, + + illustrator: "Tomokazu Komiya", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "Although it always pretends to be a tree,
its composition appears more similar to
rock than to vegetation." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Fighting Headbutt" + }, + + damage: 20, + cost: ["Fighting"], + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/037.ts b/data/Pokémon TCG Pocket/Triumphant Light/037.ts new file mode 100644 index 000000000..2e7f1a007 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/037.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Phanpy" + }, + + illustrator: "Asako Ito", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "This Pokémon lives and nests on a riverbank.
After playing in the mud, it won't be able to
settle down unless it washes its body." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rollout" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/038.ts b/data/Pokémon TCG Pocket/Triumphant Light/038.ts new file mode 100644 index 000000000..cd203ccce --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/038.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Donphan" + }, + + illustrator: "Shin Nagasawa", + rarity: "Two Diamond", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + + evolveFrom: { + en: "Phanpy" + }, + + description: { + en: "Donphan is covered in tough hide, so even being
hit by a car won't faze this Pokémon. However, it
is extremely susceptible to rain." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Rolling Spin" + }, + + damage: 60, + cost: ["Fighting", "Fighting", "Fighting"], + + effect: { + en: "During your next turn, this Pokémon's Rolling Spin attack does +60 damage." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/039.ts b/data/Pokémon TCG Pocket/Triumphant Light/039.ts new file mode 100644 index 000000000..b8129389f --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/039.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Larvitar" + }, + + illustrator: "Yukiko Baba", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "Born deep underground, this Pokémon becomes
a pupa after eating enough dirt to make a
mountain." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Corkscrew Punch" + }, + + damage: 30, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/040.ts b/data/Pokémon TCG Pocket/Triumphant Light/040.ts new file mode 100644 index 000000000..d34661795 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/040.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Pupitar" + }, + + illustrator: "match", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + evolveFrom: { + en: "Larvitar" + }, + + description: { + en: "Its shell is as hard as bedrock, and it is also very
strong. Its thrashing can topple a mountain." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Speed Attack" + }, + + damage: 50, + cost: ["Fighting", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/041.ts b/data/Pokémon TCG Pocket/Triumphant Light/041.ts new file mode 100644 index 000000000..31ac2ddc5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/041.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Tyranitar" + }, + + illustrator: "kawayoo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 160, + types: ["Fighting"], + + evolveFrom: { + en: "Pupitar" + }, + + description: { + en: "Extremely strong, it can change the landscape.
It is so insolent that it doesn't care about others." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Power Link" + }, + + effect: { + en: "If you have Arceus or Arceus ex in play, attacks used by this Pokémon do +30 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Land Crush" + }, + + damage: 130, + cost: ["Fighting", "Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 4 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/042.ts b/data/Pokémon TCG Pocket/Triumphant Light/042.ts new file mode 100644 index 000000000..c1313b2b7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/042.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Nosepass" + }, + + illustrator: "Satoshi Shirai", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "It moves less than an inch a year, but when
it's in a jam, it will spin and drill down into the
ground in a split second." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/043.ts b/data/Pokémon TCG Pocket/Triumphant Light/043.ts new file mode 100644 index 000000000..31c65a7f5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/043.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Meditite" + }, + + illustrator: "Mina Nakai", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "It never skips its daily yoga training. It heightens
its inner strength through meditation." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Kick" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/044.ts b/data/Pokémon TCG Pocket/Triumphant Light/044.ts new file mode 100644 index 000000000..44079f863 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/044.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Medicham" + }, + + illustrator: "Tetsu Kayama", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + evolveFrom: { + en: "Meditite" + }, + + description: { + en: "Through yoga training, it gained the psychic
power to predict its foe's next move." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Kick Shot" + }, + + damage: 80, + cost: ["Fighting"], + + effect: { + en: "Flip a coin. If tails, this attack does nothing." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/045.ts b/data/Pokémon TCG Pocket/Triumphant Light/045.ts new file mode 100644 index 000000000..f1772d122 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/045.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Gible" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "It skulks in caves, and when prey or an enemy
passes by, it leaps out and chomps them.
The force of its attack sometimes chips its teeth." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/046.ts b/data/Pokémon TCG Pocket/Triumphant Light/046.ts new file mode 100644 index 000000000..da5622e08 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/046.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Gabite" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + evolveFrom: { + en: "Gible" + }, + + description: { + en: "In rare cases, it molts and sheds its scales.
Medicine containing its scales as an ingredient
will make a weary body feel invigorated." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Sharp Scythe" + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/047.ts b/data/Pokémon TCG Pocket/Triumphant Light/047.ts new file mode 100644 index 000000000..297233abe --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/047.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Garchomp ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 170, + types: ["Fighting"], + + evolveFrom: { + en: "Gabite" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Linear Attack" + }, + + cost: ["Fighting"], + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Pokémon." + } + }, { + name: { + en: "Dragon Claw" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/048.ts b/data/Pokémon TCG Pocket/Triumphant Light/048.ts new file mode 100644 index 000000000..772cfab66 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/048.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Zubat" + }, + + illustrator: "Sekio", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Darkness"], + + description: { + en: "It emits ultrasonic waves from its mouth to check
its surroundings. Even in tight caves, Zubat flies
around with skill." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 20, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/049.ts b/data/Pokémon TCG Pocket/Triumphant Light/049.ts new file mode 100644 index 000000000..b13f97f51 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/049.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Golbat" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + + evolveFrom: { + en: "Zubat" + }, + + description: { + en: "It loves to drink other creatures' blood. It's said
that if it finds others of its kind going hungry,
it sometimes shares the blood it's gathered." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 30, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/050.ts b/data/Pokémon TCG Pocket/Triumphant Light/050.ts new file mode 100644 index 000000000..1ace3a02c --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/050.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Crobat" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + + evolveFrom: { + en: "Golbat" + }, + + description: { + en: "Both of its legs have turned into wings. Without a
sound, Crobat flies swiftly toward its prey and
sinks its fangs into the nape of its target's neck." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Cunning Link" + }, + + effect: { + en: "Once during your turn, if you have Arceus or Arceus ex in play, you may do 30 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Darkness Fang" + }, + + damage: 50, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/051.ts b/data/Pokémon TCG Pocket/Triumphant Light/051.ts new file mode 100644 index 000000000..d4cf06520 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/051.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Croagunk" + }, + + illustrator: "SATOSHI NAKAI", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "Inflating its poison sacs, it fills the area with an
odd sound and hits flinching opponents with a
poison jab." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Beat" + }, + + damage: 20, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/052.ts b/data/Pokémon TCG Pocket/Triumphant Light/052.ts new file mode 100644 index 000000000..1fa59bfef --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/052.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Toxicroak" + }, + + illustrator: "Souichirou Gunjima", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + + evolveFrom: { + en: "Croagunk" + }, + + description: { + en: "Swaying and dodging the attacks of its foes, it
weaves its flexible body in close, then lunges
out with its poisonous claws." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Toxic" + }, + + cost: ["Darkness"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned. Do 20 damage to this Pokémon instead of the usual amount for this Special Condition." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/053.ts b/data/Pokémon TCG Pocket/Triumphant Light/053.ts new file mode 100644 index 000000000..98fa7a27f --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/053.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Magnemite" + }, + + illustrator: "OKACHEKE", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Metal"], + + description: { + en: "The electromagnetic waves emitted by the units
at the sides of its head expel antigravity, which
allows it to float." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 20, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/054.ts b/data/Pokémon TCG Pocket/Triumphant Light/054.ts new file mode 100644 index 000000000..ba2eee811 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/054.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Magneton" + }, + + illustrator: "Souichirou Gunjima", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Metal"], + + evolveFrom: { + en: "Magnemite" + }, + + description: { + en: "Three Magnemite are linked by a strong magnetic
force. Earaches will occur if you get too close." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Rolling Attack" + }, + + damage: 30, + cost: ["Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/055.ts b/data/Pokémon TCG Pocket/Triumphant Light/055.ts new file mode 100644 index 000000000..da352fa67 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/055.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Magnezone" + }, + + illustrator: "toriyufu", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Metal"], + + evolveFrom: { + en: "Magneton" + }, + + description: { + en: "As it zooms through the sky, this Pokémon seems
to be receiving signals of unknown origin while
transmitting signals of unknown purpose." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Resilience Link" + }, + + effect: { + en: "If you have Arceus or Arceus ex in play, this Pokémon takes −30 damage from attacks." + } + }], + + attacks: [{ + name: { + en: "Power Beam" + }, + + damage: 80, + cost: ["Metal", "Metal", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/056.ts b/data/Pokémon TCG Pocket/Triumphant Light/056.ts new file mode 100644 index 000000000..094f3d99d --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/056.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Mawile" + }, + + illustrator: "tetsuya koizumi", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + en: "It uses its docile-looking face to lull foes into
complacency, then bites with its huge,
relentless jaws." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Iron Beam Breaker" + }, + + damage: 20, + cost: ["Colorless"], + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/057.ts b/data/Pokémon TCG Pocket/Triumphant Light/057.ts new file mode 100644 index 000000000..831afed06 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/057.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Probopass ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Four Diamond", + category: "Pokemon", + hp: 160, + types: ["Metal"], + + evolveFrom: { + en: "Nosepass" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Defensive Unit" + }, + + damage: 90, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "During your opponent's next turn, this Pokémon takes −20 damage from attacks." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/058.ts b/data/Pokémon TCG Pocket/Triumphant Light/058.ts new file mode 100644 index 000000000..ce039502a --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/058.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Bronzor" + }, + + illustrator: "Akira Komayama", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Metal"], + + description: { + en: "Ancient people believed that the pattern on
Bronzor's back contained a mysterious power." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ram" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/059.ts b/data/Pokémon TCG Pocket/Triumphant Light/059.ts new file mode 100644 index 000000000..a99b68ab2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/059.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Bronzong" + }, + + illustrator: "Naoki Saito", + rarity: "Two Diamond", + category: "Pokemon", + hp: 120, + types: ["Metal"], + + evolveFrom: { + en: "Bronzor" + }, + + description: { + en: "In ages past, this Pokémon was revered as a
bringer of rain. It was found buried in the ground." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Psychic" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/060.ts b/data/Pokémon TCG Pocket/Triumphant Light/060.ts new file mode 100644 index 000000000..5a1944efa --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/060.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Dialga" + }, + + illustrator: "akagi", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Metal"], + + description: { + en: "Radiant light caused Dialga to take on a form bearing a striking
resemblance to the creator Pokémon. Dialga now wields such
colossal strength that one must conclude this is its true form." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Time Mash" + }, + + damage: 100, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "Flip a coin. If tails, during your next turn, this Pokémon can't attack." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/061.ts b/data/Pokémon TCG Pocket/Triumphant Light/061.ts new file mode 100644 index 000000000..c685a3893 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/061.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Giratina" + }, + + illustrator: "Shin Nagasawa", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Dragon"], + + description: { + en: "This Pokémon is said to live in a world on the
reverse side of ours, where common knowledge is
distorted and strange." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Crisis Dive" + }, + + damage: 120, + cost: ["Grass", "Psychic", "Colorless"], + + effect: { + en: "Discard 2 random Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Colorless", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/062.ts b/data/Pokémon TCG Pocket/Triumphant Light/062.ts new file mode 100644 index 000000000..4f771a42a --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/062.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Eevee" + }, + + illustrator: "Naoyo Kimura", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "Its ability to evolve into many forms allows it to
adapt smoothly and perfectly to any environment." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tail Whap" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/063.ts b/data/Pokémon TCG Pocket/Triumphant Light/063.ts new file mode 100644 index 000000000..541184495 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/063.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Snorlax" + }, + + illustrator: "burari", + rarity: "Two Diamond", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + + description: { + en: "It is not satisfied unless it eats over 880 pounds
of food every day. When it is done eating, it
goes promptly to sleep." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Collapse" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "This Pokémon is now Asleep." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 4 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/064.ts b/data/Pokémon TCG Pocket/Triumphant Light/064.ts new file mode 100644 index 000000000..00eb61e19 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/064.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Hoothoot" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "It always stands on one foot. It changes feet so
fast, the movement can rarely be seen." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Peck" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/065.ts b/data/Pokémon TCG Pocket/Triumphant Light/065.ts new file mode 100644 index 000000000..9e5e9aaa2 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/065.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Noctowl" + }, + + illustrator: "DOM", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + evolveFrom: { + en: "Hoothoot" + }, + + description: { + en: "Its eyes are specially developed to enable it to
see clearly even in murky darkness and minimal light." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Silent Wing" + }, + + damage: 50, + cost: ["Colorless", "Colorless"], + + effect: { + en: "Your opponent reveals their hand." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/066.ts b/data/Pokémon TCG Pocket/Triumphant Light/066.ts new file mode 100644 index 000000000..25d68eb5b --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/066.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Starly" + }, + + illustrator: "Apios", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "They flock around mountains and fields, chasing
after bug Pokémon. Their singing is noisy and
annoying." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Glide" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/067.ts b/data/Pokémon TCG Pocket/Triumphant Light/067.ts new file mode 100644 index 000000000..5d4c50c3b --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/067.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Staravia" + }, + + illustrator: "Masakazu Fukuda", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + evolveFrom: { + en: "Starly" + }, + + description: { + en: "Recognizing their own weakness, they always live
in a group. When alone, a Staravia cries noisily." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Wing Attack" + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/068.ts b/data/Pokémon TCG Pocket/Triumphant Light/068.ts new file mode 100644 index 000000000..ac7c047f8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/068.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Staraptor" + }, + + illustrator: "Minahamu", + rarity: "Two Diamond", + category: "Pokemon", + hp: 150, + types: ["Colorless"], + + evolveFrom: { + en: "Staravia" + }, + + description: { + en: "When Staravia evolve into Staraptor, they leave
the flock to live alone. They have sturdy wings." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Brave Bird" + }, + + damage: 130, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This Pokémon also does 20 damage to itself." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/069.ts b/data/Pokémon TCG Pocket/Triumphant Light/069.ts new file mode 100644 index 000000000..9e8fa6a34 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/069.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Shaymin" + }, + + illustrator: "Mizue", + rarity: "Three Diamond", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + en: "It can dissolve toxins in the air to instantly
transform ruined land into a lush field of flowers." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Sky Support" + }, + + effect: { + en: "As long as this Pokémon is on your Bench, your Active Basic Pokémon's Retreat Cost is 1 less." + } + }], + + attacks: [{ + name: { + en: "Flap" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/070.ts b/data/Pokémon TCG Pocket/Triumphant Light/070.ts new file mode 100644 index 000000000..74dc1258f --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/070.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Arceus" + }, + + illustrator: "Nurikabe", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + + description: { + en: "According to the legends of Sinnoh, this Pokémon
emerged from an egg and shaped all there is in
this world." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Power Blast" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "Discard a random Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/071.ts b/data/Pokémon TCG Pocket/Triumphant Light/071.ts new file mode 100644 index 000000000..996e87c1d --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/071.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Arceus ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Fabled Luster" + }, + + effect: { + en: "This Pokémon can't be affected by any Special Conditions." + } + }], + + attacks: [{ + name: { + en: "Ultimate Force" + }, + + damage: 70, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/072.ts b/data/Pokémon TCG Pocket/Triumphant Light/072.ts new file mode 100644 index 000000000..1e7963c70 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/072.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Irida" + }, + + illustrator: "Atsushi Furusawa", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Heal 40 damage from each of your Pokémon that has any Energy attached." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/073.ts b/data/Pokémon TCG Pocket/Triumphant Light/073.ts new file mode 100644 index 000000000..8ecf13781 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/073.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Celestic Town Elder" + }, + + illustrator: "Yuu Nishida", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Put 1 random Basic Pokémon from your discard pile into your hand." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/074.ts b/data/Pokémon TCG Pocket/Triumphant Light/074.ts new file mode 100644 index 000000000..6775108dc --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/074.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Barry" + }, + + illustrator: "Hideki Ishikawa", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Snorlax, Heracross, and Staraptor cost 2 less Energy." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/075.ts b/data/Pokémon TCG Pocket/Triumphant Light/075.ts new file mode 100644 index 000000000..4ef54fa62 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/075.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Adaman" + }, + + illustrator: "akagi", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "During your opponent's next turn, all of your Pokémon take −20 damage from attacks from your opponent's Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/076.ts b/data/Pokémon TCG Pocket/Triumphant Light/076.ts new file mode 100644 index 000000000..27658c2cf --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/076.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Houndoom" + }, + + illustrator: "matazo", + rarity: "One Star", + category: "Pokemon", + hp: 100, + types: ["Fire"], + + evolveFrom: { + en: "Houndour" + }, + + description: { + en: "If you are burned by the flames it shoots from its
mouth, the pain will never go away." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Corner" + }, + + damage: 60, + cost: ["Fire", "Colorless"], + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/077.ts b/data/Pokémon TCG Pocket/Triumphant Light/077.ts new file mode 100644 index 000000000..f99351daf --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/077.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Marill" + }, + + illustrator: "Taiga Kayama", + rarity: "One Star", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "The fur on its body naturally repels water. It can
stay dry even when it plays in the water." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/078.ts b/data/Pokémon TCG Pocket/Triumphant Light/078.ts new file mode 100644 index 000000000..21b9d9df7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/078.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Unown" + }, + + illustrator: "IKEDA Saki", + rarity: "One Star", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "Its flat, thin body is always stuck on walls. Its shape
appears to have some meaning." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "CHECK" + }, + + effect: { + en: "Once during your turn, you may choose either player. Look at the top card of that player's deck." + } + }], + + attacks: [{ + name: { + en: "Hidden Power" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/079.ts b/data/Pokémon TCG Pocket/Triumphant Light/079.ts new file mode 100644 index 000000000..2828c633f --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/079.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Sudowoodo" + }, + + illustrator: "Yuriko Akase", + rarity: "One Star", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "Although it always pretends to be a tree,
its composition appears more similar to
rock than to vegetation." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Fighting Headbutt" + }, + + damage: 20, + cost: ["Fighting"], + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/080.ts b/data/Pokémon TCG Pocket/Triumphant Light/080.ts new file mode 100644 index 000000000..7980df991 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/080.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Magnemite" + }, + + illustrator: "Yukihiro Tada", + rarity: "One Star", + category: "Pokemon", + hp: 60, + types: ["Metal"], + + description: { + en: "The electromagnetic waves emitted by the units
at the sides of its head expel antigravity, which
allows it to float." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 20, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/081.ts b/data/Pokémon TCG Pocket/Triumphant Light/081.ts new file mode 100644 index 000000000..63824347a --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/081.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Shaymin" + }, + + illustrator: "MINAMINAMI Take", + rarity: "One Star", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + en: "It can dissolve toxins in the air to instantly
transform ruined land into a lush field of flowers." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Sky Support" + }, + + effect: { + en: "As long as this Pokémon is on your Bench, your Active Basic Pokémon's Retreat Cost is 1 less." + } + }], + + attacks: [{ + name: { + en: "Flap" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/082.ts b/data/Pokémon TCG Pocket/Triumphant Light/082.ts new file mode 100644 index 000000000..3b1c0e61f --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/082.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Leafeon ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Eevee" + }, + + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Forest Breath" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you may take a Energy from your Energy Zone and attach it to 1 of your Pokémon." + } + }], + + attacks: [{ + name: { + en: "Solar Beam" + }, + + damage: 70, + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/083.ts b/data/Pokémon TCG Pocket/Triumphant Light/083.ts new file mode 100644 index 000000000..8a91afccb --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/083.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Glaceon ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Water"], + + evolveFrom: { + en: "Eevee" + }, + + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Snowy Terrain" + }, + + effect: { + en: "During Pokémon Checkup, if this Pokémon is in the Active Spot, do 10 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Freezing Wind" + }, + + damage: 90, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/084.ts b/data/Pokémon TCG Pocket/Triumphant Light/084.ts new file mode 100644 index 000000000..f01bfbf39 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/084.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Garchomp ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 170, + types: ["Fighting"], + + evolveFrom: { + en: "Gabite" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Linear Attack" + }, + + cost: ["Fighting"], + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Pokémon." + } + }, { + name: { + en: "Dragon Claw" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/085.ts b/data/Pokémon TCG Pocket/Triumphant Light/085.ts new file mode 100644 index 000000000..f989b2091 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/085.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Probopass ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Two Star", + category: "Pokemon", + hp: 160, + types: ["Metal"], + + evolveFrom: { + en: "Nosepass" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Defensive Unit" + }, + + damage: 90, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "During your opponent's next turn, this Pokémon takes −20 damage from attacks." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/086.ts b/data/Pokémon TCG Pocket/Triumphant Light/086.ts new file mode 100644 index 000000000..d7520f761 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/086.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Arceus ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Fabled Luster" + }, + + effect: { + en: "This Pokémon can't be affected by any Special Conditions." + } + }], + + attacks: [{ + name: { + en: "Ultimate Force" + }, + + damage: 70, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/087.ts b/data/Pokémon TCG Pocket/Triumphant Light/087.ts new file mode 100644 index 000000000..cf32079f8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/087.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Irida" + }, + + illustrator: "Atsushi Furusawa", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Heal 40 damage from each of your Pokémon that has any Energy attached." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/088.ts b/data/Pokémon TCG Pocket/Triumphant Light/088.ts new file mode 100644 index 000000000..a00ac54e4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/088.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Celestic Town Elder" + }, + + illustrator: "Yuu Nishida", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Put 1 random Basic Pokémon from your discard pile into your hand." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/089.ts b/data/Pokémon TCG Pocket/Triumphant Light/089.ts new file mode 100644 index 000000000..65bb1668c --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/089.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Barry" + }, + + illustrator: "Hideki Ishikawa", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Snorlax, Heracross, and Staraptor cost 2 less Energy." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/090.ts b/data/Pokémon TCG Pocket/Triumphant Light/090.ts new file mode 100644 index 000000000..cc8c32004 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/090.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Adaman" + }, + + illustrator: "akagi", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "During your opponent's next turn, all of your Pokémon take −20 damage from attacks from your opponent's Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/091.ts b/data/Pokémon TCG Pocket/Triumphant Light/091.ts new file mode 100644 index 000000000..ee52410b7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/091.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Leafeon ex" + }, + + illustrator: "saino misaki", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Eevee" + }, + + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Forest Breath" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you may take a Energy from your Energy Zone and attach it to 1 of your Pokémon." + } + }], + + attacks: [{ + name: { + en: "Solar Beam" + }, + + damage: 70, + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/092.ts b/data/Pokémon TCG Pocket/Triumphant Light/092.ts new file mode 100644 index 000000000..bcf268331 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/092.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Glaceon ex" + }, + + illustrator: "rika", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Water"], + + evolveFrom: { + en: "Eevee" + }, + + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Snowy Terrain" + }, + + effect: { + en: "During Pokémon Checkup, if this Pokémon is in the Active Spot, do 10 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Freezing Wind" + }, + + damage: 90, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/093.ts b/data/Pokémon TCG Pocket/Triumphant Light/093.ts new file mode 100644 index 000000000..d6d2db24c --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/093.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Garchomp ex" + }, + + illustrator: "toriyufu", + rarity: "Two Star", + category: "Pokemon", + hp: 170, + types: ["Fighting"], + + evolveFrom: { + en: "Gabite" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Linear Attack" + }, + + cost: ["Fighting"], + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Pokémon." + } + }, { + name: { + en: "Dragon Claw" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/094.ts b/data/Pokémon TCG Pocket/Triumphant Light/094.ts new file mode 100644 index 000000000..f3b48201c --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/094.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Probopass ex" + }, + + illustrator: "Masa", + rarity: "Two Star", + category: "Pokemon", + hp: 160, + types: ["Metal"], + + evolveFrom: { + en: "Nosepass" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Defensive Unit" + }, + + damage: 90, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "During your opponent's next turn, this Pokémon takes −20 damage from attacks." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/095.ts b/data/Pokémon TCG Pocket/Triumphant Light/095.ts new file mode 100644 index 000000000..a4bb25a1f --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/095.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Arceus ex" + }, + + illustrator: "Takumi Wada", + rarity: "Three Star", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Fabled Luster" + }, + + effect: { + en: "This Pokémon can't be affected by any Special Conditions." + } + }], + + attacks: [{ + name: { + en: "Ultimate Force" + }, + + damage: 70, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Triumphant Light/096.ts b/data/Pokémon TCG Pocket/Triumphant Light/096.ts new file mode 100644 index 000000000..d0ae43b21 --- /dev/null +++ b/data/Pokémon TCG Pocket/Triumphant Light/096.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Triumphant Light" + +const card: Card = { + set: Set, + + name: { + en: "Arceus ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Crown", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Fabled Luster" + }, + + effect: { + en: "This Pokémon can't be affected by any Special Conditions." + } + }], + + attacks: [{ + name: { + en: "Ultimate Force" + }, + + damage: 70, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/151.ts b/data/Scarlet & Violet/151.ts index 33283d882..449d4a0c1 100644 --- a/data/Scarlet & Violet/151.ts +++ b/data/Scarlet & Violet/151.ts @@ -19,7 +19,12 @@ const set: Set = { official: 165 }, - releaseDate: "2023-09-22" + releaseDate: "2023-09-22", + + abbreviations: { + official: "MEW", + fr: "151" + } } export default set diff --git a/data/Scarlet & Violet/151/015.ts b/data/Scarlet & Violet/151/015.ts index 12fe73c63..5b00a605c 100644 --- a/data/Scarlet & Violet/151/015.ts +++ b/data/Scarlet & Violet/151/015.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/026.ts b/data/Scarlet & Violet/151/026.ts index 3f6d09d52..d04b12fdf 100644 --- a/data/Scarlet & Violet/151/026.ts +++ b/data/Scarlet & Violet/151/026.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/034.ts b/data/Scarlet & Violet/151/034.ts index 01d0d89a4..abd09062b 100644 --- a/data/Scarlet & Violet/151/034.ts +++ b/data/Scarlet & Violet/151/034.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/045.ts b/data/Scarlet & Violet/151/045.ts index 63285914b..ecdeab81e 100644 --- a/data/Scarlet & Violet/151/045.ts +++ b/data/Scarlet & Violet/151/045.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/068.ts b/data/Scarlet & Violet/151/068.ts index f098d5dec..e0fce7ed3 100644 --- a/data/Scarlet & Violet/151/068.ts +++ b/data/Scarlet & Violet/151/068.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/085.ts b/data/Scarlet & Violet/151/085.ts index a4a6f53ac..db4eed2d9 100644 --- a/data/Scarlet & Violet/151/085.ts +++ b/data/Scarlet & Violet/151/085.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/094.ts b/data/Scarlet & Violet/151/094.ts index 53a794ec8..bb15bfba1 100644 --- a/data/Scarlet & Violet/151/094.ts +++ b/data/Scarlet & Violet/151/094.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/101.ts b/data/Scarlet & Violet/151/101.ts index bf0e9314f..1f63f4128 100644 --- a/data/Scarlet & Violet/151/101.ts +++ b/data/Scarlet & Violet/151/101.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/105.ts b/data/Scarlet & Violet/151/105.ts index c8bcfcd7d..2b62c5407 100644 --- a/data/Scarlet & Violet/151/105.ts +++ b/data/Scarlet & Violet/151/105.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/110.ts b/data/Scarlet & Violet/151/110.ts index d19c1a9c7..d9e3cfbc2 100644 --- a/data/Scarlet & Violet/151/110.ts +++ b/data/Scarlet & Violet/151/110.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/113.ts b/data/Scarlet & Violet/151/113.ts index 2df3ecba0..42f68e424 100644 --- a/data/Scarlet & Violet/151/113.ts +++ b/data/Scarlet & Violet/151/113.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/121.ts b/data/Scarlet & Violet/151/121.ts index 94d80f025..9adca180e 100644 --- a/data/Scarlet & Violet/151/121.ts +++ b/data/Scarlet & Violet/151/121.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/122.ts b/data/Scarlet & Violet/151/122.ts index d611e4276..35020ce29 100644 --- a/data/Scarlet & Violet/151/122.ts +++ b/data/Scarlet & Violet/151/122.ts @@ -68,9 +68,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/130.ts b/data/Scarlet & Violet/151/130.ts index 6557a1edd..515614c83 100644 --- a/data/Scarlet & Violet/151/130.ts +++ b/data/Scarlet & Violet/151/130.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/132.ts b/data/Scarlet & Violet/151/132.ts index 290e5bc78..343dd2bb1 100644 --- a/data/Scarlet & Violet/151/132.ts +++ b/data/Scarlet & Violet/151/132.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/134.ts b/data/Scarlet & Violet/151/134.ts index 3d4a93f7c..fc0a5d6be 100644 --- a/data/Scarlet & Violet/151/134.ts +++ b/data/Scarlet & Violet/151/134.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/135.ts b/data/Scarlet & Violet/151/135.ts index 722312c68..aeff62797 100644 --- a/data/Scarlet & Violet/151/135.ts +++ b/data/Scarlet & Violet/151/135.ts @@ -68,9 +68,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/136.ts b/data/Scarlet & Violet/151/136.ts index d7772c444..ae4b1508a 100644 --- a/data/Scarlet & Violet/151/136.ts +++ b/data/Scarlet & Violet/151/136.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/139.ts b/data/Scarlet & Violet/151/139.ts index b2117e2e2..1cf0f5219 100644 --- a/data/Scarlet & Violet/151/139.ts +++ b/data/Scarlet & Violet/151/139.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/141.ts b/data/Scarlet & Violet/151/141.ts index 4fa1598e0..ff127883e 100644 --- a/data/Scarlet & Violet/151/141.ts +++ b/data/Scarlet & Violet/151/141.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/142.ts b/data/Scarlet & Violet/151/142.ts index 81f405ba6..40bfd4e0b 100644 --- a/data/Scarlet & Violet/151/142.ts +++ b/data/Scarlet & Violet/151/142.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/144.ts b/data/Scarlet & Violet/151/144.ts index e1429fccd..ab7d150b2 100644 --- a/data/Scarlet & Violet/151/144.ts +++ b/data/Scarlet & Violet/151/144.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/145.ts b/data/Scarlet & Violet/151/145.ts index 7f4737806..42b5463cb 100644 --- a/data/Scarlet & Violet/151/145.ts +++ b/data/Scarlet & Violet/151/145.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/149.ts b/data/Scarlet & Violet/151/149.ts index 3f78f166d..f7bdc65a8 100644 --- a/data/Scarlet & Violet/151/149.ts +++ b/data/Scarlet & Violet/151/149.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/151/150.ts b/data/Scarlet & Violet/151/150.ts index b6fcf9729..4704b6c91 100644 --- a/data/Scarlet & Violet/151/150.ts +++ b/data/Scarlet & Violet/151/150.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Obsidian Flames.ts b/data/Scarlet & Violet/Obsidian Flames.ts index b80c5e49f..d8b908d20 100644 --- a/data/Scarlet & Violet/Obsidian Flames.ts +++ b/data/Scarlet & Violet/Obsidian Flames.ts @@ -19,7 +19,12 @@ const set: Set = { official: 197 }, - releaseDate: "2023-08-11" + releaseDate: "2023-08-11", + + abbreviations: { + official: "OBF", + fr: "FLO" + } } export default set diff --git a/data/Scarlet & Violet/Obsidian Flames/013.ts b/data/Scarlet & Violet/Obsidian Flames/013.ts index 1e69193f0..659617d3f 100644 --- a/data/Scarlet & Violet/Obsidian Flames/013.ts +++ b/data/Scarlet & Violet/Obsidian Flames/013.ts @@ -39,7 +39,6 @@ const card: Card = { regulationMark: "G", variants: { - holo: false } } diff --git a/data/Scarlet & Violet/Obsidian Flames/014.ts b/data/Scarlet & Violet/Obsidian Flames/014.ts index 201aab63f..59a753ef5 100644 --- a/data/Scarlet & Violet/Obsidian Flames/014.ts +++ b/data/Scarlet & Violet/Obsidian Flames/014.ts @@ -48,7 +48,6 @@ const card: Card = { regulationMark: "G", variants: { - holo: false } } diff --git a/data/Scarlet & Violet/Obsidian Flames/025.ts b/data/Scarlet & Violet/Obsidian Flames/025.ts index c55b2a94a..1b6542a1d 100644 --- a/data/Scarlet & Violet/Obsidian Flames/025.ts +++ b/data/Scarlet & Violet/Obsidian Flames/025.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Obsidian Flames/026.ts b/data/Scarlet & Violet/Obsidian Flames/026.ts index 6be723568..e80017f40 100644 --- a/data/Scarlet & Violet/Obsidian Flames/026.ts +++ b/data/Scarlet & Violet/Obsidian Flames/026.ts @@ -48,7 +48,9 @@ const card: Card = { regulationMark: "G", variants: { - holo: false + normal: true, + reverse: true, + holo: true, } } diff --git a/data/Scarlet & Violet/Obsidian Flames/027.ts b/data/Scarlet & Violet/Obsidian Flames/027.ts index 88d20c29b..d6f57a6a1 100644 --- a/data/Scarlet & Violet/Obsidian Flames/027.ts +++ b/data/Scarlet & Violet/Obsidian Flames/027.ts @@ -48,7 +48,9 @@ const card: Card = { regulationMark: "G", variants: { - holo: false + normal: true, + reverse: true, + holo: true, } } diff --git a/data/Scarlet & Violet/Obsidian Flames/030.ts b/data/Scarlet & Violet/Obsidian Flames/030.ts index 6e071aaab..36515c364 100644 --- a/data/Scarlet & Violet/Obsidian Flames/030.ts +++ b/data/Scarlet & Violet/Obsidian Flames/030.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Obsidian Flames/062.ts b/data/Scarlet & Violet/Obsidian Flames/062.ts index 0812eec0f..ec9b5d6e2 100644 --- a/data/Scarlet & Violet/Obsidian Flames/062.ts +++ b/data/Scarlet & Violet/Obsidian Flames/062.ts @@ -69,9 +69,10 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, - normal: false + normal: true, + holo: true, + reverse: true, } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Obsidian Flames/070.ts b/data/Scarlet & Violet/Obsidian Flames/070.ts index 97132aaea..9eaabf2a9 100644 --- a/data/Scarlet & Violet/Obsidian Flames/070.ts +++ b/data/Scarlet & Violet/Obsidian Flames/070.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Obsidian Flames/072.ts b/data/Scarlet & Violet/Obsidian Flames/072.ts index 52c42c0e9..e693d6c40 100644 --- a/data/Scarlet & Violet/Obsidian Flames/072.ts +++ b/data/Scarlet & Violet/Obsidian Flames/072.ts @@ -67,9 +67,10 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, - normal: false + normal: true, + reverse: true, + holo: true, } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Obsidian Flames/085.ts b/data/Scarlet & Violet/Obsidian Flames/085.ts index 5e9ac87cb..a4c6de809 100644 --- a/data/Scarlet & Violet/Obsidian Flames/085.ts +++ b/data/Scarlet & Violet/Obsidian Flames/085.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Obsidian Flames/095.ts b/data/Scarlet & Violet/Obsidian Flames/095.ts index 7c4e98bb4..749b8a14a 100644 --- a/data/Scarlet & Violet/Obsidian Flames/095.ts +++ b/data/Scarlet & Violet/Obsidian Flames/095.ts @@ -68,9 +68,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Obsidian Flames/136.ts b/data/Scarlet & Violet/Obsidian Flames/136.ts index f7e9b9ed4..04130643e 100644 --- a/data/Scarlet & Violet/Obsidian Flames/136.ts +++ b/data/Scarlet & Violet/Obsidian Flames/136.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Obsidian Flames/141.ts b/data/Scarlet & Violet/Obsidian Flames/141.ts index 479d920d7..8d8f7301d 100644 --- a/data/Scarlet & Violet/Obsidian Flames/141.ts +++ b/data/Scarlet & Violet/Obsidian Flames/141.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Obsidian Flames/148.ts b/data/Scarlet & Violet/Obsidian Flames/148.ts index 334124552..713bdcb5a 100644 --- a/data/Scarlet & Violet/Obsidian Flames/148.ts +++ b/data/Scarlet & Violet/Obsidian Flames/148.ts @@ -48,7 +48,9 @@ const card: Card = { regulationMark: "G", variants: { - holo: false + normal: true, + reverse: true, + holo: true, } } diff --git a/data/Scarlet & Violet/Obsidian Flames/149.ts b/data/Scarlet & Violet/Obsidian Flames/149.ts index dca1d3d37..69867774b 100644 --- a/data/Scarlet & Violet/Obsidian Flames/149.ts +++ b/data/Scarlet & Violet/Obsidian Flames/149.ts @@ -61,7 +61,9 @@ const card: Card = { regulationMark: "G", variants: { - holo: false + normal: true, + reverse: true, + holo: true, } } diff --git a/data/Scarlet & Violet/Obsidian Flames/188.ts b/data/Scarlet & Violet/Obsidian Flames/188.ts index dfac6bd95..72380f998 100644 --- a/data/Scarlet & Violet/Obsidian Flames/188.ts +++ b/data/Scarlet & Violet/Obsidian Flames/188.ts @@ -29,9 +29,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved.ts b/data/Scarlet & Violet/Paldea Evolved.ts index fb2088928..9b55b3fe0 100644 --- a/data/Scarlet & Violet/Paldea Evolved.ts +++ b/data/Scarlet & Violet/Paldea Evolved.ts @@ -19,7 +19,12 @@ const set: Set = { official: 193 }, - releaseDate: "2023-06-09" + releaseDate: "2023-06-09", + + abbreviations: { + official: "PAL", + fr: "EAP" + } } export default set diff --git a/data/Scarlet & Violet/Paldea Evolved/003.ts b/data/Scarlet & Violet/Paldea Evolved/003.ts index e18646b24..9d1e46052 100644 --- a/data/Scarlet & Violet/Paldea Evolved/003.ts +++ b/data/Scarlet & Violet/Paldea Evolved/003.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/011.ts b/data/Scarlet & Violet/Paldea Evolved/011.ts index 74043d3c2..95a8fd4cc 100644 --- a/data/Scarlet & Violet/Paldea Evolved/011.ts +++ b/data/Scarlet & Violet/Paldea Evolved/011.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/021.ts b/data/Scarlet & Violet/Paldea Evolved/021.ts index 1fc820b1f..59c39ef2f 100644 --- a/data/Scarlet & Violet/Paldea Evolved/021.ts +++ b/data/Scarlet & Violet/Paldea Evolved/021.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/033.ts b/data/Scarlet & Violet/Paldea Evolved/033.ts index a335b6aa0..c51136361 100644 --- a/data/Scarlet & Violet/Paldea Evolved/033.ts +++ b/data/Scarlet & Violet/Paldea Evolved/033.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/043.ts b/data/Scarlet & Violet/Paldea Evolved/043.ts index 7f3835f6a..854d9d3c9 100644 --- a/data/Scarlet & Violet/Paldea Evolved/043.ts +++ b/data/Scarlet & Violet/Paldea Evolved/043.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/056.ts b/data/Scarlet & Violet/Paldea Evolved/056.ts index b13e47cc7..1942f7057 100644 --- a/data/Scarlet & Violet/Paldea Evolved/056.ts +++ b/data/Scarlet & Violet/Paldea Evolved/056.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/060.ts b/data/Scarlet & Violet/Paldea Evolved/060.ts index c8aa4c2dd..49b728c33 100644 --- a/data/Scarlet & Violet/Paldea Evolved/060.ts +++ b/data/Scarlet & Violet/Paldea Evolved/060.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/071.ts b/data/Scarlet & Violet/Paldea Evolved/071.ts index bf8727f24..dd6cb7f91 100644 --- a/data/Scarlet & Violet/Paldea Evolved/071.ts +++ b/data/Scarlet & Violet/Paldea Evolved/071.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/076.ts b/data/Scarlet & Violet/Paldea Evolved/076.ts index 76b8a3c7c..566f08d09 100644 --- a/data/Scarlet & Violet/Paldea Evolved/076.ts +++ b/data/Scarlet & Violet/Paldea Evolved/076.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/079.ts b/data/Scarlet & Violet/Paldea Evolved/079.ts index 1451a6b76..46cf7a803 100644 --- a/data/Scarlet & Violet/Paldea Evolved/079.ts +++ b/data/Scarlet & Violet/Paldea Evolved/079.ts @@ -67,9 +67,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/084.ts b/data/Scarlet & Violet/Paldea Evolved/084.ts index 90c7f4d54..6b3057546 100644 --- a/data/Scarlet & Violet/Paldea Evolved/084.ts +++ b/data/Scarlet & Violet/Paldea Evolved/084.ts @@ -61,8 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/089.ts b/data/Scarlet & Violet/Paldea Evolved/089.ts index 22c78a3e9..9c34cc207 100644 --- a/data/Scarlet & Violet/Paldea Evolved/089.ts +++ b/data/Scarlet & Violet/Paldea Evolved/089.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/097.ts b/data/Scarlet & Violet/Paldea Evolved/097.ts index b8ba9c957..7f0a5536c 100644 --- a/data/Scarlet & Violet/Paldea Evolved/097.ts +++ b/data/Scarlet & Violet/Paldea Evolved/097.ts @@ -68,9 +68,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/098.ts b/data/Scarlet & Violet/Paldea Evolved/098.ts index 0bd657bbb..4df793caa 100644 --- a/data/Scarlet & Violet/Paldea Evolved/098.ts +++ b/data/Scarlet & Violet/Paldea Evolved/098.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/099.ts b/data/Scarlet & Violet/Paldea Evolved/099.ts index 3b2ebccb9..bee83cf37 100644 --- a/data/Scarlet & Violet/Paldea Evolved/099.ts +++ b/data/Scarlet & Violet/Paldea Evolved/099.ts @@ -67,9 +67,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/105.ts b/data/Scarlet & Violet/Paldea Evolved/105.ts index 19481294f..265ef801f 100644 --- a/data/Scarlet & Violet/Paldea Evolved/105.ts +++ b/data/Scarlet & Violet/Paldea Evolved/105.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/113.ts b/data/Scarlet & Violet/Paldea Evolved/113.ts index b437e53f0..85e856862 100644 --- a/data/Scarlet & Violet/Paldea Evolved/113.ts +++ b/data/Scarlet & Violet/Paldea Evolved/113.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/123.ts b/data/Scarlet & Violet/Paldea Evolved/123.ts index 7d0e02e86..0b6e00aad 100644 --- a/data/Scarlet & Violet/Paldea Evolved/123.ts +++ b/data/Scarlet & Violet/Paldea Evolved/123.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/126.ts b/data/Scarlet & Violet/Paldea Evolved/126.ts index e9586a03d..3b3140ff0 100644 --- a/data/Scarlet & Violet/Paldea Evolved/126.ts +++ b/data/Scarlet & Violet/Paldea Evolved/126.ts @@ -67,9 +67,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/134.ts b/data/Scarlet & Violet/Paldea Evolved/134.ts index ec65abd85..cfa705dba 100644 --- a/data/Scarlet & Violet/Paldea Evolved/134.ts +++ b/data/Scarlet & Violet/Paldea Evolved/134.ts @@ -61,8 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/135.ts b/data/Scarlet & Violet/Paldea Evolved/135.ts index 27e652640..911116b92 100644 --- a/data/Scarlet & Violet/Paldea Evolved/135.ts +++ b/data/Scarlet & Violet/Paldea Evolved/135.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/136.ts b/data/Scarlet & Violet/Paldea Evolved/136.ts index 577e48b3d..de5c3d51e 100644 --- a/data/Scarlet & Violet/Paldea Evolved/136.ts +++ b/data/Scarlet & Violet/Paldea Evolved/136.ts @@ -68,9 +68,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/140.ts b/data/Scarlet & Violet/Paldea Evolved/140.ts index 8271d0607..765bcd1ad 100644 --- a/data/Scarlet & Violet/Paldea Evolved/140.ts +++ b/data/Scarlet & Violet/Paldea Evolved/140.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/151.ts b/data/Scarlet & Violet/Paldea Evolved/151.ts index 9255b5753..9220c50c4 100644 --- a/data/Scarlet & Violet/Paldea Evolved/151.ts +++ b/data/Scarlet & Violet/Paldea Evolved/151.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/162.ts b/data/Scarlet & Violet/Paldea Evolved/162.ts index 494850885..079ca17a1 100644 --- a/data/Scarlet & Violet/Paldea Evolved/162.ts +++ b/data/Scarlet & Violet/Paldea Evolved/162.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/172.ts b/data/Scarlet & Violet/Paldea Evolved/172.ts index 343497d99..6563d2c5f 100644 --- a/data/Scarlet & Violet/Paldea Evolved/172.ts +++ b/data/Scarlet & Violet/Paldea Evolved/172.ts @@ -29,9 +29,8 @@ const card: Card = { regulationMark: "G", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldea Evolved/185.ts b/data/Scarlet & Violet/Paldea Evolved/185.ts index 63e388a5e..4e79779be 100644 --- a/data/Scarlet & Violet/Paldea Evolved/185.ts +++ b/data/Scarlet & Violet/Paldea Evolved/185.ts @@ -26,11 +26,7 @@ const card: Card = { }, trainerType: "Supporter", - regulationMark: "G", - - variants: { - holo: false - } + regulationMark: "G" } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates.ts b/data/Scarlet & Violet/Paldean Fates.ts index fcbefbfcd..515a4d37d 100644 --- a/data/Scarlet & Violet/Paldean Fates.ts +++ b/data/Scarlet & Violet/Paldean Fates.ts @@ -19,7 +19,12 @@ const set: Set = { official: 91 }, - releaseDate: "2024-01-26" + releaseDate: "2024-01-26", + + abbreviations: { + official: "PAF", + fr: "DDP" + } } export default set diff --git a/data/Scarlet & Violet/Paldean Fates/010.ts b/data/Scarlet & Violet/Paldean Fates/010.ts index 96c17617f..d78cd6ac8 100644 --- a/data/Scarlet & Violet/Paldean Fates/010.ts +++ b/data/Scarlet & Violet/Paldean Fates/010.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/013.ts b/data/Scarlet & Violet/Paldean Fates/013.ts index ed2ed5653..b2cc50549 100644 --- a/data/Scarlet & Violet/Paldean Fates/013.ts +++ b/data/Scarlet & Violet/Paldean Fates/013.ts @@ -48,9 +48,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/015.ts b/data/Scarlet & Violet/Paldean Fates/015.ts index d0abe8978..f7b794970 100644 --- a/data/Scarlet & Violet/Paldean Fates/015.ts +++ b/data/Scarlet & Violet/Paldean Fates/015.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/019.ts b/data/Scarlet & Violet/Paldean Fates/019.ts index 3043b25b7..310cfadc7 100644 --- a/data/Scarlet & Violet/Paldean Fates/019.ts +++ b/data/Scarlet & Violet/Paldean Fates/019.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/024.ts b/data/Scarlet & Violet/Paldean Fates/024.ts index f8c120ea7..77ff287a1 100644 --- a/data/Scarlet & Violet/Paldean Fates/024.ts +++ b/data/Scarlet & Violet/Paldean Fates/024.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/026.ts b/data/Scarlet & Violet/Paldean Fates/026.ts index ee96d82c9..803117450 100644 --- a/data/Scarlet & Violet/Paldean Fates/026.ts +++ b/data/Scarlet & Violet/Paldean Fates/026.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/037.ts b/data/Scarlet & Violet/Paldean Fates/037.ts index b85920f32..4b7ded43e 100644 --- a/data/Scarlet & Violet/Paldean Fates/037.ts +++ b/data/Scarlet & Violet/Paldean Fates/037.ts @@ -68,9 +68,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/040.ts b/data/Scarlet & Violet/Paldean Fates/040.ts index 56b716933..89dcca091 100644 --- a/data/Scarlet & Violet/Paldean Fates/040.ts +++ b/data/Scarlet & Violet/Paldean Fates/040.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/043.ts b/data/Scarlet & Violet/Paldean Fates/043.ts index 1cc1582e5..1b296303e 100644 --- a/data/Scarlet & Violet/Paldean Fates/043.ts +++ b/data/Scarlet & Violet/Paldean Fates/043.ts @@ -47,9 +47,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/047.ts b/data/Scarlet & Violet/Paldean Fates/047.ts index 61fff7b8e..b25c37fcc 100644 --- a/data/Scarlet & Violet/Paldean Fates/047.ts +++ b/data/Scarlet & Violet/Paldean Fates/047.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/063.ts b/data/Scarlet & Violet/Paldean Fates/063.ts index dce6ddd69..4af37dc89 100644 --- a/data/Scarlet & Violet/Paldean Fates/063.ts +++ b/data/Scarlet & Violet/Paldean Fates/063.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/065.ts b/data/Scarlet & Violet/Paldean Fates/065.ts index 1dcc19439..7b9d7208f 100644 --- a/data/Scarlet & Violet/Paldean Fates/065.ts +++ b/data/Scarlet & Violet/Paldean Fates/065.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/067.ts b/data/Scarlet & Violet/Paldean Fates/067.ts index 6990a8418..929e738ff 100644 --- a/data/Scarlet & Violet/Paldean Fates/067.ts +++ b/data/Scarlet & Violet/Paldean Fates/067.ts @@ -67,9 +67,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/070.ts b/data/Scarlet & Violet/Paldean Fates/070.ts index 66bfa84f8..bb7d5da00 100644 --- a/data/Scarlet & Violet/Paldean Fates/070.ts +++ b/data/Scarlet & Violet/Paldean Fates/070.ts @@ -47,9 +47,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/087.ts b/data/Scarlet & Violet/Paldean Fates/087.ts index 9765f1749..041a1b096 100644 --- a/data/Scarlet & Violet/Paldean Fates/087.ts +++ b/data/Scarlet & Violet/Paldean Fates/087.ts @@ -29,9 +29,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paldean Fates/088.ts b/data/Scarlet & Violet/Paldean Fates/088.ts index 9765f1749..041a1b096 100644 --- a/data/Scarlet & Violet/Paldean Fates/088.ts +++ b/data/Scarlet & Violet/Paldean Fates/088.ts @@ -29,9 +29,8 @@ const card: Card = { regulationMark: "G", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Paradox Rift.ts b/data/Scarlet & Violet/Paradox Rift.ts index 295a08a49..1fcf69db3 100644 --- a/data/Scarlet & Violet/Paradox Rift.ts +++ b/data/Scarlet & Violet/Paradox Rift.ts @@ -19,7 +19,12 @@ const set: Set = { official: 182 }, - releaseDate: "2023-11-03" + releaseDate: "2023-11-03", + + abbreviations: { + official: "PAR", + fr: "FAP" + } } export default set diff --git a/data/Scarlet & Violet/Prismatic Evolutions.ts b/data/Scarlet & Violet/Prismatic Evolutions.ts new file mode 100644 index 000000000..104dee061 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions.ts @@ -0,0 +1,29 @@ +import { Set } from '../../interfaces' +import serie from '../Scarlet & Violet' + +const set: Set = { + id: "sv08.5", + + name: { + de: "Prismatische Entwicklungen", + en: "Prismatic Evolutions", + es: "Evolucionnes Prismáticas", + fr: "Évolutions Prismatiques", + it: "Evoluzioni Prismatiche", + pt: "Evoluções Prismáticas" + }, + + serie: serie, + + cardCount: { + official: 131 + }, + + releaseDate: "2025-01-17", + + abbreviations: { + official: "PRE" + } +} + +export default set diff --git a/data/Scarlet & Violet/Prismatic Evolutions/001.ts b/data/Scarlet & Violet/Prismatic Evolutions/001.ts new file mode 100644 index 000000000..5eb612630 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/001.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Exeggcute", + fr: "Noeunoeuf", + es: "Exeggcute", + pt: "Exeggcute", + it: "Exeggcute", + de: "Owei" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Ram", + fr: "Collision", + es: "Apisonar", + pt: "Aríete", + it: "Carica", + de: "Ramme" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/002.ts b/data/Scarlet & Violet/Prismatic Evolutions/002.ts new file mode 100644 index 000000000..d23e9507f --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/002.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Exeggutor", + fr: "Noadkoko", + es: "Exeggutor", + pt: "Exeggutor", + it: "Exeggutor", + de: "Kokowei" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 140, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Mega Drain", + fr: "Méga-Sangsue", + es: "Megaagotar", + pt: "Megadreno", + it: "Megassorbimento", + de: "Megasauger" + }, + + 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.", + pt: "Cure 30 pontos de dano deste Pokémon.", + it: "Cura questo Pokémon da 30 danni.", + de: "Heile 30 Schadenspunkte bei diesem Pokémon." + }, + + damage: 50 + }, { + cost: ["Grass", "Grass", "Colorless"], + + name: { + en: "Solar Beam", + fr: "Lance-Soleil", + es: "Rayo Solar", + pt: "Raio Solar", + it: "Solarraggio", + de: "Solarstrahl" + }, + + damage: 130 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/003.ts b/data/Scarlet & Violet/Prismatic Evolutions/003.ts new file mode 100644 index 000000000..866bbce60 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/003.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Pinsir", + fr: "Scarabrute", + es: "Pinsir", + pt: "Pinsir", + it: "Pinsir", + de: "Pinsir" + }, + + rarity: "Common", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Slash", + fr: "Tranche", + es: "Cuchillada", + pt: "Talho", + it: "Lacerazione", + de: "Schlitzer" + }, + + damage: 60 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/004.ts b/data/Scarlet & Violet/Prismatic Evolutions/004.ts new file mode 100644 index 000000000..bbe9dc1a7 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/004.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Budew", + fr: "Rozbouton", + es: "Budew", + pt: "Budew", + it: "Budew", + de: "Knospi" + }, + + rarity: "Common", + category: "Pokemon", + hp: 30, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + name: { + en: "Itchy Pollen", + fr: "Pollen Démangeant", + es: "Polen Picazón", + pt: "Comichão de Pólen", + it: "Polline Urticante", + de: "Juckende Pollen" + }, + + effect: { + en: "During your opponent's next turn, they can't play any Item cards from their hand.", + fr: "Pendant le prochain tour de votre adversaire, il ne peut pas jouer de cartes Objet de sa main.", + es: "Durante el próximo turno de tu rival, este no puede jugar ninguna carta de Objeto de su mano.", + pt: "Durante o próximo turno do seu oponente, ele não poderá jogar nenhuma carta de Item da mão dele.", + it: "Durante il suo prossimo turno, il tuo avversario non può giocare le carte Strumento che ha in mano.", + de: "Dein Gegner kann während seines nächsten Zuges keine Itemkarten aus seiner Hand spielen." + }, + + damage: 10 + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/005.ts b/data/Scarlet & Violet/Prismatic Evolutions/005.ts new file mode 100644 index 000000000..bd4350ee9 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/005.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Leafeon", + fr: "Phyllali", + es: "Leafeon", + pt: "Leafeon", + it: "Leafeon", + de: "Folipurba" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Leaflet Blessings", + fr: "Bénédictions Folioles", + es: "Bendiciones de los Folíolos", + pt: "Bênçãos das Folhinhas", + it: "Preghiera di Foglioline", + de: "Blättchensegen" + }, + + effect: { + en: "Attach a Basic Grass Energy card from your hand to 1 of your Benched Pokémon. If you do, heal all damage from that Pokémon.", + fr: "Attachez une carte Énergie Grass de base de votre main à l'un de vos Pokémon de Banc. Dans ce cas, soignez tous les dégâts de ce Pokémon-là.", + es: "Une 1 carta de Energía Grass Básica de tu mano a uno de tus Pokémon en Banca. Si lo haces, cura todos los puntos de daño a ese Pokémon.", + pt: "Ligue uma carta de Energia Grass Básica da sua mão a 1 dos seus Pokémon no Banco. Se fizer isto, cure todo o dano daquele Pokémon.", + it: "Assegna a uno dei tuoi Pokémon in panchina una carta Energia base Grass dalla tua mano. Se lo fai, cura quel Pokémon da tutti i danni.", + de: "Lege 1 Basis-Grass-Energiekarte aus deiner Hand an 1 Pokémon auf deiner Bank an. Wenn du das machst, heile allen Schaden bei jenem Pokémon." + } + }, { + cost: ["Grass", "Colorless"], + + name: { + en: "Solar Beam", + fr: "Lance-Soleil", + es: "Rayo Solar", + pt: "Raio Solar", + it: "Solarraggio", + de: "Solarstrahl" + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/006.ts b/data/Scarlet & Violet/Prismatic Evolutions/006.ts new file mode 100644 index 000000000..5028b168b --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/006.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Leafeon ex", + fr: "Phyllali-ex", + es: "Leafeon ex", + pt: "Leafeon ex", + it: "Leafeon-ex", + de: "Folipurba-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Verdant Storm", + fr: "Tempête Verdoyante", + es: "Tormenta Verdosa", + pt: "Tempestade Verdejante", + it: "Tempesta Rigogliosa", + de: "Begrünungssturm" + }, + + effect: { + en: "This attack does 60 damage for each Energy attached to all of your opponent's Pokémon.", + fr: "Cette attaque inflige 60 dégâts pour chaque Énergie attachée à tous les Pokémon de votre adversaire.", + es: "Este ataque hace 60 puntos de daño por cada Energía unida a cada uno de los Pokémon de tu rival.", + pt: "Este ataque causa 60 pontos de dano para cada Energia ligada a todos os Pokémon do seu oponente.", + it: "Questo attacco infligge 60 danni per ogni Energia assegnata ai Pokémon del tuo avversario.", + de: "Diese Attacke fügt für jede an alle Pokémon deines Gegners angelegte Energie 60 Schadenspunkte zu." + }, + + damage: "60×" + }, { + cost: ["Grass", "Fire", "Water"], + + name: { + en: "Moss Agate", + fr: "Agate Moussue", + es: "Musgo Ágata", + pt: "Ágata Musgo", + it: "Agata Muschiata", + de: "Moosachat" + }, + + effect: { + en: "Heal 100 damage from each of your Benched Pokémon.", + fr: "Soignez 100 dégâts de chacun de vos Pokémon de Banc.", + es: "Cura 100 puntos de daño a cada uno de tus Pokémon en Banca.", + pt: "Cure 100 pontos de dano de cada um dos seus Pokémon no Banco.", + it: "Cura ciascuno dei tuoi Pokémon in panchina da 100 danni.", + de: "Heile 100 Schadenspunkte bei jedem Pokémon auf deiner Bank." + }, + + damage: 230 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/007.ts b/data/Scarlet & Violet/Prismatic Evolutions/007.ts new file mode 100644 index 000000000..864e1a190 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/007.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Cottonee", + fr: "Doudouvet", + es: "Cottonee", + pt: "Cottonee", + it: "Cottonee", + de: "Waumboll" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Triple Spin", + fr: "Triple Tour", + es: "Triple Giro", + pt: "Giro Triplo", + it: "Triploturbo", + de: "Dreifachdreher" + }, + + 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.", + pt: "Jogue 3 moedas. Este ataque causa 10 pontos de dano para cada cara.", + it: "Lancia tre volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.", + de: "Wirf 3 Münzen. Diese Attacke fügt 10 Schadenspunkte pro Kopf zu." + }, + + damage: "10×" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/008.ts b/data/Scarlet & Violet/Prismatic Evolutions/008.ts new file mode 100644 index 000000000..5c32a3d7b --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/008.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Whimsicott", + fr: "Farfaduvet", + es: "Whimsicott", + pt: "Whimsicott", + it: "Whimsicott", + de: "Elfun" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 100, + types: ["Grass"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Wafting Heal", + fr: "Soin Ondoyant", + es: "Soplo Curativo", + pt: "Cura Esvoaçante", + it: "Fluttuacura", + de: "Wehende Heilung" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may heal all damage from your Active Grass Pokémon. If you healed any damage in this way, discard all Energy from that Pokémon.", + fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez soigner tous les dégâts de votre Pokémon Grass Actif. Si vous avez soigné des dégâts de cette façon, défaussez toutes les Énergies attachées à ce Pokémon-là.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes curar todos los puntos de daño a tu Pokémon Grass Activo. Si has curado algún punto de daño de esta manera, descarta todas las Energías de ese Pokémon.", + pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá curar todo o dano do seu Pokémon Grass Ativo. Se você curou qualquer dano desta forma, descarte todas as Energias daquele Pokémon.", + it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi curare il tuo Pokémon Grass attivo da tutti i danni. Se hai curato dei danni in questo modo, scarta tutte le Energie da quel Pokémon.", + de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du allen Schaden bei deinem Aktiven Grass-Pokémon heilen. Wenn du auf diese Weise Schaden geheilt hast, lege alle Energien von jenem Pokémon auf deinen Ablagestapel." + } + }], + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Seed Bomb", + fr: "Canon Graine", + es: "Bomba Germen", + pt: "Bomba de Sementes", + it: "Semebomba", + de: "Samenbomben" + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/009.ts b/data/Scarlet & Violet/Prismatic Evolutions/009.ts new file mode 100644 index 000000000..6e8ebfc6f --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/009.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Applin", + fr: "Verpom", + es: "Applin", + pt: "Applin", + it: "Applin", + de: "Knapfel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 40, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Spray Fluid", + fr: "Fluide Éclaboussant", + es: "Fluido Rociado", + pt: "Fluido Spray", + it: "Fluidospray", + de: "Sprühwasser" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/010.ts b/data/Scarlet & Violet/Prismatic Evolutions/010.ts new file mode 100644 index 000000000..204854e25 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/010.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Dipplin", + fr: "Pomdramour", + es: "Dipplin", + pt: "Dipplin", + it: "Dipplin", + de: "Sirapfel" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 80, + types: ["Grass"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Festival Lead", + fr: "Tête de la Fête", + es: "Líder del Festival", + pt: "Líder de Festas", + it: "Maestro della Festa", + de: "Festmeister" + }, + + effect: { + en: "If Festival Grounds is in play, this Pokémon may use an attack it has twice. If the first attack Knocks Out your opponent's Active Pokémon, you may attack again after your opponent chooses a new Active Pokémon.", + fr: "Si Lieu de la Fête est en jeu, ce Pokémon peut attaquer deux fois en utilisant ses attaques. Si la première attaque met K.O. le Pokémon Actif de votre adversaire, une fois que votre adversaire a choisi un nouveau Pokémon Actif, vous pouvez encore attaquer.", + es: "Si Recinto del Festival está en juego, este Pokémon puede atacar dos veces usando los ataques que tenga. Si el primer ataque deja Fuera de Combate al Pokémon Activo de tu rival, puedes atacar otra vez después de que tu rival elija un nuevo Pokémon Activo.", + pt: "Se Praça de Festas estiver em jogo, este Pokémon poderá usar duas vezes um ataque que ele tem. Se o primeiro ataque Nocautear o Pokémon Ativo do seu oponente, você poderá atacar novamente após seu oponente escolher um novo Pokémon Ativo.", + it: "Se c'è in gioco Area della Festa, questo Pokémon può attaccare due volte usando gli attacchi che ha. Se il primo attacco mette KO il Pokémon attivo del tuo avversario, puoi attaccare di nuovo dopo che il tuo avversario ha scelto un nuovo Pokémon attivo.", + de: "Wenn Festplatz im Spiel ist, kann dieses Pokémon die Attacken, die es hat, einsetzen, um zweimal anzugreifen. Wenn die erste Attacke das Aktive Pokémon deines Gegners kampfunfähig macht, kannst du erneut angreifen, nachdem dein Gegner ein neues Aktives Pokémon gewählt hat." + } + }], + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Do the Wave", + fr: "Faites la Vague", + es: "Hacer la Ola", + pt: "Fazer a Ola", + it: "Fare la Ola", + de: "Wellenreiten" + }, + + effect: { + en: "This attack does 20 damage for each of your Benched Pokémon.", + fr: "Cette attaque inflige 20 dégâts pour chacun de vos Pokémon de Banc.", + es: "Este ataque hace 20 puntos de daño por cada uno de tus Pokémon en Banca.", + pt: "Este ataque causa 20 pontos de dano para cada um dos seus Pokémon no Banco.", + it: "Questo attacco infligge 20 danni per ogni Pokémon nella tua panchina.", + de: "Diese Attacke fügt für jedes Pokémon auf deiner Bank 20 Schadenspunkte zu." + }, + + damage: "20×" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/011.ts b/data/Scarlet & Violet/Prismatic Evolutions/011.ts new file mode 100644 index 000000000..50460d11f --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/011.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Hydrapple ex", + fr: "Pomdorochi-ex", + es: "Hydrapple ex", + pt: "Hydrapple ex", + it: "Hydrapple-ex", + de: "Hydrapfel-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Ripening Charge", + fr: "Charge Mûrissante", + es: "Carga Maduración", + pt: "Investida Madura", + it: "Maturacarica", + de: "Reifende Aufladung" + }, + + effect: { + en: "Once during your turn, you may attach a Basic Grass Energy card from your hand to 1 of your Pokémon. If you attached Energy to a Pokémon in this way, heal 30 damage from that Pokémon.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Grass de base de votre main à l'un de vos Pokémon. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, soignez 30 dégâts de ce Pokémon-là.", + es: "Una vez durante tu turno, puedes unir 1 carta de Energía Grass Básica de tu mano a uno de tus Pokémon. Si has unido Energía a un Pokémon de esta manera, cura 30 puntos de daño a ese Pokémon.", + pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Grass Básica da sua mão a 1 dos seus Pokémon. Se você ligou Energia a um Pokémon desta forma, cure 30 pontos de dano daquele Pokémon.", + it: "Una sola volta durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon una carta Energia base Grass dalla tua mano. Se hai assegnato dell'Energia a un Pokémon in questo modo, cura quel Pokémon da 30 danni.", + de: "Einmal während deines Zuges kannst du 1 Basis-Grass-Energiekarte aus deiner Hand an 1 deiner Pokémon anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, heile 30 Schadenspunkte bei jenem Pokémon." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Syrup Storm", + fr: "Tempête Nectar", + es: "Tormenta en Almíbar", + pt: "Tempestade Melada", + it: "Tempesta Sciroppata", + de: "Sirupsturm" + }, + + effect: { + en: "This attack does 30 more damage for each Grass Energy attached to all of your Pokémon.", + fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Grass attachée à tous vos Pokémon.", + es: "Este ataque hace 30 puntos de daño más por cada Energía Grass unida a cada uno de tus Pokémon.", + pt: "Este ataque causa 30 pontos de dano a mais para cada Energia Grass ligada a todos os seus Pokémon.", + it: "Questo attacco infligge 30 danni in più per ogni Energia Grass assegnata ai tuoi Pokémon.", + de: "Diese Attacke fügt für jede an alle deine Pokémon angelegte Grass-Energie 30 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 3, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/012.ts b/data/Scarlet & Violet/Prismatic Evolutions/012.ts new file mode 100644 index 000000000..3efcee5e0 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/012.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Teal Mask Ogerpon ex", + fr: "Ogerpon Masque Turquoise-ex", + es: "Ogerpon Máscara Turquesa ex", + pt: "Ogerpon Máscara Turquesa ex", + it: "Ogerpon Maschera Turchese-ex", + de: "Türkisgrüne-Maske-Ogerpon-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Grass"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Teal Dance", + fr: "Danse Turquoise", + es: "Danza Turquesa", + pt: "Dança Turquesa", + it: "Danza Turchese", + de: "Türkisgrüner Tanz" + }, + + effect: { + en: "Once during your turn, you may attach a Basic Grass Energy card from your hand to this Pokémon. If you attached Energy to a Pokémon in this way, draw a card.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Grass de base de votre main à ce Pokémon. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, piochez une carte.", + es: "Una vez durante tu turno, puedes unir 1 carta de Energía Grass Básica de tu mano a este Pokémon. Si has unido Energía a un Pokémon de esta manera, roba 1 carta.", + pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Grass Básica da sua mão a este Pokémon. Se você ligou Energia a um Pokémon desta forma, compre uma carta.", + it: "Una sola volta durante il tuo turno, puoi assegnare a questo Pokémon una carta Energia base Grass dalla tua mano. Se hai assegnato dell'Energia a un Pokémon in questo modo, pesca una carta.", + de: "Einmal während deines Zuges kannst du 1 Basis-Grass-Energiekarte aus deiner Hand an dieses Pokémon anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, ziehe 1 Karte." + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Grass"], + + name: { + en: "Myriad Leaf Shower", + fr: "Pluie de Feuilles", + es: "Lluvia de Hojas", + pt: "Chuva Infinita de Folhas", + it: "Miriade di Foglie Cadenti", + de: "Laubschauer" + }, + + 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.", + pt: "Este ataque causa 30 pontos de dano a mais para cada Energia ligada a ambos os Pokémon Ativos.", + it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata a ciascuno dei Pokémon attivi.", + de: "Diese Attacke fügt für jede an beide Aktiven Pokémon angelegte Energie 30 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/013.ts b/data/Scarlet & Violet/Prismatic Evolutions/013.ts new file mode 100644 index 000000000..812205f77 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/013.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Flareon", + fr: "Pyroli", + es: "Flareon", + pt: "Flareon", + it: "Flareon", + de: "Flamara" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Destructive Flame", + fr: "Flamme Destructrice", + es: "Llama Destructiva", + pt: "Chama Destruidora", + it: "Devastofiamma", + de: "Verzehrende Flamme" + }, + + effect: { + en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", + fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.", + pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.", + it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.", + de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 30 + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Fighting Blaze", + fr: "Brasier Combatif", + es: "Llamarada Luchadora", + pt: "Luta Labareda", + it: "Fiammata Combattente", + de: "Feuerfäuste" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex or Pokémon V, this attack does 90 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex ou un Pokémon-V, cette attaque inflige 90 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 90 puntos de daño más.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex ou um Pokémon V, este ataque causará 90 pontos de dano a mais.", + it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex o un Pokémon-V, questo attacco infligge 90 danni in più.", + de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex oder Pokémon-V ist, fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "90+" + }], + + retreat: 2, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/014.ts b/data/Scarlet & Violet/Prismatic Evolutions/014.ts new file mode 100644 index 000000000..5c7b8fb92 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/014.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Flareon ex", + fr: "Pyroli-ex", + es: "Flareon ex", + pt: "Flareon ex", + it: "Flareon-ex", + de: "Flamara-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + en: "Burning Charge", + fr: "Charge Brûlante", + es: "Carga Abrasadora", + pt: "Carga Ardente", + it: "Bruciacarica", + de: "Brennende Ladung" + }, + + effect: { + en: "Search your deck for up to 2 Basic Energy cards and attach them to 1 of your Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base, puis attachez-les à l'un de vos Pokémon. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Básica y únelas a uno de tus Pokémon. Después, baraja las cartas de tu baraja.", + pt: "Procure por até 2 cartas de Energia Básica no seu baralho e ligue-as a 1 dos seus Pokémon. Em seguida, embaralhe o seu baralho.", + it: "Cerca nel tuo mazzo fino a due carte Energia base e assegnale a uno dei tuoi Pokémon. Poi rimischia le carte del tuo mazzo.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten und lege sie an 1 deiner Pokémon an. Mische anschließend dein Deck." + }, + + damage: 130 + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + en: "Carnelian", + fr: "Cornaline", + es: "Cornalina", + pt: "Cornalina", + it: "Corniola", + de: "Karneol" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 280 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/015.ts b/data/Scarlet & Violet/Prismatic Evolutions/015.ts new file mode 100644 index 000000000..4ae61ab19 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/015.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Litleo", + fr: "Hélionceau", + es: "Litleo", + pt: "Litleo", + it: "Litleo", + de: "Leufeo" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Combustion", + fr: "Fournaise", + es: "Combustión", + pt: "Combustão", + it: "Fuoco Continuo", + de: "Glühen" + }, + + damage: 10 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Headbutt", + fr: "Coup d'Boule", + es: "Golpe Cabeza", + pt: "Cabeçada", + it: "Bottintesta", + de: "Kopfnuss" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/016.ts b/data/Scarlet & Violet/Prismatic Evolutions/016.ts new file mode 100644 index 000000000..d5445978e --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/016.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Pyroar", + fr: "Némélios", + es: "Pyroar", + pt: "Pyroar", + it: "Pyroar", + de: "Pyroleo" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + en: "Fire Mane", + fr: "Crinière de Feu", + es: "Crin de Fuego", + pt: "Crina de Fogo", + it: "Criniera di Fuoco", + de: "Flammenmähne" + }, + + damage: 50 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Flame Tackle", + fr: "Charge Calcinante", + es: "Placaje Ígneo", + pt: "Investida Flamejante", + it: "Fiammazione", + de: "Flammentackle" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 160 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/017.ts b/data/Scarlet & Violet/Prismatic Evolutions/017.ts new file mode 100644 index 000000000..2bd1516f9 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/017.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Hearthflame Mask Ogerpon ex", + fr: "Ogerpon Masque du Fourneau-ex", + es: "Ogerpon Máscara Horno ex", + pt: "Ogerpon Máscara Fornalha ex", + it: "Ogerpon Maschera Focolare-ex", + de: "Ofenmaske-Ogerpon-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Wrathful Hearth", + fr: "Fourneau du Courroux", + es: "Horno Iracundo", + pt: "Fornalha Enfurecida", + it: "Focolare Iracondo", + de: "Zorniger Ofen" + }, + + effect: { + en: "This attack does 20 damage for each damage counter on this Pokémon.", + fr: "Cette attaque inflige 20 dégâts pour chaque marqueur de dégâts sur ce Pokémon.", + es: "Este ataque hace 20 puntos de daño por cada contador de daño en este Pokémon.", + pt: "Este ataque causa 20 pontos de dano para cada contador de dano neste Pokémon.", + it: "Questo attacco infligge 20 danni per ogni segnalino danno presente su questo Pokémon.", + de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 20 Schadenspunkte zu." + }, + + damage: "20×" + }, { + cost: ["Fire", "Fire", "Fire"], + + name: { + en: "Dynamic Blaze", + fr: "Brasier Dynamique", + es: "Llamarada Dinámica", + pt: "Incêndio Dinâmico", + it: "Fiammata Dinamica", + de: "Dynamischer Brand" + }, + + effect: { + en: "If your opponent's Active Pokémon is an Evolution Pokémon, this attack does 140 more damage, and discard all Energy from this Pokémon.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Évolutif, cette attaque inflige 140 dégâts supplémentaires et vous défaussez toutes les Énergies de ce Pokémon.", + es: "Si el Pokémon Activo de tu rival es un Pokémon Evolución, este ataque hace 140 puntos de daño más, y descartas todas las Energías de este Pokémon.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon de Evolução, este ataque causará 140 pontos de dano a mais, e descarte todas as Energias deste Pokémon.", + it: "Se il Pokémon attivo del tuo avversario è un Pokémon Evoluzione, questo attacco infligge 140 danni in più e tu scarti tutte le Energie da questo Pokémon.", + de: "Wenn das Aktive Pokémon deines Gegners ein Entwicklungs-Pokémon ist, fügt diese Attacke 140 Schadenspunkte mehr zu, und du legst alle Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: "140+" + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/018.ts b/data/Scarlet & Violet/Prismatic Evolutions/018.ts new file mode 100644 index 000000000..0b07be9e4 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/018.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Slowpoke", + fr: "Ramoloss", + es: "Slowpoke", + pt: "Slowpoke", + it: "Slowpoke", + de: "Flegmon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Water Gun", + fr: "Pistolet à O", + es: "Pistola Agua", + pt: "Revólver d'Água", + it: "Pistolacqua", + de: "Aquaknarre" + }, + + damage: 10 + }, { + cost: ["Water", "Colorless"], + + name: { + en: "Tail Whap", + fr: "Queue Battoir", + es: "Coletón", + pt: "Surra de Cauda", + it: "Codabotta", + de: "Schweifvertrimmer" + }, + + damage: 30 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/019.ts b/data/Scarlet & Violet/Prismatic Evolutions/019.ts new file mode 100644 index 000000000..7d1d98cd4 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/019.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Slowking", + fr: "Roigada", + es: "Slowking", + pt: "Slowking", + it: "Slowking", + de: "Laschoking" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Wash the Slate Clean", + fr: "Table Rase", + es: "Borrón y Cuenta Nueva", + pt: "Águas Passadas", + it: "Colpo di Spugna", + de: "Reinen Tisch machen" + }, + + effect: { + en: "You may put 2 Energy attached to your opponent's Active Pokémon into their hand.", + fr: "Vous pouvez ajouter à la main de votre adversaire 2 Énergies attachées à son Pokémon Actif.", + es: "Puedes poner 2 Energías unidas al Pokémon Activo de tu rival en su mano.", + pt: "Você pode colocar 2 Energias ligadas ao Pokémon Ativo do seu oponente na mão dele.", + it: "Puoi prendere due Energie assegnate al Pokémon attivo del tuo avversario e aggiungerle alle carte che ha in mano.", + de: "Du kannst deinem Gegner 2 an sein Aktives Pokémon angelegte Energien auf seine Hand geben." + }, + + damage: 70 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/020.ts b/data/Scarlet & Violet/Prismatic Evolutions/020.ts new file mode 100644 index 000000000..fe2337fd3 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/020.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Goldeen", + fr: "Poissirène", + es: "Goldeen", + pt: "Goldeen", + it: "Goldeen", + de: "Goldini" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Festival Lead", + fr: "Tête de la Fête", + es: "Líder del Festival", + pt: "Líder de Festas", + it: "Maestro della Festa", + de: "Festmeister" + }, + + effect: { + en: "If Festival Grounds is in play, this Pokémon may use an attack it has twice. If the first attack Knocks Out your opponent's Active Pokémon, you may attack again after your opponent chooses a new Active Pokémon.", + fr: "Si Lieu de la Fête est en jeu, ce Pokémon peut attaquer deux fois en utilisant ses attaques. Si la première attaque met K.O. le Pokémon Actif de votre adversaire, une fois que votre adversaire a choisi un nouveau Pokémon Actif, vous pouvez encore attaquer.", + es: "Si Recinto del Festival está en juego, este Pokémon puede atacar dos veces usando los ataques que tenga. Si el primer ataque deja Fuera de Combate al Pokémon Activo de tu rival, puedes atacar otra vez después de que tu rival elija un nuevo Pokémon Activo.", + pt: "Se Praça de Festas estiver em jogo, este Pokémon poderá usar duas vezes um ataque que ele tem. Se o primeiro ataque Nocautear o Pokémon Ativo do seu oponente, você poderá atacar novamente após seu oponente escolher um novo Pokémon Ativo.", + it: "Se c'è in gioco Area della Festa, questo Pokémon può attaccare due volte usando gli attacchi che ha. Se il primo attacco mette KO il Pokémon attivo del tuo avversario, puoi attaccare di nuovo dopo che il tuo avversario ha scelto un nuovo Pokémon attivo.", + de: "Wenn Festplatz im Spiel ist, kann dieses Pokémon die Attacken, die es hat, einsetzen, um zweimal anzugreifen. Wenn die erste Attacke das Aktive Pokémon deines Gegners kampfunfähig macht, kannst du erneut angreifen, nachdem dein Gegner ein neues Aktives Pokémon gewählt hat." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Whirlpool", + fr: "Siphon", + es: "Torbellino", + pt: "Redemoinho", + it: "Mulinello", + de: "Whirlpool" + }, + + effect: { + en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", + fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.", + pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.", + it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.", + de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/021.ts b/data/Scarlet & Violet/Prismatic Evolutions/021.ts new file mode 100644 index 000000000..491b844fb --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/021.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Seaking", + fr: "Poissoroy", + es: "Seaking", + pt: "Seaking", + it: "Seaking", + de: "Golking" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 110, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Festival Lead", + fr: "Tête de la Fête", + es: "Líder del Festival", + pt: "Líder de Festas", + it: "Maestro della Festa", + de: "Festmeister" + }, + + effect: { + en: "If Festival Grounds is in play, this Pokémon may use an attack it has twice. If the first attack Knocks Out your opponent's Active Pokémon, you may attack again after your opponent chooses a new Active Pokémon.", + fr: "Si Lieu de la Fête est en jeu, ce Pokémon peut attaquer deux fois en utilisant ses attaques. Si la première attaque met K.O. le Pokémon Actif de votre adversaire, une fois que votre adversaire a choisi un nouveau Pokémon Actif, vous pouvez encore attaquer.", + es: "Si Recinto del Festival está en juego, este Pokémon puede atacar dos veces usando los ataques que tenga. Si el primer ataque deja Fuera de Combate al Pokémon Activo de tu rival, puedes atacar otra vez después de que tu rival elija un nuevo Pokémon Activo.", + pt: "Se Praça de Festas estiver em jogo, este Pokémon poderá usar duas vezes um ataque que ele tem. Se o primeiro ataque Nocautear o Pokémon Ativo do seu oponente, você poderá atacar novamente após seu oponente escolher um novo Pokémon Ativo.", + it: "Se c'è in gioco Area della Festa, questo Pokémon può attaccare due volte usando gli attacchi che ha. Se il primo attacco mette KO il Pokémon attivo del tuo avversario, puoi attaccare di nuovo dopo che il tuo avversario ha scelto un nuovo Pokémon attivo.", + de: "Wenn Festplatz im Spiel ist, kann dieses Pokémon die Attacken, die es hat, einsetzen, um zweimal anzugreifen. Wenn die erste Attacke das Aktive Pokémon deines Gegners kampfunfähig macht, kannst du erneut angreifen, nachdem dein Gegner ein neues Aktives Pokémon gewählt hat." + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Rapid Draw", + fr: "Pioche Rapide", + es: "Robo Rápido", + pt: "Retirada Rápida", + it: "Pescalesto", + de: "Schnellzieher" + }, + + effect: { + en: "Draw 2 cards.", + fr: "Piochez 2 cartes.", + es: "Roba 2 cartas.", + pt: "Compre 2 cartas.", + it: "Pesca due carte.", + de: "Ziehe 2 Karten." + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/022.ts b/data/Scarlet & Violet/Prismatic Evolutions/022.ts new file mode 100644 index 000000000..03a3f98f7 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/022.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Vaporeon", + fr: "Aquali", + es: "Vaporeon", + pt: "Vaporeon", + it: "Vaporeon", + de: "Aquana" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Spiral Drain", + fr: "Spirale Épuisante", + es: "Drenaje Espiral", + pt: "Dreno Espiral", + it: "Assorbimento Spirale", + de: "Spiralsauger" + }, + + 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.", + pt: "Cure 30 pontos de dano deste Pokémon.", + it: "Cura questo Pokémon da 30 danni.", + de: "Heile 30 Schadenspunkte bei diesem Pokémon." + }, + + damage: 30 + }, { + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Fighting Whirlpool", + fr: "Tourbillon Combatif", + es: "Remolino Luchador", + pt: "Luta Redemoinho", + it: "Mulinello Combattente", + de: "Strudelfäuste" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex or Pokémon V, this attack does 90 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex ou un Pokémon-V, cette attaque inflige 90 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 90 puntos de daño más.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex ou um Pokémon V, este ataque causará 90 pontos de dano a mais.", + it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex o un Pokémon-V, questo attacco infligge 90 danni in più.", + de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex oder Pokémon-V ist, fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "90+" + }], + + retreat: 2, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/023.ts b/data/Scarlet & Violet/Prismatic Evolutions/023.ts new file mode 100644 index 000000000..37d43afd1 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/023.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Vaporeon ex", + fr: "Aquali-ex", + es: "Vaporeon ex", + pt: "Vaporeon ex", + it: "Vaporeon-ex", + de: "Aquana-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 280, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Severe Squall", + fr: "Rafale Violente", + es: "Ráfaga Inclemente", + pt: "Ventania Intensa", + it: "Burrasca Violenta", + de: "Starker Schwall" + }, + + effect: { + en: "This attack does 60 damage to each of your opponent's Pokémon ex. This attack's damage isn't affected by Weakness or Resistance.", + fr: "Cette attaque inflige 60 dégâts à chacun des Pokémon-ex de votre adversaire. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.", + es: "Este ataque hace 60 puntos de daño a cada uno de los Pokémon ex de tu rival. El daño de este ataque no se ve afectado por Debilidad o Resistencia.", + pt: "Este ataque causa 60 pontos de dano a cada um dos Pokémon ex do seu oponente. O dano deste ataque não é afetado por Fraqueza ou Resistência.", + it: "Questo attacco infligge 60 danni a ciascuno dei Pokémon-ex del tuo avversario. I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza.", + de: "Diese Attacke fügt jedem Pokémon-ex deines Gegners 60 Schadenspunkte zu. Der Schaden dieser Attacke wird durch Schwäche oder Resistenz nicht verändert." + } + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + en: "Aquamarine", + fr: "Aigue-Marine", + es: "Aguamarina", + pt: "Água-marinha", + it: "Acquamarina", + de: "Aquamarin" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 280 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/024.ts b/data/Scarlet & Violet/Prismatic Evolutions/024.ts new file mode 100644 index 000000000..cab4aafed --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/024.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Suicune", + fr: "Suicune", + es: "Suicune", + pt: "Suicune", + it: "Suicune", + de: "Suicune" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Overrun", + fr: "Dépassement", + es: "Rebasar", + pt: "Atropelar", + it: "Oltrepassare", + de: "Überrennen" + }, + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 30 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 30 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + pt: "Este ataque também causa 30 pontos de dano a 1 dos Pokémon no Banco do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + it: "Questo attacco infligge anche 30 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + de: "Diese Attacke fügt auch 1 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 30 + }, { + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Aurora Beam", + fr: "Onde Boréale", + es: "Rayo Aurora", + pt: "Raio Aurora", + it: "Raggiaurora", + de: "Aurorastrahl" + }, + + damage: 100 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/025.ts b/data/Scarlet & Violet/Prismatic Evolutions/025.ts new file mode 100644 index 000000000..a62f7b1f4 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/025.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Glaceon", + fr: "Givrali", + es: "Glaceon", + pt: "Glaceon", + it: "Glaceon", + de: "Glaziola" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Permeating Chill", + fr: "Froid Pénétrant", + es: "Frío Penetrante", + pt: "Frio Penetrante", + it: "Gelo Pungente", + de: "Durchdringende Kälte" + }, + + effect: { + en: "At the end of your opponent's next turn, put 9 damage counters on the Defending Pokémon.", + fr: "À la fin du prochain tour de votre adversaire, placez 9 marqueurs de dégâts sur le Pokémon Défenseur.", + es: "Al final del próximo turno de tu rival, pon 9 contadores de daño en el Pokémon Defensor.", + pt: "Coloque 9 contadores de dano no Pokémon Defensor no final do próximo turno do seu oponente.", + it: "Alla fine del prossimo turno del tuo avversario, metti nove segnalini danno sul Pokémon difensore.", + de: "Lege am Ende des nächsten Zuges deines Gegners 9 Schadensmarken auf das Verteidigende Pokémon." + }, + + damage: 30 + }, { + cost: ["Water", "Colorless"], + + name: { + en: "Icicle Missile", + fr: "Missile Stalactite", + es: "Misil Carámbano", + pt: "Míssil Gélido", + it: "Missilghiaccio", + de: "Eiszapfenrakete" + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/026.ts b/data/Scarlet & Violet/Prismatic Evolutions/026.ts new file mode 100644 index 000000000..306c34281 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/026.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Glaceon ex", + fr: "Givrali-ex", + es: "Glaceon ex", + pt: "Glaceon ex", + it: "Glaceon-ex", + de: "Glaziola-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Frost Bullet", + fr: "Kunaï Givré", + es: "Bala Helada", + pt: "Projétil Congelado", + it: "Dardogelo", + de: "Frostprojektil" + }, + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 30 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 30 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + pt: "Este ataque também causa 30 pontos de dano a 1 dos Pokémon no Banco do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + it: "Questo attacco infligge anche 30 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + de: "Diese Attacke fügt auch 1 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 110 + }, { + cost: ["Grass", "Water", "Darkness"], + + name: { + en: "Euclase", + fr: "Euclase", + es: "Euclasa", + pt: "Euclásio", + it: "Euclasio", + de: "Euklas" + }, + + effect: { + en: "Knock Out 1 of your opponent's Pokémon that has exactly 6 damage counters on it.", + fr: "Mettez K.O. l'un des Pokémon de votre adversaire ayant exactement 6 marqueurs de dégâts.", + es: "Deja Fuera de Combate a 1 de los Pokémon de tu rival que tenga exactamente 6 contadores de daño sobre él.", + pt: "Nocauteie 1 dos Pokémon do seu oponente que tiver exatamente 6 contadores de dano nele.", + it: "Metti KO uno dei Pokémon del tuo avversario che ha esattamente sei segnalini danno.", + de: "Mache 1 Pokémon deines Gegners, auf dem genau 6 Schadensmarken liegen, kampfunfähig." + } + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/027.ts b/data/Scarlet & Violet/Prismatic Evolutions/027.ts new file mode 100644 index 000000000..42d9501ac --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/027.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Wellspring Mask Ogerpon ex", + fr: "Ogerpon Masque du Puits-ex", + es: "Ogerpon Máscara Fuente ex", + pt: "Ogerpon Máscara Nascente ex", + it: "Ogerpon Maschera Pozzo-ex", + de: "Brunnenmaske-Ogerpon-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Sob", + fr: "Pleurs", + es: "Sollozar", + pt: "Chora Mais", + it: "Pianto", + de: "Schluchzer" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 20 + }, { + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Torrential Pump", + fr: "Pompe Torrentielle", + es: "Bomba Torrencial", + pt: "Jato Torrencial", + it: "Pompa Torrenziale", + de: "Sintflutpumpe" + }, + + effect: { + en: "You may shuffle 3 Energy attached to this Pokémon into your deck. If you do, this attack also does 120 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Vous pouvez mélanger 3 Énergies attachées à ce Pokémon avec votre deck. Dans ce cas, cette attaque inflige 120 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Puedes poner 3 Energías unidas a este Pokémon en tu baraja y barajar todas las cartas. Si lo haces, este ataque también hace 120 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + pt: "Você pode embaralhar 3 Energias ligadas a este Pokémon no seu baralho. Se fizer isto, este ataque também causará 120 pontos de dano a 1 dos Pokémon no Banco do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + it: "Puoi rimischiare tre Energie assegnate a questo Pokémon nel tuo mazzo. Se lo fai, questo attacco infligge anche 120 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + de: "Du kannst 3 an dieses Pokémon angelegte Energien in dein Deck mischen. Wenn du das machst, fügt diese Attacke auch 1 Pokémon auf der Bank deines Gegners 120 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 100 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/028.ts b/data/Scarlet & Violet/Prismatic Evolutions/028.ts new file mode 100644 index 000000000..5983c77fa --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/028.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex", + fr: "Pikachu-ex", + es: "Pikachu ex", + pt: "Pikachu ex", + it: "Pikachu-ex", + de: "Pikachu-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 190, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Tail Whap", + fr: "Queue Battoir", + es: "Coletón", + pt: "Surra de Cauda", + it: "Codabotta", + de: "Schweifvertrimmer" + }, + + damage: 30 + }, { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Thunder", + fr: "Fatal-Foudre", + es: "Trueno", + pt: "Trovão", + it: "Tuono", + de: "Donner" + }, + + effect: { + en: "This Pokémon also does 30 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 30 dégâts.", + es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.", + pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.", + it: "Questo Pokémon infligge anche 30 danni a se stesso.", + de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu." + }, + + damage: 220 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/029.ts b/data/Scarlet & Violet/Prismatic Evolutions/029.ts new file mode 100644 index 000000000..0017e179b --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/029.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Jolteon", + fr: "Voltali", + es: "Jolteon", + pt: "Jolteon", + it: "Jolteon", + de: "Blitza" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 110, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Linear Attack", + fr: "Attaque Linéaire", + es: "Ataque Lineal", + pt: "Ataque Linear", + it: "Attacco Lineare", + de: "Linearer Angriff" + }, + + effect: { + en: "This attack does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 30 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 30 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + pt: "Este ataque causa 30 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + it: "Questo attacco infligge 30 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }, { + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + en: "Fighting Lightning", + fr: "Foudre Hostile", + es: "Rayo Luchador", + pt: "Luta Relâmpago", + it: "Fulmine Combattente", + de: "Blitzfäuste" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex or Pokémon V, this attack does 90 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex ou un Pokémon-V, cette attaque inflige 90 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 90 puntos de daño más.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex ou um Pokémon V, este ataque causará 90 pontos de dano a mais.", + it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex o un Pokémon-V, questo attacco infligge 90 danni in più.", + de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex oder Pokémon-V ist, fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "90+" + }], + + retreat: 0, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/030.ts b/data/Scarlet & Violet/Prismatic Evolutions/030.ts new file mode 100644 index 000000000..9bed2b9b6 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/030.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Jolteon ex", + fr: "Voltali-ex", + es: "Jolteon ex", + pt: "Jolteon ex", + it: "Jolteon-ex", + de: "Blitza-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Flashing Spear", + fr: "Lance Aveuglante", + es: "Lanza Reluciente", + pt: "Lança Lampejante", + it: "Lancia Abbagliante", + de: "Leuchtender Speer" + }, + + effect: { + en: "You may discard up to 2 Basic Energy from your Benched Pokémon. This attack does 90 more damage for each card you discarded in this way.", + fr: "Vous pouvez défausser jusqu'à 2 Énergies de base de vos Pokémon de Banc. Cette attaque inflige 90 dégâts supplémentaires pour chaque carte défaussée de cette façon.", + es: "Puedes descartar hasta 2 Energías Básicas de tus Pokémon en Banca. Este ataque hace 90 puntos de daño más por cada carta que hayas descartado de esta manera.", + pt: "Você pode descartar até 2 Energias Básicas dos seus Pokémon no Banco. Este ataque causa 90 pontos de dano a mais para cada carta descartada desta forma.", + it: "Puoi scartare fino a due Energie base dai tuoi Pokémon in panchina. Questo attacco infligge 90 danni in più per ogni carta che hai scartato in questo modo.", + de: "Du kannst bis zu 2 Basis-Energien von Pokémon auf deiner Bank auf deinen Ablagestapel legen. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 90 Schadenspunkte mehr zu." + }, + + damage: "60+" + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + en: "Dravite", + fr: "Dravite", + es: "Dravita", + pt: "Dravita", + it: "Dravite", + de: "Dravit" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 280 + }], + + retreat: 0, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/031.ts b/data/Scarlet & Violet/Prismatic Evolutions/031.ts new file mode 100644 index 000000000..4eeb8bdee --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/031.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Iron Hands ex", + fr: "Paume-de-Fer-ex", + es: "Ferropalmas ex", + pt: "Mãos Férreas ex", + it: "Manoferrea-ex", + de: "Eisenhand-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Arm Press", + fr: "Pression des Bras", + es: "Prensa de Brazo", + pt: "Compressão de Braço", + it: "Pressabraccio", + de: "Armpresse" + }, + + damage: 160 + }, { + cost: ["Lightning", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Amp You Very Much", + fr: "Multi Beaucoup", + es: "Gracias Amplificadas", + pt: "Gratiluz", + it: "Mille Volt Grazie", + de: "Amplifizierter Dank" + }, + + effect: { + en: "If your opponent's Pokémon is Knocked Out by damage from this attack, take 1 more Prize card.", + fr: "Si le Pokémon de votre adversaire est mis K.O. par les dégâts de cette attaque, récupérez une carte Récompense supplémentaire.", + es: "Si un Pokémon de tu rival queda Fuera de Combate por el daño de este ataque, coge 1 carta de Premio más.", + pt: "Se o Pokémon do seu oponente for Nocauteado pelo dano deste ataque, pegue 1 carta de Prêmio a mais.", + it: "Se un Pokémon del tuo avversario viene messo KO dai danni di questo attacco, prendi una carta Premio in più.", + de: "Wenn das Pokémon deines Gegners durch Schaden dieser Attacke kampfunfähig wird, nimm 1 Preiskarte mehr." + }, + + damage: 120 + }], + + retreat: 4, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/032.ts b/data/Scarlet & Violet/Prismatic Evolutions/032.ts new file mode 100644 index 000000000..f6cb9afde --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/032.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Iron Thorns ex", + fr: "Épine-de-Fer-ex", + es: "Ferropúas ex", + pt: "Espinhos Férreos ex", + it: "Spineferree-ex", + de: "Eisendorn-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Lightning"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Initialization", + fr: "Initialiser", + es: "Inicialización", + pt: "Inicialização", + it: "Formattazione", + de: "Initialisierung" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, Pokémon with a Rule Box in play (both yours and your opponent's) have no Abilities, except for Future Pokémon. (Pokémon ex, Pokémon V, etc. have Rule Boxes.)", + fr: "Tant que ce Pokémon est sur le Poste Actif, les Pokémon ayant un encadré Règle en jeu (les vôtres et ceux de votre adversaire) n'ont pas de talent, à l'exception des Pokémon Temps futur. (Les Pokémon-ex, Pokémon-V, etc. ont des encadrés Règle.)", + es: "Mientras este Pokémon esté en el Puesto Activo, los Pokémon con un recuadro de regla en juego (tanto tuyos como de tu rival) no tienen ninguna habilidad, excepto los Pokémon del futuro. (Pokémon ex, Pokémon V, etc. tienen recuadros de regla).", + pt: "Enquanto este Pokémon estiver no Campo Ativo, Pokémon em jogo que tiverem uma Caixa de Regras (seus e do seu oponente) não terão Habilidades, exceto por Pokémon Futuristas. (Pokémon ex, Pokémon V, etc. têm Caixas de Regras.)", + it: "Fintanto che questo Pokémon è in posizione attiva, i Pokémon in gioco che hanno una regola speciale, sia tuoi che del tuo avversario, non hanno abilità, a eccezione dei Pokémon Tempo Futuro. I Pokémon-ex, i Pokémon-V, ecc. hanno regole speciali.", + de: "Solange dieses Pokémon in der Aktiven Position ist, haben Pokémon im Spiel (deine und die deines Gegners), die ein Regelfeld haben, keine Fähigkeiten, außer Pokémon aus der Zukunft. (Pokémon-ex, Pokémon-V usw. haben Regelfelder.)" + } + }], + + attacks: [{ + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + en: "Volt Cyclone", + fr: "Cyclone Volt", + es: "Ciclón Voltio", + pt: "Ciclone de Volts", + it: "Ciclonevolt", + de: "Voltwirbelsturm" + }, + + effect: { + en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.", + fr: "Déplacez une Énergie de ce Pokémon vers l'un de vos Pokémon de Banc.", + es: "Mueve 1 Energía de este Pokémon a uno de tus Pokémon en Banca.", + pt: "Mova uma Energia deste Pokémon para 1 dos seus Pokémon no Banco.", + it: "Sposta un'Energia da questo Pokémon a uno di quelli nella tua panchina.", + de: "Verschiebe 1 Energie von diesem Pokémon auf 1 Pokémon auf deiner Bank." + }, + + damage: 140 + }], + + retreat: 4, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/033.ts b/data/Scarlet & Violet/Prismatic Evolutions/033.ts new file mode 100644 index 000000000..38b045663 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/033.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Espeon", + fr: "Mentali", + es: "Espeon", + pt: "Espeon", + it: "Espeon", + de: "Psiana" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Psychic Assault", + fr: "Assaut Psychique", + es: "Asalto Psíquico", + pt: "Ataque Psíquico", + it: "Psicoassalto", + de: "Psycho-Ansturm" + }, + + effect: { + en: "This attack does 10 more damage for each damage counter on your opponent's Active Pokémon.", + fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts sur le Pokémon Actif de votre adversaire.", + es: "Este ataque hace 10 puntos de daño más por cada contador de daño en el Pokémon Activo de tu rival.", + pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano no Pokémon Ativo do seu oponente.", + it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente sul Pokémon attivo del tuo avversario.", + de: "Diese Attacke fügt für jede Schadensmarke auf dem Aktiven Pokémon deines Gegners 10 Schadenspunkte mehr zu." + }, + + damage: "30+" + }, { + cost: ["Psychic", "Colorless"], + + name: { + en: "Psy Bolt", + fr: "Choc Mental", + es: "Rayo Psi", + pt: "Raio Psíquico", + it: "Psico", + 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.", + pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente agora estará Paralisado.", + it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.", + de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert." + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/034.ts b/data/Scarlet & Violet/Prismatic Evolutions/034.ts new file mode 100644 index 000000000..38d80f715 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/034.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Espeon ex", + fr: "Mentali-ex", + es: "Espeon ex", + pt: "Espeon ex", + it: "Espeon-ex", + de: "Psiana-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Psych Out", + fr: "Déstabilisation", + es: "Psicointimidación", + pt: "Intimidar", + it: "Intimidazione", + de: "Nervös machen" + }, + + effect: { + en: "Discard a random card from your opponent's hand.", + fr: "Défaussez au hasard une carte de la main de votre adversaire.", + es: "Descarta 1 carta aleatoria de la mano de tu rival.", + pt: "Descarte uma carta aleatória da mão do seu oponente.", + it: "Scarta una carta a caso dalla mano del tuo avversario.", + de: "Lege 1 zufällige Karte aus der Hand deines Gegners auf seinen Ablagestapel." + }, + + damage: 160 + }, { + cost: ["Grass", "Psychic", "Darkness"], + + name: { + en: "Amazez", + fr: "Améthyste Chevron", + es: "Azeztulita", + pt: "Cacoxenita", + it: "Ametista Chevron", + de: "Amazez" + }, + + effect: { + en: "Devolve each of your opponent's evolved Pokémon by shuffling the highest Stage Evolution card on it into your opponent's deck.", + fr: "Faites dés-évoluer chacun des Pokémon évolués de votre adversaire en mélangeant avec le deck de votre adversaire la carte Évolution la plus élevée placée sur ceux-ci.", + es: "Haz involucionar a cada uno de los Pokémon evolucionados de tu rival poniendo la carta de Evolución de fase más alta que tengan sobre ellos en la baraja de tu rival, y barájalas todas.", + pt: "Reverta a evolução de cada um dos Pokémon evoluídos do seu oponente embaralhando a carta de Evolução de Estágio mais alto sobre ele no baralho do seu oponente.", + it: "Annulla l'evoluzione di ciascuno dei Pokémon evoluti del tuo avversario rimischiando la carta Evoluzione di fase più alta presente su di esso nel mazzo del tuo avversario.", + de: "Rückentwickle jedes entwickelte Pokémon deines Gegners, indem du deinem Gegner die Karte mit der höchsten Entwicklungsphase in sein Deck mischst." + } + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/035.ts b/data/Scarlet & Violet/Prismatic Evolutions/035.ts new file mode 100644 index 000000000..989030ad4 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/035.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Duskull", + fr: "Skelénox", + es: "Duskull", + pt: "Duskull", + it: "Duskull", + de: "Zwirrlicht" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Come and Get You", + fr: "Viens me Chercher", + es: "Voy a por Ti", + pt: "Vim te Buscar", + it: "Passo a Prenderti", + de: "Ich krieg dich" + }, + + effect: { + en: "Put up to 3 Duskull from your discard pile onto your Bench.", + fr: "Placez jusqu'à 3 Skelénox de votre pile de défausse sur votre Banc.", + es: "Pon hasta 3 Duskull de tu pila de descartes en tu Banca.", + pt: "Coloque até 3 Duskull da sua pilha de descarte no seu Banco.", + it: "Prendi fino a tre Duskull dalla tua pila degli scarti e mettili nella tua panchina.", + de: "Lege bis zu 3 Zwirrlicht aus deinem Ablagestapel auf deine Bank." + } + }, { + cost: ["Psychic", "Psychic"], + + name: { + en: "Mumble", + fr: "Murmure", + es: "Farfullar", + pt: "Resmungo", + it: "Borbottio", + de: "Grummeln" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/036.ts b/data/Scarlet & Violet/Prismatic Evolutions/036.ts new file mode 100644 index 000000000..c2b1bacf6 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/036.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Dusclops", + fr: "Téraclope", + es: "Dusclops", + pt: "Dusclops", + it: "Dusclops", + de: "Zwirrklop" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Cursed Blast", + fr: "Explosion Maudite", + es: "Estallido Maldito", + pt: "Explosão Maldita", + it: "Esplosione Maledetta", + de: "Verfluchte Explosion" + }, + + effect: { + en: "Once during your turn, you may put 5 damage counters on 1 of your opponent's Pokémon. If you use this Ability, this Pokémon is Knocked Out.", + fr: "Une fois pendant votre tour, vous pouvez placer 5 marqueurs de dégâts sur l'un des Pokémon de votre adversaire. Si vous utilisez ce talent, ce Pokémon est mis K.O.", + es: "Una vez durante tu turno, puedes poner 5 contadores de daño en uno de los Pokémon de tu rival. Si usas esta habilidad, este Pokémon queda Fuera de Combate.", + pt: "Uma vez durante o seu turno, você poderá colocar 5 contadores de dano em 1 dos Pokémon do seu oponente. Se você usar esta Habilidade, este Pokémon será Nocauteado.", + it: "Una sola volta durante il tuo turno, puoi mettere cinque segnalini danno su uno dei Pokémon del tuo avversario. Se usi questa abilità, questo Pokémon viene messo KO.", + de: "Einmal während deines Zuges kannst du 5 Schadensmarken auf 1 Pokémon deines Gegners legen. Wenn du diese Fähigkeit einsetzt, ist dieses Pokémon kampfunfähig." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic"], + + name: { + en: "Will-O-Wisp", + fr: "Feu Follet", + es: "Fuego Fatuo", + pt: "Fogo Fátuo", + it: "Fuocofatuo", + de: "Irrlicht" + }, + + damage: 50 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/037.ts b/data/Scarlet & Violet/Prismatic Evolutions/037.ts new file mode 100644 index 000000000..772218db9 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/037.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Dusknoir", + fr: "Noctunoir", + es: "Dusknoir", + pt: "Dusknoir", + it: "Dusknoir", + de: "Zwirrfinst" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 160, + types: ["Psychic"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Cursed Blast", + fr: "Explosion Maudite", + es: "Estallido Maldito", + pt: "Explosão Maldita", + it: "Esplosione Maledetta", + de: "Verfluchte Explosion" + }, + + effect: { + en: "Once during your turn, you may put 13 damage counters on 1 of your opponent's Pokémon. If you use this Ability, this Pokémon is Knocked Out.", + fr: "Une fois pendant votre tour, vous pouvez placer 13 marqueurs de dégâts sur l'un des Pokémon de votre adversaire. Si vous utilisez ce talent, ce Pokémon est mis K.O.", + es: "Una vez durante tu turno, puedes poner 13 contadores de daño en uno de los Pokémon de tu rival. Si usas esta habilidad, este Pokémon queda Fuera de Combate.", + pt: "Uma vez durante o seu turno, você poderá colocar 13 contadores de dano em 1 dos Pokémon do seu oponente. Se você usar esta Habilidade, este Pokémon será Nocauteado.", + it: "Una sola volta durante il tuo turno, puoi mettere 13 segnalini danno su uno dei Pokémon del tuo avversario. Se usi questa abilità, questo Pokémon viene messo KO.", + de: "Einmal während deines Zuges kannst du 13 Schadensmarken auf 1 Pokémon deines Gegners legen. Wenn du diese Fähigkeit einsetzt, ist dieses Pokémon kampfunfähig." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Shadow Bind", + fr: "Étreinte d'Ombre", + es: "Atadura Sombría", + pt: "Aprisionamento Sombrio", + it: "Legami d'Ombra", + de: "Schattenbindung" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 150 + }], + + retreat: 3, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/038.ts b/data/Scarlet & Violet/Prismatic Evolutions/038.ts new file mode 100644 index 000000000..f035876ce --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/038.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Spritzee", + fr: "Fluvetin", + es: "Spritzee", + pt: "Spritzee", + it: "Spritzee", + de: "Parfi" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Fairy Wind", + fr: "Vent Féérique", + es: "Viento Feérico", + pt: "Vento de Fada", + it: "Vento di Fata", + de: "Feenbrise" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/039.ts b/data/Scarlet & Violet/Prismatic Evolutions/039.ts new file mode 100644 index 000000000..6ef5f6833 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/039.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Aromatisse", + fr: "Cocotine", + es: "Aromatisse", + pt: "Aromatisse", + it: "Aromatisse", + de: "Parfinesse" + }, + + rarity: "Common", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Perfume Press", + fr: "Pression Entêtante", + es: "Presión Perfume", + pt: "Apertão Perfumado", + it: "Profumopressa", + de: "Duftdruck" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso.", + it: "Il Pokémon attivo del tuo avversario viene confuso.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt." + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/040.ts b/data/Scarlet & Violet/Prismatic Evolutions/040.ts new file mode 100644 index 000000000..cb708f189 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/040.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Sylveon", + fr: "Nymphali", + es: "Sylveon", + pt: "Sylveon", + it: "Sylveon", + de: "Feelinara" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Safeguard", + fr: "Rune Protect", + es: "Velo Sagrado", + pt: "Salvaguarda", + it: "Salvaguardia", + de: "Bodyguard" + }, + + effect: { + en: "Prevent all damage done to this Pokémon by attacks from your opponent's Pokémon ex.", + fr: "Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon-ex de votre adversaire.", + es: "Se evita todo el daño infligido a este Pokémon por ataques de los Pokémon ex de tu rival.", + pt: "Previna todo o dano causado a este Pokémon por ataques dos Pokémon ex do seu oponente.", + it: "Previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon-ex del tuo avversario.", + de: "Verhindere allen Schaden, der diesem Pokémon durch Attacken von Pokémon-ex deines Gegners zugefügt wird." + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Magical Shot", + fr: "Coup Magique", + es: "Disparo Mágico", + pt: "Tiro Mágico", + it: "Magicolpo", + de: "Magischer Schuss" + }, + + damage: 100 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/041.ts b/data/Scarlet & Violet/Prismatic Evolutions/041.ts new file mode 100644 index 000000000..5d1ca00df --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/041.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Sylveon ex", + fr: "Nymphali-ex", + es: "Sylveon ex", + pt: "Sylveon ex", + it: "Sylveon-ex", + de: "Feelinara-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Magical Charm", + fr: "Fascination Magique", + es: "Encanto Mágico", + pt: "Encanto Mágico", + it: "Fascino Magico", + de: "Magischer Charme" + }, + + effect: { + en: "During your opponent's next turn, attacks used by the Defending Pokémon do 100 less damage (before applying Weakness and Resistance).", + fr: "Pendant le prochain tour de votre adversaire, les attaques utilisées par le Pokémon Défenseur infligent 100 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 usados por el Pokémon Defensor hacen 100 puntos de daño menos (antes de aplicar Debilidad y Resistencia).", + pt: "Durante o próximo turno do seu oponente, os ataques usados pelo Pokémon Defensor causarão 100 pontos de dano a menos (antes de aplicar Fraqueza e Resistência).", + it: "Durante il prossimo turno del tuo avversario, gli attacchi usati dal Pokémon difensore infliggono 100 danni in meno, prima di aver applicato debolezza e resistenza.", + de: "Während des nächsten Zuges deines Gegners fügen die vom Verteidigenden Pokémon eingesetzten Attacken 100 Schadenspunkte weniger zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + damage: 160 + }, { + cost: ["Water", "Lightning", "Psychic"], + + name: { + en: "Angelite", + fr: "Angélite", + es: "Angelita", + pt: "Angelita", + it: "Angelite", + de: "Angelit" + }, + + effect: { + en: "Choose 2 of your opponent's Benched Pokémon. Shuffle those Pokémon and all attached cards into your opponent's deck. If 1 of your Pokémon used Angelite during your last turn, this attack can't be used.", + fr: "Choisissez 2 des Pokémon de Banc de votre adversaire. Mélangez avec son deck ces Pokémon-là et toutes les cartes qui leur sont attachées. Si l'un de vos Pokémon a utilisé Angélite pendant votre dernier tour, cette attaque ne peut pas être utilisée.", + es: "Elige 2 de los Pokémon en Banca de tu rival. Pon esos Pokémon y todas las cartas unidas a ellos en la baraja de tu rival y barájalas todas. Si uno de tus Pokémon usó Angelita durante tu último turno, este ataque no se puede usar.", + pt: "Escolha 2 dos Pokémon no Banco do seu oponente. Embaralhe aqueles Pokémon e todas as cartas ligadas a eles no baralho do seu oponente. Se 1 dos seus Pokémon usou Angelita durante o seu último turno, este ataque não poderá ser usado.", + it: "Scegli due dei Pokémon nella panchina del tuo avversario. Rimischia quei Pokémon e tutte le carte a essi assegnate nel suo mazzo. Se uno dei tuoi Pokémon ha usato Angelite durante il tuo ultimo turno, questo attacco non può essere usato.", + de: "Wähle 2 Pokémon auf der Bank deines Gegners. Mische jene Pokémon und alle angelegten Karten in das Deck deines Gegners. Wenn 1 deiner Pokémon während deines letzten Zuges Angelit eingesetzt hat, kann diese Attacke nicht eingesetzt werden." + } + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/042.ts b/data/Scarlet & Violet/Prismatic Evolutions/042.ts new file mode 100644 index 000000000..706e26819 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/042.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Scream Tail", + fr: "Hurle-Queue", + es: "Colagrito", + pt: "Cauda Brado", + it: "Codaurlante", + de: "Brüllschweif" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Slap", + fr: "Gifle", + es: "Bofetón", + pt: "Tapa", + it: "Sberla", + de: "Hieb" + }, + + damage: 30 + }, { + cost: ["Psychic", "Colorless"], + + name: { + en: "Roaring Scream", + fr: "Hurlement Bestial", + es: "Grito Rugiente", + pt: "Brado Estrondo", + it: "Urlo Ruggente", + de: "Tosendes Gebrüll" + }, + + effect: { + en: "This attack does 20 damage to 1 of your opponent's Pokémon for each damage counter on this Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 20 dégâts à l'un des Pokémon de votre adversaire pour chaque marqueur de dégâts sur ce Pokémon. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 20 puntos de daño a uno de los Pokémon de tu rival por cada contador de daño en este Pokémon. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + pt: "Este ataque causa 20 pontos de dano a 1 dos Pokémon do seu oponente para cada contador de dano neste Pokémon. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + it: "Questo attacco infligge 20 danni a uno dei Pokémon del tuo avversario per ogni segnalino danno presente su questo Pokémon. Non applicare debolezza e resistenza ai Pokémon in panchina.", + de: "Diese Attacke fügt 1 Pokémon deines Gegners für jede Schadensmarke auf diesem Pokémon 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/043.ts b/data/Scarlet & Violet/Prismatic Evolutions/043.ts new file mode 100644 index 000000000..dc892d70b --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/043.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Flutter Mane", + fr: "Flotte-Mèche", + es: "Melenaleteo", + pt: "Juba Sopro", + it: "Crinealato", + de: "Flatterhaar" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Midnight Fluttering", + fr: "Flottement de Minuit", + es: "Aleteo de Medianoche", + pt: "Sopro da Meia-noite", + it: "Nottealata", + de: "Mitternachtsflattern" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, your opponent's Active Pokémon has no Abilities, except for Midnight Fluttering.", + fr: "Tant que ce Pokémon est sur le Poste Actif, le Pokémon Actif de votre adversaire n'a pas de talent, à l'exception de Flottement de Minuit.", + es: "Mientras este Pokémon esté en el Puesto Activo, el Pokémon Activo de tu rival no tiene ninguna habilidad, excepto Aleteo de Medianoche.", + pt: "Enquanto este Pokémon estiver no Campo Ativo, o Pokémon Ativo do seu oponente não terá Habilidades, exceto por Sopro da Meia-noite.", + it: "Fintanto che questo Pokémon è in posizione attiva, il Pokémon attivo del tuo avversario non ha abilità, a eccezione di Nottealata.", + de: "Solange dieses Pokémon in der Aktiven Position ist, hat das Aktive Pokémon deines Gegners keine Fähigkeiten, außer Mitternachtsflattern." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Hex Hurl", + fr: "Lancer de Malédictions", + es: "Lanzamiento Maléfico", + pt: "Lançar Feitiço", + it: "Scagliasciagura", + de: "Unheilsschleuder" + }, + + effect: { + en: "Put 2 damage counters on your opponent's Benched Pokémon in any way you like.", + fr: "Placez 2 marqueurs de dégâts sur les Pokémon de Banc de votre adversaire comme il vous plaît.", + es: "Pon 2 contadores de daño en los Pokémon en Banca de tu rival de la manera que desees.", + pt: "Coloque 2 contadores de dano nos Pokémon no Banco do seu oponente como desejar.", + it: "Metti due segnalini danno sui Pokémon nella panchina del tuo avversario nel modo che preferisci.", + de: "Lege 2 Schadensmarken beliebig auf die Pokémon auf der Bank deines Gegners." + }, + + damage: 90 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/044.ts b/data/Scarlet & Violet/Prismatic Evolutions/044.ts new file mode 100644 index 000000000..bfb15eb93 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/044.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Munkidori", + fr: "Fortusimia", + es: "Munkidori", + pt: "Munkidori", + it: "Munkidori", + de: "Benesaru" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Adrena-Brain", + fr: "Adréna-Mental", + es: "Adrenalina Mental", + pt: "Adrena-cérebro", + it: "Adrena-Mente", + de: "Adrena-Hirn" + }, + + effect: { + en: "Once during your turn, if this Pokémon has any Darkness Energy attached, you may move up to 3 damage counters from 1 of your Pokémon to 1 of your opponent's Pokémon.", + fr: "Une fois pendant votre tour, si ce Pokémon a au moins une Énergie Darkness attachée, vous pouvez déplacer jusqu'à 3 marqueurs de dégâts de l'un de vos Pokémon vers l'un des Pokémon de votre adversaire.", + es: "Una vez durante tu turno, si este Pokémon tiene alguna Energía Darkness unida, puedes mover hasta 3 contadores de daño de uno de tus Pokémon a uno de los Pokémon de tu rival.", + pt: "Uma vez durante o seu turno, se este Pokémon tiver alguma Energia Darkness ligada a ele, você poderá mover até 3 contadores de dano de 1 dos seus Pokémon para 1 dos Pokémon do seu oponente.", + it: "Una sola volta durante il tuo turno, se questo Pokémon ha delle Energie Darkness assegnate, puoi spostare fino a tre segnalini danno da uno dei tuoi Pokémon a un Pokémon del tuo avversario.", + de: "Einmal während deines Zuges, wenn an dieses Pokémon mindestens 1 Darkness-Energie angelegt ist, kannst du bis zu 3 Schadensmarken von 1 deiner Pokémon auf 1 Pokémon deines Gegners verschieben." + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Mind Bend", + fr: "Contrôleur d'Esprit", + es: "Fusión Mental", + pt: "Dobra Mentes", + it: "Fusione Mentale", + de: "Gedankenverbiegung" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso.", + it: "Il Pokémon attivo del tuo avversario viene confuso.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt." + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/045.ts b/data/Scarlet & Violet/Prismatic Evolutions/045.ts new file mode 100644 index 000000000..0a0ea816d --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/045.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Fezandipiti", + fr: "Favianos", + es: "Fezandipiti", + pt: "Fezandipiti", + it: "Fezandipiti", + de: "Beatori" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Adrena-Pheromone", + fr: "Adréna-Phéromone", + es: "Adrenalina Feromona", + pt: "Adrena-feromônio", + it: "Adrena-Feromone", + de: "Adrena-Pheromon" + }, + + effect: { + en: "If this Pokémon has any Darkness Energy attached and is damaged by an attack, flip a coin. If heads, prevent that damage.", + fr: "Si ce Pokémon a au moins une Énergie Darkness attachée et qu'il subit les dégâts d'une attaque, lancez une pièce. Si c'est face, évitez ces dégâts.", + es: "Si este Pokémon tiene alguna Energía Darkness unida y resulta dañado por un ataque, lanza 1 moneda. Si sale cara, se evita ese daño.", + pt: "Se este Pokémon tiver alguma Energia Darkness ligada a ele e for danificado por um ataque, jogue uma moeda. Se sair cara, previna aquele dano.", + it: "Se questo Pokémon ha delle Energie Darkness assegnate e viene danneggiato da un attacco, lancia una moneta. Se esce testa, previeni quei danni.", + de: "Wenn an dieses Pokémon mindestens 1 Darkness-Energie angelegt ist und es durch eine Attacke Schaden erhält, wirf 1 Münze. Verhindere bei Kopf jenen Schaden." + } + }], + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Energy Feather", + fr: "Plume Énergétique", + es: "Pluma Energía", + pt: "Pluma de Energia", + it: "Piuma Energetica", + de: "Energiefeder" + }, + + effect: { + en: "This attack does 30 damage for each Energy attached to this Pokémon.", + fr: "Cette attaque inflige 30 dégâts pour chaque Énergie attachée à ce Pokémon.", + es: "Este ataque hace 30 puntos de daño por cada Energía unida a este Pokémon.", + pt: "Este ataque causa 30 pontos de dano para cada Energia ligada a este Pokémon.", + it: "Questo attacco infligge 30 danni per ogni Energia assegnata a questo Pokémon.", + de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Energie 30 Schadenspunkte zu." + }, + + damage: "30×" + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/046.ts b/data/Scarlet & Violet/Prismatic Evolutions/046.ts new file mode 100644 index 000000000..2d4bc4934 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/046.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Iron Boulder", + fr: "Roc-de-Fer", + es: "Ferromole", + pt: "Rocha Férrea", + it: "Massoferreo", + de: "Eisenfels" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Adjusted Horn", + fr: "Corne Ajustée", + es: "Cuerno Graduable", + pt: "Chifre Ajustado", + it: "Equicorno", + de: "Angepasstes Horn" + }, + + effect: { + en: "If you don't have the same number of cards in your hand as your opponent, this attack does nothing.", + fr: "Si vous n'avez pas le même nombre de cartes dans votre main que votre adversaire, cette attaque ne fait rien.", + es: "Si no tienes la misma cantidad de cartas en tu mano que tu rival, este ataque no hace nada.", + pt: "Se você não tiver o mesmo número de cartas na sua mão do que seu oponente, este ataque não fará nada.", + it: "Se non hai lo stesso numero di carte in mano del tuo avversario, questo attacco non ha effetto.", + de: "Wenn du nicht genauso viele Karten auf der Hand hast wie dein Gegner, hat diese Attacke keine Auswirkungen." + }, + + damage: 170 + }], + + retreat: 3, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/047.ts b/data/Scarlet & Violet/Prismatic Evolutions/047.ts new file mode 100644 index 000000000..4bff40472 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/047.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Larvitar", + fr: "Embrylex", + es: "Larvitar", + pt: "Larvitar", + it: "Larvitar", + de: "Larvitar" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Headbutt", + fr: "Coup d'Boule", + es: "Golpe Cabeza", + pt: "Cabeçada", + it: "Bottintesta", + de: "Kopfnuss" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/048.ts b/data/Scarlet & Violet/Prismatic Evolutions/048.ts new file mode 100644 index 000000000..a302f6280 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/048.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Pupitar", + fr: "Ymphect", + es: "Pupitar", + pt: "Pupitar", + it: "Pupitar", + de: "Pupitar" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Sand Spray", + fr: "Jet Sableux", + es: "Rociado de Arena", + pt: "Spray de Areia", + it: "Silicospruzzo", + de: "Sandspray" + }, + + damage: 20 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Hammer In", + fr: "Enfoncement", + es: "Martillear", + pt: "Martelada", + it: "Martello", + de: "Einhämmern" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/049.ts b/data/Scarlet & Violet/Prismatic Evolutions/049.ts new file mode 100644 index 000000000..490f1102a --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/049.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Groudon", + fr: "Groudon", + es: "Groudon", + pt: "Groudon", + it: "Groudon", + de: "Groudon" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Swelling Power", + fr: "Puissance Grandissante", + es: "Poder Desbordante", + pt: "Poder Crescente", + it: "Potere Amplificato", + de: "Anschwellende Kraft" + }, + + effect: { + en: "Attach a Basic Fighting Energy card from your hand to 1 of your Pokémon.", + fr: "Attachez une carte Énergie Fighting de base de votre main à l'un de vos Pokémon.", + es: "Une 1 carta de Energía Fighting Básica de tu mano a uno de tus Pokémon.", + pt: "Ligue uma carta de Energia Fighting Básica da sua mão a 1 dos seus Pokémon.", + it: "Assegna a uno dei tuoi Pokémon una carta Energia base Fighting dalla tua mano.", + de: "Lege 1 Basis-Fighting-Energiekarte aus deiner Hand an 1 deiner Pokémon an." + } + }, { + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Magma Purge", + fr: "Nettoyage Magma", + es: "Purga Magma", + pt: "Expurgação Magmática", + it: "Magmarimozione", + de: "Magma-Auswurf" + }, + + effect: { + en: "Discard up to 4 Energy from your Pokémon. This attack does 60 damage for each card you discarded in this way.", + fr: "Défaussez jusqu'à 4 Énergies de vos Pokémon. Cette attaque inflige 60 dégâts pour chaque carte défaussée de cette façon.", + es: "Descarta hasta 4 Energías de tus Pokémon. Este ataque hace 60 puntos de daño por cada carta que hayas descartado de esta manera.", + pt: "Descarte até 4 Energias dos seus Pokémon. Este ataque causa 60 pontos de dano para cada carta descartada desta forma.", + it: "Scarta fino a quattro Energie dai tuoi Pokémon. Questo attacco infligge 60 danni per ogni carta che hai scartato in questo modo.", + de: "Lege bis zu 4 Energien von deinen Pokémon auf deinen Ablagestapel. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 60 Schadenspunkte zu." + }, + + damage: "60×" + }], + + retreat: 3, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/050.ts b/data/Scarlet & Violet/Prismatic Evolutions/050.ts new file mode 100644 index 000000000..6fad53ef5 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/050.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Riolu", + fr: "Riolu", + es: "Riolu", + pt: "Riolu", + it: "Riolu", + de: "Riolu" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Quick Attack", + fr: "Vive-Attaque", + es: "Ataque Rápido", + pt: "Ataque Rápido", + it: "Attacco Rapido", + de: "Ruckzuckhieb" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 20 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/051.ts b/data/Scarlet & Violet/Prismatic Evolutions/051.ts new file mode 100644 index 000000000..c045b4f8c --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/051.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Lucario ex", + fr: "Lucario-ex", + es: "Lucario ex", + pt: "Lucario ex", + it: "Lucario-ex", + de: "Lucario-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Aura Uppercut", + fr: "Uppercut Aura", + es: "Gancho Aura", + pt: "Gancho de Aura", + it: "Auramontante", + de: "Aura-Uppercut" + }, + + damage: 50 + }, { + cost: ["Fighting", "Colorless"], + + name: { + en: "Tornado Rush", + fr: "Ruée Tornade", + es: "Tornado Raudo", + pt: "Arremetida Tornado", + it: "Tornadoraffica", + de: "Tornadoansturm" + }, + + effect: { + en: "During your next turn, this Pokémon's Tornado Rush attack does 100 more damage (before applying Weakness and Resistance).", + fr: "Pendant votre prochain tour, l'attaque Ruée Tornade de ce Pokémon inflige 100 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).", + es: "Durante tu próximo turno, el ataque Tornado Raudo de este Pokémon hace 100 puntos de daño más (antes de aplicar Debilidad y Resistencia).", + pt: "Durante o seu próximo turno, o ataque Arremetida Tornado deste Pokémon causará 100 pontos de dano a mais (antes de aplicar Fraqueza e Resistência).", + it: "Durante il tuo prossimo turno, l'attacco Tornadoraffica di questo Pokémon infligge 100 danni in più, prima di aver applicato debolezza e resistenza.", + de: "Während deines nächsten Zuges fügt die Attacke Tornadoansturm dieses Pokémon 100 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/052.ts b/data/Scarlet & Violet/Prismatic Evolutions/052.ts new file mode 100644 index 000000000..172952c54 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/052.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Hippopotas", + fr: "Hippopotas", + es: "Hippopotas", + pt: "Hippopotas", + it: "Hippopotas", + de: "Hippopotas" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Tackle", + fr: "Charge", + es: "Placaje", + pt: "Investida", + it: "Azione", + de: "Tackle" + }, + + damage: 70 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/053.ts b/data/Scarlet & Violet/Prismatic Evolutions/053.ts new file mode 100644 index 000000000..eaf14eafe --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/053.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Hippowdon", + fr: "Hippodocus", + es: "Hippowdon", + pt: "Hippowdon", + it: "Hippowdon", + de: "Hippoterus" + }, + + rarity: "Common", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Sand Spray", + fr: "Jet Sableux", + es: "Rociado de Arena", + pt: "Spray de Areia", + it: "Silicospruzzo", + de: "Sandspray" + }, + + damage: 90 + }, { + cost: ["Fighting", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Land Crush", + fr: "Écras'Terre", + es: "Aterrizaje", + pt: "Aperto de Terra", + it: "Schiacciaterra", + de: "Schollenbrecher" + }, + + damage: 140 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/054.ts b/data/Scarlet & Violet/Prismatic Evolutions/054.ts new file mode 100644 index 000000000..0fc803120 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/054.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Bloodmoon Ursaluna", + fr: "Ursaking Lune Vermeille", + es: "Ursaluna Luna Carmesí", + pt: "Ursaluna Lua Sangrenta", + it: "Ursaluna Luna Cremisi", + de: "Blutmond-Ursaluna" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Battle-Hardened", + fr: "Aguerri au Combat", + es: "Veteranía en Combate", + pt: "Bom de Briga", + it: "Temprato dalla Lotta", + de: "Kampferprobt" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may attach up to 2 Basic Fighting Energy cards from your hand to this Pokémon.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez attacher jusqu'à 2 cartes Énergie Fighting de base de votre main à ce Pokémon.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes unir hasta 2 cartas de Energía Fighting Básica de tu mano a este Pokémon.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá ligar até 2 cartas de Energia Fighting Básica da sua mão a este Pokémon.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi assegnargli fino a due carte Energia base Fighting dalla tua mano.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du bis zu 2 Basis-Fighting-Energiekarten aus deiner Hand an dieses Pokémon anlegen." + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Mad Bite", + fr: "Morsure Enragée", + es: "Mordisco Enloquecido", + pt: "Mordida Insana", + it: "Impazzamorso", + de: "Irrer Biss" + }, + + effect: { + en: "This attack does 30 more damage for each damage counter on your opponent's Active Pokémon.", + fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque marqueur de dégâts sur le Pokémon Actif de votre adversaire.", + es: "Este ataque hace 30 puntos de daño más por cada contador de daño en el Pokémon Activo de tu rival.", + pt: "Este ataque causa 30 pontos de dano a mais para cada contador de dano no Pokémon Ativo do seu oponente.", + it: "Questo attacco infligge 30 danni in più per ogni segnalino danno presente sul Pokémon attivo del tuo avversario.", + de: "Diese Attacke fügt für jede Schadensmarke auf dem Aktiven Pokémon deines Gegners 30 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 4, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/055.ts b/data/Scarlet & Violet/Prismatic Evolutions/055.ts new file mode 100644 index 000000000..dd8978d4f --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/055.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Great Tusk", + fr: "Fort-Ivoire", + es: "Colmilargo", + pt: "Presa Grande", + it: "Grandizanne", + de: "Riesenzahn" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Land Collapse", + fr: "Effondrement de Terrain", + es: "Derrumbe de Tierra", + pt: "Colapso Terrestre", + it: "Crolloterra", + de: "Landrutsch" + }, + + effect: { + en: "Discard the top card of your opponent's deck. If you played an Ancient Supporter card from your hand during this turn, discard 3 more cards in this way.", + fr: "Défaussez la carte du dessus du deck de votre adversaire. Si vous avez joué une carte Supporter Temps passé de votre main pendant ce tour, défaussez 3 cartes supplémentaires de cette façon.", + es: "Descarta la primera carta de la baraja de tu rival. Si has jugado una carta de Partidario del pasado de tu mano durante este turno, descarta 3 cartas más de esta manera.", + pt: "Descarte a carta de cima do baralho do seu oponente. Se você jogou uma carta de Apoiador Ancestral da sua mão durante este turno, descarte 3 cartas a mais desta forma.", + it: "Scarta la prima carta del mazzo del tuo avversario. Se hai giocato una carta Aiuto Tempo Passato dalla tua mano durante questo turno, scarta altre tre carte in questo modo.", + de: "Lege die oberste Karte vom Deck deines Gegners auf seinen Ablagestapel. Wenn du eine Vergangenheitsunterstützerkarte während dieses Zuges aus deiner Hand gespielt hast, lege 3 weitere Karten auf diese Weise auf seinen Ablagestapel." + } + }, { + cost: ["Fighting", "Fighting", "Colorless", "Colorless"], + + name: { + en: "Giant Tusk", + fr: "Défense Géante", + es: "Colmillo Gigante", + pt: "Presa Gigante", + it: "Gigaspuntone", + de: "Riesenstoßzahn" + }, + + damage: 160 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/056.ts b/data/Scarlet & Violet/Prismatic Evolutions/056.ts new file mode 100644 index 000000000..0a2887e7e --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/056.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Sandy Shocks ex", + fr: "Pelage-Sablé-ex", + es: "Pelarena ex", + pt: "Choque Areia ex", + it: "Peldisabbia-ex", + de: "Sandfell-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 220, + types: ["Fighting"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Magnetic Absorption", + fr: "Absorption Magnétique", + es: "Absorción Magnética", + pt: "Absorção Magnética", + it: "Assorbimento Magnetico", + de: "Magnetische Absorption" + }, + + effect: { + en: "Once during your turn, if your opponent has 4 or fewer Prize cards remaining, you may attach a Basic Fighting Energy card from your discard pile to this Pokémon.", + fr: "Une fois pendant votre tour, s'il reste 4 cartes Récompense ou moins à votre adversaire, vous pouvez attacher une carte Énergie Fighting de base de votre pile de défausse à ce Pokémon.", + es: "Una vez durante tu turno, si a tu rival le quedan 4 cartas de Premio o menos, puedes unir 1 carta de Energía Fighting Básica de tu pila de descartes a este Pokémon.", + pt: "Uma vez durante o seu turno, se o seu oponente tiver 4 ou menos cartas de Prêmio restantes, você poderá ligar uma carta de Energia Fighting Básica da sua pilha de descarte a este Pokémon.", + it: "Una sola volta durante il tuo turno, se il tuo avversario ha quattro o meno carte Premio rimanenti, puoi assegnare a questo Pokémon una carta Energia base Fighting dalla tua pila degli scarti.", + de: "Einmal während deines Zuges, wenn dein Gegner 4 oder weniger verbleibende Preiskarten hat, kannst du 1 Basis-Fighting-Energiekarte aus deinem Ablagestapel an dieses Pokémon anlegen." + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Earthen Spike", + fr: "Piquant Terrestre", + es: "Púas Terrestres", + pt: "Espinho Terrestre", + it: "Terrapunta", + de: "Irdendorn" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 200 + }], + + retreat: 2, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/057.ts b/data/Scarlet & Violet/Prismatic Evolutions/057.ts new file mode 100644 index 000000000..b2f6e5028 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/057.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Okidogi", + fr: "Félicanis", + es: "Okidogi", + pt: "Okidogi", + it: "Okidogi", + de: "Boninu" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Adrena-Power", + fr: "Adréna-Puissance", + es: "Adrenalina Poderosa", + pt: "Adrena-poder", + it: "Adrena-Potenza", + de: "Adrena-Power" + }, + + effect: { + en: "If this Pokémon has any Darkness Energy attached, it gets +100 HP, and the attacks it uses do 100 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).", + fr: "Si ce Pokémon a au moins une Énergie Darkness attachée, il reçoit +100 PV et les attaques utilisées par ce Pokémon infligent 100 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Si este Pokémon tiene alguna Energía Darkness unida, obtiene 100 PS más, y los ataques que use hacen 100 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + pt: "Se este Pokémon tiver alguma Energia Darkness ligada a ele, ele receberá 100 PS a mais, e os ataques que ele usar causarão 100 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + it: "Se questo Pokémon ha delle Energie Darkness assegnate, ha 100 PS in più e gli attacchi che usa infliggono 100 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + de: "Wenn an dieses Pokémon mindestens 1 Darkness-Energie angelegt ist, erhält es +100 KP und die Attacken, die es einsetzt, fügen dem Aktiven Pokémon deines Gegners 100 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting"], + + name: { + en: "Good Punch", + fr: "Bon Poing", + es: "Puño Bueno", + pt: "Baita Soco", + it: "Bel Pugno", + de: "Schöner Schlag" + }, + + damage: 70 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/058.ts b/data/Scarlet & Violet/Prismatic Evolutions/058.ts new file mode 100644 index 000000000..ef1051c29 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/058.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Cornerstone Mask Ogerpon ex", + fr: "Ogerpon Masque de la Pierre-ex", + es: "Ogerpon Máscara Cimiento ex", + pt: "Ogerpon Máscara Alicerce ex", + it: "Ogerpon Maschera Fondamenta-ex", + de: "Fundamentmaske-Ogerpon-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Fighting"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Cornerstone Stance", + fr: "Posture de la Pierre", + es: "Posición Cimiento", + pt: "Postura de Alicerce", + it: "Posa Fondamenta", + de: "Fundamentabwehr" + }, + + effect: { + en: "Prevent all damage from attacks done to this Pokémon by your opponent's Pokémon that have an Ability.", + fr: "Évitez tous les dégâts d'attaques infligés à ce Pokémon par les Pokémon de votre adversaire ayant un talent.", + es: "Se evita todo el daño infligido a este Pokémon por ataques de los Pokémon de tu rival que tengan una habilidad.", + pt: "Previna todo o dano de ataques causado a este Pokémon pelos Pokémon do seu oponente que têm uma Habilidade.", + it: "Previeni tutti i danni degli attacchi inflitti a questo Pokémon dai Pokémon del tuo avversario che hanno un'abilità.", + de: "Verhindere allen Schaden, der diesem Pokémon durch Attacken von Pokémon deines Gegners, die eine Fähigkeit haben, zugefügt wird." + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Demolish", + fr: "Démolition", + es: "Derruir", + pt: "Demolir", + it: "Demolire", + de: "Demolieren" + }, + + effect: { + en: "This attack's damage isn't affected by Weakness or Resistance, or by any effects on your opponent's Active Pokémon.", + fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout effet en action sur le Pokémon Actif de votre adversaire.", + es: "El daño de este ataque no se ve afectado por Debilidad o Resistencia, ni por ningún efecto en el Pokémon Activo de tu rival.", + pt: "O dano deste ataque não é afetado por Fraqueza ou Resistência, ou por quaisquer efeitos no Pokémon Ativo do seu oponente.", + it: "I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza, o da alcun effetto presente sul Pokémon attivo del tuo avversario.", + de: "Der Schaden dieser Attacke wird durch Schwäche, Resistenz oder Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert." + }, + + damage: 140 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/059.ts b/data/Scarlet & Violet/Prismatic Evolutions/059.ts new file mode 100644 index 000000000..aef29a116 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/059.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Umbreon", + fr: "Noctali", + es: "Umbreon", + pt: "Umbreon", + it: "Umbreon", + de: "Nachtara" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Feint Attack", + fr: "Feinte", + es: "Finta", + pt: "Ataque Dissimulado", + it: "Finta", + de: "Finte" + }, + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Pokémon. This attack's damage isn't affected by Weakness or Resistance, or by any effects on that Pokémon.", + fr: "Cette attaque inflige 50 dégâts à l'un des Pokémon de votre adversaire. Ces dégâts ne sont pas affectés par la Faiblesse, la Résistance ou tout effet en action sur ce Pokémon.", + es: "Este ataque hace 50 puntos de daño a uno de los Pokémon de tu rival. El daño de este ataque no se ve afectado por Debilidad o Resistencia, o por ningún efecto en ese Pokémon.", + pt: "Este ataque causa 50 pontos de dano a 1 dos Pokémon do seu oponente. O dano deste ataque não é afetado por Fraqueza, Resistência ou por quaisquer outros efeitos naquele Pokémon.", + it: "Questo attacco infligge 50 danni a uno dei Pokémon del tuo avversario. I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza, o da alcun effetto presente su quel Pokémon.", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 50 Schadenspunkte zu. Der Schaden dieser Attacke wird durch Schwäche, Resistenz oder Effekte auf jenem Pokémon nicht verändert." + } + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Pitch-Black Blade", + fr: "Lame Fuligineuse", + es: "Tajo Oscuridad", + pt: "Lâmina do Breu", + it: "Lama Buiopesto", + de: "Pechschwarze Klinge" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 140 + }], + + retreat: 1, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/060.ts b/data/Scarlet & Violet/Prismatic Evolutions/060.ts new file mode 100644 index 000000000..b69efdf3b --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/060.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Umbreon ex", + fr: "Noctali-ex", + es: "Umbreon ex", + pt: "Umbreon ex", + it: "Umbreon-ex", + de: "Nachtara-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 280, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Moon Mirage", + fr: "Mirage Lunaire", + es: "Espejismo Lunar", + pt: "Miragem Lunar", + it: "Miraggio Lunare", + de: "Mondillusion" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso.", + it: "Il Pokémon attivo del tuo avversario viene confuso.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt." + }, + + damage: 160 + }, { + cost: ["Lightning", "Psychic", "Darkness"], + + name: { + en: "Onyx", + fr: "Onyx", + es: "Ónice", + pt: "Ônix", + it: "Onice", + de: "Onyx" + }, + + effect: { + en: "Discard all Energy from this Pokémon, and take a Prize card.", + fr: "Défaussez toutes les Énergies attachées à ce Pokémon, puis récupérez une carte Récompense.", + es: "Descarta todas las Energías de este Pokémon y coge 1 carta de Premio.", + pt: "Descarte todas as Energias deste Pokémon e pegue uma carta de Prêmio.", + it: "Scarta tutte le Energie da questo Pokémon e prendi una carta Premio.", + de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel und nimm 1 Preiskarte." + } + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/061.ts b/data/Scarlet & Violet/Prismatic Evolutions/061.ts new file mode 100644 index 000000000..6ee7b399e --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/061.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Sneasel", + fr: "Farfuret", + es: "Sneasel", + pt: "Sneasel", + it: "Sneasel", + de: "Sniebel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Claw Slash", + fr: "Tranch'Griffe", + es: "Cuchillada Garra", + pt: "Golpe de Garra", + it: "Lacerartiglio", + de: "Klauenschlitzer" + }, + + damage: 20 + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/062.ts b/data/Scarlet & Violet/Prismatic Evolutions/062.ts new file mode 100644 index 000000000..f9560efb2 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/062.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Houndour", + fr: "Malosse", + es: "Houndour", + pt: "Houndour", + it: "Houndour", + de: "Hunduster" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Playful Kick", + fr: "Coup de Pied de Garnement", + es: "Patada Juguetona", + pt: "Chute Brincalhão", + it: "Calcio Briccone", + de: "Verspielter Kick" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/063.ts b/data/Scarlet & Violet/Prismatic Evolutions/063.ts new file mode 100644 index 000000000..1f8f399c2 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/063.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Houndoom", + fr: "Démolosse", + es: "Houndoom", + pt: "Houndoom", + it: "Houndoom", + de: "Hundemon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 120, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Call to Muster", + fr: "Appel au Rassemblement", + es: "Llamar a Filas", + pt: "Chamado de Guerra", + it: "Chiamata a Raccolta", + de: "Einberufen" + }, + + effect: { + en: "Search your deck for up to 2 Basic Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base, puis attachez-les à vos Pokémon comme il vous plaît. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Básica y únelas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja.", + pt: "Procure por até 2 cartas de Energia Básica no seu baralho e ligue-as aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho.", + it: "Cerca nel tuo mazzo fino a due carte Energia base e assegnale ai tuoi Pokémon nel modo che preferisci. Poi rimischia le carte del tuo mazzo.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten und lege sie beliebig an deine Pokémon an. Mische anschließend dein Deck." + } + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Pitch-Black Fangs", + fr: "Crocs Nuit Noire", + es: "Colmillos Azabaches", + pt: "Presas do Breu", + it: "Zanne Buiopesto", + de: "Pechschwarze Fänge" + }, + + damage: 100 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/064.ts b/data/Scarlet & Violet/Prismatic Evolutions/064.ts new file mode 100644 index 000000000..963db674a --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/064.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Tyranitar ex", + fr: "Tyranocif-ex", + es: "Tyranitar ex", + pt: "Tyranitar ex", + it: "Tyranitar-ex", + de: "Despotar-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 340, + types: ["Darkness"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Grind", + fr: "Écrase", + es: "Moler", + pt: "Moer", + it: "Spremuta", + de: "Zermalmer" + }, + + effect: { + en: "This attack does 50 damage for each Energy attached to this Pokémon.", + fr: "Cette attaque inflige 50 dégâts pour chaque Énergie attachée à ce Pokémon.", + es: "Este ataque hace 50 puntos de daño por cada Energía unida a este Pokémon.", + pt: "Este ataque causa 50 pontos de dano para cada Energia ligada a este Pokémon.", + it: "Questo attacco infligge 50 danni per ogni Energia assegnata a questo Pokémon.", + de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Energie 50 Schadenspunkte zu." + }, + + damage: "50×" + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Tyrannical Crush", + fr: "Écrasement Tyrannique", + es: "Destrucción Tiránica", + pt: "Esmagamento Tirânico", + it: "Distruzione Tirannica", + de: "Despotischer Zermalmer" + }, + + effect: { + en: "Discard a random card from your opponent's hand.", + fr: "Défaussez au hasard une carte de la main de votre adversaire.", + es: "Descarta 1 carta aleatoria de la mano de tu rival.", + pt: "Descarte uma carta aleatória da mão do seu oponente.", + it: "Scarta una carta a caso dalla mano del tuo avversario.", + de: "Lege 1 zufällige Karte aus der Hand deines Gegners auf seinen Ablagestapel." + }, + + damage: 150 + }], + + retreat: 3, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/065.ts b/data/Scarlet & Violet/Prismatic Evolutions/065.ts new file mode 100644 index 000000000..8460a1028 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/065.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Roaring Moon", + fr: "Rugit-Lune", + es: "Bramaluna", + pt: "Lua Estrondo", + it: "Lunaruggente", + de: "Donnersichel" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + en: "Vengeance Fletching", + fr: "Plumage Vengeur", + es: "Venganza Emplumada", + pt: "Flechas da Vingança", + it: "Piume Vendicative", + de: "Rachegefieder" + }, + + effect: { + en: "This attack does 10 more damage for each Ancient card in your discard pile.", + fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque carte Temps passé dans votre pile de défausse.", + es: "Este ataque hace 10 puntos de daño más por cada carta del pasado en tu pila de descartes.", + pt: "Este ataque causa 10 pontos de dano a mais para cada carta Ancestral na sua pilha de descarte.", + it: "Questo attacco infligge 10 danni in più per ogni carta Tempo Passato nella tua pila degli scarti.", + de: "Diese Attacke fügt für jede Vergangenheitskarte in deinem Ablagestapel 10 Schadenspunkte mehr zu." + }, + + damage: "70+" + }, { + cost: ["Darkness", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Speed Wing", + fr: "Ailes Vives", + es: "Ala Veloz", + pt: "Asa da Velocidade", + it: "Alaveloce", + de: "Turboschwinge" + }, + + damage: 120 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/066.ts b/data/Scarlet & Violet/Prismatic Evolutions/066.ts new file mode 100644 index 000000000..04fcf2014 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/066.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Bronzor", + fr: "Archéomire", + es: "Bronzor", + pt: "Bronzor", + it: "Bronzor", + de: "Bronzel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + en: "Hammer In", + fr: "Enfoncement", + es: "Martillear", + pt: "Martelada", + it: "Martello", + de: "Einhämmern" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/067.ts b/data/Scarlet & Violet/Prismatic Evolutions/067.ts new file mode 100644 index 000000000..788642403 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/067.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Bronzong", + fr: "Archéodong", + es: "Bronzong", + pt: "Bronzong", + it: "Bronzong", + de: "Bronzong" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Metal"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Protective Bell", + fr: "Cloche Protectrice", + es: "Campana Protectora", + pt: "Sino Protetor", + it: "Campana Protettiva", + de: "Schutzglocke" + }, + + effect: { + en: "All of your Pokémon take 10 less damage from attacks from your opponent's Pokémon (after applying Weakness and Resistance).", + fr: "Tous vos Pokémon subissent 10 dégâts de moins provenant des attaques des Pokémon de votre adversaire (après application de la Faiblesse et de la Résistance).", + es: "Los ataques de los Pokémon de tu rival hacen 10 puntos de daño menos a todos tus Pokémon (después de aplicar Debilidad y Resistencia).", + pt: "Todos os seus Pokémon recebem 10 pontos de dano a menos de ataques dos Pokémon do seu oponente (depois de aplicar Fraqueza e Resistência).", + it: "I tuoi Pokémon subiscono 10 danni in meno dagli attacchi dei Pokémon del tuo avversario, dopo aver applicato debolezza e resistenza.", + de: "Allen deinen Pokémon werden durch Attacken von Pokémon deines Gegners 10 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + } + }], + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + en: "Heavy Impact", + fr: "Gros Impact", + es: "Impacto Pesado", + pt: "Impacto Pesado", + it: "Impatto Pesante", + de: "Schwerer Einschlag" + }, + + damage: 50 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/068.ts b/data/Scarlet & Violet/Prismatic Evolutions/068.ts new file mode 100644 index 000000000..9c80ac248 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/068.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Heatran", + fr: "Heatran", + es: "Heatran", + pt: "Heatran", + it: "Heatran", + de: "Heatran" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + en: "Wrack Down", + fr: "Réduire en Poussière", + es: "Desmoronar", + pt: "Desmoronar", + it: "Abbattere", + de: "Niederschleudern" + }, + + damage: 40 + }, { + cost: ["Metal", "Metal", "Colorless"], + + name: { + en: "Iron Buster", + fr: "Buster de Fer", + es: "Destructor Férreo", + pt: "Destruidor Férreo", + it: "Ferro Distruttivo", + de: "Eisensprenger" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 130 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/069.ts b/data/Scarlet & Violet/Prismatic Evolutions/069.ts new file mode 100644 index 000000000..2e0415ee6 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/069.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Duraludon", + fr: "Duralugon", + es: "Duraludon", + pt: "Duraludon", + it: "Duraludon", + de: "Duraludon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Hammer In", + fr: "Enfoncement", + es: "Martillear", + pt: "Martelada", + it: "Martello", + de: "Einhämmern" + }, + + damage: 30 + }, { + cost: ["Metal", "Metal", "Colorless"], + + name: { + en: "Raging Hammer", + fr: "Marteau Rageur", + es: "Martillo Furioso", + pt: "Martelo Feroz", + it: "Martelfuria", + de: "Wuthammer" + }, + + effect: { + en: "This attack does 10 more damage for each damage counter on this Pokémon.", + fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts sur ce Pokémon.", + es: "Este ataque hace 10 puntos de daño más por cada contador de daño en este Pokémon.", + pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano neste Pokémon.", + it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente su questo Pokémon.", + de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte mehr zu." + }, + + damage: "80+" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/070.ts b/data/Scarlet & Violet/Prismatic Evolutions/070.ts new file mode 100644 index 000000000..4898f98a6 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/070.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Archaludon", + fr: "Pondralugon", + es: "Archaludon", + pt: "Archaludon", + it: "Archaludon", + de: "Briduradon" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 180, + types: ["Metal"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Metal Bridge", + fr: "Pont Métal", + es: "Puente Metálico", + pt: "Ponte Metálica", + it: "Metalponte", + de: "Metallbrücke" + }, + + effect: { + en: "All of your Pokémon that have Metal Energy attached have no Retreat Cost.", + fr: "Vos Pokémon auxquels de l'Énergie Metal est attachée n'ont pas de Coût de Retraite.", + es: "Ninguno de tus Pokémon que tenga alguna Energía Metal unida tiene Coste de Retirada.", + pt: "Todos os seus Pokémon que têm Energia Metal ligada a eles não têm custo de Recuo.", + it: "Tutti i tuoi Pokémon che hanno delle Energie Metal assegnate non hanno costo di ritirata.", + de: "Alle deine Pokémon, an die Metal-Energie angelegt ist, haben keine Rückzugskosten." + } + }], + + attacks: [{ + cost: ["Metal", "Metal", "Colorless"], + + name: { + en: "Iron Blaster", + fr: "Explose-Fer", + es: "Explosión Férrea", + pt: "Detonador de Ferro", + it: "Esplodiferro", + de: "Eisenblaster" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 160 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/071.ts b/data/Scarlet & Violet/Prismatic Evolutions/071.ts new file mode 100644 index 000000000..5f11b8a7d --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/071.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Dreepy", + fr: "Fantyrm", + es: "Dreepy", + pt: "Dreepy", + it: "Dreepy", + de: "Grolldra" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Petty Grudge", + fr: "Rancune Mesquine", + es: "Rencor Ruin", + pt: "Rancinho", + it: "Rancormeschino", + de: "Mini-Groll" + }, + + damage: 10 + }, { + cost: ["Fire", "Psychic"], + + name: { + en: "Bite", + fr: "Morsure", + es: "Mordisco", + pt: "Mordida", + it: "Morso", + de: "Biss" + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/072.ts b/data/Scarlet & Violet/Prismatic Evolutions/072.ts new file mode 100644 index 000000000..9aede7cbc --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/072.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Drakloak", + fr: "Dispareptil", + es: "Drakloak", + pt: "Drakloak", + it: "Drakloak", + de: "Phandra" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Dragon"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Recon Directive", + fr: "Ordre de Reconnaissance", + es: "Orden de Búsqueda", + pt: "Ordem de Reconhecimento", + it: "Ordine di Ricognizione", + de: "Erkundungsbefehl" + }, + + effect: { + en: "Once during your turn, you may look at the top 2 cards of your deck and put 1 of them into your hand. Put the other card on the bottom of your deck.", + fr: "Une fois pendant votre tour, vous pouvez regarder les 2 cartes du dessus de votre deck, puis ajouter l'une d'elles à votre main. Placez l'autre carte en dessous de votre deck.", + es: "Una vez durante tu turno, puedes mirar las 2 primeras cartas de tu baraja y poner 1 de ellas en tu mano. Pon la otra carta en la parte inferior de tu baraja.", + pt: "Uma vez durante o seu turno, você poderá olhar as 2 cartas de cima do seu baralho e colocar 1 delas na sua mão. Coloque a outra carta como a carta de baixo do seu baralho.", + it: "Una sola volta durante il tuo turno, puoi guardare le prime due carte del tuo mazzo e aggiungerne una alle carte che hai in mano. Metti l'altra carta in fondo al tuo mazzo.", + de: "Einmal während deines Zuges kannst du dir die obersten 2 Karten deines Decks anschauen und 1 von ihnen auf deine Hand nehmen. Lege die andere Karte unter dein Deck." + } + }], + + attacks: [{ + cost: ["Fire", "Psychic"], + + name: { + en: "Dragon Headbutt", + fr: "Dracoud'Boule", + es: "Cabezazo Dragón", + pt: "Cabeçada do Dragão", + it: "Dragozuccata", + de: "Drachen-Kopfnuss" + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/073.ts b/data/Scarlet & Violet/Prismatic Evolutions/073.ts new file mode 100644 index 000000000..25859ab39 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/073.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Dragapult ex", + fr: "Lanssorien-ex", + es: "Dragapult ex", + pt: "Dragapult ex", + it: "Dragapult-ex", + de: "Katapuldra-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 320, + types: ["Dragon"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Jet Headbutt", + fr: "Bélier Volant", + es: "Turbocabezazo", + pt: "Cabeçada a Jato", + it: "Zuccata Jet", + de: "Flinke Kopfnuss" + }, + + damage: 70 + }, { + cost: ["Fire", "Psychic"], + + name: { + en: "Phantom Dive", + fr: "Plongée Fantôme", + es: "Picado Fantasma", + pt: "Mergulho Fantasma", + it: "Picchiata Spettrale", + de: "Phantomsturzflug" + }, + + effect: { + en: "Put 6 damage counters on your opponent's Benched Pokémon in any way you like.", + fr: "Placez 6 marqueurs de dégâts sur les Pokémon de Banc de votre adversaire comme il vous plaît.", + es: "Pon 6 contadores de daño en los Pokémon en Banca de tu rival de la manera que desees.", + pt: "Coloque 6 contadores de dano nos Pokémon no Banco do seu oponente como desejar.", + it: "Metti sei segnalini danno sui Pokémon nella panchina del tuo avversario nel modo che preferisci.", + de: "Lege 6 Schadensmarken beliebig auf die Pokémon auf der Bank deines Gegners." + }, + + damage: 200 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/074.ts b/data/Scarlet & Violet/Prismatic Evolutions/074.ts new file mode 100644 index 000000000..54b894597 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/074.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Eevee", + fr: "Évoli", + es: "Eevee", + pt: "Eevee", + it: "Eevee", + de: "Evoli" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Boosted Evolution", + fr: "Évolution Boostée", + es: "Evolución Potenciada", + pt: "Impulso da Evolução", + it: "Evoluzione Potenziata", + de: "Evolutionsschub" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, it can evolve during your first turn or the turn you play it.", + fr: "Tant que ce Pokémon est sur le Poste Actif, il peut évoluer pendant votre premier tour ou pendant le tour où vous le jouez.", + es: "Mientras este Pokémon esté en el Puesto Activo, puede evolucionar durante tu primer turno o durante el turno en que lo pongas en juego.", + pt: "Enquanto este Pokémon estiver no Campo Ativo, ele poderá evoluir durante o seu primeiro turno ou durante o turno em que for colocado em jogo.", + it: "Fintanto che questo Pokémon è in posizione attiva, può evolversi durante il tuo primo turno o il turno in cui lo giochi.", + de: "Solange dieses Pokémon in der Aktiven Position ist, kann es sich während deines ersten Zuges oder während des Zuges, in dem du es spielst, entwickeln." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Reckless Charge", + fr: "Attaque Imprudente", + es: "Carga Descuidada", + pt: "Carga Indomável", + it: "Carica Avventata", + 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.", + pt: "Este Pokémon também causa 10 pontos de dano a si mesmo.", + it: "Questo Pokémon infligge anche 10 danni a se stesso.", + de: "Dieses Pokémon fügt auch sich selbst 10 Schadenspunkte zu." + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/075.ts b/data/Scarlet & Violet/Prismatic Evolutions/075.ts new file mode 100644 index 000000000..7a8e44081 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/075.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Eevee ex", + fr: "Évoli-ex", + es: "Eevee ex", + pt: "Eevee ex", + it: "Eevee-ex", + de: "Evoli-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 200, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Rainbow DNA", + fr: "ADN Arc-en-Ciel", + es: "ADN Arcoíris", + pt: "DNA Arco-íris", + it: "DNA Arcobaleno", + de: "Regenbogen-DNA" + }, + + effect: { + en: "This Pokémon can evolve into any Pokémon ex that evolves from Eevee if you play it from your hand onto this Pokémon. (This Pokémon can't evolve during your first turn or the turn you play it.)", + fr: "Ce Pokémon peut évoluer en n'importe quel Pokémon-ex qui évolue d'Évoli, si vous le jouez de votre main sur ce Pokémon. (Ce Pokémon ne peut pas évoluer pendant votre premier tour ou pendant le tour où vous le jouez.)", + es: "Este Pokémon puede evolucionar a cualquier Pokémon ex que evolucione de Eevee si pones en juego ese Pokémon ex sobre este Pokémon desde tu mano. (Este Pokémon no puede evolucionar durante tu primer turno ni durante el turno en que lo pongas en juego).", + pt: "Este Pokémon poderá evoluir para qualquer Pokémon ex que evolua de Eevee se você jogar aquele Pokémon ex da sua mão sobre este Pokémon. (Este Pokémon não poderá evoluir durante o seu primeiro turno ou durante o turno em que for colocado em jogo.)", + it: "Questo Pokémon può evolversi in qualsiasi Pokémon-ex che si evolve da Eevee, se giochi quel Pokémon-ex dalla tua mano mettendolo sopra questo Pokémon. Questo Pokémon non può evolversi durante il tuo primo turno o il turno in cui lo giochi.", + de: "Dieses Pokémon kann sich zu einem beliebigen Pokémon-ex entwickeln, das sich aus Evoli entwickelt, wenn du es aus deiner Hand auf dieses Pokémon spielst. (Dieses Pokémon kann sich während deines ersten Zuges oder während des Zuges, in dem du es spielst, nicht entwickeln.)" + } + }], + + attacks: [{ + cost: ["Fire", "Water", "Lightning"], + + name: { + en: "Coruscating Quartz", + fr: "Quartz Scintillant", + es: "Cuarzo Brillante", + pt: "Quartzo Cintilante", + it: "Quarzo Scintillante", + de: "Funkelnder Quarz" + }, + + damage: 200 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/076.ts b/data/Scarlet & Violet/Prismatic Evolutions/076.ts new file mode 100644 index 000000000..32f85a0ae --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/076.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Snorlax ex", + fr: "Ronflex-ex", + es: "Snorlax ex", + pt: "Snorlax ex", + it: "Snorlax-ex", + de: "Relaxo-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Strength", + fr: "Force", + es: "Fuerza", + pt: "Força", + it: "Forza", + de: "Stärke" + }, + + damage: 80 + }, { + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Toss-and-Turn Press", + fr: "Pression Retournement", + es: "Presionar y Dar Vueltas", + pt: "Compressono", + it: "Pressa Gira e Rigira", + de: "Herumwälzende Presse" + }, + + effect: { + en: "Flip 3 coins. This attack does 120 damage for each heads.", + fr: "Lancez 3 pièces. Cette attaque inflige 120 dégâts pour chaque côté face.", + es: "Lanza 3 monedas. Este ataque hace 120 puntos de daño por cada cara.", + pt: "Jogue 3 moedas. Este ataque causa 120 pontos de dano para cada cara.", + it: "Lancia tre volte una moneta. Questo attacco infligge 120 danni ogni volta che esce testa.", + de: "Wirf 3 Münzen. Diese Attacke fügt 120 Schadenspunkte pro Kopf zu." + }, + + damage: "120×" + }], + + retreat: 4, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/077.ts b/data/Scarlet & Violet/Prismatic Evolutions/077.ts new file mode 100644 index 000000000..a10ed4802 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/077.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Hoothoot", + fr: "Hoothoot", + es: "Hoothoot", + pt: "Hoothoot", + it: "Hoothoot", + de: "Hoothoot" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Insomnia", + fr: "Insomnia", + es: "Insomnio", + pt: "Insônia", + it: "Insonnia", + de: "Insomnia" + }, + + effect: { + en: "This Pokémon can't be Asleep.", + fr: "Ce Pokémon ne peut pas être Endormi.", + es: "Este Pokémon no puede pasar a estar Dormido.", + pt: "Este Pokémon não pode ser Adormecido.", + it: "Questo Pokémon non può venire addormentato.", + de: "Dieses Pokémon kann nicht von Schlaf betroffen werden." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Tackle", + fr: "Charge", + es: "Placaje", + pt: "Investida", + it: "Azione", + de: "Tackle" + }, + + damage: 20 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/078.ts b/data/Scarlet & Violet/Prismatic Evolutions/078.ts new file mode 100644 index 000000000..386a872d9 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/078.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Noctowl", + fr: "Noarfang", + es: "Noctowl", + pt: "Noctowl", + it: "Noctowl", + de: "Noctuh" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Jewel Seeker", + fr: "Chercheur de Joyaux", + es: "Buscajoyas", + pt: "Buscar Joias", + it: "Cercatore di Gemme", + de: "Juwelenjäger" + }, + + effect: { + en: "Once during your turn, when you play this Pokémon from your hand to evolve 1 of your Pokémon, if you have any Tera Pokémon in play, you may search your deck for up to 2 Trainer cards, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Une fois pendant votre tour, lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon, si vous avez au moins un Pokémon Téracristal en jeu, vous pouvez chercher dans votre deck jusqu'à 2 cartes Dresseur, les montrer, puis les ajouter à votre main. Mélangez ensuite votre deck.", + es: "Una vez durante tu turno, cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon, si tienes algún Pokémon Teracristal en juego, puedes buscar en tu baraja hasta 2 cartas de Entrenador, enseñarlas y ponerlas en tu mano. Después, baraja las cartas de tu baraja.", + pt: "Uma vez durante o seu turno, quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon, se você tiver algum Pokémon Tera em jogo, você poderá procurar por até 2 cartas de Treinador no seu baralho, revelá-las e colocá-las na sua mão. Em seguida, embaralhe o seu baralho.", + it: "Una sola volta durante il tuo turno, quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon, se hai dei Pokémon Teracristal in gioco, puoi cercare nel tuo mazzo fino a due carte Allenatore, mostrarle e aggiungerle alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + de: "Einmal während deines Zuges, wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon zu entwickeln, kannst du, wenn du mindestens 1 Terakristall-Pokémon im Spiel hast, dein Deck nach bis zu 2 Trainerkarten durchsuchen, sie deinem Gegner zeigen und auf deine Hand nehmen. Mische anschließend dein Deck." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Speed Wing", + fr: "Ailes Vives", + es: "Ala Veloz", + pt: "Asa da Velocidade", + it: "Alaveloce", + de: "Turboschwinge" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/079.ts b/data/Scarlet & Violet/Prismatic Evolutions/079.ts new file mode 100644 index 000000000..cecce7df4 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/079.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Dunsparce", + fr: "Insolourdo", + es: "Dunsparce", + pt: "Dunsparce", + it: "Dunsparce", + de: "Dummisel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Gnaw", + fr: "Ronge", + es: "Roer", + pt: "Roída", + it: "Rosicchiamento", + de: "Nagen" + }, + + damage: 10 + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "Dig", + fr: "Tunnel", + es: "Excavar", + pt: "Cavar", + it: "Fossa", + de: "Schaufler" + }, + + 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.", + 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.", + 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.", + 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." + }, + + damage: 30 + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/080.ts b/data/Scarlet & Violet/Prismatic Evolutions/080.ts new file mode 100644 index 000000000..88bc9fa37 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/080.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Dudunsparce", + fr: "Deusolourdo", + es: "Dudunsparce", + pt: "Dudunsparce", + it: "Dudunsparce", + de: "Dummimisel" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Run Away Draw", + fr: "Pioche Fuyante", + es: "Robo a la Fuga", + pt: "Comprar e Dar no Pé", + it: "Pesca Fugafacile", + de: "Angsthasenabzug" + }, + + effect: { + en: "Once during your turn, you may draw 3 cards. If you drew any cards in this way, shuffle this Pokémon and all attached cards into your deck.", + fr: "Une fois pendant votre tour, vous pouvez piocher 3 cartes. Si vous piochez au moins une carte de cette façon, mélangez avec votre deck ce Pokémon et toutes les cartes qui lui sont attachées.", + es: "Una vez durante tu turno, puedes robar 3 cartas. Si has robado alguna carta de esta manera, pon este Pokémon y todas las cartas unidas a él en tu baraja, y baraja todas las cartas.", + pt: "Uma vez durante o seu turno, você poderá comprar 3 cartas. Se você comprou qualquer carta desta forma, embaralhe este Pokémon e todas as cartas ligadas a ele no seu baralho.", + it: "Una sola volta durante il tuo turno, puoi pescare tre carte. Se hai pescato delle carte in questo modo, rimischia questo Pokémon e tutte le carte a esso assegnate nel tuo mazzo.", + de: "Einmal während deines Zuges kannst du 3 Karten ziehen. Wenn du auf diese Weise mindestens 1 Karte gezogen hast, mische dieses Pokémon und alle angelegten Karten in dein Deck." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Land Crush", + fr: "Écras'Terre", + es: "Aterrizaje", + pt: "Aperto de Terra", + it: "Schiacciaterra", + de: "Schollenbrecher" + }, + + damage: 90 + }], + + retreat: 3, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/081.ts b/data/Scarlet & Violet/Prismatic Evolutions/081.ts new file mode 100644 index 000000000..3c88cb9c0 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/081.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Miltank", + fr: "Écrémeuh", + es: "Miltank", + pt: "Miltank", + it: "Miltank", + de: "Miltank" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Rollout", + fr: "Roulade", + es: "Rodar", + pt: "Rolagem", + it: "Rotolamento", + de: "Walzer" + }, + + damage: 20 + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "Moomoo Rolling", + fr: "Roulade Meumeu", + es: "Giro Mu-mu", + pt: "Moomoo Rolante", + it: "Rotola Mumu", + de: "Kuhmuh-Walze" + }, + + effect: { + en: "You can use this attack only if this Pokémon used Rollout during your last turn.", + fr: "Vous ne pouvez utiliser cette attaque que si ce Pokémon a utilisé Roulade pendant votre dernier tour.", + es: "Puedes usar este ataque solo si este Pokémon usó Rodar durante tu último turno.", + pt: "Você só pode usar este ataque se este Pokémon usou Rolagem durante o seu último turno.", + it: "Puoi usare questo attacco solo se questo Pokémon ha usato Rotolamento durante il tuo ultimo turno.", + de: "Du kannst diese Attacke nur einsetzen, wenn dieses Pokémon während deines letzten Zuges Walzer eingesetzt hat." + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/082.ts b/data/Scarlet & Violet/Prismatic Evolutions/082.ts new file mode 100644 index 000000000..4b6eb8b36 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/082.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Lugia ex", + fr: "Lugia-ex", + es: "Lugia ex", + pt: "Lugia ex", + it: "Lugia-ex", + de: "Lugia-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 220, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Hyper Whirlpool", + fr: "Hyper Tourbillon", + es: "Hipertorbellino", + pt: "Hiper Redemoinho", + it: "Ipermulinello", + de: "Hyper Whirlpool" + }, + + effect: { + en: "Flip a coin until you get tails. For each heads, discard an Energy from your opponent's Active Pokémon.", + fr: "Lancez une pièce jusqu'à obtenir un côté pile. Pour chaque côté face, défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Lanza 1 moneda hasta que salga cruz. Por cada cara, descarta 1 Energía del Pokémon Activo de tu rival.", + pt: "Jogue uma moeda até sair coroa. Para cada cara, descarte uma Energia do Pokémon Ativo do seu oponente.", + it: "Lancia una moneta finché non esce croce. Ogni volta che esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.", + de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Lege pro Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 140 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/083.ts b/data/Scarlet & Violet/Prismatic Evolutions/083.ts new file mode 100644 index 000000000..adb47b236 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/083.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Buneary", + fr: "Laporeille", + es: "Buneary", + pt: "Buneary", + it: "Buneary", + de: "Haspiror" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Smash Kick", + fr: "Coud'Pattes", + es: "Patada Destrucción", + pt: "Chute Poderoso", + it: "Calcio Esplosivo", + de: "Schmetterkick" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/084.ts b/data/Scarlet & Violet/Prismatic Evolutions/084.ts new file mode 100644 index 000000000..17721b2e5 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/084.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Lopunny", + fr: "Lockpin", + es: "Lopunny", + pt: "Lopunny", + it: "Lopunny", + de: "Schlapor" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Rear Kick", + fr: "Ruade", + es: "Patada Trasera", + pt: "Chute Traseiro", + it: "Retrocalcio", + de: "Rückwärtskick" + }, + + damage: 90 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/085.ts b/data/Scarlet & Violet/Prismatic Evolutions/085.ts new file mode 100644 index 000000000..4aef24c88 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/085.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Fan Rotom", + fr: "Motisma Hélice", + es: "Rotom Ventilador", + pt: "Rotom Ventilador", + it: "Rotom Vortice", + de: "Wirbel-Rotom" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Fan Call", + fr: "Appel Hélice", + es: "Llamada del Ventilador", + pt: "Chamado Ventiladoresco", + it: "Richiamovortice", + de: "Ruf des Ventilators" + }, + + effect: { + en: "Once during your first turn, you may search your deck for up to 3 Colorless Pokémon with 100 HP or less, reveal them, and put them into your hand. Then, shuffle your deck. You can't use more than 1 Fan Call Ability during your turn.", + fr: "Une fois pendant votre premier tour, vous pouvez chercher dans votre deck jusqu'à 3 Pokémon Colorless ayant 100 PV ou moins, les montrer, puis les ajouter à votre main. Mélangez ensuite votre deck. Vous ne pouvez utiliser qu'un talent Appel Hélice pendant votre tour.", + es: "Una vez durante tu primer turno, puedes buscar en tu baraja hasta 3 Pokémon Colorless con 100 PS o menos, enseñarlos y ponerlos en tu mano. Después, baraja las cartas de tu baraja. No puedes usar más de una habilidad Llamada del Ventilador durante tu turno.", + pt: "Uma vez durante o seu primeiro turno, você poderá procurar por até 3 Pokémon Colorless com 100 PS ou menos no seu baralho, revelá-los e colocá-los na sua mão. Em seguida, embaralhe o seu baralho. Você não pode usar mais de 1 Habilidade Chamado Ventiladoresco durante o seu turno.", + it: "Una sola volta durante il tuo primo turno, puoi cercare nel tuo mazzo fino a tre Pokémon Colorless con 100 PS o meno, mostrarli e aggiungerli alle carte che hai in mano. Poi rimischia le carte del tuo mazzo. Non puoi usare più di un'abilità Richiamovortice durante il tuo turno.", + de: "Einmal während deines ersten Zuges kannst du dein Deck nach bis zu 3 Colorless-Pokémon mit 100 oder weniger KP durchsuchen, sie deinem Gegner zeigen und auf deine Hand nehmen. Mische anschließend dein Deck. Du kannst die Fähigkeit Ruf des Ventilators nur einmal während deines Zuges einsetzen." + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Assault Landing", + fr: "Atterrissage d'Assaut", + es: "Aterrizaje Asalto", + pt: "Aterrissagem Ofensiva", + it: "Atterrassalto", + de: "Angriffslandung" + }, + + effect: { + en: "If there is no Stadium in play, this attack does nothing.", + fr: "S'il n'y a pas de Stade en jeu, cette attaque ne fait rien.", + es: "Si no hay ningún Estadio en juego, este ataque no hace nada.", + pt: "Se não houver Estádio em jogo, este ataque não fará nada.", + it: "Se non c'è alcuna carta Stadio in gioco, questo attacco non ha effetto.", + de: "Wenn keine Stadionkarte im Spiel ist, hat diese Attacke keine Auswirkungen." + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/086.ts b/data/Scarlet & Violet/Prismatic Evolutions/086.ts new file mode 100644 index 000000000..15a651657 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/086.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Regigigas", + fr: "Regigigas", + es: "Regigigas", + pt: "Regigigas", + it: "Regigigas", + de: "Regigigas" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Jewel Breaker", + fr: "Destruction de Joyaux", + es: "Rompejoyas", + pt: "Quebra-joias", + it: "Distruttore di Gemme", + de: "Juwelenbrecher" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Tera Pokémon, this attack does 230 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Téracristal, cette attaque inflige 230 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival es un Pokémon Teracristal, este ataque hace 230 puntos de daño más.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon Tera, este ataque causará 230 pontos de dano a mais.", + it: "Se il Pokémon attivo del tuo avversario è un Pokémon Teracristal, questo attacco infligge 230 danni in più.", + de: "Wenn das Aktive Pokémon deines Gegners ein Terakristall-Pokémon ist, fügt diese Attacke 230 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 4, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/087.ts b/data/Scarlet & Violet/Prismatic Evolutions/087.ts new file mode 100644 index 000000000..57057711b --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/087.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Shaymin", + fr: "Shaymin", + es: "Shaymin", + pt: "Shaymin", + it: "Shaymin", + de: "Shaymin" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Reflect Energy", + fr: "Renvoi d'Énergie", + es: "Reflejar Energía", + pt: "Refletir Energia", + it: "Rifletti Energia", + de: "Energiereflexion" + }, + + effect: { + en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.", + fr: "Déplacez une Énergie de ce Pokémon vers l'un de vos Pokémon de Banc.", + es: "Mueve 1 Energía de este Pokémon a uno de tus Pokémon en Banca.", + pt: "Mova uma Energia deste Pokémon para 1 dos seus Pokémon no Banco.", + it: "Sposta un'Energia da questo Pokémon a uno di quelli nella tua panchina.", + de: "Verschiebe 1 Energie von diesem Pokémon auf 1 Pokémon auf deiner Bank." + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/088.ts b/data/Scarlet & Violet/Prismatic Evolutions/088.ts new file mode 100644 index 000000000..2bb73af5f --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/088.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Furfrou", + fr: "Couafarel", + es: "Furfrou", + pt: "Furfrou", + it: "Furfrou", + de: "Coiffwaff" + }, + + rarity: "Common", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Fur Coat", + fr: "Toison Épaisse", + es: "Pelaje Recio", + pt: "Camada de Pelos", + it: "Foltopelo", + de: "Fellkleid" + }, + + effect: { + en: "This Pokémon takes 20 less damage from attacks (after applying Weakness and Resistance).", + fr: "Ce Pokémon subit 20 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).", + es: "Los ataques hacen 20 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).", + pt: "Este Pokémon recebe 20 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).", + it: "Questo Pokémon subisce 20 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", + de: "Diesem Pokémon werden durch Attacken 20 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Bite", + fr: "Morsure", + es: "Mordisco", + pt: "Mordida", + it: "Morso", + de: "Biss" + }, + + damage: 80 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/089.ts b/data/Scarlet & Violet/Prismatic Evolutions/089.ts new file mode 100644 index 000000000..c4abbd227 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/089.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Hawlucha", + fr: "Brutalibré", + es: "Hawlucha", + pt: "Hawlucha", + it: "Hawlucha", + de: "Resladero" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Rising Tackle", + fr: "Tacle Montant", + es: "Placaje Ascendente", + pt: "Investida Crescente", + it: "Azione Ascendente", + de: "Vorschnellender Tackle" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 50 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex, cette attaque inflige 50 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival es un Pokémon ex, este ataque hace 50 puntos de daño más.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex, este ataque causará 50 pontos de dano a mais.", + it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex, questo attacco infligge 50 danni in più.", + de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex ist, fügt diese Attacke 50 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/090.ts b/data/Scarlet & Violet/Prismatic Evolutions/090.ts new file mode 100644 index 000000000..967fdabd0 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/090.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Noibat", + fr: "Sonistrelle", + es: "Noibat", + pt: "Noibat", + it: "Noibat", + de: "eF-eM" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Flap", + fr: "Battement", + es: "Aleteo", + pt: "Asa", + it: "Alabattito", + de: "Flattern" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/091.ts b/data/Scarlet & Violet/Prismatic Evolutions/091.ts new file mode 100644 index 000000000..14102bebe --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/091.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Noivern ex", + fr: "Bruyverne-ex", + es: "Noivern ex", + pt: "Noivern ex", + it: "Noivern-ex", + de: "UHaFnir-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Strafe", + fr: "Bombarder", + es: "Pasada de Ataque", + pt: "Bombardear", + it: "Mitragliare", + de: "Beharken" + }, + + effect: { + en: "You may switch this Pokémon with 1 of your Benched Pokémon.", + fr: "Vous pouvez échanger ce Pokémon contre l'un de vos Pokémon de Banc.", + es: "Puedes cambiar este Pokémon por uno de tus Pokémon en Banca.", + pt: "Você pode trocar este Pokémon por 1 dos seus Pokémon no Banco.", + it: "Puoi scambiare questo Pokémon con uno della tua panchina.", + de: "Du kannst dieses Pokémon gegen 1 Pokémon auf deiner Bank austauschen." + }, + + damage: 50 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Sonic Blast", + fr: "Explosion Sonique", + es: "Explosión Sónica", + pt: "Estouro Sônico", + it: "Scoppio Sonico", + de: "Überschallstoß" + }, + + effect: { + en: "This Pokémon also does 30 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 30 dégâts.", + es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.", + pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.", + it: "Questo Pokémon infligge anche 30 danni a se stesso.", + de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu." + }, + + damage: 220 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/092.ts b/data/Scarlet & Violet/Prismatic Evolutions/092.ts new file mode 100644 index 000000000..0dc3471cd --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/092.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Terapagos ex", + fr: "Terapagos-ex", + es: "Terapagos ex", + pt: "Terapagos ex", + it: "Terapagos-ex", + de: "Terapagos-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Unified Beatdown", + fr: "Dérouillée Groupée", + es: "Golpe Unísono", + pt: "Abater Unificado", + it: "Batosta all'Unisono", + de: "Vereinter Niederprügler" + }, + + effect: { + en: "If you go second, you can't use this attack during your first turn. This attack does 30 damage for each of your Benched Pokémon.", + fr: "Si vous jouez en second, vous ne pouvez pas utiliser cette attaque pendant votre premier tour. Cette attaque inflige 30 dégâts pour chacun de vos Pokémon de Banc.", + es: "Si sales en segundo lugar, no puedes usar este ataque durante tu primer turno. Este ataque hace 30 puntos de daño por cada uno de tus Pokémon en Banca.", + pt: "Se você for o segundo a jogar, você não poderá usar este ataque durante o seu primeiro turno. Este ataque causa 30 pontos de dano para cada um dos seus Pokémon no Banco.", + it: "Se inizi per secondo, non puoi usare questo attacco durante il tuo primo turno. Questo attacco infligge 30 danni per ogni Pokémon nella tua panchina.", + de: "Wenn du als Zweiter am Zug bist, kannst du diese Attacke während deines ersten Zuges nicht einsetzen. Diese Attacke fügt für jedes Pokémon auf deiner Bank 30 Schadenspunkte zu." + }, + + damage: "30×" + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + en: "Crown Opal", + fr: "Couronne Opale", + es: "Ópalo Corona", + pt: "Coroa de Opalas", + it: "Opale della Corona", + de: "Kronen-Opal" + }, + + effect: { + en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic non-Colorless Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon non-Colorless de base.", + es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon no Colorless Básicos.", + pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon Básicos que não sejam de tipo Colorless.", + it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base non di tipo Colorless.", + de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon, die keine Colorless-Pokémon sind, zugefügt wird." + }, + + damage: 180 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/093.ts b/data/Scarlet & Violet/Prismatic Evolutions/093.ts new file mode 100644 index 000000000..3db229231 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/093.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Amarys", + fr: "Nérine", + es: "Nerina", + pt: "Amarílis", + it: "Erin", + de: "Erin" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "Draw 4 cards. At the end of this turn, if you have 5 or more cards in your hand, discard your hand.", + fr: "Piochez 4 cartes. À la fin de ce tour, si vous avez 5 cartes ou plus dans votre main, défaussez votre main.", + es: "Roba 4 cartas. Al final de este turno, si tienes 5 cartas o más en tu mano, descarta las cartas de tu mano.", + pt: "Compre 4 cartas. No final deste turno, se você tiver 5 ou mais cartas na sua mão, descarte a sua mão.", + it: "Pesca quattro carte. Alla fine di questo turno, se hai cinque o più carte in mano, scarta le carte che hai in mano.", + de: "Ziehe 4 Karten. Am Ende dieses Zuges, wenn du 5 oder mehr Karten auf deiner Hand hast, lege deine Handkarten auf deinen Ablagestapel." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/094.ts b/data/Scarlet & Violet/Prismatic Evolutions/094.ts new file mode 100644 index 000000000..f0a627521 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/094.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Area Zero Underdepths", + fr: "Abîme Zéro", + es: "Caverna Abisal Cero", + pt: "Abismo da Área Zero", + it: "Grande Abisso Zero", + de: "Höhlensystem Null" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Each player who has any Tera Pokémon in play can have up to 8 Pokémon on their Bench.\n\nIf a player no longer has any Tera Pokémon in play, that player discards Pokémon from their Bench until they have 5. When this card leaves play, both players discard Pokémon from their Bench until they have 5, and the player who played this card discards first.", + fr: "Chaque joueur ayant au moins un Pokémon Téracristal en jeu peut avoir jusqu'à 8 Pokémon sur son Banc.\n\nSi un joueur n'a plus de Pokémon Téracristal en jeu, ce joueur-là défausse ses Pokémon de Banc jusqu'à en avoir 5. Lorsque cette carte n'est plus en jeu, les deux joueurs défaussent leurs Pokémon de Banc jusqu'à en avoir 5, et le joueur qui a joué cette carte défausse en premier.", + es: "Cada jugador que tenga algún Pokémon Teracristal en juego puede tener hasta 8 Pokémon en su Banca.\n\nSi un jugador ya no tiene ningún Pokémon Teracristal en juego, ese jugador descarta Pokémon de su Banca hasta que tenga 5. Cuando esta carta ya no esté en juego, cada jugador descarta Pokémon de su Banca hasta que tenga 5, y el jugador que haya jugado esta carta descarta en primer lugar.", + pt: "Cada jogador que tiver algum Pokémon Tera em jogo poderá ter até 8 Pokémon no próprio Banco.\n\nSe um jogador não tiver mais algum Pokémon Tera em jogo, aquele jogador descartará Pokémon do próprio Banco até ter 5. Quando esta carta sair de jogo, ambos os jogadores descartarão Pokémon do próprio Banco até terem 5, e o jogador que jogou esta carta descartará primeiro.", + it: "Ciascun giocatore che ha dei Pokémon Teracristal in gioco può avere fino a otto Pokémon in panchina.\n\nSe un giocatore non ha più Pokémon Teracristal in gioco, quel giocatore scarta dei Pokémon dalla sua panchina fino ad averne cinque. Quando questa carta viene rimossa dal gioco, entrambi i giocatori scartano dei Pokémon dalla propria panchina fino ad averne cinque e il giocatore che ha giocato questa carta scarta per primo.", + de: "Jeder Spieler, der mindestens 1 Terakristall-Pokémon im Spiel hat, kann bis zu 8 Pokémon auf seiner Bank haben.\n\nWenn ein Spieler keine Terakristall-Pokémon mehr im Spiel hat, legt jener Spieler so lange Pokémon von seiner Bank auf seinen Ablagestapel, bis er 5 Pokémon auf seiner Bank hat. Wenn diese Karte das Spiel verlässt, legen beide Spieler so lange Pokémon von ihrer Bank auf ihren Ablagestapel, bis sie 5 Pokémon auf ihrer Bank haben, und der Spieler, der diese Karte gespielt hat, legt als Erster ab." + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/095.ts b/data/Scarlet & Violet/Prismatic Evolutions/095.ts new file mode 100644 index 000000000..9c0788114 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/095.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Binding Mochi", + fr: "Mochi de Servitude", + es: "Mochi Cadena", + pt: "Moti Vinculante", + it: "Mochi Soggiogante", + de: "Ketten-Mochi" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Attacks used by the Poisoned Pokémon this card is attached to do 40 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).", + fr: "Les attaques utilisées par le Pokémon Empoisonné auquel cette carte est attachée infligent 40 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Los ataques usados por el Pokémon Envenenado al que esté unida esta carta hacen 40 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + pt: "Os ataques usados pelo Pokémon Envenenado ao qual esta carta está ligada causam 40 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + it: "Gli attacchi usati dal Pokémon avvelenato a cui è assegnata questa carta infliggono 40 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + de: "Die eingesetzten Attacken von dem vergifteten Pokémon, an das diese Karte angelegt ist, fügen dem Aktiven Pokémon deines Gegners 40 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/096.ts b/data/Scarlet & Violet/Prismatic Evolutions/096.ts new file mode 100644 index 000000000..1080578bb --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/096.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Black Belt's Training", + fr: "Entraînement de Karatéka", + es: "Entrenamiento de Karateka", + pt: "Treino de Faixa Preta", + it: "Allenamento di Cinturanera", + de: "Schwarzgurt-Training" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do 40 more damage to your opponent's Active Pokémon ex (before applying Weakness and Resistance).", + fr: "Pendant ce tour, les attaques utilisées par vos Pokémon infligent 40 dégâts supplémentaires au Pokémon-ex Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Durante este turno, los ataques usados por tus Pokémon hacen 40 puntos de daño más al Pokémon ex Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + pt: "Durante este turno, os ataques usados pelos seus Pokémon causarão 40 pontos de dano a mais ao Pokémon ex Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + it: "Durante questo turno, gli attacchi usati dai tuoi Pokémon infliggono 40 danni in più al Pokémon-ex attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + de: "Während dieses Zuges fügen die von deinen Pokémon eingesetzten Attacken dem Aktiven Pokémon-ex deines Gegners 40 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/097.ts b/data/Scarlet & Violet/Prismatic Evolutions/097.ts new file mode 100644 index 000000000..1080578bb --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/097.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Black Belt's Training", + fr: "Entraînement de Karatéka", + es: "Entrenamiento de Karateka", + pt: "Treino de Faixa Preta", + it: "Allenamento di Cinturanera", + de: "Schwarzgurt-Training" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do 40 more damage to your opponent's Active Pokémon ex (before applying Weakness and Resistance).", + fr: "Pendant ce tour, les attaques utilisées par vos Pokémon infligent 40 dégâts supplémentaires au Pokémon-ex Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Durante este turno, los ataques usados por tus Pokémon hacen 40 puntos de daño más al Pokémon ex Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + pt: "Durante este turno, os ataques usados pelos seus Pokémon causarão 40 pontos de dano a mais ao Pokémon ex Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + it: "Durante questo turno, gli attacchi usati dai tuoi Pokémon infliggono 40 danni in più al Pokémon-ex attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + de: "Während dieses Zuges fügen die von deinen Pokémon eingesetzten Attacken dem Aktiven Pokémon-ex deines Gegners 40 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/098.ts b/data/Scarlet & Violet/Prismatic Evolutions/098.ts new file mode 100644 index 000000000..1080578bb --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/098.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Black Belt's Training", + fr: "Entraînement de Karatéka", + es: "Entrenamiento de Karateka", + pt: "Treino de Faixa Preta", + it: "Allenamento di Cinturanera", + de: "Schwarzgurt-Training" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do 40 more damage to your opponent's Active Pokémon ex (before applying Weakness and Resistance).", + fr: "Pendant ce tour, les attaques utilisées par vos Pokémon infligent 40 dégâts supplémentaires au Pokémon-ex Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Durante este turno, los ataques usados por tus Pokémon hacen 40 puntos de daño más al Pokémon ex Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + pt: "Durante este turno, os ataques usados pelos seus Pokémon causarão 40 pontos de dano a mais ao Pokémon ex Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + it: "Durante questo turno, gli attacchi usati dai tuoi Pokémon infliggono 40 danni in più al Pokémon-ex attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + de: "Während dieses Zuges fügen die von deinen Pokémon eingesetzten Attacken dem Aktiven Pokémon-ex deines Gegners 40 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/099.ts b/data/Scarlet & Violet/Prismatic Evolutions/099.ts new file mode 100644 index 000000000..1080578bb --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/099.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Black Belt's Training", + fr: "Entraînement de Karatéka", + es: "Entrenamiento de Karateka", + pt: "Treino de Faixa Preta", + it: "Allenamento di Cinturanera", + de: "Schwarzgurt-Training" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do 40 more damage to your opponent's Active Pokémon ex (before applying Weakness and Resistance).", + fr: "Pendant ce tour, les attaques utilisées par vos Pokémon infligent 40 dégâts supplémentaires au Pokémon-ex Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Durante este turno, los ataques usados por tus Pokémon hacen 40 puntos de daño más al Pokémon ex Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + pt: "Durante este turno, os ataques usados pelos seus Pokémon causarão 40 pontos de dano a mais ao Pokémon ex Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + it: "Durante questo turno, gli attacchi usati dai tuoi Pokémon infliggono 40 danni in più al Pokémon-ex attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + de: "Während dieses Zuges fügen die von deinen Pokémon eingesetzten Attacken dem Aktiven Pokémon-ex deines Gegners 40 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/100.ts b/data/Scarlet & Violet/Prismatic Evolutions/100.ts new file mode 100644 index 000000000..fc9e7261d --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/100.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Briar", + fr: "Bria", + es: "Brie", + pt: "Urzy", + it: "Rea", + de: "Brianna" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "You can use this card only if your opponent has exactly 2 Prize cards remaining.\n\nDuring this turn, if your opponent's Active Pokémon is Knocked Out by damage from an attack used by your Tera Pokémon, take 1 more Prize card.", + fr: "Vous ne pouvez utiliser cette carte que s'il reste exactement 2 cartes Récompense à votre adversaire.\n\nPendant ce tour, si le Pokémon Actif de votre adversaire est mis K.O. par les dégâts d'une attaque utilisée par vos Pokémon Téracristal, récupérez une carte Récompense supplémentaire.", + es: "Puedes usar esta carta solo si a tu rival le quedan exactamente 2 cartas de Premio.\n\nDurante este turno, si el Pokémon Activo de tu rival queda Fuera de Combate por el daño de un ataque usado por tus Pokémon Teracristal, coge 1 carta de Premio más.", + pt: "Você só pode usar esta carta se o seu oponente tiver exatamente 2 cartas de Prêmio restantes.\n\nDurante este turno, se o Pokémon Ativo do seu oponente for Nocauteado pelo dano de um ataque usado pelos seus Pokémon Tera, pegue 1 carta de Prêmio a mais.", + it: "Puoi usare questa carta solo se il tuo avversario ha esattamente due carte Premio rimanenti.\n\nDurante questo turno, se il Pokémon attivo del tuo avversario viene messo KO dai danni inflitti da un attacco usato da un tuo Pokémon Teracristal, prendi una carta Premio in più.", + de: "Du kannst diese Karte nur einsetzen, wenn dein Gegner genau 2 verbleibende Preiskarten hat.\n\nWenn das Aktive Pokémon deines Gegners während dieses Zuges durch Schaden einer von deinen Terakristall-Pokémon eingesetzten Attacke kampfunfähig wird, nimm 1 Preiskarte mehr." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/101.ts b/data/Scarlet & Violet/Prismatic Evolutions/101.ts new file mode 100644 index 000000000..ed8ef27af --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/101.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Buddy-Buddy Poffin", + fr: "Poffin Copain-Copain", + es: "Pokochos Gemelos", + pt: "Poffin de Colega", + it: "Poffin del Cuore", + de: "Dicke-Freunde-Knursp" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Search your deck for up to 2 Basic Pokémon with 70 HP or less and put them onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 Pokémon de base ayant 70 PV ou moins et placez-les sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 Pokémon Básicos con 70 PS o menos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.", + pt: "Procure por até 2 Pokémon Básicos com 70 PS ou menos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.", + it: "Cerca nel tuo mazzo fino a due Pokémon Base con 70 PS o meno e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon mit 70 oder weniger KP und lege sie auf deine Bank. Mische anschließend dein Deck." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/102.ts b/data/Scarlet & Violet/Prismatic Evolutions/102.ts new file mode 100644 index 000000000..11a5cb232 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/102.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Bug Catching Set", + fr: "Kit Attrape-Insecte", + es: "Kit Capturabichos", + pt: "Kit Caça-inseto", + it: "Set Pigliamosche", + de: "Käfersammlerset" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Look at the top 7 cards of your deck. You may reveal up to 2 in any combination of Grass Pokémon and Basic Grass Energy cards you find there and put them into your hand. Shuffle the other cards back into your deck.", + fr: "Regardez les 7 cartes du dessus de votre deck. Vous pouvez montrer une combinaison d'un maximum de 2 Pokémon Grass et cartes Énergie Grass de base que vous y trouvez, puis les ajouter à votre main. Mélangez les autres cartes avec votre deck.", + es: "Mira las 7 primeras cartas de tu baraja. Puedes enseñar, en cualquier combinación, hasta 2 cartas de Energía Grass Básica y Pokémon Grass que encuentres entre ellas y ponerlas en tu mano. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + pt: "Olhe as 7 cartas de cima do seu baralho. Você pode revelar até 2 cartas de Pokémon Grass e de Energia Grass Básica que encontrar lá em qualquer combinação e colocá-las na sua mão. Embaralhe as outras cartas de volta no seu baralho.", + it: "Guarda le prime sette carte del tuo mazzo. Puoi mostrare fino a due Pokémon Grass e carte Energia base Grass presenti tra esse in qualsiasi combinazione e aggiungerli alle carte che hai in mano. Poi rimischia le altre carte nel tuo mazzo.", + de: "Schau dir die obersten 7 Karten deines Decks an. Du kannst eine beliebige Kombination aus bis zu 2 Grass-Pokémon und Basis-Grass-Energiekarten, die du dort findest, deinem Gegner zeigen und auf deine Hand nehmen. Mische die anderen Karten zurück in dein Deck." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/103.ts b/data/Scarlet & Violet/Prismatic Evolutions/103.ts new file mode 100644 index 000000000..2b1a96c8c --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/103.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Carmine", + fr: "Roseille", + es: "Corin", + pt: "Carmine", + it: "Rubra", + de: "Hana" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "If you go first, you may use this card during your first turn.\n\nDiscard your hand and draw 5 cards.", + fr: "Si vous jouez en premier, vous pouvez utiliser cette carte pendant votre premier tour.\n\nDéfaussez votre main et piochez 5 cartes.", + es: "Si sales en primer lugar, puedes usar esta carta durante tu primer turno.\n\nDescarta las cartas de tu mano y roba 5 cartas.", + pt: "Se você for o primeiro a jogar, poderá usar esta carta durante o seu primeiro turno.\n\nDescarte a sua mão e compre 5 cartas.", + it: "Se inizi per primo, puoi usare questa carta durante il tuo primo turno.\n\nScarta le carte che hai in mano e pesca cinque carte.", + de: "Wenn du als Erster am Zug bist, kannst du diese Karte während deines ersten Zuges einsetzen.\n\nLege deine Handkarten auf deinen Ablagestapel und ziehe 5 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/104.ts b/data/Scarlet & Violet/Prismatic Evolutions/104.ts new file mode 100644 index 000000000..90619c9bc --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/104.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Ciphermaniac's Codebreaking", + fr: "Décodage de Décryptomane", + es: "Ciberentusiasta Descifracódigos", + pt: "Decodificação da Criptomaníaca", + it: "Decrittazione Esperta", + de: "Ciphermaniacs Decodierung" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Search your deck for 2 cards, shuffle your deck, then put those cards on top of it in any order.", + fr: "Cherchez 2 cartes dans votre deck. Mélangez votre deck, puis placez ces cartes sur le dessus de votre deck dans l'ordre de votre choix.", + es: "Busca en tu baraja 2 cartas, baraja las cartas de tu baraja y, luego, pon esas cartas en la parte superior de tu baraja en el orden que quieras.", + pt: "Procure por 2 cartas no seu baralho, embaralhe o seu baralho e, em seguida, coloque aquelas cartas como as cartas de cima do seu baralho em qualquer ordem.", + it: "Cerca nel tuo mazzo due carte, rimischia le carte del tuo mazzo, poi metti quelle carte in cima al mazzo nell'ordine che preferisci.", + de: "Durchsuche dein Deck nach 2 Karten, mische dein Deck und lege jene Karten anschließend in beliebiger Reihenfolge auf dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/105.ts b/data/Scarlet & Violet/Prismatic Evolutions/105.ts new file mode 100644 index 000000000..c3079bdd5 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/105.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Crispin", + fr: "Rubépin", + es: "Denis", + pt: "Plínio", + it: "Piros", + de: "Matt" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Search your deck for up to 2 Basic Energy cards of different types, reveal them, and put 1 of them into your hand. Attach the other to 1 of your Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base de types différents, montrez-les, puis ajoutez l'une d'elles à votre main. Attachez l'autre à l'un de vos Pokémon. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Básica de diferentes tipos, enséñalas y pon 1 de ellas en tu mano. Une la otra a uno de tus Pokémon. Después, baraja las cartas de tu baraja.", + pt: "Procure por até 2 cartas de Energia Básica de tipos diferentes no seu baralho, revele-as e coloque 1 delas na sua mão. Ligue a outra a 1 dos seus Pokémon. Em seguida, embaralhe o seu baralho.", + it: "Cerca nel tuo mazzo fino a due carte Energia base di tipo diverso, mostrale e aggiungine una alle carte che hai in mano. Assegna l'altra a uno dei tuoi Pokémon. Poi rimischia le carte del tuo mazzo.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten verschiedenen Typs, zeige sie deinem Gegner und nimm 1 von ihnen auf deine Hand. Lege die andere an 1 deiner Pokémon an. Mische anschließend dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/106.ts b/data/Scarlet & Violet/Prismatic Evolutions/106.ts new file mode 100644 index 000000000..db8baface --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/106.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Earthen Vessel", + fr: "Urne Terrestre", + es: "Vasija Terrestre", + pt: "Recipiente Terrestre", + it: "Anfora Terrestre", + de: "Irdengefäß" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "You can use this card only if you discard another card from your hand.\n\nSearch your deck for up to 2 Basic Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Vous ne pouvez utiliser cette carte que si vous défaussez une autre carte de votre main.\n\nCherchez dans votre deck jusqu'à 2 cartes Énergie de base, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Puedes usar esta carta solo si descartas otra carta de tu mano.\n\nBusca 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.", + pt: "Você só pode usar esta carta se descartar outra carta da sua mão.\n\nProcure 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.", + it: "Puoi usare questa carta solo se scarti un'altra carta che hai in mano.\n\nCerca 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.", + de: "Du kannst diese Karte nur einsetzen, wenn du noch 1 andere Karte aus deiner Hand auf deinen Ablagestapel legst.\n\nDurchsuche dein Deck nach bis zu 2 Basis-Energiekarten, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Item", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/107.ts b/data/Scarlet & Violet/Prismatic Evolutions/107.ts new file mode 100644 index 000000000..734a946de --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/107.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Explorer's Guidance", + fr: "Guide d'Exploration", + es: "Guía de Exploración", + pt: "Liderança do Explorador", + it: "Guida dell'Esploratore", + de: "Führung des Entdeckers" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Look at the top 6 cards of your deck and put 2 of them into your hand. Discard the other cards.", + fr: "Regardez les 6 cartes du dessus de votre deck, puis ajoutez 2 d'entre elles à votre main. Défaussez les autres cartes.", + es: "Mira las 6 primeras cartas de tu baraja y pon 2 de ellas en tu mano. Descarta el resto de las cartas.", + pt: "Olhe as 6 cartas de cima do seu baralho e coloque 2 delas na sua mão. Descarte as outras cartas.", + it: "Guarda le prime sei carte del tuo mazzo e aggiungi due di esse alle carte che hai in mano. Scarta le altre carte.", + de: "Schau dir die obersten 6 Karten deines Decks an und nimm 2 von ihnen auf deine Hand. Lege die anderen Karten auf deinen Ablagestapel." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/108.ts b/data/Scarlet & Violet/Prismatic Evolutions/108.ts new file mode 100644 index 000000000..0224a441e --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/108.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Festival Grounds", + fr: "Lieu de la Fête", + es: "Recinto del Festival", + pt: "Praça de Festas", + it: "Area della Festa", + de: "Festplatz" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Each Pokémon that has any Energy attached (both yours and your opponent's) recovers from all Special Conditions and can't be affected by any Special Conditions.", + fr: "Chacun des Pokémon auxquels au moins une Énergie est attachée (les vôtres et ceux de votre adversaire) guérit de tous les États Spéciaux et ne peut être affecté par aucun État Spécial.", + es: "Cada Pokémon que tenga alguna Energía unida (tanto tuyos como de tu rival) se recupera de todas las Condiciones Especiales y no puede verse afectado por ninguna Condición Especial.", + pt: "Cada Pokémon que tem alguma Energia ligada a ele (seus e do seu oponente) recupera-se de todas as Condições Especiais e não pode ser afetado por quaisquer Condições Especiais.", + it: "Ciascun Pokémon che ha delle Energie assegnate, sia tuo che del tuo avversario, guarisce da tutte le condizioni speciali e non può esserne influenzato.", + de: "Jedes Pokémon (deine und die deines Gegners), an das mindestens 1 Energie angelegt ist, erholt sich von allen Speziellen Zuständen und kann von keinen Speziellen Zuständen betroffen werden." + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/109.ts b/data/Scarlet & Violet/Prismatic Evolutions/109.ts new file mode 100644 index 000000000..f8d7fe4b2 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/109.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Friends in Paldea", + fr: "Amis de Paldea", + es: "Amigos de Paldea", + pt: "Amigos em Paldea", + it: "Amici a Paldea", + de: "Freunde aus Paldea" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "Draw 3 cards.", + fr: "Piochez 3 cartes.", + es: "Roba 3 cartas.", + pt: "Compre 3 cartas.", + it: "Pesca tre carte.", + de: "Ziehe 3 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/110.ts b/data/Scarlet & Violet/Prismatic Evolutions/110.ts new file mode 100644 index 000000000..bbddda7ac --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/110.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Glass Trumpet", + fr: "Trompette de Verre", + es: "Trompeta de Cristal", + pt: "Trompete de Vidro", + it: "Tromba di Vetro", + de: "Glastrompete" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "You can use this card only if you have any Tera Pokémon in play.\n\nChoose up to 2 of your Benched Colorless Pokémon and attach a Basic Energy card from your discard pile to each of them.", + fr: "Vous ne pouvez utiliser cette carte que si vous avez au moins un Pokémon Téracristal en jeu.\n\nChoisissez jusqu'à 2 de vos Pokémon Colorless de Banc, puis attachez une carte Énergie de base de votre pile de défausse à chacun d'eux.", + es: "Puedes usar esta carta solo si tienes algún Pokémon Teracristal en juego.\n\nElige hasta 2 de tus Pokémon Colorless en Banca y une 1 carta de Energía Básica de tu pila de descartes a cada uno de ellos.", + pt: "Você só pode usar esta carta se tiver algum Pokémon Tera em jogo.\n\nEscolha até 2 dos seus Pokémon Colorless no Banco e ligue uma carta de Energia Básica da sua pilha de descarte a cada um deles.", + it: "Puoi usare questa carta solo se hai dei Pokémon Teracristal in gioco.\n\nScegli fino a due dei tuoi Pokémon Colorless in panchina e assegna a ognuno di essi una carta Energia base dalla tua pila degli scarti.", + de: "Du kannst diese Karte nur einsetzen, wenn du mindestens 1 Terakristall-Pokémon im Spiel hast.\n\nWähle bis zu 2 Colorless-Pokémon auf deiner Bank und lege 1 Basis-Energiekarte aus deinem Ablagestapel an jedes von ihnen an." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/111.ts b/data/Scarlet & Violet/Prismatic Evolutions/111.ts new file mode 100644 index 000000000..3df14024d --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/111.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Haban Berry", + fr: "Baie Fraigo", + es: "Baya Anjiro", + pt: "Fruta Meraçá", + it: "Baccahaban", + de: "Terirobeere" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is damaged by an attack from your opponent's Dragon Pokémon, it takes 60 less damage (after applying Weakness and Resistance), and discard this card.", + fr: "Si le Pokémon auquel cette carte est attachée subit les dégâts d'une attaque de l'un des Pokémon Dragon de votre adversaire, il subit 60 dégâts de moins (après application de la Faiblesse et de la Résistance), et vous défaussez cette carte.", + es: "Si el Pokémon al que está unida esta carta resulta dañado por un ataque de los Pokémon Dragon de tu rival, ese ataque le hace 60 puntos de daño menos (después de aplicar Debilidad y Resistencia), y descartas esta carta.", + pt: "Se o Pokémon ao qual esta carta está ligada for danificado por um ataque dos Pokémon Dragon do seu oponente, ele receberá 60 pontos de dano a menos (depois de aplicar Fraqueza e Resistência), e descarte esta carta.", + it: "Se il Pokémon a cui è assegnata questa carta viene danneggiato da un attacco di un Pokémon Dragon del tuo avversario, subisce 60 danni in meno, dopo aver applicato debolezza e resistenza, e tu scarti questa carta.", + de: "Wenn das Pokémon, an das diese Karte angelegt ist, durch eine Attacke von Dragon-Pokémon deines Gegners Schaden erhält, werden ihm 60 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden), und du legst diese Karte auf deinen Ablagestapel." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/112.ts b/data/Scarlet & Violet/Prismatic Evolutions/112.ts new file mode 100644 index 000000000..f4b97495e --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/112.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Janine's Secret Art", + fr: "Art Secret de Jeannine", + es: "Artes Secretas de Sachiko", + pt: "Dom Secreto da Janine", + it: "Arte Segreta di Nina", + de: "Janinas Geheimkunst" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Choose up to 2 of your Darkness Pokémon. For each of those Pokémon, search your deck for a Basic Darkness Energy card and attach it to that Pokémon. Then, shuffle your deck. If you attached Energy to your Active Pokémon in this way, it is now Poisoned.", + fr: "Choisissez jusqu'à 2 de vos Pokémon Darkness. Pour chacun de ces Pokémon, cherchez dans votre deck une carte Énergie Darkness de base, puis attachez-la à ce Pokémon-là. Mélangez ensuite votre deck. Si vous avez attaché de l'Énergie à votre Pokémon Actif de cette façon, celui-ci est maintenant Empoisonné.", + es: "Elige hasta 2 de tus Pokémon Darkness. Para cada uno de esos Pokémon, busca en tu baraja 1 carta de Energía Darkness Básica y únela a ese Pokémon. Después, baraja las cartas de tu baraja. Si has unido Energía a tu Pokémon Activo de esta manera, pasa a estar Envenenado.", + pt: "Escolha até 2 dos seus Pokémon Darkness. Para cada um daqueles Pokémon, procure por uma carta de Energia Darkness Básica no seu baralho e ligue-a àquele Pokémon. Em seguida, embaralhe o seu baralho. Se você ligou Energia ao seu Pokémon Ativo desta forma, ele agora estará Envenenado.", + it: "Scegli fino a due dei tuoi Pokémon Darkness. Per ognuno di essi, cerca nel tuo mazzo una carta Energia base Darkness e assegnala a quel Pokémon. Poi rimischia le carte del tuo mazzo. Se hai assegnato dell'Energia al tuo Pokémon attivo in questo modo, esso viene avvelenato.", + de: "Wähle bis zu 2 deiner Darkness-Pokémon. Durchsuche für jedes jener Pokémon dein Deck nach 1 Basis-Darkness-Energiekarte und lege sie an jenes Pokémon an. Mische anschließend dein Deck. Wenn du auf diese Weise Energie an dein Aktives Pokémon angelegt hast, ist es jetzt vergiftet." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/113.ts b/data/Scarlet & Violet/Prismatic Evolutions/113.ts new file mode 100644 index 000000000..f2d30f426 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/113.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Kieran", + fr: "Kassis", + es: "Cass", + pt: "Kiran", + it: "Riben", + de: "Jo" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Choose 1:\n\n• Switch your Active Pokémon with 1 of your Benched Pokémon.\n\n• During this turn, attacks used by your Pokémon do 30 more damage to your opponent's Active Pokémon ex and Active Pokémon V (before applying Weakness and Resistance).", + fr: "Choisissez l'une de ces options :\n\n• Échangez votre Pokémon Actif contre l'un de vos Pokémon de Banc.\n• Pendant ce tour, les attaques utilisées par vos Pokémon infligent 30 dégâts supplémentaires aux Pokémon-ex Actifs et aux Pokémon-V Actifs de votre adversaire\n(avant application de la Faiblesse et de la Résistance).", + es: "Elige 1 opción:\n\n• Cambia tu Pokémon Activo por uno de tus Pokémon en Banca.\n• Durante este turno, los ataques usados por tus Pokémon hacen 30 puntos de daño más a los Pokémon ex y Pokémon V Activos de tu rival\n(antes de aplicar Debilidad y Resistencia).", + pt: "Escolha 1:\n\n• Troque o seu Pokémon Ativo por 1 dos seus Pokémon no Banco.\n• Durante este turno, os ataques usados pelos seus Pokémon causarão 30 pontos de dano a mais aos Pokémon ex Ativo e Pokémon V Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + it: "Scegli un effetto:\n\n• Scambia il tuo Pokémon attivo con uno della tua panchina.\n• Durante questo turno, gli attacchi usati dai tuoi Pokémon infliggono 30 danni in più ai Pokémon-ex attivi e Pokémon-V attivi del tuo avversario,\nprima di aver applicato debolezza e resistenza.", + de: "Wähle 1:\n\n• Tausche dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank aus.\n• Während dieses Zuges fügen die von deinen Pokémon eingesetzten Attacken dem Aktiven Pokémon-ex und Aktiven Pokémon-V deines Gegners 30 Schadenspunkte mehr zu\n(bevor Schwäche und Resistenz verrechnet werden)." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/114.ts b/data/Scarlet & Violet/Prismatic Evolutions/114.ts new file mode 100644 index 000000000..83efd7fa3 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/114.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Lacey", + fr: "Taro", + es: "Aroa", + pt: "Tarsila", + it: "Rupi", + de: "Tara" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Shuffle your hand into your deck. Then, draw 4 cards. If your opponent has 3 or fewer Prize cards remaining, draw 8 cards instead.", + fr: "Mélangez votre main avec votre deck. Ensuite, piochez 4 cartes. S'il reste 3 cartes Récompense ou moins à votre adversaire, piochez 8 cartes à la place.", + es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 4 cartas. Si a tu rival le quedan 3 cartas de Premio o menos, roba 8 cartas en vez de 4.", + pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 4 cartas. Se o seu oponente tiver 3 ou menos cartas de Prêmio restantes, compre 8 cartas ao invés de 4.", + it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca quattro carte. Se il tuo avversario ha tre o meno carte Premio rimanenti, invece pescane otto.", + de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 4 Karten. Wenn dein Gegner 3 oder weniger verbleibende Preiskarten hat, ziehe stattdessen 8 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/115.ts b/data/Scarlet & Violet/Prismatic Evolutions/115.ts new file mode 100644 index 000000000..e632c6444 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/115.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Larry's Skill", + fr: "Compétence d'Okuba", + es: "Talento de Laureano", + pt: "Talento do Lauro", + it: "Competenza di Ubaldo", + de: "Aokis Geschick" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "Discard your hand and search your deck for a Pokémon, a Supporter card, and a Basic Energy card, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Défaussez votre main et cherchez dans votre deck un Pokémon, une carte Supporter et une carte Énergie de base, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Descarta las cartas de tu mano y busca en tu baraja 1 carta de Pokémon, 1 carta de Partidario y 1 carta de Energía Básica, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.", + pt: "Descarte a sua mão e procure por um Pokémon, uma carta de Apoiador e uma carta de Energia Básica no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.", + it: "Scarta le carte che hai in mano e cerca nel tuo mazzo un Pokémon, una carta Aiuto e una carta Energia base, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + de: "Lege deine Handkarten auf deinen Ablagestapel und durchsuche dein Deck nach 1 Pokémon, 1 Unterstützerkarte und 1 Basis-Energiekarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/116.ts b/data/Scarlet & Violet/Prismatic Evolutions/116.ts new file mode 100644 index 000000000..d5d235b2c --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/116.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Max Rod", + fr: "Max Canne", + es: "Maxicaña", + pt: "Vara de Pescar Max", + it: "Canna da pesca max", + de: "Maximale Angel" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Put up to 5 in any combination of Pokémon and Basic Energy cards from your discard pile into your hand.", + fr: "Ajoutez à votre main une combinaison d'un maximum de 5 Pokémon et cartes Énergie de base de votre pile de défausse.", + es: "Pon, en cualquier combinación, hasta 5 cartas de Energía Básica y Pokémon de tu pila de descartes en tu mano.", + pt: "Coloque até 5 cartas de Pokémon e de Energia Básica da sua pilha de descarte na sua mão em qualquer combinação.", + it: "Prendi fino a cinque Pokémon e carte Energia base in qualsiasi combinazione dalla tua pila degli scarti e aggiungili alle carte che hai in mano.", + de: "Nimm eine beliebige Kombination aus bis zu 5 Pokémon und Basis-Energiekarten aus deinem Ablagestapel auf deine Hand." + }, + + trainerType: "Item", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/117.ts b/data/Scarlet & Violet/Prismatic Evolutions/117.ts new file mode 100644 index 000000000..be7bbdd81 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/117.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Maximum Belt", + fr: "Ceinture Maximale", + es: "Cinturón Colosal", + pt: "Cinturão Máximo", + it: "Maxicintura", + de: "Maximalgürtel" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Attacks used by the Pokémon this card is attached to do 50 more damage to your opponent's Active Pokémon ex (before applying Weakness and Resistance).", + fr: "Les attaques utilisées par le Pokémon auquel cette carte est attachée infligent 50 dégâts supplémentaires au Pokémon-ex Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Los ataques usados por el Pokémon al que esté unida esta carta hacen 50 puntos de daño más al Pokémon ex Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + pt: "Os ataques usados pelo Pokémon ao qual esta carta está ligada causam 50 pontos de dano a mais ao Pokémon ex Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + it: "Gli attacchi usati dal Pokémon a cui è assegnata questa carta infliggono 50 danni in più al Pokémon-ex attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + de: "Die eingesetzten Attacken von dem Pokémon, an das diese Karte angelegt ist, fügen dem Aktiven Pokémon-ex deines Gegners 50 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + trainerType: "Tool", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/118.ts b/data/Scarlet & Violet/Prismatic Evolutions/118.ts new file mode 100644 index 000000000..b4064f8b6 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/118.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Ogre's Mask", + fr: "Masque de Monstre", + es: "Máscara del Ogro", + pt: "Máscara do Ogro", + it: "Maschera dell'Orco", + de: "Maske des Oni" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Choose a Pokémon ex in your discard pile that has \"Ogerpon\" in its name, and switch it with 1 of your Pokémon ex in play that has \"Ogerpon\" in its name. Any attached cards, damage counters, Special Conditions, turns in play, and any other effects remain on the new Pokémon.", + fr: "Choisissez un Pokémon-ex dans votre pile de défausse ayant \" Ogerpon \" dans son nom et échangez-le contre l'un de vos Pokémon-ex en jeu ayant \" Ogerpon \" dans son nom. Les cartes attachées, les marqueurs de dégâts, les États Spéciaux, le nombre de tours en jeu et tous les autres effets restent sur le nouveau Pokémon.", + es: "Elige 1 Pokémon ex de tu pila de descartes que tenga \"Ogerpon\" en su nombre y cámbialo por uno de tus Pokémon ex en juego que tenga \"Ogerpon\" en su nombre. Todas las cartas unidas a este Pokémon, los contadores de daño, las Condiciones Especiales, los turnos de juego y todos los demás efectos permanecen en el nuevo Pokémon.", + pt: "Escolha um Pokémon ex da sua pilha de descarte que tenha \"Ogerpon\" em seu nome e troque-o por 1 dos seus Pokémon ex em jogo que tenha \"Ogerpon\" em seu nome. Quaisquer cartas ligadas, contadores de dano, Condições Especiais, turnos em jogo e quaisquer outros efeitos permanecem no novo Pokémon.", + it: "Scegli un Pokémon-ex nella tua pila degli scarti che ha \"Ogerpon\" nel nome e scambialo con uno dei tuoi Pokémon-ex in gioco che ha \"Ogerpon\" nel nome. Le carte assegnate, i segnalini danno, le condizioni speciali, il numero di turni da cui è in gioco e qualsiasi altro effetto restano sul nuovo Pokémon.", + de: "Wähle 1 Pokémon-ex aus deinem Ablagestapel, bei dem \"Ogerpon\" zum Namen gehört, und tausche es gegen 1 deiner Pokémon-ex im Spiel, bei dem \"Ogerpon\" zum Namen gehört, aus. Alle angelegten Karten, Schadensmarken, Speziellen Zustände, die Anzahl der Züge im Spiel sowie alle anderen Effekte verbleiben auf dem neuen Pokémon." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/119.ts b/data/Scarlet & Violet/Prismatic Evolutions/119.ts new file mode 100644 index 000000000..15110cbe7 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/119.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Prime Catcher", + fr: "Attrape-Ultime", + es: "Capturador Supremo", + pt: "Pegador Superior", + it: "Acchiappa-Pokémon Eccellente", + de: "Erstklassiger Fänger" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Switch in 1 of your opponent's Benched Pokémon to the Active Spot. If you do, switch your Active Pokémon with 1 of your Benched Pokémon.", + fr: "Envoyez l'un des Pokémon de Banc de votre adversaire sur le Poste Actif. Dans ce cas, échangez votre Pokémon Actif contre l'un de vos Pokémon de Banc.", + es: "Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo. Si lo haces, cambia tu Pokémon Activo por uno de tus Pokémon en Banca.", + pt: "Mande 1 dos Pokémon no Banco do seu oponente para o Campo Ativo. Se fizer isto, troque o seu Pokémon Ativo por 1 dos seus Pokémon no Banco.", + it: "Sostituisci uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon in posizione attiva. Se lo fai, scambia il tuo Pokémon attivo con uno della tua panchina.", + de: "Wechsle 1 Pokémon von der Bank deines Gegners in die Aktive Position ein. Wenn du das machst, tausche dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank aus." + }, + + trainerType: "Item", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/120.ts b/data/Scarlet & Violet/Prismatic Evolutions/120.ts new file mode 100644 index 000000000..4fb4d4775 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/120.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Professor Sada's Vitality", + fr: "Vitalité de la Professeure Olim", + es: "Vitalidad de la Profesora Albora", + pt: "Vitalidade da Professora Arka", + it: "Vitalità della Professoressa Olim", + de: "Prof. Antiquas Vitalität" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Choose up to 2 of your Ancient Pokémon and attach a Basic Energy card from your discard pile to each of them. If you attached any Energy in this way, draw 3 cards.", + fr: "Choisissez jusqu'à 2 de vos Pokémon Temps passé et attachez une carte Énergie de base de votre pile de défausse à chacun d'eux. Si vous avez attaché au moins une Énergie de cette façon, piochez 3 cartes.", + es: "Elige hasta 2 de tus Pokémon del pasado y une 1 carta de Energía Básica de tu pila de descartes a cada uno de ellos. Si has unido alguna Energía de esta manera, roba 3 cartas.", + pt: "Escolha até 2 dos seus Pokémon Ancestrais e ligue uma carta de Energia Básica da sua pilha de descarte a cada um deles. Se você ligou qualquer Energia desta forma, compre 3 cartas.", + it: "Scegli fino a due dei tuoi Pokémon Tempo Passato e assegna a ognuno di essi una carta Energia base dalla tua pila degli scarti. Se hai assegnato delle Energie in questo modo, pesca tre carte.", + de: "Wähle bis zu 2 deiner Pokémon aus der Vergangenheit und lege 1 Basis-Energiekarte aus deinem Ablagestapel an jedes von ihnen an. Wenn du auf diese Weise mindestens 1 Energie angelegt hast, ziehe 3 Karten." + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/121.ts b/data/Scarlet & Violet/Prismatic Evolutions/121.ts new file mode 100644 index 000000000..0cab33050 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/121.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Professor Turo's Scenario", + fr: "Plan du Professeur Turum", + es: "Plan del Profesor Turo", + pt: "Hipótese do Professor Turo", + it: "Scenario del Professor Turum", + de: "Prof. Futurus' Szenario" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Put 1 of your Pokémon in play into your hand. (Discard all cards attached to that Pokémon.)", + fr: "Ajoutez l'un de vos Pokémon en jeu à votre main. (Défaussez toutes les cartes attachées à ce Pokémon.)", + es: "Pon 1 de tus Pokémon en juego en tu mano. (Descarta todas las cartas unidas a ese Pokémon).", + pt: "Coloque 1 dos seus Pokémon em jogo na sua mão. (Descarte todas as cartas ligadas àquele Pokémon.)", + it: "Riprendi in mano uno dei tuoi Pokémon in gioco. Scarta tutte le carte assegnate a quel Pokémon.", + de: "Nimm 1 deiner Pokémon im Spiel auf deine Hand. (Lege alle an jenes Pokémon angelegten Karten auf deinen Ablagestapel.)" + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/122.ts b/data/Scarlet & Violet/Prismatic Evolutions/122.ts new file mode 100644 index 000000000..92cdf34bb --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/122.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Professor's Research", + fr: "Recherches Professorales", + es: "Investigación de Profesores", + pt: "Pesquisa de Professores", + it: "Ricerca Accademica", + de: "Forschung des Professors" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "Discard your hand and draw 7 cards.", + fr: "Défaussez votre main, puis piochez 7 cartes.", + es: "Descarta las cartas de tu mano y roba 7 cartas.", + pt: "Descarte a sua mão e compre 7 cartas.", + it: "Scarta le carte che hai in mano e pesca sette carte.", + de: "Lege deine Handkarten auf deinen Ablagestapel und ziehe 7 Karten." + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/123.ts b/data/Scarlet & Violet/Prismatic Evolutions/123.ts new file mode 100644 index 000000000..92cdf34bb --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/123.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Professor's Research", + fr: "Recherches Professorales", + es: "Investigación de Profesores", + pt: "Pesquisa de Professores", + it: "Ricerca Accademica", + de: "Forschung des Professors" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "Discard your hand and draw 7 cards.", + fr: "Défaussez votre main, puis piochez 7 cartes.", + es: "Descarta las cartas de tu mano y roba 7 cartas.", + pt: "Descarte a sua mão e compre 7 cartas.", + it: "Scarta le carte che hai in mano e pesca sette carte.", + de: "Lege deine Handkarten auf deinen Ablagestapel und ziehe 7 Karten." + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/124.ts b/data/Scarlet & Violet/Prismatic Evolutions/124.ts new file mode 100644 index 000000000..92cdf34bb --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/124.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Professor's Research", + fr: "Recherches Professorales", + es: "Investigación de Profesores", + pt: "Pesquisa de Professores", + it: "Ricerca Accademica", + de: "Forschung des Professors" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "Discard your hand and draw 7 cards.", + fr: "Défaussez votre main, puis piochez 7 cartes.", + es: "Descarta las cartas de tu mano y roba 7 cartas.", + pt: "Descarte a sua mão e compre 7 cartas.", + it: "Scarta le carte che hai in mano e pesca sette carte.", + de: "Lege deine Handkarten auf deinen Ablagestapel und ziehe 7 Karten." + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/125.ts b/data/Scarlet & Violet/Prismatic Evolutions/125.ts new file mode 100644 index 000000000..92cdf34bb --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/125.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Professor's Research", + fr: "Recherches Professorales", + es: "Investigación de Profesores", + pt: "Pesquisa de Professores", + it: "Ricerca Accademica", + de: "Forschung des Professors" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "Discard your hand and draw 7 cards.", + fr: "Défaussez votre main, puis piochez 7 cartes.", + es: "Descarta las cartas de tu mano y roba 7 cartas.", + pt: "Descarte a sua mão e compre 7 cartas.", + it: "Scarta le carte che hai in mano e pesca sette carte.", + de: "Lege deine Handkarten auf deinen Ablagestapel und ziehe 7 Karten." + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/126.ts b/data/Scarlet & Violet/Prismatic Evolutions/126.ts new file mode 100644 index 000000000..50cc0ce97 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/126.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Rescue Board", + fr: "Planche de Sauvetage", + es: "Monopatín de Rescate", + pt: "Skate de Resgate", + it: "Skateboard di Salvataggio", + de: "Rettungsboard" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "The Retreat Cost of the Pokémon this card is attached to is Colorless less. If that Pokémon's remaining HP is 30 or less, it has no Retreat Cost.", + fr: "Le Coût de Retraite du Pokémon auquel cette carte est attachée est diminué de Colorless. S'il reste 30 PV ou moins à ce Pokémon, il n'a pas de Coût de Retraite.", + es: "El Coste de Retirada del Pokémon al que esté unida esta carta es de Colorless menos. Si a ese Pokémon le quedan 30 PS o menos, no tiene ningún Coste de Retirada.", + pt: "O custo de Recuo do Pokémon ao qual esta carta está ligada é Colorless a menos. Se o PS restante daquele Pokémon for 30 ou menos, ele não terá custo de Recuo.", + it: "Il costo di ritirata del Pokémon a cui è assegnata questa carta è ridotto di Colorless. Se i PS rimanenti di quel Pokémon sono 30 o meno, non ha costo di ritirata.", + de: "Die Rückzugskosten des Pokémon, an das diese Karte angelegt ist, verringern sich um Colorless. Wenn jenes Pokémon 30 oder weniger verbleibende KP hat, hat es keine Rückzugskosten." + }, + + trainerType: "Tool", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/127.ts b/data/Scarlet & Violet/Prismatic Evolutions/127.ts new file mode 100644 index 000000000..a9931090f --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/127.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Roto-Stick", + fr: "Perche à Motismart", + es: "Paloselfi Rotom", + pt: "Roto-bastão", + it: "Bastone Rotoselfie", + de: "Rotom-Stick" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "Look at the top 4 cards of your deck. You may reveal any number of Supporter cards you find there and put them into your hand. Shuffle the other cards back into your deck.", + fr: "Regardez les 4 cartes du dessus de votre deck. Vous pouvez montrer le nombre voulu de cartes Supporter que vous y trouvez, puis les ajouter à votre main. Mélangez les autres cartes avec votre deck.", + es: "Mira las 4 primeras cartas de tu baraja. Puedes enseñar cualquier cantidad de cartas de Partidario que encuentres entre ellas y ponerlas en tu mano. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + pt: "Olhe as 4 cartas de cima do seu baralho. Você pode revelar qualquer número de cartas de Apoiador que encontrar lá e colocá-las na sua mão. Embaralhe as outras cartas de volta no seu baralho.", + it: "Guarda le prime quattro carte del tuo mazzo. Puoi mostrare un numero qualsiasi di carte Aiuto presenti tra esse e aggiungerle alle carte che hai in mano. Poi rimischia le altre carte nel tuo mazzo.", + de: "Schau dir die obersten 4 Karten deines Decks an. Du kannst beliebig viele Unterstützerkarten, die du dort findest, deinem Gegner zeigen und auf deine Hand nehmen. Mische die anderen Karten zurück in dein Deck." + }, + + trainerType: "Item", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/128.ts b/data/Scarlet & Violet/Prismatic Evolutions/128.ts new file mode 100644 index 000000000..a970e8a07 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/128.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Scoop Up Cyclone", + fr: "Rappel Cyclone", + es: "Ciclón Levante", + pt: "Recolhida Ciclone", + it: "Mega Recupero", + de: "Aufwischwirbel" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Put 1 of your Pokémon and all attached cards into your hand.", + fr: "Ajoutez à votre main l'un de vos Pokémon et toutes les cartes qui lui sont attachées.", + es: "Pon 1 de tus Pokémon y todas las cartas unidas a él en tu mano.", + pt: "Coloque 1 dos seus Pokémon e todas as cartas ligadas a ele na sua mão.", + it: "Riprendi in mano uno dei tuoi Pokémon e tutte le carte a esso assegnate.", + de: "Nimm 1 deiner Pokémon und alle angelegten Karten auf deine Hand." + }, + + trainerType: "Item", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/129.ts b/data/Scarlet & Violet/Prismatic Evolutions/129.ts new file mode 100644 index 000000000..48f0a88db --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/129.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Sparkling Crystal", + fr: "Cristal Scintillant", + es: "Cristal Brillante", + pt: "Cristal Cintilante", + it: "Cristallo Scintillante", + de: "Funkelnder Kristall" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "When the Tera Pokémon this card is attached to uses an attack, that attack costs 1 Energy less. (The Energy can be of any type.)", + fr: "Lorsque le Pokémon Téracristal auquel cette carte est attachée utilise une attaque, cette attaque-là coûte une Énergie de moins. (Cette Énergie peut être de tout type.)", + es: "Cuando el Pokémon Teracristal al que está unida esta carta usa un ataque, ese ataque cuesta una Energía menos. (La Energía puede ser de cualquier tipo).", + pt: "Quando o Pokémon Tera ao qual esta carta está ligada usar um ataque, aquele ataque custará 1 Energia a menos. (A Energia pode ser de qualquer tipo.)", + it: "Quando il Pokémon Teracristal a cui è assegnata questa carta usa un attacco, quell'attacco costa un'Energia in meno. L'Energia può essere di qualsiasi tipo.", + de: "Wenn das Terakristall-Pokémon, an das diese Karte angelegt ist, eine Attacke einsetzt, verringern sich die Kosten jener Attacke um 1 Energie. (Die Energie kann beliebigen Typs sein.)" + }, + + trainerType: "Tool", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/130.ts b/data/Scarlet & Violet/Prismatic Evolutions/130.ts new file mode 100644 index 000000000..91885d992 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/130.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Techno Radar", + fr: "Techno-Radar", + es: "Tecnorradar", + pt: "Radar Tecnológico", + it: "Tecnoradar", + de: "Techradar" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "You can use this card only if you discard another card from your hand.\n\nSearch your deck for up to 2 Future Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Vous ne pouvez utiliser cette carte que si vous défaussez une autre carte de votre main.\n\nCherchez dans votre deck jusqu'à 2 Pokémon Temps futur, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Puedes usar esta carta solo si descartas otra carta de tu mano.\n\nBusca en tu baraja hasta 2 Pokémon del futuro, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja.", + pt: "Você só pode usar esta carta se descartar outra carta da sua mão.\n\nProcure por até 2 Pokémon Futuristas no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.", + it: "Puoi usare questa carta solo se scarti un'altra carta che hai in mano.\n\nCerca nel tuo mazzo fino a due Pokémon Tempo Futuro, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + de: "Du kannst diese Karte nur einsetzen, wenn du noch 1 andere Karte aus deiner Hand auf deinen Ablagestapel legst.\n\nDurchsuche dein Deck nach bis zu 2 Pokémon aus der Zukunft, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Item", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/131.ts b/data/Scarlet & Violet/Prismatic Evolutions/131.ts new file mode 100644 index 000000000..d44d74f0f --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/131.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Treasure Tracker", + fr: "Détecteur de Trésors", + es: "Rastreador de Tesoros", + pt: "Rastreador de Tesouros", + it: "Rilevatore di Tesori", + de: "Schatz-Tracker" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Search your deck for up to 5 Pokémon Tool cards, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 5 cartes Outil Pokémon, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 5 cartas de Herramienta Pokémon, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.", + pt: "Procure por até 5 cartas de Ferramenta Pokémon no seu baralho, revele-as e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.", + it: "Cerca nel tuo mazzo fino a cinque carte Oggetto Pokémon, mostrale e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + de: "Durchsuche dein Deck nach bis zu 5 Pokémon-Ausrüstungen, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Item", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/132.ts b/data/Scarlet & Violet/Prismatic Evolutions/132.ts new file mode 100644 index 000000000..870c586d3 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/132.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Amarys", + fr: "Nérine", + es: "Nerina", + pt: "Amarílis", + it: "Erin", + de: "Erin" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Draw 4 cards. At the end of this turn, if you have 5 or more cards in your hand, discard your hand.", + fr: "Piochez 4 cartes. À la fin de ce tour, si vous avez 5 cartes ou plus dans votre main, défaussez votre main.", + es: "Roba 4 cartas. Al final de este turno, si tienes 5 cartas o más en tu mano, descarta las cartas de tu mano.", + pt: "Compre 4 cartas. No final deste turno, se você tiver 5 ou mais cartas na sua mão, descarte a sua mão.", + it: "Pesca quattro carte. Alla fine di questo turno, se hai cinque o più carte in mano, scarta le carte che hai in mano.", + de: "Ziehe 4 Karten. Am Ende dieses Zuges, wenn du 5 oder mehr Karten auf deiner Hand hast, lege deine Handkarten auf deinen Ablagestapel." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/133.ts b/data/Scarlet & Violet/Prismatic Evolutions/133.ts new file mode 100644 index 000000000..2785090d3 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/133.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Atticus", + fr: "Erio", + es: "Henzo", + pt: "Érico", + it: "Henzo", + de: "Shugi" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "You can use this card only if your opponent's Active Pokémon is Poisoned.\n\nShuffle your hand into your deck. Then, draw 7 cards.", + fr: "Vous ne pouvez utiliser cette carte que si le Pokémon Actif de votre adversaire est Empoisonné.\n\nMélangez votre main avec votre deck. Ensuite, piochez 7 cartes.", + es: "Puedes usar esta carta solo si el Pokémon Activo de tu rival está Envenenado.\n\nPon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 7 cartas.", + pt: "Você só pode usar esta carta se o Pokémon Ativo do seu oponente estiver Envenenado.\n\nEmbaralhe a sua mão no seu baralho. Em seguida, compre 7 cartas.", + it: "Puoi usare questa carta solo se il Pokémon attivo del tuo avversario è avvelenato.\n\nRimischia le carte che hai in mano nel tuo mazzo. Poi pesca sette carte.", + de: "Du kannst diese Karte nur einsetzen, wenn das Aktive Pokémon deines Gegners vergiftet ist.\n\nMische deine Handkarten in dein Deck. Ziehe anschließend 7 Karten." + }, + + trainerType: "Supporter", + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/134.ts b/data/Scarlet & Violet/Prismatic Evolutions/134.ts new file mode 100644 index 000000000..2785090d3 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/134.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Atticus", + fr: "Erio", + es: "Henzo", + pt: "Érico", + it: "Henzo", + de: "Shugi" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "You can use this card only if your opponent's Active Pokémon is Poisoned.\n\nShuffle your hand into your deck. Then, draw 7 cards.", + fr: "Vous ne pouvez utiliser cette carte que si le Pokémon Actif de votre adversaire est Empoisonné.\n\nMélangez votre main avec votre deck. Ensuite, piochez 7 cartes.", + es: "Puedes usar esta carta solo si el Pokémon Activo de tu rival está Envenenado.\n\nPon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 7 cartas.", + pt: "Você só pode usar esta carta se o Pokémon Ativo do seu oponente estiver Envenenado.\n\nEmbaralhe a sua mão no seu baralho. Em seguida, compre 7 cartas.", + it: "Puoi usare questa carta solo se il Pokémon attivo del tuo avversario è avvelenato.\n\nRimischia le carte che hai in mano nel tuo mazzo. Poi pesca sette carte.", + de: "Du kannst diese Karte nur einsetzen, wenn das Aktive Pokémon deines Gegners vergiftet ist.\n\nMische deine Handkarten in dein Deck. Ziehe anschließend 7 Karten." + }, + + trainerType: "Supporter", + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/135.ts b/data/Scarlet & Violet/Prismatic Evolutions/135.ts new file mode 100644 index 000000000..ff5070d25 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/135.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Brassius", + fr: "Colza", + es: "Brais", + pt: "Brás", + it: "Brassius", + de: "Colzo" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Count the cards in your hand, shuffle those cards into your deck, then draw that many cards plus 1.", + fr: "Comptez les cartes dans votre main, mélangez-les avec votre deck, puis piochez autant de cartes plus une.", + es: "Cuenta las cartas de tu mano, pon esas cartas en tu baraja y barájalas todas. Después, roba esa misma cantidad de cartas más 1.", + pt: "Conte as cartas na sua mão, embaralhe aquelas cartas no seu baralho e, em seguida, compre aquele mesmo número de cartas mais 1.", + it: "Conta le carte che hai in mano, rimischiale nel tuo mazzo e poi pesca lo stesso numero di carte più una.", + de: "Zähle die Karten auf deiner Hand, mische jene Karten in dein Deck und ziehe anschließend genauso viele Karten plus 1." + }, + + trainerType: "Supporter", + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/136.ts b/data/Scarlet & Violet/Prismatic Evolutions/136.ts new file mode 100644 index 000000000..8cbce2b9e --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/136.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Eri", + fr: "Nèflie", + es: "Erin", + pt: "Êri", + it: "Nespera", + de: "Rioba" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Your opponent reveals their hand, and you discard up to 2 Item cards you find there.", + fr: "Votre adversaire montre sa main et vous défaussez jusqu'à 2 cartes Objet que vous y trouvez.", + es: "Tu rival enseña las cartas de su mano, y tú descartas hasta 2 cartas de Objeto que encuentres entre ellas.", + pt: "Seu oponente revela a mão dele e você descarta até 2 cartas de Item que encontrar lá.", + it: "Il tuo avversario mostra le carte che ha in mano e tu scarti fino a due carte Strumento presenti tra quelle carte.", + de: "Dein Gegner zeigt dir seine Handkarten und du legst bis zu 2 Itemkarten, die du dort findest, auf seinen Ablagestapel." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/137.ts b/data/Scarlet & Violet/Prismatic Evolutions/137.ts new file mode 100644 index 000000000..4563afeb8 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/137.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Friends in Paldea", + fr: "Amis de Paldea", + es: "Amigos de Paldea", + pt: "Amigos em Paldea", + it: "Amici a Paldea", + de: "Freunde aus Paldea" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Draw 3 cards.", + fr: "Piochez 3 cartes.", + es: "Roba 3 cartas.", + pt: "Compre 3 cartas.", + it: "Pesca tre carte.", + de: "Ziehe 3 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/138.ts b/data/Scarlet & Violet/Prismatic Evolutions/138.ts new file mode 100644 index 000000000..3463d69f8 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/138.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Giacomo", + fr: "Brome", + es: "Anán", + pt: "Giacomo", + it: "Romelio", + de: "Pinio" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Discard a Special Energy from each of your opponent's Pokémon.", + fr: "Défaussez une Énergie spéciale de chacun des Pokémon de votre adversaire.", + es: "Descarta 1 Energía Especial de cada uno de los Pokémon de tu rival.", + pt: "Descarte uma Energia Especial de cada um dos Pokémon do seu oponente.", + it: "Scarta un'Energia speciale da ciascuno dei Pokémon del tuo avversario.", + de: "Lege 1 Spezial-Energie von jedem Pokémon deines Gegners auf seinen Ablagestapel." + }, + + trainerType: "Supporter", + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/139.ts b/data/Scarlet & Violet/Prismatic Evolutions/139.ts new file mode 100644 index 000000000..14e9856f1 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/139.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Larry's Skill", + fr: "Compétence d'Okuba", + es: "Talento de Laureano", + pt: "Talento do Lauro", + it: "Competenza di Ubaldo", + de: "Aokis Geschick" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Discard your hand and search your deck for a Pokémon, a Supporter card, and a Basic Energy card, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Défaussez votre main et cherchez dans votre deck un Pokémon, une carte Supporter et une carte Énergie de base, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Descarta las cartas de tu mano y busca en tu baraja 1 carta de Pokémon, 1 carta de Partidario y 1 carta de Energía Básica, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.", + pt: "Descarte a sua mão e procure por um Pokémon, uma carta de Apoiador e uma carta de Energia Básica no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.", + it: "Scarta le carte che hai in mano e cerca nel tuo mazzo un Pokémon, una carta Aiuto e una carta Energia base, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + de: "Lege deine Handkarten auf deinen Ablagestapel und durchsuche dein Deck nach 1 Pokémon, 1 Unterstützerkarte und 1 Basis-Energiekarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/140.ts b/data/Scarlet & Violet/Prismatic Evolutions/140.ts new file mode 100644 index 000000000..78af6ed2d --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/140.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Mela", + fr: "Meloco", + es: "Melo", + pt: "Mélia", + it: "Pruna", + de: "Irsa" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "You can use this card only if any of your Pokémon were Knocked Out during your opponent's last turn.\n\nAttach a Basic Fire Energy card from your discard pile to 1 of your Pokémon. If you do, draw cards until you have 6 cards in your hand.", + fr: "Vous ne pouvez utiliser cette carte que si au moins l'un de vos Pokémon a été mis K.O. pendant le dernier tour de votre adversaire.\n\nAttachez une carte Énergie Fire de base de votre pile de défausse à l'un de vos Pokémon. Dans ce cas, piochez des cartes jusqu'à en avoir 6 en main.", + es: "Puedes usar esta carta solo si alguno de tus Pokémon quedó Fuera de Combate durante el último turno de tu rival.\n\nUne 1 carta de Energía Fire Básica de tu pila de descartes a uno de tus Pokémon. Si lo haces, roba cartas hasta que tengas 6 cartas en tu mano.", + pt: "Você só pode usar esta carta se algum dos seus Pokémon tiver sido Nocauteado durante o último turno do seu oponente.\n\nLigue uma carta de Energia Fire Básica da sua pilha de descarte a 1 dos seus Pokémon. Se fizer isto, compre cartas até ter 6 cartas na sua mão.", + it: "Puoi usare questa carta solo se uno dei tuoi Pokémon è stato messo KO durante l'ultimo turno del tuo avversario.\n\nAssegna a uno dei tuoi Pokémon una carta Energia base Fire dalla tua pila degli scarti. Se lo fai, pesca fino ad avere sei carte in mano.", + de: "Du kannst diese Karte nur einsetzen, wenn mindestens 1 deiner Pokémon während des letzten Zuges deines Gegners kampfunfähig wurde.\n\nLege 1 Basis-Fire-Energiekarte aus deinem Ablagestapel an 1 deiner Pokémon an. Wenn du das machst, ziehe so lange Karten, bis du 6 Karten auf deiner Hand hast." + }, + + trainerType: "Supporter", + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/141.ts b/data/Scarlet & Violet/Prismatic Evolutions/141.ts new file mode 100644 index 000000000..c0d3f8d65 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/141.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Ortega", + fr: "Ortiga", + es: "Gus", + pt: "Ortega", + it: "Ortiz", + de: "Otis" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Your opponent reveals their hand, and you choose a card you find there and put it on the bottom of their deck. If you put a card on the bottom of your opponent's deck in this way, your opponent may draw a card.", + fr: "Votre adversaire montre sa main. Choisissez-y une carte, puis placez-la en dessous de son deck. Si vous placez une carte en dessous du deck de votre adversaire de cette façon, votre adversaire peut piocher une carte.", + es: "Tu rival enseña las cartas de su mano. Elige 1 carta que encuentres entre ellas y ponla en la parte inferior de su baraja. Si has puesto una carta en la parte inferior de la baraja de tu rival de esta manera, tu rival puede robar 1 carta.", + pt: "Seu oponente revela a mão dele, e você escolhe uma carta que encontrar lá e a coloca como a carta de baixo do baralho dele. Se você colocou uma carta como a carta de baixo do baralho do seu oponente desta forma, seu oponente poderá comprar uma carta.", + it: "Il tuo avversario mostra le carte che ha in mano. Scegline una e mettila in fondo al suo mazzo. Se hai messo una carta in fondo al mazzo del tuo avversario in questo modo, il tuo avversario può pescare una carta.", + de: "Dein Gegner zeigt dir seine Handkarten und du wählst 1 Karte, die du dort findest, und legst sie unter sein Deck. Wenn du auf diese Weise 1 Karte unter das Deck deines Gegners gelegt hast, kann dein Gegner 1 Karte ziehen." + }, + + trainerType: "Supporter", + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/142.ts b/data/Scarlet & Violet/Prismatic Evolutions/142.ts new file mode 100644 index 000000000..1e20d35e4 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/142.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Raifort", + fr: "Mora", + es: "Cloe", + pt: "Moira", + it: "Morasia", + de: "Moira" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Look at the top 5 cards of your deck and discard any number of them. Put the other cards back in any order.", + fr: "Regardez les 5 cartes du dessus de votre deck et défaussez-en le nombre voulu. Replacez les autres cartes dans l'ordre de votre choix.", + es: "Mira las 5 primeras cartas de tu baraja y descarta cualquier cantidad de ellas. Vuelve a poner el resto de las cartas en la parte superior de tu baraja en el orden que quieras.", + pt: "Olhe as 5 cartas de cima do seu baralho e descarte qualquer número delas. Coloque as outras cartas de volta em qualquer ordem.", + it: "Guarda le prime cinque carte del tuo mazzo e scartane quante ne vuoi. Rimetti a posto le altre carte nell'ordine che preferisci.", + de: "Schau dir die obersten 5 Karten deines Decks an und lege beliebig viele von ihnen auf deinen Ablagestapel. Lege die anderen Karten in beliebiger Reihenfolge zurück auf dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/143.ts b/data/Scarlet & Violet/Prismatic Evolutions/143.ts new file mode 100644 index 000000000..b08852abe --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/143.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Tyme", + fr: "Thaïm", + es: "Mila", + pt: "Tomila", + it: "Thyma", + de: "Quendella" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Tell your opponent the name of a Pokémon in your hand and put that Pokémon face down in front of you. Your opponent guesses that Pokémon's HP, and then you reveal it. If your opponent guessed right, they draw 4 cards. If they guessed wrong, you draw 4 cards. Then, return the Pokémon to your hand.", + fr: "Dites à votre adversaire le nom de l'un des Pokémon de votre main, puis placez ce Pokémon face cachée devant vous. Votre adversaire devine le montant des PV de ce Pokémon, puis vous le montrez. Si votre adversaire a bien deviné, il pioche 4 cartes. S'il a mal deviné, vous piochez 4 cartes. Ensuite, remettez ce Pokémon dans votre main.", + es: "Dile a tu rival el nombre de un Pokémon de tu mano y pon ese Pokémon boca abajo delante de ti. Tu rival intenta adivinar los PS de ese Pokémon y, después, tú lo enseñas. Si lo ha adivinado correctamente, tu rival roba 4 cartas. Si no lo ha adivinado correctamente, tú robas 4 cartas. Después, devuelve el Pokémon a tu mano.", + pt: "Diga ao seu oponente o nome de um Pokémon na sua mão e coloque aquele Pokémon virado para baixo na sua frente. Seu oponente tenta adivinhar o PS daquele Pokémon e, em seguida, você o revela. Se o seu oponente acertar, ele comprará 4 cartas. Se ele errar, você comprará 4 cartas. Em seguida, devolva o Pokémon à sua mão.", + it: "Comunica al tuo avversario il nome di un Pokémon che hai in mano e metti quel Pokémon a faccia in giù davanti a te. Il tuo avversario deve indovinare i PS di quel Pokémon e poi glielo mostri. Se ha indovinato, il tuo avversario pesca quattro carte. Se non ha indovinato, ne peschi quattro tu. Poi riprendi in mano il Pokémon.", + de: "Nenne deinem Gegner den Namen eines Pokémon auf deiner Hand und lege jenes Pokémon verdeckt vor dir ab. Dein Gegner rät die KP jenes Pokémon und anschließend deckst du es auf. Wenn dein Gegner richtig geraten hat, zieht er 4 Karten. Wenn er falsch geraten hat, ziehst du 4 Karten. Nimm anschließend das Pokémon zurück auf deine Hand." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/144.ts b/data/Scarlet & Violet/Prismatic Evolutions/144.ts new file mode 100644 index 000000000..6d6179856 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/144.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Leafeon ex", + fr: "Phyllali-ex", + es: "Leafeon ex", + pt: "Leafeon ex", + it: "Leafeon-ex", + de: "Folipurba-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 270, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Verdant Storm", + fr: "Tempête Verdoyante", + es: "Tormenta Verdosa", + pt: "Tempestade Verdejante", + it: "Tempesta Rigogliosa", + de: "Begrünungssturm" + }, + + effect: { + en: "This attack does 60 damage for each Energy attached to all of your opponent's Pokémon.", + fr: "Cette attaque inflige 60 dégâts pour chaque Énergie attachée à tous les Pokémon de votre adversaire.", + es: "Este ataque hace 60 puntos de daño por cada Energía unida a cada uno de los Pokémon de tu rival.", + pt: "Este ataque causa 60 pontos de dano para cada Energia ligada a todos os Pokémon do seu oponente.", + it: "Questo attacco infligge 60 danni per ogni Energia assegnata ai Pokémon del tuo avversario.", + de: "Diese Attacke fügt für jede an alle Pokémon deines Gegners angelegte Energie 60 Schadenspunkte zu." + }, + + damage: "60×" + }, { + cost: ["Grass", "Fire", "Water"], + + name: { + en: "Moss Agate", + fr: "Agate Moussue", + es: "Musgo Ágata", + pt: "Ágata Musgo", + it: "Agata Muschiata", + de: "Moosachat" + }, + + effect: { + en: "Heal 100 damage from each of your Benched Pokémon.", + fr: "Soignez 100 dégâts de chacun de vos Pokémon de Banc.", + es: "Cura 100 puntos de daño a cada uno de tus Pokémon en Banca.", + pt: "Cure 100 pontos de dano de cada um dos seus Pokémon no Banco.", + it: "Cura ciascuno dei tuoi Pokémon in panchina da 100 danni.", + de: "Heile 100 Schadenspunkte bei jedem Pokémon auf deiner Bank." + }, + + damage: 230 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/145.ts b/data/Scarlet & Violet/Prismatic Evolutions/145.ts new file mode 100644 index 000000000..af267df48 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/145.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Teal Mask Ogerpon ex", + fr: "Ogerpon Masque Turquoise-ex", + es: "Ogerpon Máscara Turquesa ex", + pt: "Ogerpon Máscara Turquesa ex", + it: "Ogerpon Maschera Turchese-ex", + de: "Türkisgrüne-Maske-Ogerpon-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 210, + types: ["Grass"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Teal Dance", + fr: "Danse Turquoise", + es: "Danza Turquesa", + pt: "Dança Turquesa", + it: "Danza Turchese", + de: "Türkisgrüner Tanz" + }, + + effect: { + en: "Once during your turn, you may attach a Basic Grass Energy card from your hand to this Pokémon. If you attached Energy to a Pokémon in this way, draw a card.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Grass de base de votre main à ce Pokémon. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, piochez une carte.", + es: "Una vez durante tu turno, puedes unir 1 carta de Energía Grass Básica de tu mano a este Pokémon. Si has unido Energía a un Pokémon de esta manera, roba 1 carta.", + pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Grass Básica da sua mão a este Pokémon. Se você ligou Energia a um Pokémon desta forma, compre uma carta.", + it: "Una sola volta durante il tuo turno, puoi assegnare a questo Pokémon una carta Energia base Grass dalla tua mano. Se hai assegnato dell'Energia a un Pokémon in questo modo, pesca una carta.", + de: "Einmal während deines Zuges kannst du 1 Basis-Grass-Energiekarte aus deiner Hand an dieses Pokémon anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, ziehe 1 Karte." + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Grass"], + + name: { + en: "Myriad Leaf Shower", + fr: "Pluie de Feuilles", + es: "Lluvia de Hojas", + pt: "Chuva Infinita de Folhas", + it: "Miriade di Foglie Cadenti", + de: "Laubschauer" + }, + + 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.", + pt: "Este ataque causa 30 pontos de dano a mais para cada Energia ligada a ambos os Pokémon Ativos.", + it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata a ciascuno dei Pokémon attivi.", + de: "Diese Attacke fügt für jede an beide Aktiven Pokémon angelegte Energie 30 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/146.ts b/data/Scarlet & Violet/Prismatic Evolutions/146.ts new file mode 100644 index 000000000..ba02e5a14 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/146.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Flareon ex", + fr: "Pyroli-ex", + es: "Flareon ex", + pt: "Flareon ex", + it: "Flareon-ex", + de: "Flamara-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 270, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + en: "Burning Charge", + fr: "Charge Brûlante", + es: "Carga Abrasadora", + pt: "Carga Ardente", + it: "Bruciacarica", + de: "Brennende Ladung" + }, + + effect: { + en: "Search your deck for up to 2 Basic Energy cards and attach them to 1 of your Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base, puis attachez-les à l'un de vos Pokémon. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Básica y únelas a uno de tus Pokémon. Después, baraja las cartas de tu baraja.", + pt: "Procure por até 2 cartas de Energia Básica no seu baralho e ligue-as a 1 dos seus Pokémon. Em seguida, embaralhe o seu baralho.", + it: "Cerca nel tuo mazzo fino a due carte Energia base e assegnale a uno dei tuoi Pokémon. Poi rimischia le carte del tuo mazzo.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten und lege sie an 1 deiner Pokémon an. Mische anschließend dein Deck." + }, + + damage: 130 + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + en: "Carnelian", + fr: "Cornaline", + es: "Cornalina", + pt: "Cornalina", + it: "Corniola", + de: "Karneol" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 280 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/147.ts b/data/Scarlet & Violet/Prismatic Evolutions/147.ts new file mode 100644 index 000000000..03fe41e28 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/147.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Ceruledge ex", + fr: "Malvalame-ex", + es: "Ceruledge ex", + pt: "Ceruledge ex", + it: "Ceruledge-ex", + de: "Azugladis-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 270, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Abyssal Flames", + fr: "Flammes Abyssales", + es: "Llamas Abismales", + pt: "Chamas Abissais", + it: "Fiamme Abissali", + de: "Flammen des Abgrunds" + }, + + effect: { + en: "This attack does 20 more damage for each Energy card in your discard pile.", + fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque carte Énergie dans votre pile de défausse.", + es: "Este ataque hace 20 puntos de daño más por cada carta de Energía en tu pila de descartes.", + pt: "Este ataque causa 20 pontos de dano a mais para cada carta de Energia na sua pilha de descarte.", + it: "Questo attacco infligge 20 danni in più per ogni carta Energia nella tua pila degli scarti.", + de: "Diese Attacke fügt für jede Energiekarte in deinem Ablagestapel 20 Schadenspunkte mehr zu." + }, + + damage: "30+" + }, { + cost: ["Fire", "Psychic", "Metal"], + + name: { + en: "Raging Amethyst", + fr: "Améthyste Enragée", + es: "Amatista Iracunda", + pt: "Ametista Feroz", + it: "Furia di Ametista", + de: "Furioser Amethyst" + }, + + effect: { + en: "Discard all Energy from this Pokémon.", + fr: "Défaussez toutes les Énergies de ce Pokémon.", + es: "Descarta todas las Energías de este Pokémon.", + pt: "Descarte todas as Energias deste Pokémon.", + it: "Scarta tutte le Energie da questo Pokémon.", + de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 280 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/148.ts b/data/Scarlet & Violet/Prismatic Evolutions/148.ts new file mode 100644 index 000000000..9bbe82e2b --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/148.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Hearthflame Mask Ogerpon ex", + fr: "Ogerpon Masque du Fourneau-ex", + es: "Ogerpon Máscara Horno ex", + pt: "Ogerpon Máscara Fornalha ex", + it: "Ogerpon Maschera Focolare-ex", + de: "Ofenmaske-Ogerpon-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 210, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Wrathful Hearth", + fr: "Fourneau du Courroux", + es: "Horno Iracundo", + pt: "Fornalha Enfurecida", + it: "Focolare Iracondo", + de: "Zorniger Ofen" + }, + + effect: { + en: "This attack does 20 damage for each damage counter on this Pokémon.", + fr: "Cette attaque inflige 20 dégâts pour chaque marqueur de dégâts sur ce Pokémon.", + es: "Este ataque hace 20 puntos de daño por cada contador de daño en este Pokémon.", + pt: "Este ataque causa 20 pontos de dano para cada contador de dano neste Pokémon.", + it: "Questo attacco infligge 20 danni per ogni segnalino danno presente su questo Pokémon.", + de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 20 Schadenspunkte zu." + }, + + damage: "20×" + }, { + cost: ["Fire", "Fire", "Fire"], + + name: { + en: "Dynamic Blaze", + fr: "Brasier Dynamique", + es: "Llamarada Dinámica", + pt: "Incêndio Dinâmico", + it: "Fiammata Dinamica", + de: "Dynamischer Brand" + }, + + effect: { + en: "If your opponent's Active Pokémon is an Evolution Pokémon, this attack does 140 more damage, and discard all Energy from this Pokémon.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Évolutif, cette attaque inflige 140 dégâts supplémentaires et vous défaussez toutes les Énergies de ce Pokémon.", + es: "Si el Pokémon Activo de tu rival es un Pokémon Evolución, este ataque hace 140 puntos de daño más, y descartas todas las Energías de este Pokémon.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon de Evolução, este ataque causará 140 pontos de dano a mais, e descarte todas as Energias deste Pokémon.", + it: "Se il Pokémon attivo del tuo avversario è un Pokémon Evoluzione, questo attacco infligge 140 danni in più e tu scarti tutte le Energie da questo Pokémon.", + de: "Wenn das Aktive Pokémon deines Gegners ein Entwicklungs-Pokémon ist, fügt diese Attacke 140 Schadenspunkte mehr zu, und du legst alle Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: "140+" + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/149.ts b/data/Scarlet & Violet/Prismatic Evolutions/149.ts new file mode 100644 index 000000000..1d243e9d7 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/149.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Vaporeon ex", + fr: "Aquali-ex", + es: "Vaporeon ex", + pt: "Vaporeon ex", + it: "Vaporeon-ex", + de: "Aquana-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 280, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Severe Squall", + fr: "Rafale Violente", + es: "Ráfaga Inclemente", + pt: "Ventania Intensa", + it: "Burrasca Violenta", + de: "Starker Schwall" + }, + + effect: { + en: "This attack does 60 damage to each of your opponent's Pokémon ex. This attack's damage isn't affected by Weakness or Resistance.", + fr: "Cette attaque inflige 60 dégâts à chacun des Pokémon-ex de votre adversaire. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.", + es: "Este ataque hace 60 puntos de daño a cada uno de los Pokémon ex de tu rival. El daño de este ataque no se ve afectado por Debilidad o Resistencia.", + pt: "Este ataque causa 60 pontos de dano a cada um dos Pokémon ex do seu oponente. O dano deste ataque não é afetado por Fraqueza ou Resistência.", + it: "Questo attacco infligge 60 danni a ciascuno dei Pokémon-ex del tuo avversario. I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza.", + de: "Diese Attacke fügt jedem Pokémon-ex deines Gegners 60 Schadenspunkte zu. Der Schaden dieser Attacke wird durch Schwäche oder Resistenz nicht verändert." + } + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + en: "Aquamarine", + fr: "Aigue-Marine", + es: "Aguamarina", + pt: "Água-marinha", + it: "Acquamarina", + de: "Aquamarin" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 280 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/150.ts b/data/Scarlet & Violet/Prismatic Evolutions/150.ts new file mode 100644 index 000000000..14ffef6ad --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/150.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Glaceon ex", + fr: "Givrali-ex", + es: "Glaceon ex", + pt: "Glaceon ex", + it: "Glaceon-ex", + de: "Glaziola-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Frost Bullet", + fr: "Kunaï Givré", + es: "Bala Helada", + pt: "Projétil Congelado", + it: "Dardogelo", + de: "Frostprojektil" + }, + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 30 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 30 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + pt: "Este ataque também causa 30 pontos de dano a 1 dos Pokémon no Banco do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + it: "Questo attacco infligge anche 30 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + de: "Diese Attacke fügt auch 1 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 110 + }, { + cost: ["Grass", "Water", "Darkness"], + + name: { + en: "Euclase", + fr: "Euclase", + es: "Euclasa", + pt: "Euclásio", + it: "Euclasio", + de: "Euklas" + }, + + effect: { + en: "Knock Out 1 of your opponent's Pokémon that has exactly 6 damage counters on it.", + fr: "Mettez K.O. l'un des Pokémon de votre adversaire ayant exactement 6 marqueurs de dégâts.", + es: "Deja Fuera de Combate a 1 de los Pokémon de tu rival que tenga exactamente 6 contadores de daño sobre él.", + pt: "Nocauteie 1 dos Pokémon do seu oponente que tiver exatamente 6 contadores de dano nele.", + it: "Metti KO uno dei Pokémon del tuo avversario che ha esattamente sei segnalini danno.", + de: "Mache 1 Pokémon deines Gegners, auf dem genau 6 Schadensmarken liegen, kampfunfähig." + } + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/151.ts b/data/Scarlet & Violet/Prismatic Evolutions/151.ts new file mode 100644 index 000000000..2af54ab6c --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/151.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Palafin ex", + fr: "Superdofin-ex", + es: "Palafin ex", + pt: "Palafin ex", + it: "Palafin-ex", + de: "Delfinator-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 340, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Hero's Spirit", + fr: "Âme Héroïque", + es: "Espíritu Heroico", + pt: "Espírito de Herói", + it: "Spirito dell'Eroe", + de: "Superheldenmut" + }, + + effect: { + en: "Put this Pokémon into play only with the effect of Palafin's Zero to Hero Ability.", + fr: "Ce Pokémon ne peut être mis en jeu que par l'effet du talent Supermutation de Superdofin.", + es: "Pon este Pokémon en juego solo con el efecto de la habilidad Cambio Heroico de Palafin.", + pt: "Coloque este Pokémon em jogo somente com o efeito da Habilidade Do Abismo ao Heroísmo de Palafin.", + it: "Metti questo Pokémon in gioco solo per effetto dell'abilità Supercambio di Palafin.", + de: "Bringe dieses Pokémon nur mit dem Effekt von Delfinators Fähigkeit Superwechsel ins Spiel." + } + }], + + attacks: [{ + cost: ["Water"], + + name: { + en: "Giga Impact", + fr: "Giga Impact", + es: "Gigaimpacto", + pt: "Gigaimpacto", + it: "Gigaimpatto", + de: "Gigastoß" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 250 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/152.ts b/data/Scarlet & Violet/Prismatic Evolutions/152.ts new file mode 100644 index 000000000..4ea0276c4 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/152.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Wellspring Mask Ogerpon ex", + fr: "Ogerpon Masque du Puits-ex", + es: "Ogerpon Máscara Fuente ex", + pt: "Ogerpon Máscara Nascente ex", + it: "Ogerpon Maschera Pozzo-ex", + de: "Brunnenmaske-Ogerpon-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 210, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Sob", + fr: "Pleurs", + es: "Sollozar", + pt: "Chora Mais", + it: "Pianto", + de: "Schluchzer" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 20 + }, { + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Torrential Pump", + fr: "Pompe Torrentielle", + es: "Bomba Torrencial", + pt: "Jato Torrencial", + it: "Pompa Torrenziale", + de: "Sintflutpumpe" + }, + + effect: { + en: "You may shuffle 3 Energy attached to this Pokémon into your deck. If you do, this attack also does 120 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Vous pouvez mélanger 3 Énergies attachées à ce Pokémon avec votre deck. Dans ce cas, cette attaque inflige 120 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Puedes poner 3 Energías unidas a este Pokémon en tu baraja y barajar todas las cartas. Si lo haces, este ataque también hace 120 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + pt: "Você pode embaralhar 3 Energias ligadas a este Pokémon no seu baralho. Se fizer isto, este ataque também causará 120 pontos de dano a 1 dos Pokémon no Banco do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + it: "Puoi rimischiare tre Energie assegnate a questo Pokémon nel tuo mazzo. Se lo fai, questo attacco infligge anche 120 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + de: "Du kannst 3 an dieses Pokémon angelegte Energien in dein Deck mischen. Wenn du das machst, fügt diese Attacke auch 1 Pokémon auf der Bank deines Gegners 120 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 100 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/153.ts b/data/Scarlet & Violet/Prismatic Evolutions/153.ts new file mode 100644 index 000000000..a5aa5cc87 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/153.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Jolteon ex", + fr: "Voltali-ex", + es: "Jolteon ex", + pt: "Jolteon ex", + it: "Jolteon-ex", + de: "Blitza-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Flashing Spear", + fr: "Lance Aveuglante", + es: "Lanza Reluciente", + pt: "Lança Lampejante", + it: "Lancia Abbagliante", + de: "Leuchtender Speer" + }, + + effect: { + en: "You may discard up to 2 Basic Energy from your Benched Pokémon. This attack does 90 more damage for each card you discarded in this way.", + fr: "Vous pouvez défausser jusqu'à 2 Énergies de base de vos Pokémon de Banc. Cette attaque inflige 90 dégâts supplémentaires pour chaque carte défaussée de cette façon.", + es: "Puedes descartar hasta 2 Energías Básicas de tus Pokémon en Banca. Este ataque hace 90 puntos de daño más por cada carta que hayas descartado de esta manera.", + pt: "Você pode descartar até 2 Energias Básicas dos seus Pokémon no Banco. Este ataque causa 90 pontos de dano a mais para cada carta descartada desta forma.", + it: "Puoi scartare fino a due Energie base dai tuoi Pokémon in panchina. Questo attacco infligge 90 danni in più per ogni carta che hai scartato in questo modo.", + de: "Du kannst bis zu 2 Basis-Energien von Pokémon auf deiner Bank auf deinen Ablagestapel legen. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 90 Schadenspunkte mehr zu." + }, + + damage: "60+" + }, { + cost: ["Fire", "Water", "Lightning"], + + name: { + en: "Dravite", + fr: "Dravite", + es: "Dravita", + pt: "Dravita", + it: "Dravite", + de: "Dravit" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 280 + }], + + retreat: 0, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/154.ts b/data/Scarlet & Violet/Prismatic Evolutions/154.ts new file mode 100644 index 000000000..65b08ddac --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/154.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Iron Hands ex", + fr: "Paume-de-Fer-ex", + es: "Ferropalmas ex", + pt: "Mãos Férreas ex", + it: "Manoferrea-ex", + de: "Eisenhand-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 230, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Arm Press", + fr: "Pression des Bras", + es: "Prensa de Brazo", + pt: "Compressão de Braço", + it: "Pressabraccio", + de: "Armpresse" + }, + + damage: 160 + }, { + cost: ["Lightning", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Amp You Very Much", + fr: "Multi Beaucoup", + es: "Gracias Amplificadas", + pt: "Gratiluz", + it: "Mille Volt Grazie", + de: "Amplifizierter Dank" + }, + + effect: { + en: "If your opponent's Pokémon is Knocked Out by damage from this attack, take 1 more Prize card.", + fr: "Si le Pokémon de votre adversaire est mis K.O. par les dégâts de cette attaque, récupérez une carte Récompense supplémentaire.", + es: "Si un Pokémon de tu rival queda Fuera de Combate por el daño de este ataque, coge 1 carta de Premio más.", + pt: "Se o Pokémon do seu oponente for Nocauteado pelo dano deste ataque, pegue 1 carta de Prêmio a mais.", + it: "Se un Pokémon del tuo avversario viene messo KO dai danni di questo attacco, prendi una carta Premio in più.", + de: "Wenn das Pokémon deines Gegners durch Schaden dieser Attacke kampfunfähig wird, nimm 1 Preiskarte mehr." + }, + + damage: 120 + }], + + retreat: 4, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/155.ts b/data/Scarlet & Violet/Prismatic Evolutions/155.ts new file mode 100644 index 000000000..814a3f9b6 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/155.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Espeon ex", + fr: "Mentali-ex", + es: "Espeon ex", + pt: "Espeon ex", + it: "Espeon-ex", + de: "Psiana-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 270, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Psych Out", + fr: "Déstabilisation", + es: "Psicointimidación", + pt: "Intimidar", + it: "Intimidazione", + de: "Nervös machen" + }, + + effect: { + en: "Discard a random card from your opponent's hand.", + fr: "Défaussez au hasard une carte de la main de votre adversaire.", + es: "Descarta 1 carta aleatoria de la mano de tu rival.", + pt: "Descarte uma carta aleatória da mão do seu oponente.", + it: "Scarta una carta a caso dalla mano del tuo avversario.", + de: "Lege 1 zufällige Karte aus der Hand deines Gegners auf seinen Ablagestapel." + }, + + damage: 160 + }, { + cost: ["Grass", "Psychic", "Darkness"], + + name: { + en: "Amazez", + fr: "Améthyste Chevron", + es: "Azeztulita", + pt: "Cacoxenita", + it: "Ametista Chevron", + de: "Amazez" + }, + + effect: { + en: "Devolve each of your opponent's evolved Pokémon by shuffling the highest Stage Evolution card on it into your opponent's deck.", + fr: "Faites dés-évoluer chacun des Pokémon évolués de votre adversaire en mélangeant avec le deck de votre adversaire la carte Évolution la plus élevée placée sur ceux-ci.", + es: "Haz involucionar a cada uno de los Pokémon evolucionados de tu rival poniendo la carta de Evolución de fase más alta que tengan sobre ellos en la baraja de tu rival, y barájalas todas.", + pt: "Reverta a evolução de cada um dos Pokémon evoluídos do seu oponente embaralhando a carta de Evolução de Estágio mais alto sobre ele no baralho do seu oponente.", + it: "Annulla l'evoluzione di ciascuno dei Pokémon evoluti del tuo avversario rimischiando la carta Evoluzione di fase più alta presente su di esso nel mazzo del tuo avversario.", + de: "Rückentwickle jedes entwickelte Pokémon deines Gegners, indem du deinem Gegner die Karte mit der höchsten Entwicklungsphase in sein Deck mischst." + } + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/156.ts b/data/Scarlet & Violet/Prismatic Evolutions/156.ts new file mode 100644 index 000000000..e4215e423 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/156.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Sylveon ex", + fr: "Nymphali-ex", + es: "Sylveon ex", + pt: "Sylveon ex", + it: "Sylveon-ex", + de: "Feelinara-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 270, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Magical Charm", + fr: "Fascination Magique", + es: "Encanto Mágico", + pt: "Encanto Mágico", + it: "Fascino Magico", + de: "Magischer Charme" + }, + + effect: { + en: "During your opponent's next turn, attacks used by the Defending Pokémon do 100 less damage (before applying Weakness and Resistance).", + fr: "Pendant le prochain tour de votre adversaire, les attaques utilisées par le Pokémon Défenseur infligent 100 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 usados por el Pokémon Defensor hacen 100 puntos de daño menos (antes de aplicar Debilidad y Resistencia).", + pt: "Durante o próximo turno do seu oponente, os ataques usados pelo Pokémon Defensor causarão 100 pontos de dano a menos (antes de aplicar Fraqueza e Resistência).", + it: "Durante il prossimo turno del tuo avversario, gli attacchi usati dal Pokémon difensore infliggono 100 danni in meno, prima di aver applicato debolezza e resistenza.", + de: "Während des nächsten Zuges deines Gegners fügen die vom Verteidigenden Pokémon eingesetzten Attacken 100 Schadenspunkte weniger zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + damage: 160 + }, { + cost: ["Water", "Lightning", "Psychic"], + + name: { + en: "Angelite", + fr: "Angélite", + es: "Angelita", + pt: "Angelita", + it: "Angelite", + de: "Angelit" + }, + + effect: { + en: "Choose 2 of your opponent's Benched Pokémon. Shuffle those Pokémon and all attached cards into your opponent's deck. If 1 of your Pokémon used Angelite during your last turn, this attack can't be used.", + fr: "Choisissez 2 des Pokémon de Banc de votre adversaire. Mélangez avec son deck ces Pokémon-là et toutes les cartes qui leur sont attachées. Si l'un de vos Pokémon a utilisé Angélite pendant votre dernier tour, cette attaque ne peut pas être utilisée.", + es: "Elige 2 de los Pokémon en Banca de tu rival. Pon esos Pokémon y todas las cartas unidas a ellos en la baraja de tu rival y barájalas todas. Si uno de tus Pokémon usó Angelita durante tu último turno, este ataque no se puede usar.", + pt: "Escolha 2 dos Pokémon no Banco do seu oponente. Embaralhe aqueles Pokémon e todas as cartas ligadas a eles no baralho do seu oponente. Se 1 dos seus Pokémon usou Angelita durante o seu último turno, este ataque não poderá ser usado.", + it: "Scegli due dei Pokémon nella panchina del tuo avversario. Rimischia quei Pokémon e tutte le carte a essi assegnate nel suo mazzo. Se uno dei tuoi Pokémon ha usato Angelite durante il tuo ultimo turno, questo attacco non può essere usato.", + de: "Wähle 2 Pokémon auf der Bank deines Gegners. Mische jene Pokémon und alle angelegten Karten in das Deck deines Gegners. Wenn 1 deiner Pokémon während deines letzten Zuges Angelit eingesetzt hat, kann diese Attacke nicht eingesetzt werden." + } + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/157.ts b/data/Scarlet & Violet/Prismatic Evolutions/157.ts new file mode 100644 index 000000000..3d0731cf6 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/157.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Iron Valiant ex", + fr: "Garde-de-Fer-ex", + es: "Ferropaladín ex", + pt: "Valentia Férrea ex", + it: "Eroeferreo-ex", + de: "Eisenkrieger-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 220, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Tachyon Bits", + fr: "Particules de Tachyon", + es: "Partículas Taquiónicas", + pt: "Fragmentos Taquiônicos", + it: "Particelle Tachioniche", + de: "Tachyonen-Teilchen" + }, + + effect: { + en: "Once during your turn, when this Pokémon moves from your Bench to the Active Spot, you may put 2 damage counters on 1 of your opponent's Pokémon.", + fr: "Une fois pendant votre tour, lorsque ce Pokémon se déplace de votre Banc vers le Poste Actif, vous pouvez placer 2 marqueurs de dégâts sur l'un des Pokémon de votre adversaire.", + es: "Una vez durante tu turno, cuando este Pokémon se mueve de tu Banca al Puesto Activo, puedes poner 2 contadores de daño en uno de los Pokémon de tu rival.", + pt: "Uma vez durante o seu turno, quando este Pokémon for movido do seu Banco para o Campo Ativo, você poderá colocar 2 contadores de dano em 1 dos Pokémon do seu oponente.", + it: "Una sola volta durante il tuo turno, quando questo Pokémon si sposta dalla tua panchina in posizione attiva, puoi mettere due segnalini danno su uno dei Pokémon del tuo avversario.", + de: "Einmal während deines Zuges, wenn dieses Pokémon von deiner Bank in die Aktive Position wechselt, kannst du 2 Schadensmarken auf 1 Pokémon deines Gegners legen." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Laser Blade", + fr: "Lame Laser", + es: "Cuchilla Láser", + pt: "Espada Laser", + it: "Lamalaser", + de: "Laserklinge" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 200 + }], + + retreat: 2, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/158.ts b/data/Scarlet & Violet/Prismatic Evolutions/158.ts new file mode 100644 index 000000000..f4669ab0f --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/158.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Iron Crown ex", + fr: "Chef-de-Fer-ex", + es: "Ferrotesta ex", + pt: "Chifres Férreos ex", + it: "Capoferreo-ex", + de: "Eisenhaupt-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 220, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Cobalt Command", + fr: "Ordre Cobalt", + es: "Orden Cobalto", + pt: "Comando de Cobalto", + it: "Cobalcomando", + de: "Kobaltbefehl" + }, + + effect: { + en: "Attacks used by your Future Pokémon, except any Iron Crown ex, do 20 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).", + fr: "Les attaques utilisées par vos Pokémon Temps futur, à l'exception de Chef-de-Fer-ex, infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Los ataques usados por tus Pokémon del futuro, excepto los de Ferrotesta ex, hacen 20 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + pt: "Os ataques usados pelos seus Pokémon Futuristas, exceto por quaisquer Chifres Férreos ex, causam 20 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + it: "Gli attacchi usati dai tuoi Pokémon Tempo Futuro, a eccezione di qualsiasi Capoferreo-ex, infliggono 20 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + de: "Attacken, die von deinen Pokémon aus der Zukunft, außer Eisenhaupt-ex, eingesetzt werden, fügen dem Aktiven Pokémon deines Gegners 20 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Twin Shotels", + fr: "Shotel Double", + es: "Shotel Gemelas", + pt: "Espadas Gêmeas", + it: "Doppio Shotel", + de: "Zwillings-Shotel" + }, + + effect: { + en: "This attack does 50 damage to 2 of your opponent's Pokémon. This attack's damage isn't affected by Weakness or Resistance, or by any effects on those Pokémon.", + fr: "Cette attaque inflige 50 dégâts à 2 des Pokémon de votre adversaire. Ces dégâts ne sont pas affectés par la Faiblesse, la Résistance ou tout effet en action sur ces Pokémon.", + es: "Este ataque hace 50 puntos de daño a 2 de los Pokémon de tu rival. El daño de este ataque no se ve afectado por Debilidad o Resistencia, ni por ningún efecto en esos Pokémon.", + pt: "Este ataque causa 50 pontos de dano a 2 dos Pokémon do seu oponente. O dano deste ataque não é afetado por Fraqueza, Resistência ou por quaisquer efeitos naqueles Pokémon.", + it: "Questo attacco infligge 50 danni a due dei Pokémon del tuo avversario. I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza, o da alcun effetto presente su quei Pokémon.", + de: "Diese Attacke fügt 2 Pokémon deines Gegners 50 Schadenspunkte zu. Der Schaden dieser Attacke wird durch Schwäche, Resistenz oder Effekte auf jenen Pokémon nicht verändert." + } + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/159.ts b/data/Scarlet & Violet/Prismatic Evolutions/159.ts new file mode 100644 index 000000000..b2f039281 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/159.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Sandy Shocks ex", + fr: "Pelage-Sablé-ex", + es: "Pelarena ex", + pt: "Choque Areia ex", + it: "Peldisabbia-ex", + de: "Sandfell-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 220, + types: ["Fighting"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Magnetic Absorption", + fr: "Absorption Magnétique", + es: "Absorción Magnética", + pt: "Absorção Magnética", + it: "Assorbimento Magnetico", + de: "Magnetische Absorption" + }, + + effect: { + en: "Once during your turn, if your opponent has 4 or fewer Prize cards remaining, you may attach a Basic Fighting Energy card from your discard pile to this Pokémon.", + fr: "Une fois pendant votre tour, s'il reste 4 cartes Récompense ou moins à votre adversaire, vous pouvez attacher une carte Énergie Fighting de base de votre pile de défausse à ce Pokémon.", + es: "Una vez durante tu turno, si a tu rival le quedan 4 cartas de Premio o menos, puedes unir 1 carta de Energía Fighting Básica de tu pila de descartes a este Pokémon.", + pt: "Uma vez durante o seu turno, se o seu oponente tiver 4 ou menos cartas de Prêmio restantes, você poderá ligar uma carta de Energia Fighting Básica da sua pilha de descarte a este Pokémon.", + it: "Una sola volta durante il tuo turno, se il tuo avversario ha quattro o meno carte Premio rimanenti, puoi assegnare a questo Pokémon una carta Energia base Fighting dalla tua pila degli scarti.", + de: "Einmal während deines Zuges, wenn dein Gegner 4 oder weniger verbleibende Preiskarten hat, kannst du 1 Basis-Fighting-Energiekarte aus deinem Ablagestapel an dieses Pokémon anlegen." + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Earthen Spike", + fr: "Piquant Terrestre", + es: "Púas Terrestres", + pt: "Espinho Terrestre", + it: "Terrapunta", + de: "Irdendorn" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 200 + }], + + retreat: 2, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/160.ts b/data/Scarlet & Violet/Prismatic Evolutions/160.ts new file mode 100644 index 000000000..48e1e0d38 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/160.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Cornerstone Mask Ogerpon ex", + fr: "Ogerpon Masque de la Pierre-ex", + es: "Ogerpon Máscara Cimiento ex", + pt: "Ogerpon Máscara Alicerce ex", + it: "Ogerpon Maschera Fondamenta-ex", + de: "Fundamentmaske-Ogerpon-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 210, + types: ["Fighting"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Cornerstone Stance", + fr: "Posture de la Pierre", + es: "Posición Cimiento", + pt: "Postura de Alicerce", + it: "Posa Fondamenta", + de: "Fundamentabwehr" + }, + + effect: { + en: "Prevent all damage from attacks done to this Pokémon by your opponent's Pokémon that have an Ability.", + fr: "Évitez tous les dégâts d'attaques infligés à ce Pokémon par les Pokémon de votre adversaire ayant un talent.", + es: "Se evita todo el daño infligido a este Pokémon por ataques de los Pokémon de tu rival que tengan una habilidad.", + pt: "Previna todo o dano de ataques causado a este Pokémon pelos Pokémon do seu oponente que têm uma Habilidade.", + it: "Previeni tutti i danni degli attacchi inflitti a questo Pokémon dai Pokémon del tuo avversario che hanno un'abilità.", + de: "Verhindere allen Schaden, der diesem Pokémon durch Attacken von Pokémon deines Gegners, die eine Fähigkeit haben, zugefügt wird." + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Demolish", + fr: "Démolition", + es: "Derruir", + pt: "Demolir", + it: "Demolire", + de: "Demolieren" + }, + + effect: { + en: "This attack's damage isn't affected by Weakness or Resistance, or by any effects on your opponent's Active Pokémon.", + fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout effet en action sur le Pokémon Actif de votre adversaire.", + es: "El daño de este ataque no se ve afectado por Debilidad o Resistencia, ni por ningún efecto en el Pokémon Activo de tu rival.", + pt: "O dano deste ataque não é afetado por Fraqueza ou Resistência, ou por quaisquer efeitos no Pokémon Ativo do seu oponente.", + it: "I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza, o da alcun effetto presente sul Pokémon attivo del tuo avversario.", + de: "Der Schaden dieser Attacke wird durch Schwäche, Resistenz oder Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert." + }, + + damage: 140 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/161.ts b/data/Scarlet & Violet/Prismatic Evolutions/161.ts new file mode 100644 index 000000000..f24fe6282 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/161.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Umbreon ex", + fr: "Noctali-ex", + es: "Umbreon ex", + pt: "Umbreon ex", + it: "Umbreon-ex", + de: "Nachtara-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 280, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Moon Mirage", + fr: "Mirage Lunaire", + es: "Espejismo Lunar", + pt: "Miragem Lunar", + it: "Miraggio Lunare", + de: "Mondillusion" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso.", + it: "Il Pokémon attivo del tuo avversario viene confuso.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt." + }, + + damage: 160 + }, { + cost: ["Lightning", "Psychic", "Darkness"], + + name: { + en: "Onyx", + fr: "Onyx", + es: "Ónice", + pt: "Ônix", + it: "Onice", + de: "Onyx" + }, + + effect: { + en: "Discard all Energy from this Pokémon, and take a Prize card.", + fr: "Défaussez toutes les Énergies attachées à ce Pokémon, puis récupérez une carte Récompense.", + es: "Descarta todas las Energías de este Pokémon y coge 1 carta de Premio.", + pt: "Descarte todas as Energias deste Pokémon e pegue uma carta de Prêmio.", + it: "Scarta tutte le Energie da questo Pokémon e prendi una carta Premio.", + de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel und nimm 1 Preiskarte." + } + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/162.ts b/data/Scarlet & Violet/Prismatic Evolutions/162.ts new file mode 100644 index 000000000..e7fb0abae --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/162.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Roaring Moon ex", + fr: "Rugit-Lune-ex", + es: "Bramaluna ex", + pt: "Lua Estrondo ex", + it: "Lunaruggente-ex", + de: "Donnersichel-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 230, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Frenzied Gouging", + fr: "Percée Frénétique", + es: "Excavación Frenética", + pt: "Arrancada Frenética", + it: "Frenesquarcio", + de: "Fieberhaftes Ausstechen" + }, + + effect: { + en: "Knock Out your opponent's Active Pokémon. If your opponent's Active Pokémon is Knocked Out in this way, this Pokémon does 200 damage to itself.", + fr: "Mettez K.O. le Pokémon Actif de votre adversaire. Si le Pokémon Actif de votre adversaire est mis K.O. de cette façon, ce Pokémon s'inflige 200 dégâts.", + es: "Deja Fuera de Combate al Pokémon Activo de tu rival. Si el Pokémon Activo de tu rival queda Fuera de Combate de esta manera, este Pokémon se hace 200 puntos de daño a sí mismo.", + pt: "Nocauteie o Pokémon Ativo do seu oponente. Se o Pokémon Ativo do seu oponente tiver sido Nocauteado desta forma, este Pokémon causará 200 pontos de dano a si mesmo.", + it: "Metti KO il Pokémon attivo del tuo avversario. Se il Pokémon attivo del tuo avversario viene messo KO in questo modo, questo Pokémon infligge 200 danni a se stesso.", + de: "Mache das Aktive Pokémon deines Gegners kampfunfähig. Wenn das Aktive Pokémon deines Gegners auf diese Weise kampfunfähig wird, fügt dieses Pokémon sich selbst 200 Schadenspunkte zu." + } + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Calamity Storm", + fr: "Tempête Calamiteuse", + es: "Tormenta Calamitosa", + pt: "Tempestade Calamitosa", + it: "Tempesta Disastrosa", + de: "Unheilvoller Sturm" + }, + + effect: { + en: "You may discard a Stadium in play. If you do, this attack does 120 more damage.", + fr: "Vous pouvez défausser un Stade en jeu. Dans ce cas, cette attaque inflige 120 dégâts supplémentaires.", + es: "Puedes descartar 1 Estadio en juego. Si lo haces, este ataque hace 120 puntos de daño más.", + pt: "Você pode descartar um Estádio em jogo. Se fizer isto, este ataque causará 120 pontos de dano a mais.", + it: "Puoi scartare una carta Stadio in gioco. Se lo fai, questo attacco infligge 120 danni in più.", + de: "Du kannst 1 Stadionkarte im Spiel auf den Ablagestapel legen. Wenn du das machst, fügt diese Attacke 120 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 2, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/163.ts b/data/Scarlet & Violet/Prismatic Evolutions/163.ts new file mode 100644 index 000000000..d50b0a3be --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/163.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Pecharunt ex", + fr: "Pêchaminus-ex", + es: "Pecharunt ex", + pt: "Pecharunt ex", + it: "Pecharunt-ex", + de: "Infamomo-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 190, + types: ["Darkness"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Subjugating Chains", + fr: "Chaînes Emprise", + es: "Cadenas Controladoras", + pt: "Correntes da Submissão", + it: "Catene Dominanti", + de: "Knechtende Ketten" + }, + + effect: { + en: "Once during your turn, you may switch 1 of your Benched Darkness Pokémon, except any Pecharunt ex, with your Active Pokémon. If you do, the new Active Pokémon is now Poisoned. You can't use more than 1 Subjugating Chains Ability each turn.", + fr: "Une fois pendant votre tour, vous pouvez échanger l'un de vos Pokémon Darkness de Banc, à l'exception de Pêchaminus-ex, contre votre Pokémon Actif. Dans ce cas, le nouveau Pokémon Actif est maintenant Empoisonné. Vous ne pouvez utiliser qu'un talent Chaînes Emprise par tour.", + es: "Una vez durante tu turno, puedes cambiar 1 de tus Pokémon Darkness en Banca, excepto Pecharunt ex, por tu Pokémon Activo. Si lo haces, el nuevo Pokémon Activo pasa a estar Envenenado. No puedes usar más de una habilidad Cadenas Controladoras en cada turno.", + pt: "Uma vez durante o seu turno, você poderá trocar 1 dos seus Pokémon Darkness no Banco, exceto por quaisquer Pecharunt ex, pelo seu Pokémon Ativo. Se fizer isto, o novo Pokémon Ativo agora estará Envenenado. Você não pode usar mais de 1 Habilidade Correntes da Submissão por turno.", + it: "Una sola volta durante il tuo turno, puoi scambiare uno dei tuoi Pokémon Darkness in panchina, a eccezione di qualsiasi Pecharunt-ex, con il tuo Pokémon attivo. Se lo fai, il nuovo Pokémon attivo viene avvelenato. Puoi usare l'abilità Catene Dominanti solo una volta per turno.", + de: "Einmal während deines Zuges kannst du 1 Darkness-Pokémon auf deiner Bank, außer Infamomo-ex, gegen dein Aktives Pokémon austauschen. Wenn du das machst, ist das neue Aktive Pokémon jetzt vergiftet. Du kannst die Fähigkeit Knechtende Ketten nur einmal pro Zug einsetzen." + } + }], + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + en: "Irritated Outburst", + fr: "Emportement Agacé", + es: "Estallido de Rabia", + pt: "Chilique", + it: "Irritascoppio", + de: "Erboster Ausraster" + }, + + effect: { + en: "This attack does 60 damage for each Prize card your opponent has taken.", + fr: "Cette attaque inflige 60 dégâts pour chaque carte Récompense que votre adversaire a récupérée.", + es: "Este ataque hace 60 puntos de daño por cada carta de Premio que haya cogido tu rival.", + pt: "Este ataque causa 60 pontos de dano para cada carta de Prêmio que seu oponente pegou.", + it: "Questo attacco infligge 60 danni per ogni carta Premio presa dal tuo avversario.", + de: "Diese Attacke fügt für jede von deinem Gegner genommene Preiskarte 60 Schadenspunkte zu." + }, + + damage: "60×" + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/164.ts b/data/Scarlet & Violet/Prismatic Evolutions/164.ts new file mode 100644 index 000000000..ba54d778f --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/164.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Gholdengo ex", + fr: "Gromago-ex", + es: "Gholdengo ex", + pt: "Gholdengo ex", + it: "Gholdengo-ex", + de: "Monetigo-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 260, + types: ["Metal"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Coin Bonus", + fr: "Bonus de Pièces", + es: "Moneda de Regalo", + pt: "Bônus de Moedas", + it: "Monete Bonus", + de: "Münzbonus" + }, + + effect: { + en: "Once during your turn, you may draw a card. If this Pokémon is in the Active Spot, draw 1 more card.", + fr: "Une fois pendant votre tour, vous pouvez piocher une carte. Si ce Pokémon est sur le Poste Actif, piochez une carte supplémentaire.", + es: "Una vez durante tu turno, puedes robar 1 carta. Si este Pokémon está en el Puesto Activo, roba 1 carta más.", + pt: "Uma vez durante o seu turno, você poderá comprar uma carta. Se este Pokémon estiver no Campo Ativo, compre 1 carta a mais.", + it: "Una sola volta durante il tuo turno, puoi pescare una carta. Se questo Pokémon è in posizione attiva, pesca un'altra carta.", + de: "Einmal während deines Zuges kannst du 1 Karte ziehen. Wenn dieses Pokémon in der Aktiven Position ist, ziehe 1 Karte mehr." + } + }], + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Make It Rain", + fr: "Ruée d'Or", + es: "Fiebre Dorada", + pt: "Chuva de Dinheiro", + it: "Corsa all'Oro", + de: "Goldrausch" + }, + + effect: { + en: "Discard any number of Basic Energy cards from your hand. This attack does 50 damage for each card you discarded in this way.", + fr: "Défaussez de votre main le nombre voulu de cartes Énergie de base. Cette attaque inflige 50 dégâts pour chaque carte défaussée de cette façon.", + es: "Descarta cualquier cantidad de cartas de Energía Básica de tu mano. Este ataque hace 50 puntos de daño por cada carta que hayas descartado de esta manera.", + pt: "Descarte qualquer número de cartas de Energia Básica da sua mão. Este ataque causa 50 pontos de dano para cada carta descartada desta forma.", + it: "Scarta un numero qualsiasi di carte Energia base dalla tua mano. Questo attacco infligge 50 danni per ogni carta che hai scartato in questo modo.", + de: "Lege beliebig viele Basis-Energiekarten aus deiner Hand auf deinen Ablagestapel. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 50 Schadenspunkte zu." + }, + + damage: "50×" + }], + + retreat: 2, + regulationMark: "G", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/165.ts b/data/Scarlet & Violet/Prismatic Evolutions/165.ts new file mode 100644 index 000000000..9299e837c --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/165.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Dragapult ex", + fr: "Lanssorien-ex", + es: "Dragapult ex", + pt: "Dragapult ex", + it: "Dragapult-ex", + de: "Katapuldra-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 320, + types: ["Dragon"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Jet Headbutt", + fr: "Bélier Volant", + es: "Turbocabezazo", + pt: "Cabeçada a Jato", + it: "Zuccata Jet", + de: "Flinke Kopfnuss" + }, + + damage: 70 + }, { + cost: ["Fire", "Psychic"], + + name: { + en: "Phantom Dive", + fr: "Plongée Fantôme", + es: "Picado Fantasma", + pt: "Mergulho Fantasma", + it: "Picchiata Spettrale", + de: "Phantomsturzflug" + }, + + effect: { + en: "Put 6 damage counters on your opponent's Benched Pokémon in any way you like.", + fr: "Placez 6 marqueurs de dégâts sur les Pokémon de Banc de votre adversaire comme il vous plaît.", + es: "Pon 6 contadores de daño en los Pokémon en Banca de tu rival de la manera que desees.", + pt: "Coloque 6 contadores de dano nos Pokémon no Banco do seu oponente como desejar.", + it: "Metti sei segnalini danno sui Pokémon nella panchina del tuo avversario nel modo che preferisci.", + de: "Lege 6 Schadensmarken beliebig auf die Pokémon auf der Bank deines Gegners." + }, + + damage: 200 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/166.ts b/data/Scarlet & Violet/Prismatic Evolutions/166.ts new file mode 100644 index 000000000..462ab72d5 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/166.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Raging Bolt ex", + fr: "Ire-Foudre-ex", + es: "Electrofuria ex", + pt: "Raio Fúria ex", + it: "Furiatonante-ex", + de: "Furienblitz-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 240, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Burst Roar", + fr: "Rugissement Éclatant", + es: "Rugido Explosivo", + pt: "Rugido Disruptivo", + it: "Boatoscoppio", + de: "Berstender Brüller" + }, + + effect: { + en: "Discard your hand and draw 6 cards.", + fr: "Défaussez votre main, puis piochez 6 cartes.", + es: "Descarta las cartas de tu mano y roba 6 cartas.", + pt: "Descarte a sua mão e compre 6 cartas.", + it: "Scarta le carte che hai in mano e pesca sei carte.", + de: "Lege deine Handkarten auf deinen Ablagestapel und ziehe 6 Karten." + } + }, { + cost: ["Lightning", "Fighting"], + + name: { + en: "Bellowing Thunder", + fr: "Tonnerre Rugissant", + es: "Bramido Atronador", + pt: "Trovão Estrondoso", + it: "Fragortuono", + de: "Kläffender Donner" + }, + + effect: { + en: "You may discard any amount of Basic Energy from your Pokémon. This attack does 70 damage for each card you discarded in this way.", + fr: "Vous pouvez défausser autant d'Énergies de base que vous le voulez de vos Pokémon. Cette attaque inflige 70 dégâts pour chaque carte défaussée de cette façon.", + es: "Puedes descartar cualquier cantidad de Energías Básicas de tus Pokémon. Este ataque hace 70 puntos de daño por cada carta que hayas descartado de esta manera.", + pt: "Você pode descartar qualquer quantidade de Energia Básica dos seus Pokémon. Este ataque causa 70 pontos de dano para cada carta descartada desta forma.", + it: "Puoi scartare tutte le Energie base che vuoi dai tuoi Pokémon. Questo attacco infligge 70 danni per ogni carta che hai scartato in questo modo.", + de: "Du kannst beliebig viele Basis-Energien von deinen Pokémon auf deinen Ablagestapel legen. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 70 Schadenspunkte zu." + }, + + damage: "70×" + }], + + retreat: 3, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/167.ts b/data/Scarlet & Violet/Prismatic Evolutions/167.ts new file mode 100644 index 000000000..3a39be286 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/167.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Eevee ex", + fr: "Évoli-ex", + es: "Eevee ex", + pt: "Eevee ex", + it: "Eevee-ex", + de: "Evoli-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 200, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Rainbow DNA", + fr: "ADN Arc-en-Ciel", + es: "ADN Arcoíris", + pt: "DNA Arco-íris", + it: "DNA Arcobaleno", + de: "Regenbogen-DNA" + }, + + effect: { + en: "This Pokémon can evolve into any Pokémon ex that evolves from Eevee if you play it from your hand onto this Pokémon. (This Pokémon can't evolve during your first turn or the turn you play it.)", + fr: "Ce Pokémon peut évoluer en n'importe quel Pokémon-ex qui évolue d'Évoli, si vous le jouez de votre main sur ce Pokémon. (Ce Pokémon ne peut pas évoluer pendant votre premier tour ou pendant le tour où vous le jouez.)", + es: "Este Pokémon puede evolucionar a cualquier Pokémon ex que evolucione de Eevee si pones en juego ese Pokémon ex sobre este Pokémon desde tu mano. (Este Pokémon no puede evolucionar durante tu primer turno ni durante el turno en que lo pongas en juego).", + pt: "Este Pokémon poderá evoluir para qualquer Pokémon ex que evolua de Eevee se você jogar aquele Pokémon ex da sua mão sobre este Pokémon. (Este Pokémon não poderá evoluir durante o seu primeiro turno ou durante o turno em que for colocado em jogo.)", + it: "Questo Pokémon può evolversi in qualsiasi Pokémon-ex che si evolve da Eevee, se giochi quel Pokémon-ex dalla tua mano mettendolo sopra questo Pokémon. Questo Pokémon non può evolversi durante il tuo primo turno o il turno in cui lo giochi.", + de: "Dieses Pokémon kann sich zu einem beliebigen Pokémon-ex entwickeln, das sich aus Evoli entwickelt, wenn du es aus deiner Hand auf dieses Pokémon spielst. (Dieses Pokémon kann sich während deines ersten Zuges oder während des Zuges, in dem du es spielst, nicht entwickeln.)" + } + }], + + attacks: [{ + cost: ["Fire", "Water", "Lightning"], + + name: { + en: "Coruscating Quartz", + fr: "Quartz Scintillant", + es: "Cuarzo Brillante", + pt: "Quartzo Cintilante", + it: "Quarzo Scintillante", + de: "Funkelnder Quarz" + }, + + damage: 200 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/168.ts b/data/Scarlet & Violet/Prismatic Evolutions/168.ts new file mode 100644 index 000000000..abdb4cafb --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/168.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Bloodmoon Ursaluna ex", + fr: "Ursaking Lune Vermeille-ex", + es: "Ursaluna Luna Carmesí ex", + pt: "Ursaluna Lua Sangrenta ex", + it: "Ursaluna Luna Cremisi-ex", + de: "Blutmond-Ursaluna-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 260, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Seasoned Skill", + fr: "Compétence Maîtrisée", + es: "Habilidad Demostrada", + pt: "Talento Inato", + it: "Talento Esperto", + de: "Routiniertes Geschick" + }, + + effect: { + en: "Blood Moon used by this Pokémon costs Colorless less for each Prize card your opponent has taken.", + fr: "Lune Rouge utilisée par ce Pokémon coûte Colorless de moins pour chaque carte Récompense que votre adversaire a récupérée.", + es: "El ataque Luna Roja usado por este Pokémon cuesta Colorless menos por cada carta de Premio que haya cogido tu rival.", + pt: "O ataque Luar de Sangue usado por este Pokémon custa Colorless a menos para cada carta de Prêmio que seu oponente pegou.", + it: "Il costo dell'attacco Luna Rossa usato da questo Pokémon è ridotto di Colorless per ogni carta Premio presa dal tuo avversario.", + de: "Die Kosten der von diesem Pokémon eingesetzten Attacke Blutmond verringern sich für jede von deinem Gegner genommene Preiskarte um Colorless." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Blood Moon", + fr: "Lune Rouge", + es: "Luna Roja", + pt: "Luar de Sangue", + it: "Luna Rossa", + de: "Blutmond" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 240 + }], + + retreat: 3, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/169.ts b/data/Scarlet & Violet/Prismatic Evolutions/169.ts new file mode 100644 index 000000000..3185663f8 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/169.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Terapagos ex", + fr: "Terapagos-ex", + es: "Terapagos ex", + pt: "Terapagos ex", + it: "Terapagos-ex", + de: "Terapagos-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Unified Beatdown", + fr: "Dérouillée Groupée", + es: "Golpe Unísono", + pt: "Abater Unificado", + it: "Batosta all'Unisono", + de: "Vereinter Niederprügler" + }, + + effect: { + en: "If you go second, you can't use this attack during your first turn. This attack does 30 damage for each of your Benched Pokémon.", + fr: "Si vous jouez en second, vous ne pouvez pas utiliser cette attaque pendant votre premier tour. Cette attaque inflige 30 dégâts pour chacun de vos Pokémon de Banc.", + es: "Si sales en segundo lugar, no puedes usar este ataque durante tu primer turno. Este ataque hace 30 puntos de daño por cada uno de tus Pokémon en Banca.", + pt: "Se você for o segundo a jogar, você não poderá usar este ataque durante o seu primeiro turno. Este ataque causa 30 pontos de dano para cada um dos seus Pokémon no Banco.", + it: "Se inizi per secondo, non puoi usare questo attacco durante il tuo primo turno. Questo attacco infligge 30 danni per ogni Pokémon nella tua panchina.", + de: "Wenn du als Zweiter am Zug bist, kannst du diese Attacke während deines ersten Zuges nicht einsetzen. Diese Attacke fügt für jedes Pokémon auf deiner Bank 30 Schadenspunkte zu." + }, + + damage: "30×" + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + en: "Crown Opal", + fr: "Couronne Opale", + es: "Ópalo Corona", + pt: "Coroa de Opalas", + it: "Opale della Corona", + de: "Kronen-Opal" + }, + + effect: { + en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic non-Colorless Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon non-Colorless de base.", + es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon no Colorless Básicos.", + pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon Básicos que não sejam de tipo Colorless.", + it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base non di tipo Colorless.", + de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon, die keine Colorless-Pokémon sind, zugefügt wird." + }, + + damage: 180 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/170.ts b/data/Scarlet & Violet/Prismatic Evolutions/170.ts new file mode 100644 index 000000000..342f31350 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/170.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Amarys", + fr: "Nérine", + es: "Nerina", + pt: "Amarílis", + it: "Erin", + de: "Erin" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "Draw 4 cards. At the end of this turn, if you have 5 or more cards in your hand, discard your hand.", + fr: "Piochez 4 cartes. À la fin de ce tour, si vous avez 5 cartes ou plus dans votre main, défaussez votre main.", + es: "Roba 4 cartas. Al final de este turno, si tienes 5 cartas o más en tu mano, descarta las cartas de tu mano.", + pt: "Compre 4 cartas. No final deste turno, se você tiver 5 ou mais cartas na sua mão, descarte a sua mão.", + it: "Pesca quattro carte. Alla fine di questo turno, se hai cinque o più carte in mano, scarta le carte che hai in mano.", + de: "Ziehe 4 Karten. Am Ende dieses Zuges, wenn du 5 oder mehr Karten auf deiner Hand hast, lege deine Handkarten auf deinen Ablagestapel." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/171.ts b/data/Scarlet & Violet/Prismatic Evolutions/171.ts new file mode 100644 index 000000000..63dee4611 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/171.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Crispin", + fr: "Rubépin", + es: "Denis", + pt: "Plínio", + it: "Piros", + de: "Matt" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "Search your deck for up to 2 Basic Energy cards of different types, reveal them, and put 1 of them into your hand. Attach the other to 1 of your Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base de types différents, montrez-les, puis ajoutez l'une d'elles à votre main. Attachez l'autre à l'un de vos Pokémon. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Básica de diferentes tipos, enséñalas y pon 1 de ellas en tu mano. Une la otra a uno de tus Pokémon. Después, baraja las cartas de tu baraja.", + pt: "Procure por até 2 cartas de Energia Básica de tipos diferentes no seu baralho, revele-as e coloque 1 delas na sua mão. Ligue a outra a 1 dos seus Pokémon. Em seguida, embaralhe o seu baralho.", + it: "Cerca nel tuo mazzo fino a due carte Energia base di tipo diverso, mostrale e aggiungine una alle carte che hai in mano. Assegna l'altra a uno dei tuoi Pokémon. Poi rimischia le carte del tuo mazzo.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten verschiedenen Typs, zeige sie deinem Gegner und nimm 1 von ihnen auf deine Hand. Lege die andere an 1 deiner Pokémon an. Mische anschließend dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/172.ts b/data/Scarlet & Violet/Prismatic Evolutions/172.ts new file mode 100644 index 000000000..392d5c658 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/172.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Drayton", + fr: "Irido", + es: "Levi", + pt: "Drayton", + it: "Aris", + de: "Levy" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "Look at the top 7 cards of your deck. You may reveal a Pokémon and a Trainer card you find there and put them into your hand. Shuffle the other cards back into your deck.", + fr: "Regardez les 7 cartes du dessus de votre deck. Vous pouvez montrer un Pokémon et une carte Dresseur que vous y trouvez, puis les ajouter à votre main. Mélangez les autres cartes avec votre deck.", + es: "Mira las 7 primeras cartas de tu baraja. Puedes enseñar 1 Pokémon y 1 carta de Entrenador que encuentres entre ellas y ponerlas en tu mano. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + pt: "Olhe as 7 cartas de cima do seu baralho. Você pode revelar um Pokémon e uma carta de Treinador que encontrar lá e colocá-los na sua mão. Embaralhe as outras cartas de volta no seu baralho.", + it: "Guarda le prime sette carte del tuo mazzo. Puoi mostrare un Pokémon e una carta Allenatore presenti tra esse e aggiungerli alle carte che hai in mano. Poi rimischia le altre carte nel tuo mazzo.", + de: "Schau dir die obersten 7 Karten deines Decks an. Du kannst 1 Pokémon und 1 Trainerkarte, die du dort findest, deinem Gegner zeigen und auf deine Hand nehmen. Mische die anderen Karten zurück in dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/173.ts b/data/Scarlet & Violet/Prismatic Evolutions/173.ts new file mode 100644 index 000000000..4a6103cf8 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/173.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Janine's Secret Art", + fr: "Art Secret de Jeannine", + es: "Artes Secretas de Sachiko", + pt: "Dom Secreto da Janine", + it: "Arte Segreta di Nina", + de: "Janinas Geheimkunst" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "Choose up to 2 of your Darkness Pokémon. For each of those Pokémon, search your deck for a Basic Darkness Energy card and attach it to that Pokémon. Then, shuffle your deck. If you attached Energy to your Active Pokémon in this way, it is now Poisoned.", + fr: "Choisissez jusqu'à 2 de vos Pokémon Darkness. Pour chacun de ces Pokémon, cherchez dans votre deck une carte Énergie Darkness de base, puis attachez-la à ce Pokémon-là. Mélangez ensuite votre deck. Si vous avez attaché de l'Énergie à votre Pokémon Actif de cette façon, celui-ci est maintenant Empoisonné.", + es: "Elige hasta 2 de tus Pokémon Darkness. Para cada uno de esos Pokémon, busca en tu baraja 1 carta de Energía Darkness Básica y únela a ese Pokémon. Después, baraja las cartas de tu baraja. Si has unido Energía a tu Pokémon Activo de esta manera, pasa a estar Envenenado.", + pt: "Escolha até 2 dos seus Pokémon Darkness. Para cada um daqueles Pokémon, procure por uma carta de Energia Darkness Básica no seu baralho e ligue-a àquele Pokémon. Em seguida, embaralhe o seu baralho. Se você ligou Energia ao seu Pokémon Ativo desta forma, ele agora estará Envenenado.", + it: "Scegli fino a due dei tuoi Pokémon Darkness. Per ognuno di essi, cerca nel tuo mazzo una carta Energia base Darkness e assegnala a quel Pokémon. Poi rimischia le carte del tuo mazzo. Se hai assegnato dell'Energia al tuo Pokémon attivo in questo modo, esso viene avvelenato.", + de: "Wähle bis zu 2 deiner Darkness-Pokémon. Durchsuche für jedes jener Pokémon dein Deck nach 1 Basis-Darkness-Energiekarte und lege sie an jenes Pokémon an. Mische anschließend dein Deck. Wenn du auf diese Weise Energie an dein Aktives Pokémon angelegt hast, ist es jetzt vergiftet." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/174.ts b/data/Scarlet & Violet/Prismatic Evolutions/174.ts new file mode 100644 index 000000000..cba1718bd --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/174.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Kieran", + fr: "Kassis", + es: "Cass", + pt: "Kiran", + it: "Riben", + de: "Jo" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "Choose 1:\n\n• Switch your Active Pokémon with 1 of your Benched Pokémon.\n\n• During this turn, attacks used by your Pokémon do 30 more damage to your opponent's Active Pokémon ex and Active Pokémon V (before applying Weakness and Resistance).", + fr: "Choisissez l'une de ces options :\n\n• Échangez votre Pokémon Actif contre l'un de vos Pokémon de Banc.\n• Pendant ce tour, les attaques utilisées par vos Pokémon infligent 30 dégâts supplémentaires aux Pokémon-ex Actifs et aux Pokémon-V Actifs de votre adversaire\n(avant application de la Faiblesse et de la Résistance).", + es: "Elige 1 opción:\n\n• Cambia tu Pokémon Activo por uno de tus Pokémon en Banca.\n• Durante este turno, los ataques usados por tus Pokémon hacen 30 puntos de daño más a los Pokémon ex y Pokémon V Activos de tu rival\n(antes de aplicar Debilidad y Resistencia).", + pt: "Escolha 1:\n\n• Troque o seu Pokémon Ativo por 1 dos seus Pokémon no Banco.\n• Durante este turno, os ataques usados pelos seus Pokémon causarão 30 pontos de dano a mais aos Pokémon ex Ativo e Pokémon V Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + it: "Scegli un effetto:\n\n• Scambia il tuo Pokémon attivo con uno della tua panchina.\n• Durante questo turno, gli attacchi usati dai tuoi Pokémon infliggono 30 danni in più ai Pokémon-ex attivi e Pokémon-V attivi del tuo avversario,\nprima di aver applicato debolezza e resistenza.", + de: "Wähle 1:\n\n• Tausche dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank aus.\n• Während dieses Zuges fügen die von deinen Pokémon eingesetzten Attacken dem Aktiven Pokémon-ex und Aktiven Pokémon-V deines Gegners 30 Schadenspunkte mehr zu\n(bevor Schwäche und Resistenz verrechnet werden)." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/175.ts b/data/Scarlet & Violet/Prismatic Evolutions/175.ts new file mode 100644 index 000000000..3b9e50582 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/175.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Lacey", + fr: "Taro", + es: "Aroa", + pt: "Tarsila", + it: "Rupi", + de: "Tara" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "Shuffle your hand into your deck. Then, draw 4 cards. If your opponent has 3 or fewer Prize cards remaining, draw 8 cards instead.", + fr: "Mélangez votre main avec votre deck. Ensuite, piochez 4 cartes. S'il reste 3 cartes Récompense ou moins à votre adversaire, piochez 8 cartes à la place.", + es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 4 cartas. Si a tu rival le quedan 3 cartas de Premio o menos, roba 8 cartas en vez de 4.", + pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 4 cartas. Se o seu oponente tiver 3 ou menos cartas de Prêmio restantes, compre 8 cartas ao invés de 4.", + it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca quattro carte. Se il tuo avversario ha tre o meno carte Premio rimanenti, invece pescane otto.", + de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 4 Karten. Wenn dein Gegner 3 oder weniger verbleibende Preiskarten hat, ziehe stattdessen 8 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/176.ts b/data/Scarlet & Violet/Prismatic Evolutions/176.ts new file mode 100644 index 000000000..9f99d3ef5 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/176.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Iron Leaves ex", + fr: "Vert-de-Fer-ex", + es: "Ferroverdor ex", + pt: "Folhas Férreas ex", + it: "Fogliaferrea-ex", + de: "Eisenblatt-ex" + }, + + rarity: "Hyper rare", + category: "Pokemon", + hp: 220, + types: ["Grass"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Rapid Vernier", + fr: "Vernier Rapide", + es: "Propulsor Vernier", + pt: "Agilidade Vernier", + it: "Propulsore Vernier", + de: "Schnelle Justierung" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may switch it with your Active Pokémon. If you do, you may move any amount of Energy from your other Pokémon to this Pokémon.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez l'échanger contre votre Pokémon Actif. Dans ce cas, vous pouvez déplacer autant d'Énergies que vous le voulez de vos autres Pokémon vers ce Pokémon.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes cambiarlo por tu Pokémon Activo. Si lo haces, puedes mover cualquier cantidad de Energías de tus otros Pokémon a este Pokémon.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá trocá-lo pelo seu Pokémon Ativo. Se fizer isto, você poderá mover qualquer quantidade de Energia dos seus outros Pokémon para este Pokémon.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi scambiarlo con il tuo Pokémon attivo. Se lo fai, puoi spostare un numero qualsiasi di Energie dai tuoi altri Pokémon su questo Pokémon.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du es gegen dein Aktives Pokémon austauschen. Wenn du das machst, kannst du beliebig viele Energien von deinen anderen Pokémon auf dieses Pokémon verschieben." + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Colorless"], + + name: { + en: "Prism Edge", + fr: "Lame Prisme", + es: "Filo Prisma", + pt: "Lâmina Prisma", + it: "Lama Prisma", + de: "Prismaklinge" + }, + + 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.", + pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.", + it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.", + de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen." + }, + + damage: 180 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/177.ts b/data/Scarlet & Violet/Prismatic Evolutions/177.ts new file mode 100644 index 000000000..f18ccf022 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/177.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Teal Mask Ogerpon ex", + fr: "Ogerpon Masque Turquoise-ex", + es: "Ogerpon Máscara Turquesa ex", + pt: "Ogerpon Máscara Turquesa ex", + it: "Ogerpon Maschera Turchese-ex", + de: "Türkisgrüne-Maske-Ogerpon-ex" + }, + + rarity: "Hyper rare", + category: "Pokemon", + hp: 210, + types: ["Grass"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Teal Dance", + fr: "Danse Turquoise", + es: "Danza Turquesa", + pt: "Dança Turquesa", + it: "Danza Turchese", + de: "Türkisgrüner Tanz" + }, + + effect: { + en: "Once during your turn, you may attach a Basic Grass Energy card from your hand to this Pokémon. If you attached Energy to a Pokémon in this way, draw a card.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Grass de base de votre main à ce Pokémon. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, piochez une carte.", + es: "Una vez durante tu turno, puedes unir 1 carta de Energía Grass Básica de tu mano a este Pokémon. Si has unido Energía a un Pokémon de esta manera, roba 1 carta.", + pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Grass Básica da sua mão a este Pokémon. Se você ligou Energia a um Pokémon desta forma, compre uma carta.", + it: "Una sola volta durante il tuo turno, puoi assegnare a questo Pokémon una carta Energia base Grass dalla tua mano. Se hai assegnato dell'Energia a un Pokémon in questo modo, pesca una carta.", + de: "Einmal während deines Zuges kannst du 1 Basis-Grass-Energiekarte aus deiner Hand an dieses Pokémon anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, ziehe 1 Karte." + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Grass"], + + name: { + en: "Myriad Leaf Shower", + fr: "Pluie de Feuilles", + es: "Lluvia de Hojas", + pt: "Chuva Infinita de Folhas", + it: "Miriade di Foglie Cadenti", + de: "Laubschauer" + }, + + 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.", + pt: "Este ataque causa 30 pontos de dano a mais para cada Energia ligada a ambos os Pokémon Ativos.", + it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata a ciascuno dei Pokémon attivi.", + de: "Diese Attacke fügt für jede an beide Aktiven Pokémon angelegte Energie 30 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/178.ts b/data/Scarlet & Violet/Prismatic Evolutions/178.ts new file mode 100644 index 000000000..f03d6b4da --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/178.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Walking Wake ex", + fr: "Serpente-Eau-ex", + es: "Ondulagua ex", + pt: "Onda Ando ex", + it: "Acquecrespe-ex", + de: "Windewoge-ex" + }, + + rarity: "Hyper rare", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Azure Seas", + fr: "Mers Azur", + es: "Mares Cerúleos", + pt: "Mares Celestes", + it: "Mari Azzurri", + de: "Azurmeer" + }, + + effect: { + en: "Damage from attacks used by this Pokémon isn't affected by any effects on your opponent's Active Pokémon.", + fr: "Les dégâts des attaques utilisées par ce Pokémon ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.", + es: "El daño de los ataques usados por este Pokémon no se ve afectado por ningún efecto en el Pokémon Activo de tu rival.", + pt: "O dano dos ataques usados por este Pokémon não é afetado por quaisquer efeitos no Pokémon Ativo do seu oponente.", + it: "I danni degli attacchi usati da questo Pokémon non sono influenzati da alcun effetto presente sul Pokémon attivo del tuo avversario.", + de: "Schaden durch von diesem Pokémon eingesetzte Attacken wird durch Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Catharsis Roar", + fr: "Rugissement Cathartique", + es: "Rugido Catártico", + pt: "Rugido Catarse", + it: "Ruggito Catartico", + de: "Katharsis-Gebrüll" + }, + + effect: { + en: "If your opponent's Active Pokémon is affected by a Special Condition, this attack does 120 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est affecté par un État Spécial, cette attaque inflige 120 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival se ve afectado por una Condición Especial, este ataque hace 120 puntos de daño más.", + pt: "Se o Pokémon Ativo do seu oponente estiver afetado por uma Condição Especial, este ataque causará 120 pontos de dano a mais.", + it: "Se il Pokémon attivo del tuo avversario è influenzato da una condizione speciale, questo attacco infligge 120 danni in più.", + de: "Wenn das Aktive Pokémon deines Gegners von einem Speziellen Zustand betroffen ist, fügt diese Attacke 120 Schadenspunkte mehr zu." + }, + + damage: "120+" + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/179.ts b/data/Scarlet & Violet/Prismatic Evolutions/179.ts new file mode 100644 index 000000000..198eb4bf8 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/179.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex", + fr: "Pikachu-ex", + es: "Pikachu ex", + pt: "Pikachu ex", + it: "Pikachu-ex", + de: "Pikachu-ex" + }, + + rarity: "Hyper rare", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Resolute Heart", + fr: "Cœur Résolu", + es: "Corazón Resuelto", + pt: "Coração Obstinado", + it: "Cuore Risoluto", + de: "Resolutes Herz" + }, + + effect: { + en: "If this Pokémon has full HP and would be Knocked Out by damage from an attack, it is not Knocked Out, and its remaining HP becomes 10.", + fr: "Si ce Pokémon a tous ses PV et doit être mis K.O. par les dégâts d'une attaque, il n'est pas mis K.O. et il lui reste 10 PV.", + es: "Si este Pokémon tiene todos sus PS y fuese a quedar Fuera de Combate por el daño de un ataque, no queda Fuera de Combate y sus PS restantes pasan a ser 10.", + pt: "Se este Pokémon tiver PS cheio e estiver prestes a ser Nocauteado pelo dano de um ataque, ele não será Nocauteado e o PS restante dele será 10.", + it: "Se questo Pokémon ha tutti i PS e sta per essere messo KO dai danni inflitti da un attacco, non viene messo KO e i suoi PS rimanenti diventano 10.", + de: "Wenn dieses Pokémon volle KP hat und durch Schaden einer Attacke kampfunfähig würde, wird es nicht kampfunfähig und seine verbleibenden KP sind gleich 10." + } + }], + + attacks: [{ + cost: ["Grass", "Lightning", "Metal"], + + name: { + en: "Topaz Bolt", + fr: "Éclair Topaze", + es: "Rayo Topacio", + pt: "Raio Topázio", + it: "Fulmine di Topazio", + de: "Topas-Blitz" + }, + + effect: { + en: "Discard 3 Energy from this Pokémon.", + fr: "Défaussez 3 Énergies de ce Pokémon.", + es: "Descarta 3 Energías de este Pokémon.", + pt: "Descarte 3 Energias deste Pokémon.", + it: "Scarta tre Energie da questo Pokémon.", + de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 300 + }], + + retreat: 1, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Prismatic Evolutions/180.ts b/data/Scarlet & Violet/Prismatic Evolutions/180.ts new file mode 100644 index 000000000..bd2c6e309 --- /dev/null +++ b/data/Scarlet & Violet/Prismatic Evolutions/180.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Prismatic Evolutions" + +const card: Card = { + set: Set, + + name: { + en: "Terapagos ex", + fr: "Terapagos-ex", + es: "Terapagos ex", + pt: "Terapagos ex", + it: "Terapagos-ex", + de: "Terapagos-ex" + }, + + rarity: "Hyper rare", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Unified Beatdown", + fr: "Dérouillée Groupée", + es: "Golpe Unísono", + pt: "Abater Unificado", + it: "Batosta all'Unisono", + de: "Vereinter Niederprügler" + }, + + effect: { + en: "If you go second, you can't use this attack during your first turn. This attack does 30 damage for each of your Benched Pokémon.", + fr: "Si vous jouez en second, vous ne pouvez pas utiliser cette attaque pendant votre premier tour. Cette attaque inflige 30 dégâts pour chacun de vos Pokémon de Banc.", + es: "Si sales en segundo lugar, no puedes usar este ataque durante tu primer turno. Este ataque hace 30 puntos de daño por cada uno de tus Pokémon en Banca.", + pt: "Se você for o segundo a jogar, você não poderá usar este ataque durante o seu primeiro turno. Este ataque causa 30 pontos de dano para cada um dos seus Pokémon no Banco.", + it: "Se inizi per secondo, non puoi usare questo attacco durante il tuo primo turno. Questo attacco infligge 30 danni per ogni Pokémon nella tua panchina.", + de: "Wenn du als Zweiter am Zug bist, kannst du diese Attacke während deines ersten Zuges nicht einsetzen. Diese Attacke fügt für jedes Pokémon auf deiner Bank 30 Schadenspunkte zu." + }, + + damage: "30×" + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + en: "Crown Opal", + fr: "Couronne Opale", + es: "Ópalo Corona", + pt: "Coroa de Opalas", + it: "Opale della Corona", + de: "Kronen-Opal" + }, + + effect: { + en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic non-Colorless Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon non-Colorless de base.", + es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon no Colorless Básicos.", + pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon Básicos que não sejam de tipo Colorless.", + it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base non di tipo Colorless.", + de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon, die keine Colorless-Pokémon sind, zugefügt wird." + }, + + damage: 180 + }], + + retreat: 2, + regulationMark: "H", + variants: { + holo: true, + normal: false + } +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos.ts b/data/Scarlet & Violet/SVP Black Star Promos.ts new file mode 100644 index 000000000..04ec36d91 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos.ts @@ -0,0 +1,29 @@ +import { Set } from '../../interfaces' +import serie from '../Scarlet & Violet' + +const set: Set = { + id: "svp", + + name: { + de: "SVP Black Star Promos", + en: "SVP Black Star Promos", + es: "SVP Black Star Promos", + fr: "SVP Black Star Promos", + it: "SVP Black Star Promos", + pt: "SVP Black Star Promos" + }, + + serie: serie, + + cardCount: { + official: 0 + }, + + releaseDate: "2023-03-31", + + abbreviations: { + official: "SVP" + } +} + +export default set diff --git a/data/Scarlet & Violet/SVP Black Star Promos/001.ts b/data/Scarlet & Violet/SVP Black Star Promos/001.ts new file mode 100644 index 000000000..002da5149 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/001.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Sprigatito", + fr: "Poussacha", + es: "Sprigatito", + it: "Sprigatito", + pt: "Sprigatito", + de: "Felori" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Mini Drain", + fr: "Mini-Assèchement", + es: "Minidrenaje", + it: "Miniassorbimento", + pt: "Minidreno", + de: "Minisauger" + }, + + effect: { + en: "Heal 10 damage from this Pokémon.", + fr: "Soignez 10 dégâts de ce Pokémon.", + es: "Cura 10 puntos de daño a este Pokémon.", + it: "Cura questo Pokémon da 10 danni.", + pt: "Cure 10 pontos de dano deste Pokémon.", + de: "Heile 10 Schadenspunkte bei diesem Pokémon." + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/002.ts b/data/Scarlet & Violet/SVP Black Star Promos/002.ts new file mode 100644 index 000000000..436583dae --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/002.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Fuecoco", + fr: "Chochodile", + es: "Fuecoco", + it: "Fuecoco", + pt: "Fuecoco", + de: "Krokel" + }, + + rarity: "None", + category: "Pokemon", + hp: 80, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + 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." + }, + + damage: 30 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/003.ts b/data/Scarlet & Violet/SVP Black Star Promos/003.ts new file mode 100644 index 000000000..8e5dcab02 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/003.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Quaxly", + fr: "Coiffeton", + es: "Quaxly", + it: "Quaxly", + pt: "Quaxly", + de: "Kwaks" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Water Splash", + fr: "Éclaboussure", + es: "Chapoteo Agua", + it: "Acquasplash", + pt: "Espirro d'Água", + de: "Wasserplatscher" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 20 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu." + }, + + damage: "20+" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/004.ts b/data/Scarlet & Violet/SVP Black Star Promos/004.ts new file mode 100644 index 000000000..ea054ea9c --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/004.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Mimikyu ex", + fr: "Mimiqui-ex", + es: "Mimikyu ex", + it: "Mimikyu-ex", + pt: "Mimikyu ex", + de: "Mimigma-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 190, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Void Return", + fr: "Retour du Néant", + es: "Retorno Nulo", + it: "Vuotoritorno", + pt: "Retorno para o Vácuo", + de: "Rückkehr in die Leere" + }, + + effect: { + en: "You may switch this Pokémon with 1 of your Benched Pokémon.", + fr: "Vous pouvez échanger ce Pokémon contre l'un de vos Pokémon de Banc.", + es: "Puedes cambiar este Pokémon por uno de tus Pokémon en Banca.", + it: "Puoi scambiare questo Pokémon con uno della tua panchina.", + pt: "Você pode trocar este Pokémon por 1 dos seus Pokémon no Banco.", + de: "Du kannst dieses Pokémon gegen 1 Pokémon auf deiner Bank austauschen." + }, + + damage: 30 + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Energy Burst", + fr: "Explosion d'Énergie", + es: "Explosión de Energía", + it: "Energiscoppio", + pt: "Explosão de Energia", + de: "Energieausbruch" + }, + + effect: { + en: "This attack does 30 damage for each Energy attached to both Active Pokémon.", + fr: "Cette attaque inflige 30 dégâts pour chaque Énergie attachée aux deux Pokémon Actifs.", + es: "Este ataque hace 30 puntos de daño por cada Energía unida a ambos Pokémon Activos.", + it: "Questo attacco infligge 30 danni per ogni Energia assegnata a ciascuno dei Pokémon attivi.", + pt: "Este ataque causa 30 pontos de dano 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 zu." + }, + + damage: "30×" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/005.ts b/data/Scarlet & Violet/SVP Black Star Promos/005.ts new file mode 100644 index 000000000..2d52e6fb3 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/005.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Quaquaval", + fr: "Palmaval", + es: "Quaquaval", + it: "Quaquaval", + pt: "Quaquaval", + de: "Bailonda" + }, + + rarity: "None", + category: "Pokemon", + hp: 170, + types: ["Water"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Energy Carnival", + fr: "Carnaval Énergétique", + es: "Carnaval de Energía", + it: "Carnevale Energetico", + pt: "Carnaval de Energia", + de: "Karneval der Energie" + }, + + effect: { + en: "Once during your turn, you may attach a Basic Energy card from your hand to 1 of your Pokémon.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie de base de votre main à l'un de vos Pokémon.", + es: "Una vez durante tu turno, puedes unir 1 carta de Energía Básica de tu mano a uno de tus Pokémon.", + it: "Una sola volta durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon una carta Energia base dalla tua mano.", + pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Básica da sua mão a 1 dos seus Pokémon.", + de: "Einmal während deines Zuges kannst du 1 Basis-Energiekarte aus deiner Hand an 1 deiner Pokémon anlegen." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Hydro Kick", + fr: "Pied Hydro", + es: "Hidropatada", + it: "Idrocalcio", + pt: "Chute d'Água", + de: "Hydrokick" + }, + + damage: 140 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/006.ts b/data/Scarlet & Violet/SVP Black Star Promos/006.ts new file mode 100644 index 000000000..365addfff --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/006.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pawmot", + fr: "Pohmarmotte", + es: "Pawmot", + it: "Pawmot", + pt: "Pawmot", + de: "Pamomamo" + }, + + rarity: "None", + category: "Pokemon", + hp: 130, + types: ["Lightning"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Electrogenesis", + fr: "Électrogenèse", + es: "Electrorigen", + it: "Elettroproduzione", + pt: "Gênese Elétrica", + de: "Elektrogenese" + }, + + effect: { + en: "Once during your turn, you may search your deck for a Basic Lightning Energy card and attach it to this Pokémon. Then, shuffle your deck.", + fr: "Une fois pendant votre tour, vous pouvez chercher dans votre deck une carte Énergie Lightning de base, puis l'attacher à ce Pokémon. Mélangez ensuite votre deck.", + es: "Una vez durante tu turno, puedes buscar en tu baraja 1 carta de Energía Lightning Básica y unirla a este Pokémon. Después, baraja las cartas de tu baraja.", + it: "Una sola volta durante il tuo turno, puoi cercare nel tuo mazzo una carta Energia base Lightning e assegnarla a questo Pokémon. Poi rimischia le carte del tuo mazzo.", + pt: "Uma vez durante o seu turno, você poderá procurar por uma carta de Energia Lightning Básica no seu baralho e ligá-la a este Pokémon. Em seguida, embaralhe o seu baralho.", + de: "Einmal während deines Zuges kannst du dein Deck nach 1 Basis-Lightning-Energiekarte durchsuchen und sie an dieses Pokémon anlegen. Mische anschließend dein Deck." + } + }], + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Electro Paws", + fr: "Électro Pattes", + es: "Electropatas", + it: "Elettrozampe", + pt: "Patas Elétricas", + de: "Elektropfoten" + }, + + effect: { + en: "Discard all Energy from this Pokémon.", + fr: "Défaussez toutes les Énergies de ce Pokémon.", + es: "Descarta todas las Energías de este Pokémon.", + it: "Scarta tutte le Energie da questo Pokémon.", + pt: "Descarte todas as Energias deste Pokémon.", + de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 230 + }], + + retreat: 0, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/007.ts b/data/Scarlet & Violet/SVP Black Star Promos/007.ts new file mode 100644 index 000000000..1ff7f2cc5 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/007.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Hawlucha", + fr: "Brutalibré", + es: "Hawlucha", + it: "Hawlucha", + pt: "Hawlucha", + de: "Resladero" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Flying Entry", + fr: "Entrée Aérienne", + es: "Entrada Voladora", + it: "Entrata al Volo", + pt: "Entrada Voadora", + de: "Fliegender Auftritt" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may choose 2 of your opponent's Benched Pokémon and put 1 damage counter on each of them.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez choisir 2 des Pokémon de Banc de votre adversaire, puis placer un marqueur de dégâts sur chacun d'eux.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes elegir 2 de los Pokémon en Banca de tu rival y poner 1 contador de daño en cada uno de ellos.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi scegliere due dei Pokémon nella panchina del tuo avversario e mettere un segnalino danno su ciascuno di essi.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá escolher 2 dos Pokémon no Banco do seu oponente e colocar 1 contador de dano em cada um deles.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du 2 Pokémon auf der Bank deines Gegners wählen und 1 Schadensmarke auf jedes von ihnen legen." + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Wing Attack", + fr: "Cru-Ailes", + es: "Ataque Ala", + it: "Attacco d'Ala", + pt: "Ataque de Asa", + de: "Flügelschlag" + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/008.ts b/data/Scarlet & Violet/SVP Black Star Promos/008.ts new file mode 100644 index 000000000..9b4772f14 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/008.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Revavroom", + fr: "Vrombotor", + es: "Revavroom", + it: "Revavroom", + pt: "Revavroom", + de: "Knattatox" + }, + + rarity: "None", + category: "Pokemon", + hp: 140, + types: ["Metal"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Rumbling Engine", + fr: "Moteur Vrombissant", + es: "Motor Ruidoso", + it: "Motore Rombante", + pt: "Motor Barulhento", + de: "Knatternder Motor" + }, + + effect: { + en: "You must discard an Energy card from your hand in order to use this Ability. Once during your turn, you may draw cards until you have 6 cards in your hand.", + fr: "Vous devez défausser une carte Énergie de votre main pour pouvoir utiliser ce talent. Une fois pendant votre tour, vous pouvez piocher des cartes jusqu'à en avoir 6 en main.", + es: "Debes descartar 1 carta de Energía de tu mano para poder usar esta habilidad. Una vez durante tu turno, puedes robar cartas hasta que tengas 6 cartas en tu mano.", + it: "Devi scartare una carta Energia che hai in mano per usare questa abilità. Una sola volta durante il tuo turno, puoi pescare fino ad avere sei carte in mano.", + pt: "Você deve descartar uma carta de Energia da sua mão para usar esta Habilidade. Uma vez durante o seu turno, você poderá comprar cartas até ter 6 cartas na sua mão.", + de: "Du musst 1 Energiekarte aus deiner Hand auf deinen Ablagestapel legen, um diese Fähigkeit einzusetzen. Einmal während deines Zuges kannst du so lange Karten ziehen, bis du 6 Karten auf deiner Hand hast." + } + }], + + attacks: [{ + cost: ["Metal", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Knock Away", + fr: "Asticotage", + es: "Derribar", + it: "Scaraventa", + pt: "Jogar Longe", + de: "Zurückschlagen" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 90 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 90 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 90 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 90 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 90 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "90+" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/009.ts b/data/Scarlet & Violet/SVP Black Star Promos/009.ts new file mode 100644 index 000000000..5e3740601 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/009.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Spidops", + fr: "Filentrappe", + es: "Spidops", + it: "Spidops", + pt: "Spidops", + de: "Spinsidias" + }, + + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "String Truss", + fr: "Ligotage Filaire", + es: "Sujeción Hilo", + it: "Legafilo", + pt: "Suporte de Fio", + de: "Fadenwickel" + }, + + 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: 30 + }, { + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Jet Headbutt", + fr: "Bélier Volant", + es: "Turbocabezazo", + it: "Zuccata Jet", + pt: "Cabeçada a Jato", + de: "Flinke Kopfnuss" + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/010.ts b/data/Scarlet & Violet/SVP Black Star Promos/010.ts new file mode 100644 index 000000000..34b711503 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/010.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Espathra", + fr: "Cléopsytra", + es: "Espathra", + it: "Espathra", + pt: "Espathra", + de: "Psiopatra" + }, + + rarity: "None", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Aurora Gain", + fr: "Puissance Boréale", + es: "Ganar Aurora", + it: "Prendiaurora", + pt: "Aurora", + de: "Aurora-Verstärkung" + }, + + 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: 30 + }, { + cost: ["Psychic", "Colorless"], + + name: { + en: "Super Psy Bolt", + fr: "Super Psy", + es: "Superrayo Psi", + it: "Superpsico", + pt: "Super-raio Psíquico", + de: "Super-Psischlag" + }, + + damage: 60 + }], + + retreat: 0, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/011.ts b/data/Scarlet & Violet/SVP Black Star Promos/011.ts new file mode 100644 index 000000000..f7005ab98 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/011.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Arcanine", + fr: "Arcanin", + es: "Arcanine", + it: "Arcanine", + pt: "Arcanine", + de: "Arkani" + }, + + rarity: "None", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + en: "Crunch", + fr: "Mâchouille", + es: "Triturar", + it: "Sgranocchio", + pt: "Mastigada", + de: "Knirscher" + }, + + effect: { + en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", + fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.", + it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.", + de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 30 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Fire Mane", + fr: "Crinière de Feu", + es: "Crin de Fuego", + it: "Criniera di Fuoco", + pt: "Crina de Fogo", + de: "Flammenmähne" + }, + + damage: 120 + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/012.ts b/data/Scarlet & Violet/SVP Black Star Promos/012.ts new file mode 100644 index 000000000..2a376b071 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/012.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Dondozo", + fr: "Oyacata", + es: "Dondozo", + it: "Dondozo", + pt: "Dondozo", + de: "Heerashai" + }, + + rarity: "None", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Hammer In", + fr: "Enfoncement", + es: "Martillear", + it: "Martello", + pt: "Martelada", + de: "Einhämmern" + }, + + damage: 60 + }, { + cost: ["Water", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Dangerous Wave", + fr: "Vague Dangereuse", + es: "Ola Peligrosa", + it: "Onda Pericolosa", + pt: "Onda Perigosa", + de: "Gefährliche Welle" + }, + + effect: { + en: "Flip 2 coins. If both of them are heads, this attack does 100 more damage.", + fr: "Lancez 2 pièces. Si vous obtenez 2 côtés face, cette attaque inflige 100 dégâts supplémentaires.", + es: "Lanza 2 monedas. Si sale cara en ambas, este ataque hace 100 puntos de daño más.", + it: "Lancia due volte una moneta. Se esce entrambe le volte testa, questo attacco infligge 100 danni in più.", + pt: "Jogue 2 moedas. Se as duas saírem cara, este ataque causará 100 pontos de dano a mais.", + de: "Wirf 2 Münzen. Zeigen beide Münzen Kopf, fügt diese Attacke 100 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 4, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/013.ts b/data/Scarlet & Violet/SVP Black Star Promos/013.ts new file mode 100644 index 000000000..32a0ef96b --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/013.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Miraidon", + fr: "Miraidon", + es: "Miraidon", + it: "Miraidon", + pt: "Miraidon", + de: "Miraidon" + }, + + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Sharp Fang", + fr: "Croc Aiguisé", + es: "Colmillo Afilado", + it: "Zannaffilata", + pt: "Presa Afiada", + de: "Scharfe Fänge" + }, + + damage: 30 + }, { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Lightning Laser", + fr: "Laser Éclair", + es: "Láser Relámpago", + it: "Laser Fulminante", + pt: "Laser Relampejante", + de: "Blitzlaser" + }, + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 30 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 30 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 30 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 30 pontos de dano 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 auch 1 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 90 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/014.ts b/data/Scarlet & Violet/SVP Black Star Promos/014.ts new file mode 100644 index 000000000..72dca7cd1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/014.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Koraidon", + fr: "Koraidon", + es: "Koraidon", + it: "Koraidon", + pt: "Koraidon", + de: "Koraidon" + }, + + rarity: "None", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Claw Slash", + fr: "Tranch'Griffe", + es: "Cuchillada Garra", + it: "Lacerartiglio", + pt: "Golpe de Garra", + de: "Klauenschlitzer" + }, + + damage: 70 + }, { + cost: ["Fighting", "Fighting", "Fighting", "Colorless"], + + name: { + en: "Rampaging Fang", + fr: "Croc Furieux", + es: "Colmillo Furioso", + it: "Zanna Infuriata", + pt: "Canino Feroz", + de: "Tobende Fänge" + }, + + effect: { + en: "Discard 3 Energy from this Pokémon.", + fr: "Défaussez 3 Énergies de ce Pokémon.", + es: "Descarta 3 Energías de este Pokémon.", + it: "Scarta tre Energie da questo Pokémon.", + pt: "Descarte 3 Energias deste Pokémon.", + de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 190 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/015.ts b/data/Scarlet & Violet/SVP Black Star Promos/015.ts new file mode 100644 index 000000000..9b81047c0 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/015.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Flaaffy", + fr: "Lainergie", + es: "Flaaffy", + it: "Flaaffy", + pt: "Flaaffy", + de: "Waaty" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Static Shock", + fr: "Choc Statique", + es: "Impacto Estático", + it: "Shock Statico", + pt: "Choque de Estática", + de: "Statischer Schock" + }, + + damage: 30 + }, { + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + en: "Extreme Current", + fr: "Courant Extrême", + es: "Corriente Extrema", + it: "Correntestrema", + pt: "Corrente Extrema", + de: "Extreme Strömung" + }, + + effect: { + en: "Discard an Energy from this Pokémon.", + fr: "Défaussez une Énergie de ce Pokémon.", + es: "Descarta 1 Energía de este Pokémon.", + it: "Scarta un'Energia da questo Pokémon.", + pt: "Descarte uma Energia deste Pokémon.", + de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 80 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/016.ts b/data/Scarlet & Violet/SVP Black Star Promos/016.ts new file mode 100644 index 000000000..d786e5a35 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/016.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Ampharos ex", + fr: "Pharamp-ex", + es: "Ampharos ex", + it: "Ampharos-ex", + pt: "Ampharos ex", + de: "Ampharos-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 330, + types: ["Lightning"], + stage: "Stage2", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Electro Ball", + fr: "Boule Élek", + es: "Bola Voltio", + it: "Energisfera", + pt: "Bola Elétrica", + de: "Elektroball" + }, + + damage: 60 + }, { + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + en: "Thunderstrike Tail", + fr: "Queue Foudroyante", + es: "Cola Trueno", + it: "Coda Fulminante", + pt: "Cauda Trovoada", + de: "Gewitterschweif" + }, + + effect: { + en: "You may discard 2 Energy from this Pokémon to have this attack do 100 more damage.", + fr: "Vous pouvez défausser 2 Énergies attachées à ce Pokémon pour que cette attaque inflige 100 dégâts supplémentaires.", + es: "Puedes descartar 2 Energías de este Pokémon para que este ataque haga 100 puntos de daño más.", + it: "Puoi scartare due Energie da questo Pokémon per infliggere 100 danni in più con questo attacco.", + pt: "Você pode descartar 2 Energias deste Pokémon para fazer este ataque causar 100 pontos de dano a mais.", + de: "Du kannst 2 Energien von diesem Pokémon auf deinen Ablagestapel legen, sodass diese Attacke 100 Schadenspunkte mehr zufügt." + }, + + damage: "140+" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/017.ts b/data/Scarlet & Violet/SVP Black Star Promos/017.ts new file mode 100644 index 000000000..c2fde7af9 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/017.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Lucario ex", + fr: "Lucario-ex", + es: "Lucario ex", + it: "Lucario-ex", + pt: "Lucario ex", + de: "Lucario-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 260, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + en: "Low Sweep", + fr: "Balayette", + es: "Puntapié", + it: "Calciobasso", + pt: "Movimento Baixo", + de: "Fußtritt" + }, + + damage: 60 + }, { + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Aura Sphere", + fr: "Aurasphère", + es: "Esfera Aural", + it: "Forzasfera", + pt: "Aura Esférica", + de: "Aurasphäre" + }, + + effect: { + en: "This attack also does 50 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 50 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 50 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 50 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 50 pontos de dano 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 auch 1 Pokémon auf der Bank deines Gegners 50 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 160 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/018.ts b/data/Scarlet & Violet/SVP Black Star Promos/018.ts new file mode 100644 index 000000000..e70a17c7a --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/018.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Cyclizar ex", + fr: "Motorizard-ex", + es: "Cyclizar ex", + it: "Cyclizar-ex", + pt: "Cyclizar ex", + de: "Mopex-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 210, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Power Run", + fr: "À Toute Puissance", + es: "Carrera Enérgica", + it: "Energicorsa", + pt: "Corrida Poderosa", + de: "Power-Raser" + }, + + effect: { + en: "Search your deck for a Basic Energy card and attach it to this Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck une carte Énergie de base, puis attachez-la à ce Pokémon. Mélangez ensuite votre deck.", + es: "Busca en tu baraja 1 carta de Energía Básica y únela a este Pokémon. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo una carta Energia base e assegnala a questo Pokémon. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por uma carta de Energia Básica no seu baralho e ligue-a a este Pokémon. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach 1 Basis-Energiekarte und lege sie an dieses Pokémon an. Mische anschließend dein Deck." + }, + + damage: 30 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Full Throttle", + fr: "Pleins Gaz", + es: "Aceleración Total", + it: "A Tavoletta", + pt: "Potência Máxima", + de: "Vollgas" + }, + + 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: 180 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/019.ts b/data/Scarlet & Violet/SVP Black Star Promos/019.ts new file mode 100644 index 000000000..df80d8fc0 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/019.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Baxcalibur", + fr: "Glaivodo", + es: "Baxcalibur", + it: "Baxcalibur", + pt: "Baxcalibur", + de: "Espinodon" + }, + + rarity: "None", + category: "Pokemon", + hp: 160, + types: ["Water"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Super Cold", + fr: "Super Froid", + es: "Superfrío", + it: "Super Freddo", + pt: "Superfrio", + de: "Unfassbare Kälte" + }, + + effect: { + en: "As often as you like during your turn, you may attach a Basic Water Energy card from your hand to 1 of your Pokémon.", + fr: "Autant de fois que vous le voulez pendant votre tour, vous pouvez attacher une carte Énergie Water de base de votre main à l'un de vos Pokémon.", + es: "Todas las veces que quieras durante tu turno, puedes unir 1 carta de Energía Water Básica de tu mano a uno de tus Pokémon.", + it: "Durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon una carta Energia base Water dalla tua mano tutte le volte che vuoi.", + pt: "Quantas vezes desejar durante o seu turno, você poderá ligar uma carta de Energia Water Básica da sua mão a 1 dos seus Pokémon.", + de: "Beliebig oft während deines Zuges kannst du 1 Basis-Water-Energiekarte aus deiner Hand an 1 deiner Pokémon anlegen." + } + }], + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Buster Tail", + fr: "Queue Destructrice", + es: "Cola Destructora", + it: "Coda Distruttrice", + pt: "Cauda Aniquiladora", + de: "Zertrümmernder Schweif" + }, + + damage: 130 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/020.ts b/data/Scarlet & Violet/SVP Black Star Promos/020.ts new file mode 100644 index 000000000..cafed0e69 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/020.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Tinkaton", + fr: "Forgelina", + es: "Tinkaton", + it: "Tinkaton", + pt: "Tinkaton", + de: "Granforgita" + }, + + rarity: "None", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Gather Materials", + fr: "Collecte de Matériaux", + es: "Acopio de Materiales", + it: "Raccolta di Materiali", + pt: "Juntar Materiais", + de: "Material sammeln" + }, + + effect: { + en: "You must discard a card from your hand in order to use this Ability. Once during your turn, you may draw 3 cards.", + fr: "Vous devez défausser une carte de votre main pour pouvoir utiliser ce talent. Une fois pendant votre tour, vous pouvez piocher 3 cartes.", + es: "Debes descartar 1 carta de tu mano para poder usar esta habilidad. Una vez durante tu turno, puedes robar 3 cartas.", + it: "Devi scartare una carta che hai in mano per usare questa abilità. Una sola volta durante il tuo turno, puoi pescare tre carte.", + pt: "Você deve descartar uma carta da sua mão para usar esta Habilidade. Uma vez durante o seu turno, você poderá comprar 3 cartas.", + de: "Du musst 1 Karte aus deiner Hand auf deinen Ablagestapel legen, um diese Fähigkeit einzusetzen. Einmal während deines Zuges kannst du 3 Karten ziehen." + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Special Hammer", + fr: "Marteau Spécial", + es: "Martillo Especial", + it: "Martello Speciale", + pt: "Martelo Especial", + de: "Spezieller Hammer" + }, + + effect: { + en: "If this Pokémon has any Special Energy attached, this attack does 90 more damage.", + fr: "Si au moins une Énergie spéciale est attachée à ce Pokémon, cette attaque inflige 90 dégâts supplémentaires.", + es: "Si este Pokémon tiene alguna Energía Especial unida, este ataque hace 90 puntos de daño más.", + it: "Se questo Pokémon ha delle Energie speciali assegnate, questo attacco infligge 90 danni in più.", + pt: "Se este Pokémon tiver alguma Energia Especial ligada a ele, este ataque causará 90 pontos de dano a mais.", + de: "Wenn an dieses Pokémon mindestens 1 Spezial-Energie angelegt ist, fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "90+" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/021.ts b/data/Scarlet & Violet/SVP Black Star Promos/021.ts new file mode 100644 index 000000000..c1d40f695 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/021.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Murkrow", + fr: "Cornèbre", + es: "Murkrow", + it: "Murkrow", + pt: "Murkrow", + de: "Kramurx" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["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: 10 + }, { + cost: ["Darkness"], + + name: { + en: "United Wings", + fr: "Ailes Unies", + es: "Alas Unidas", + it: "Ali Unite", + pt: "União Alada", + de: "Vereinte Schwingen" + }, + + effect: { + en: "This attack does 20 damage for each Pokémon in your discard pile that has the United Wings attack.", + fr: "Cette attaque inflige 20 dégâts pour chaque Pokémon dans votre pile de défausse ayant l'attaque Ailes Unies.", + es: "Este ataque hace 20 puntos de daño por cada Pokémon en tu pila de descartes que tenga el ataque Alas Unidas.", + it: "Questo attacco infligge 20 danni per ogni Pokémon nella tua pila degli scarti che ha l'attacco Ali Unite.", + pt: "Este ataque causa 20 pontos de dano para cada Pokémon na sua pilha de descarte que tiver o ataque União Alada.", + de: "Diese Attacke fügt für jedes Pokémon in deinem Ablagestapel, das die Attacke Vereinte Schwingen hat, 20 Schadenspunkte zu." + }, + + damage: "20×" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/022.ts b/data/Scarlet & Violet/SVP Black Star Promos/022.ts new file mode 100644 index 000000000..630bf5bb7 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/022.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pelipper", + fr: "Bekipan", + es: "Pelipper", + it: "Pelipper", + pt: "Pelipper", + de: "Pelipper" + }, + + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Hearsay", + fr: "Rumeur", + es: "Rumorología", + it: "Diceria", + pt: "Boato", + de: "Hörensagen" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may choose 1: put a Supporter card from your discard pile into your hand; or search your deck for a Supporter card, reveal it, put it into your hand, and 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 choisir l'une de ces options : ajouter une carte Supporter de votre pile de défausse à votre main, ou chercher dans votre deck une carte Supporter, la montrer, l'ajouter à votre main, puis mélanger votre deck.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes elegir una opción: pon 1 carta de Partidario de tu pila de descartes en tu mano; o busca en tu baraja 1 carta de Partidario, enséñala, ponla en tu mano y, 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 scegliere di prendere una carta Aiuto dalla tua pila degli scarti e aggiungerla alle carte che hai in mano, oppure di cercare nel tuo mazzo una carta Aiuto, mostrarla, aggiungerla alle carte che hai in mano e poi rimischiare 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á escolher 1: coloque uma carta de Apoiador da sua pilha de descarte na sua mão; ou procure por uma carta de Apoiador no seu baralho, revele-a, coloque-a na sua mão e, 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 1 wählen: Nimm 1 Unterstützerkarte aus deinem Ablagestapel auf deine Hand; oder durchsuche dein Deck nach 1 Unterstützerkarte, zeige sie deinem Gegner, nimm sie auf deine Hand und mische anschließend dein Deck." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Wing Attack", + fr: "Cru-Ailes", + es: "Ataque Ala", + it: "Attacco d'Ala", + pt: "Ataque de Asa", + de: "Flügelschlag" + }, + + damage: 90 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/023.ts b/data/Scarlet & Violet/SVP Black Star Promos/023.ts new file mode 100644 index 000000000..d4bc7d23c --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/023.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Smoliv", + fr: "Olivini", + es: "Smoliv", + it: "Smoliv", + pt: "Smoliv", + de: "Olini" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Nutrients", + fr: "Nutriments", + es: "Nutrientes", + it: "Nutrienti", + pt: "Nutrientes", + de: "Nährstoffe" + }, + + effect: { + en: "Heal 30 damage from 1 of your Pokémon.", + fr: "Soignez 30 dégâts de l'un de vos Pokémon.", + es: "Cura 30 puntos de daño a uno de tus Pokémon.", + it: "Cura uno dei tuoi Pokémon da 30 danni.", + pt: "Cure 30 pontos de dano de 1 dos seus Pokémon.", + de: "Heile 30 Schadenspunkte bei 1 deiner Pokémon." + } + }, { + cost: ["Grass", "Colorless"], + + name: { + en: "Spray Fluid", + fr: "Fluide Éclaboussant", + es: "Fluido Rociado", + it: "Fluidospray", + pt: "Fluido Spray", + de: "Sprühwasser" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/024.ts b/data/Scarlet & Violet/SVP Black Star Promos/024.ts new file mode 100644 index 000000000..7e7b8783a --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/024.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Growlithe", + fr: "Caninos", + es: "Growlithe", + it: "Growlithe", + pt: "Growlithe", + de: "Fukano" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Stoke", + fr: "Attisement", + es: "Atizador", + it: "Attizzatoio", + pt: "Carregar", + de: "Anheizen" + }, + + effect: { + en: "Search your deck for up to 2 Basic Fire Energy cards and attach them to this Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Fire de base, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Fire Básica y únelas a este Pokémon. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due carte Energia base Fire e assegnale a questo Pokémon. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 cartas de Energia Fire Básica no seu baralho e ligue-as a este Pokémon. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Fire-Energiekarten und lege sie an dieses Pokémon an. Mische anschließend dein Deck." + } + }, { + cost: ["Fire", "Fire", "Fire"], + + name: { + en: "Fire Claws", + fr: "Griffes Enflammées", + es: "Garras de Fuego", + it: "Artigli Infuocati", + pt: "Garras de Fogo", + de: "Feuerkrallen" + }, + + damage: 70 + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/025.ts b/data/Scarlet & Violet/SVP Black Star Promos/025.ts new file mode 100644 index 000000000..e58aba4da --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/025.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Tinkatink", + fr: "Forgerette", + es: "Tinkatink", + it: "Tinkatink", + pt: "Tinkatink", + de: "Forgita" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Smithereen Smash", + fr: "Pulvérisation", + es: "Machaque", + it: "Frammentazione", + pt: "Pancada Estilhaçante", + de: "Splitterschlag" + }, + + effect: { + en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", + fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.", + it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.", + de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 10 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/026.ts b/data/Scarlet & Violet/SVP Black Star Promos/026.ts new file mode 100644 index 000000000..be68b3078 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/026.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Varoom", + fr: "Vrombi", + es: "Varoom", + it: "Varoom", + pt: "Varoom", + de: "Knattox" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Poison Gas", + fr: "Gaz Toxik", + es: "Gas Venenoso", + it: "Velenogas", + pt: "Gás Venenoso", + de: "Giftwolke" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", + es: "El Pokémon Activo de tu rival pasa a estar Envenenado.", + it: "Il Pokémon attivo del tuo avversario viene avvelenato.", + pt: "O Pokémon Ativo do seu oponente agora está Envenenado.", + de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet." + } + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/027.ts b/data/Scarlet & Violet/SVP Black Star Promos/027.ts new file mode 100644 index 000000000..3a7376672 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/027.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu", + fr: "Pikachu", + es: "Pikachu", + it: "Pikachu", + pt: "Pikachu", + de: "Pikachu" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Lightning", "Lightning"], + + name: { + en: "Adventuring Together", + fr: "Aventure en Groupe", + es: "Juntos de Aventura", + it: "Avventure in Compagnia", + pt: "Aventura em Grupo", + de: "Gemeinsames Abenteuer" + }, + + effect: { + en: "This attack does 10 more damage for each of your Benched Pokémon.", + fr: "Cette attaque inflige 10 dégâts supplémentaires pour chacun de vos Pokémon de Banc.", + es: "Este ataque hace 10 puntos de daño más por cada uno de tus Pokémon en Banca.", + it: "Questo attacco infligge 10 danni in più per ogni Pokémon nella tua panchina.", + pt: "Este ataque causa 10 pontos de dano a mais para cada um dos seus Pokémon no Banco.", + de: "Diese Attacke fügt für jedes Pokémon auf deiner Bank 10 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/028.ts b/data/Scarlet & Violet/SVP Black Star Promos/028.ts new file mode 100644 index 000000000..1e7977397 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/028.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Miraidon ex", + fr: "Miraidon-ex", + es: "Miraidon ex", + it: "Miraidon-ex", + pt: "Miraidon ex", + de: "Miraidon-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Lightning"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Tandem Unit", + fr: "Unité Tandem", + es: "Unidad Tándem", + it: "Unità Duplice", + pt: "Unidade Tandem", + de: "Tandem-Aggregat" + }, + + effect: { + en: "Once during your turn, you may search your deck for up to 2 Basic Lightning Pokémon and put them onto your Bench. Then, shuffle your deck.", + fr: "Une fois pendant votre tour, vous pouvez chercher dans votre deck jusqu'à 2 Pokémon Lightning de base, puis les placer sur votre Banc. Mélangez ensuite votre deck.", + es: "Una vez durante tu turno, puedes buscar en tu baraja hasta 2 Pokémon Lightning Básicos y ponerlos en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Una sola volta durante il tuo turno, puoi cercare nel tuo mazzo fino a due Pokémon Base Lightning e metterli nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Uma vez durante o seu turno, você poderá procurar por até 2 Pokémon Lightning Básicos no seu baralho e colocá-los no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Einmal während deines Zuges kannst du dein Deck nach bis zu 2 Basis-Lightning-Pokémon durchsuchen und sie auf deine Bank legen. Mische anschließend dein Deck." + } + }], + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Photon Blaster", + fr: "Réacteur à Photons", + es: "Cohete Fotónico", + it: "Esplosione Fotonica", + pt: "Detonador de Fótons", + de: "Photonenblaster" + }, + + 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: 220 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/029.ts b/data/Scarlet & Violet/SVP Black Star Promos/029.ts new file mode 100644 index 000000000..021cd33ba --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/029.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Koraidon ex", + fr: "Koraidon-ex", + es: "Koraidon ex", + it: "Koraidon-ex", + pt: "Koraidon ex", + de: "Koraidon-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Fighting"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Dino Cry", + fr: "Cri Dino", + es: "Dinoalarido", + it: "Dinogrido", + pt: "Brado Dino", + de: "Dino-Ruf" + }, + + effect: { + en: "Once during your turn, you may attach up to 2 Basic Fighting Energy cards from your discard pile to your Basic Fighting Pokémon in any way you like. If you use this Ability, your turn ends.", + fr: "Une fois pendant votre tour, vous pouvez attacher jusqu'à 2 cartes Énergie Fighting de base de votre pile de défausse à vos Pokémon Fighting de base, comme il vous plaît. Si vous utilisez ce talent, votre tour se termine.", + es: "Una vez durante tu turno, puedes unir hasta 2 cartas de Energía Fighting Básica de tu pila de descartes a tus Pokémon Fighting Básicos de la manera que desees. Si usas esta habilidad, tu turno termina.", + it: "Una sola volta durante il tuo turno, puoi assegnare ai tuoi Pokémon Base Fighting fino a due carte Energia base Fighting dalla tua pila degli scarti nel modo che preferisci. Se usi questa abilità, il tuo turno finisce.", + pt: "Uma vez durante o seu turno, você poderá ligar até 2 cartas de Energia Fighting Básica da sua pilha de descarte aos seus Pokémon Fighting Básicos como desejar. Se você usar esta Habilidade, o seu turno acabará.", + de: "Einmal während deines Zuges kannst du bis zu 2 Basis-Fighting-Energiekarten aus deinem Ablagestapel beliebig an deine Basis-Fighting-Pokémon anlegen. Wenn du diese Fähigkeit einsetzt, endet dein Zug." + } + }], + + attacks: [{ + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Wild Impact", + fr: "Impact Sauvage", + es: "Impacto Brutal", + it: "Impatto Selvaggio", + pt: "Impacto Selvagem", + de: "Wilde Erschütterung" + }, + + 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: 220 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/030.ts b/data/Scarlet & Violet/SVP Black Star Promos/030.ts new file mode 100644 index 000000000..620bd23ad --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/030.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Chien-Pao ex", + fr: "Baojian-ex", + es: "Chien-Pao ex", + it: "Chien-Pao-ex", + pt: "Chien-Pao ex", + de: "Baojian-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Shivery Chill", + fr: "Frisson Glacé", + es: "Frío Escalofriante", + it: "Tremagelo", + pt: "Calafrio Arrepiante", + de: "Kälteschauer" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you may search your deck for up to 2 Basic Water Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez chercher dans votre deck jusqu'à 2 cartes Énergie Water de base, les montrer, puis les ajouter à votre main. Mélangez ensuite votre deck.", + es: "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes buscar en tu baraja hasta 2 cartas de Energía Water Básica, enseñarlas y ponerlas en tu mano. Después, baraja las cartas de tu baraja.", + it: "Una sola volta durante il tuo turno, se questo Pokémon è in posizione attiva, puoi cercare nel tuo mazzo fino a due carte Energia base Water, mostrarle e aggiungerle alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Uma vez durante o seu turno, se este Pokémon estiver no Campo Ativo, você poderá procurar por até 2 cartas de Energia Water Básica no seu baralho, revelá-las e colocá-las na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Einmal während deines Zuges, wenn dieses Pokémon in der Aktiven Position ist, kannst du dein Deck nach bis zu 2 Basis-Water-Energiekarten durchsuchen, sie deinem Gegner zeigen und auf deine Hand nehmen. Mische anschließend dein Deck." + } + }], + + attacks: [{ + cost: ["Water", "Water"], + + name: { + en: "Hail Blade", + fr: "Lame Grêle", + es: "Tajo Granizo", + it: "Lama di Grandine", + pt: "Lâmina de Granizo", + de: "Hagelklinge" + }, + + effect: { + en: "You may discard any amount of Water Energy from your Pokémon. This attack does 60 damage for each card you discarded in this way.", + fr: "Vous pouvez défausser autant d'Énergies Water que vous le voulez de vos Pokémon. Cette attaque inflige 60 dégâts pour chaque carte défaussée de cette façon.", + es: "Puedes descartar cualquier cantidad de Energías Water de tus Pokémon. Este ataque hace 60 puntos de daño por cada carta que hayas descartado de esta manera.", + it: "Puoi scartare tutte le Energie Water che vuoi dai tuoi Pokémon. Questo attacco infligge 60 danni per ogni carta che hai scartato in questo modo.", + pt: "Você pode descartar qualquer quantidade de Energia Water dos seus Pokémon. Este ataque causa 60 pontos de dano para cada carta descartada desta forma.", + de: "Du kannst beliebig viele Water-Energien von deinen Pokémon auf deinen Ablagestapel legen. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 60 Schadenspunkte zu." + }, + + damage: "60×" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/031.ts b/data/Scarlet & Violet/SVP Black Star Promos/031.ts new file mode 100644 index 000000000..429ebfb36 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/031.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Tinkaton ex", + fr: "Forgelina-ex", + es: "Tinkaton ex", + it: "Tinkaton-ex", + pt: "Tinkaton ex", + de: "Granforgita-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 300, + types: ["Psychic"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Big Hammer", + fr: "Marteau Massif", + es: "Gran Martillo", + it: "Gran Martello", + pt: "Martelão", + de: "Großer Hammer" + }, + + effect: { + en: "This attack does 30 damage for each card in your hand.", + fr: "Cette attaque inflige 30 dégâts pour chaque carte dans votre main.", + es: "Este ataque hace 30 puntos de daño por cada carta en tu mano.", + it: "Questo attacco infligge 30 danni per ogni carta che hai in mano.", + pt: "Este ataque causa 30 pontos de dano para cada carta na sua mão.", + de: "Diese Attacke fügt für jede Karte auf deiner Hand 30 Schadenspunkte zu." + }, + + damage: "30×" + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Pulverizing Press", + fr: "Pression Pulvérisante", + es: "Presión Pulverizadora", + it: "Pressa Polverizzante", + pt: "Aperto Pulverizador", + de: "Pulverisierende Presse" + }, + + 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: 140 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/032.ts b/data/Scarlet & Violet/SVP Black Star Promos/032.ts new file mode 100644 index 000000000..49b2771c0 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/032.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Annihilape ex", + fr: "Courrousinge-ex", + es: "Annihilape ex", + it: "Annihilape-ex", + pt: "Annihilape ex", + de: "Epitaff-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 320, + types: ["Fighting"], + stage: "Stage2", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Angry Grudge", + fr: "Rancune Rageuse", + es: "Rabia Iracunda", + it: "Rancorfurioso", + pt: "Rancor Guardado", + de: "Böses Nachspiel" + }, + + effect: { + en: "Put up to 12 damage counters on this Pokémon. This attack does 20 damage for each damage counter you placed in this way.", + fr: "Placez jusqu'à 12 marqueurs de dégâts sur ce Pokémon. Cette attaque inflige 20 dégâts pour chaque marqueur de dégâts placé de cette façon.", + es: "Pon hasta 12 contadores de daño en este Pokémon. Este ataque hace 20 puntos de daño por cada contador de daño que hayas colocado de esta manera.", + it: "Metti fino a 12 segnalini danno su questo Pokémon. Questo attacco infligge 20 danni per ogni segnalino danno che hai messo in questo modo.", + pt: "Coloque até 12 contadores de dano neste Pokémon. Este ataque causa 20 pontos de dano para cada contador de dano colocado desta forma.", + de: "Lege bis zu 12 Schadensmarken auf dieses Pokémon. Diese Attacke fügt für jede auf diese Weise platzierte Schadensmarke 20 Schadenspunkte zu." + }, + + damage: "20×" + }, { + cost: ["Fighting", "Colorless"], + + name: { + en: "Seismic Toss", + fr: "Frappe Atlas", + es: "Sísmico", + it: "Movimento Sismico", + pt: "Arremesso Sísmico", + de: "Geowurf" + }, + + damage: 150 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/033.ts b/data/Scarlet & Violet/SVP Black Star Promos/033.ts new file mode 100644 index 000000000..dc114b7ac --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/033.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Meowscarada ex", + fr: "Miascarade-ex", + es: "Meowscarada ex", + it: "Meowscarada-ex", + pt: "Meowscarada ex", + de: "Maskagato-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 310, + types: ["Grass"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Bouquet Magic", + fr: "Bouquet Magique", + es: "Magia Floral", + it: "Bouquet Magico", + pt: "Buquê Mágico", + de: "Bouquetmagie" + }, + + effect: { + en: "You must discard a Basic Grass Energy card from your hand in order to use this Ability. Once during your turn, you may put 3 damage counters on 1 of your opponent's Benched Pokémon.", + fr: "Vous devez défausser une carte Énergie Grass de base de votre main pour pouvoir utiliser ce talent. Une fois pendant votre tour, vous pouvez placer 3 marqueurs de dégâts sur l'un des Pokémon de Banc de votre adversaire.", + es: "Debes descartar 1 carta de Energía Grass Básica de tu mano para poder usar esta habilidad. Una vez durante tu turno, puedes poner 3 contadores de daño en uno de los Pokémon en Banca de tu rival.", + it: "Devi scartare una carta Energia base Grass che hai in mano per usare questa abilità. Una sola volta durante il tuo turno, puoi mettere tre segnalini danno su uno dei Pokémon nella panchina del tuo avversario.", + pt: "Você deve descartar uma carta de Energia Grass Básica da sua mão para usar esta Habilidade. Uma vez durante o seu turno, você poderá colocar 3 contadores de dano em 1 dos Pokémon no Banco do seu oponente.", + de: "Du musst 1 Basis-Grass-Energiekarte aus deiner Hand auf deinen Ablagestapel legen, um diese Fähigkeit einzusetzen. Einmal während deines Zuges kannst du 3 Schadensmarken auf 1 Pokémon auf der Bank deines Gegners legen." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Scratching Nails", + fr: "Griffes Griffantes", + es: "Uñas Rasgadoras", + it: "Unghie Graffianti", + pt: "Unhas Arranhadoras", + de: "Kratzende Krallen" + }, + + effect: { + en: "If your opponent's Active Pokémon already has any damage counters on it, this attack does 120 more damage.", + fr: "Si le Pokémon Actif de votre adversaire a déjà au moins un marqueur de dégâts, cette attaque inflige 120 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival ya tiene algún contador de daño sobre él, este ataque hace 120 puntos de daño más.", + it: "Se il Pokémon attivo del tuo avversario ha già dei segnalini danno, questo attacco infligge 120 danni in più.", + pt: "Se o Pokémon Ativo do seu oponente já tiver algum contador de dano nele, este ataque causará 120 pontos de dano a mais.", + de: "Wenn auf dem Aktiven Pokémon deines Gegners mindestens 1 Schadensmarke liegt, fügt diese Attacke 120 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/034.ts b/data/Scarlet & Violet/SVP Black Star Promos/034.ts new file mode 100644 index 000000000..5938fb14b --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/034.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Skeledirge ex", + fr: "Flâmigator-ex", + es: "Skeledirge ex", + it: "Skeledirge-ex", + pt: "Skeledirge ex", + de: "Skelokrok-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 340, + types: ["Fire"], + stage: "Stage2", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Vitality Song", + fr: "Chant Vitalité", + es: "Canto Vitalidad", + it: "Canto del Vigore", + pt: "Canção de Vitalidade", + de: "Vitalitätsgesang" + }, + + effect: { + en: "Heal 30 damage from each of your Pokémon.", + fr: "Soignez 30 dégâts de chacun de vos Pokémon.", + es: "Cura 30 puntos de daño a cada uno de tus Pokémon.", + it: "Cura ciascuno dei tuoi Pokémon da 30 danni.", + pt: "Cure 30 pontos de dano de cada um dos seus Pokémon.", + de: "Heile 30 Schadenspunkte bei jedem deiner Pokémon." + }, + + damage: 50 + }, { + cost: ["Fire", "Fire"], + + name: { + en: "Burning Voice", + fr: "Voix Brûlante", + es: "Voz Abrasadora", + it: "Bruciavoce", + pt: "Voz Abrasadora", + de: "Brennende Stimme" + }, + + effect: { + en: "This attack does 10 less damage for each damage counter on this Pokémon.", + fr: "Cette attaque inflige 10 dégâts de moins pour chaque marqueur de dégâts sur ce Pokémon.", + es: "Este ataque hace 10 puntos de daño menos por cada contador de daño en este Pokémon.", + it: "Questo attacco infligge 10 danni in meno per ogni segnalino danno presente su questo Pokémon.", + pt: "Este ataque causa 10 pontos de dano a menos para cada contador de dano neste Pokémon.", + de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte weniger zu." + }, + + damage: "270-" + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/035.ts b/data/Scarlet & Violet/SVP Black Star Promos/035.ts new file mode 100644 index 000000000..f3496ce6c --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/035.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Quaquaval ex", + fr: "Palmaval-ex", + es: "Quaquaval ex", + it: "Quaquaval-ex", + pt: "Quaquaval ex", + de: "Bailonda-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 320, + types: ["Water"], + stage: "Stage2", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Exciting Dance", + fr: "Danse Palpitante", + es: "Baile Apasionante", + it: "Danza Coinvolgente", + pt: "Samba Empolgante", + de: "Mitreißender Tanz" + }, + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon. If you do, switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)", + fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc. Dans ce cas, envoyez le Pokémon Actif de l'adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.)", + es: "Cambia este Pokémon por uno de tus Pokémon en Banca. Si lo haces, mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo).", + it: "Scambia questo Pokémon con uno della tua panchina. Se lo fai, sposta il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo.", + pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco. Se fizer isto, mande o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.)", + de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus. Wenn du das machst, wechsle das Aktive Pokémon deines Gegners auf seine Bank aus. (Dein Gegner wählt das neue Aktive Pokémon.)" + }, + + damage: 60 + }, { + cost: ["Water", "Colorless"], + + name: { + en: "Spiral Shot", + fr: "Tir en Spirale", + es: "Lanzamiento en Espiral", + it: "Spiralcolpo", + pt: "Disparo Espiral", + de: "Spiralschuss" + }, + + 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: 230 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/036.ts b/data/Scarlet & Violet/SVP Black Star Promos/036.ts new file mode 100644 index 000000000..5a334ef7f --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/036.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Palafin", + fr: "Superdofin", + es: "Palafin", + it: "Palafin", + pt: "Palafin", + de: "Delfinator" + }, + + rarity: "None", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Jet Punch", + fr: "Poing Sonique", + es: "Puño Jet", + it: "Pugnojet", + pt: "Soco Jato", + de: "Düsenhieb" + }, + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 30 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 30 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 30 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 30 pontos de dano 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 auch 1 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 30 + }, { + cost: ["Water", "Water"], + + name: { + en: "Justice Kick", + fr: "Coup Juste", + es: "Patada Justiciera", + it: "Calcio Eroico", + pt: "Chute Justiceiro", + de: "Gerechtigkeitskick" + }, + + effect: { + en: "If this Pokémon didn't move from the Bench to the Active Spot this turn, this attack does nothing.", + fr: "Si ce Pokémon n'a pas été déplacé du Banc vers le Poste Actif pendant ce tour, cette attaque ne fait rien.", + es: "Si este Pokémon no se ha movido de la Banca al Puesto Activo en este turno, este ataque no hace nada.", + it: "Se questo Pokémon non si è spostato dalla panchina in posizione attiva nel turno in corso, questo attacco non ha effetto.", + pt: "Se este Pokémon não foi movido do Banco para o Campo Ativo durante este turno, este ataque não fará nada.", + de: "Wenn dieses Pokémon während dieses Zuges nicht von deiner Bank in die Aktive Position gewechselt ist, hat diese Attacke keine Auswirkungen." + }, + + damage: 210 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/037.ts b/data/Scarlet & Violet/SVP Black Star Promos/037.ts new file mode 100644 index 000000000..386280977 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/037.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Cleffa", + fr: "Mélo", + es: "Cleffa", + it: "Cleffa", + pt: "Cleffa", + de: "Pii" + }, + + rarity: "None", + category: "Pokemon", + hp: 30, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + name: { + en: "Grasping Draw", + fr: "Pioche Happante", + es: "Robo Avaricioso", + it: "Pesca Smaniosa", + pt: "Compra Gananciosa", + de: "Beherzt zugreifen" + }, + + effect: { + en: "Draw cards until you have 7 cards in your hand.", + fr: "Piochez des cartes jusqu'à en avoir 7 en main.", + es: "Roba cartas hasta que tengas 7 cartas en tu mano.", + it: "Pesca fino ad avere sette carte in mano.", + pt: "Compre cartas até ter 7 cartas na sua mão.", + de: "Ziehe so lange Karten, bis du 7 Karten auf deiner Hand hast." + } + }], + + retreat: 0, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/038.ts b/data/Scarlet & Violet/SVP Black Star Promos/038.ts new file mode 100644 index 000000000..77832e6cf --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/038.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Togekiss", + fr: "Togekiss", + es: "Togekiss", + it: "Togekiss", + pt: "Togekiss", + de: "Togekiss" + }, + + rarity: "None", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Precious Gift", + fr: "Don Précieux", + es: "Regalo Valioso", + it: "Dono Prezioso", + pt: "Presente Precioso", + de: "Kostbares Geschenk" + }, + + effect: { + en: "Once at the end of your turn (after your attack), you may use this Ability. Draw cards until you have 8 cards in your hand.", + fr: "Une fois à la fin de votre tour (après votre attaque), vous pouvez utiliser ce talent. Piochez des cartes jusqu'à en avoir 8 en main.", + es: "Una vez al final de tu turno (después de tu ataque), puedes usar esta habilidad. Roba cartas hasta que tengas 8 cartas en tu mano.", + it: "Una sola volta alla fine del tuo turno, dopo il tuo attacco, puoi usare questa abilità. Pesca fino ad avere otto carte in mano.", + pt: "Uma vez no final do seu turno (depois do seu ataque), você poderá usar esta Habilidade. Compre cartas até ter 8 cartas na sua mão.", + de: "Einmal am Ende deines Zuges (nachdem du angegriffen hast) kannst du diese Fähigkeit einsetzen. Ziehe so lange Karten, bis du 8 Karten auf deiner Hand hast." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Power Cyclone", + fr: "Cyclone d'Énergie", + es: "Ciclón Poderoso", + it: "Ciclone Potente", + pt: "Ciclone Poderoso", + de: "Kraftwirbel" + }, + + effect: { + en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.", + fr: "Déplacez une Énergie de ce Pokémon vers l'un de vos Pokémon de Banc.", + es: "Mueve 1 Energía de este Pokémon a uno de tus Pokémon en Banca.", + it: "Sposta un'Energia da questo Pokémon a uno di quelli nella tua panchina.", + pt: "Mova uma Energia deste Pokémon para 1 dos seus Pokémon no Banco.", + de: "Verschiebe 1 Energie von diesem Pokémon auf 1 Pokémon auf deiner Bank." + }, + + damage: 110 + }], + + retreat: 0, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/039.ts b/data/Scarlet & Violet/SVP Black Star Promos/039.ts new file mode 100644 index 000000000..450e8fdc0 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/039.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Mawile", + fr: "Mysdibule", + es: "Mawile", + it: "Mawile", + pt: "Mawile", + de: "Flunkifer" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Metal"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Special Eater", + fr: "Mangeur Spécial", + es: "Hambre Especial", + it: "Divoratore Speciale", + pt: "Devorador Especial", + de: "Spezial-Verkoster" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may discard a Special Energy from your opponent's Active Pokémon.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez défausser une Énergie spéciale attachée au Pokémon Actif de votre adversaire.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes descartar 1 Energía Especial del Pokémon Activo de tu rival.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi scartare un'Energia speciale dal Pokémon attivo del tuo avversario.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá descartar uma Energia Especial do Pokémon Ativo do seu oponente.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du 1 Spezial-Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel legen." + } + }], + + attacks: [{ + cost: ["Metal", "Colorless", "Colorless"], + + name: { + en: "Sharp Fang", + fr: "Croc Aiguisé", + es: "Colmillo Afilado", + it: "Zannaffilata", + pt: "Presa Afiada", + de: "Scharfe Fänge" + }, + + damage: 90 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/040.ts b/data/Scarlet & Violet/SVP Black Star Promos/040.ts new file mode 100644 index 000000000..90ac8d1fe --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/040.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pawmi", + fr: "Pohm", + es: "Pawmi", + it: "Pawmi", + pt: "Pawmi", + de: "Pamo" + }, + + rarity: "None", + category: "Pokemon", + hp: 50, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Static Slap", + fr: "Gifle Statique", + es: "Bofetada Estática", + it: "Sberla Statica", + pt: "Tapa Estático", + de: "Statischer Stoß" + }, + + effect: { + en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", + fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.", + it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.", + de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/041.ts b/data/Scarlet & Violet/SVP Black Star Promos/041.ts new file mode 100644 index 000000000..b1b6676d5 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/041.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +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: "None", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Splattering Poison", + fr: "Poison Éclaboussant", + es: "Veneno Salpicante", + it: "Spruzzata di Veleno", + pt: "Respingar Veneno", + de: "Giftgespritze" + }, + + effect: { + en: "Both Active Pokémon are now Poisoned.", + fr: "Les deux Pokémon Actifs sont maintenant Empoisonnés.", + es: "Ambos Pokémon Activos pasan a estar Envenenados.", + it: "Entrambi i Pokémon attivi vengono avvelenati.", + pt: "Ambos os Pokémon Ativos agora estão Envenenados.", + de: "Beide Aktiven Pokémon sind jetzt vergiftet." + } + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Tail Whap", + fr: "Queue Battoir", + es: "Coletón", + it: "Codabotta", + pt: "Surra de Cauda", + de: "Schweifvertrimmer" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/042.ts b/data/Scarlet & Violet/SVP Black Star Promos/042.ts new file mode 100644 index 000000000..ff393342b --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/042.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Houndstone", + fr: "Tomberro", + es: "Houndstone", + it: "Houndstone", + pt: "Houndstone", + de: "Friedwuff" + }, + + rarity: "None", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Delve", + fr: "Fouille Exploratoire", + es: "Fisgar", + it: "Scava scava", + pt: "Examinar", + de: "Graben" + }, + + effect: { + en: "Put up to 2 Item cards from your discard pile into your hand.", + fr: "Ajoutez jusqu'à 2 cartes Objet de votre pile de défausse à votre main.", + es: "Pon hasta 2 cartas de Objeto de tu pila de descartes en tu mano.", + it: "Prendi fino a due carte Strumento dalla tua pila degli scarti e aggiungile alle carte che hai in mano.", + pt: "Coloque até 2 cartas de Item da sua pilha de descarte na sua mão.", + de: "Nimm bis zu 2 Itemkarten aus deinem Ablagestapel auf deine Hand." + } + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Spooky Shot", + fr: "Tir Effrayant", + es: "Disparo Embrujado", + it: "Colpomistero", + pt: "Tiro Assustador", + de: "Spukschuss" + }, + + damage: 100 + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/043.ts b/data/Scarlet & Violet/SVP Black Star Promos/043.ts new file mode 100644 index 000000000..8bacaf3a1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/043.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Eevee", + fr: "Évoli", + es: "Eevee", + it: "Eevee", + pt: "Eevee", + de: "Evoli" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Call for Family", + fr: "Appel à la Famille", + es: "Llamar a la Familia", + it: "Cerca Famiglia", + pt: "Chamar a Família", + de: "Familienruf" + }, + + effect: { + en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja 1 Pokémon Básico y ponlo en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo un Pokémon Base e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por um Pokémon Básico no seu baralho e coloque-o no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach 1 Basis-Pokémon und lege es auf deine Bank. Mische anschließend dein Deck." + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Tackle", + fr: "Charge", + es: "Placaje", + it: "Azione", + pt: "Investida", + de: "Tackle" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/044.ts b/data/Scarlet & Violet/SVP Black Star Promos/044.ts new file mode 100644 index 000000000..fcd953595 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/044.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Charmander", + fr: "Salamèche", + es: "Charmander", + it: "Charmander", + pt: "Charmander", + de: "Glumanda" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["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 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/045.ts b/data/Scarlet & Violet/SVP Black Star Promos/045.ts new file mode 100644 index 000000000..af4edd0d9 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/045.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Paradise Resort", + fr: "Hôtel \" Au paradis des Pokémon \"", + es: "Complejo Turístico Paraíso", + it: "Resort Paradiso", + pt: "Resort Paraíso", + de: "Paradies Resort" + }, + + rarity: "None", + category: "Trainer", + + effect: { + en: "The Retreat Cost of each Psyduck in play (both yours and your opponent's) is Colorless less.", + fr: "Le Coût de Retraite de chacun des Psykokwak en jeu (les vôtres et ceux de votre adversaire) est diminué de Colorless.", + es: "El Coste de Retirada de cada Psyduck en juego (tanto tuyos como de tu rival) es de Colorless menos.", + it: "Il costo di ritirata di ciascuno Psyduck in gioco, sia tuo che del tuo avversario, è ridotto di Colorless.", + pt: "O custo de Recuo de cada Psyduck em jogo (seus e do seu oponente) é Colorless a menos.", + de: "Die Rückzugskosten aller Enton im Spiel (deiner und der deines Gegners) verringern sich um Colorless." + }, + + trainerType: "Stadium", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/046.ts b/data/Scarlet & Violet/SVP Black Star Promos/046.ts new file mode 100644 index 000000000..9311e2bb1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/046.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Bulbasaur", + fr: "Bulbizarre", + es: "Bulbasaur", + it: "Bulbasaur", + pt: "Bulbasaur", + de: "Bisasam" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Vine Whip", + fr: "Fouet Lianes", + es: "Látigo Cepa", + it: "Frustata", + pt: "Chicote de Vinha", + de: "Rankenhieb" + }, + + damage: 50 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/047.ts b/data/Scarlet & Violet/SVP Black Star Promos/047.ts new file mode 100644 index 000000000..6cf2cc26b --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/047.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Charmander", + fr: "Salamèche", + es: "Charmander", + it: "Charmander", + pt: "Charmander", + de: "Glumanda" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Fire"], + + name: { + en: "Ember", + fr: "Flammèche", + es: "Ascuas", + it: "Braciere", + pt: "Brasa", + de: "Glut" + }, + + effect: { + en: "Discard an Energy from this Pokémon.", + fr: "Défaussez une Énergie de ce Pokémon.", + es: "Descarta 1 Energía de este Pokémon.", + it: "Scarta un'Energia da questo Pokémon.", + pt: "Descarte uma Energia deste Pokémon.", + de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/048.ts b/data/Scarlet & Violet/SVP Black Star Promos/048.ts new file mode 100644 index 000000000..3f6d2786c --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/048.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Squirtle", + fr: "Carapuce", + es: "Squirtle", + it: "Squirtle", + pt: "Squirtle", + de: "Schiggy" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water", "Water"], + + name: { + en: "Bubble", + fr: "Écume", + es: "Burbuja", + it: "Bolla", + pt: "Bolha", + de: "Blubber" + }, + + 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: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/049.ts b/data/Scarlet & Violet/SVP Black Star Promos/049.ts new file mode 100644 index 000000000..0e94fa30f --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/049.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Zapdos ex", + fr: "Électhor-ex", + es: "Zapdos ex", + it: "Zapdos-ex", + pt: "Zapdos ex", + de: "Zapdos-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Voltaic Float", + fr: "Flottaison Voltaïque", + es: "Flotación Voltaica", + it: "Salvagente Voltaico", + pt: "Flutuador Voltaico", + de: "Voltfloß" + }, + + effect: { + en: "If this Pokémon has any Lightning Energy attached, it has no Retreat Cost.", + fr: "Si au moins une Énergie Lightning est attachée à ce Pokémon, il n'a pas de Coût de Retraite.", + es: "Si este Pokémon tiene alguna Energía Lightning unida, no tiene ningún Coste de Retirada.", + it: "Se questo Pokémon ha delle Energie Lightning assegnate, non ha costo di ritirata.", + pt: "Se este Pokémon tiver alguma Energia Lightning ligada a ele, não terá custo de Recuo.", + de: "Wenn an dieses Pokémon mindestens 1 Lightning-Energie angelegt ist, hat es keine Rückzugskosten." + } + }], + + attacks: [{ + cost: ["Lightning", "Lightning", "Lightning"], + + name: { + en: "Multishot Lightning", + fr: "Éclair Démultiplié", + es: "Relámpago Multidisparo", + it: "Fulmine Multicolpo", + pt: "Relâmpagos Múltiplos", + de: "Multischussblitz" + }, + + effect: { + en: "This attack also does 90 damage to 1 of your opponent's Benched Pokémon that has any damage counters on it. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 90 dégâts à l'un des Pokémon de Banc de votre adversaire ayant au moins un marqueur de dégâts. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 90 puntos de daño a uno de los Pokémon en Banca de tu rival que tenga algún contador de daño sobre él. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 90 danni a uno dei Pokémon nella panchina del tuo avversario che ha dei segnalini danno. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 90 pontos de dano a 1 dos Pokémon no Banco do seu oponente que tiver algum contador de dano nele. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt auch 1 Pokémon auf der Bank deines Gegners, auf dem mindestens 1 Schadensmarke liegt, 90 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 120 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/050.ts b/data/Scarlet & Violet/SVP Black Star Promos/050.ts new file mode 100644 index 000000000..a2d42f4b8 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/050.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Alakazam ex", + fr: "Alakazam-ex", + es: "Alakazam ex", + it: "Alakazam-ex", + pt: "Alakazam ex", + de: "Simsala-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 310, + types: ["Psychic"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Mind Jack", + fr: "Emprise Mentale", + es: "Levantamente", + it: "Sollevamente", + pt: "Tomada Mental", + de: "Gedankenstoß" + }, + + effect: { + en: "This attack does 30 more damage for each of your opponent's Benched Pokémon.", + fr: "Cette attaque inflige 30 dégâts supplémentaires pour chacun des Pokémon de Banc de votre adversaire.", + es: "Este ataque hace 30 puntos de daño más por cada uno de los Pokémon en Banca de tu rival.", + it: "Questo attacco infligge 30 danni in più per ogni Pokémon nella panchina del tuo avversario.", + pt: "Este ataque causa 30 pontos de dano a mais para cada Pokémon no Banco do seu oponente.", + de: "Diese Attacke fügt für jedes Pokémon auf der Bank deines Gegners 30 Schadenspunkte mehr zu." + }, + + damage: "90+" + }, { + cost: ["Psychic", "Psychic"], + + name: { + en: "Dimensional Hand", + fr: "Main Dimensionnelle", + es: "Mano Dimensional", + it: "Mano Dimensionale", + pt: "Mão Dimensional", + de: "Dimensionshand" + }, + + effect: { + en: "This attack can be used even if this Pokémon is on the Bench.", + fr: "Cette attaque peut être utilisée même si ce Pokémon est sur le Banc.", + es: "Este ataque se puede usar incluso si este Pokémon está en la Banca.", + it: "Questo attacco può essere usato anche se questo Pokémon è in panchina.", + pt: "Este ataque pode ser usado mesmo que este Pokémon esteja no Banco.", + de: "Diese Attacke kann auch eingesetzt werden, wenn sich dieses Pokémon auf der Bank befindet." + }, + + damage: 120 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/051.ts b/data/Scarlet & Violet/SVP Black Star Promos/051.ts new file mode 100644 index 000000000..8642ae1c5 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/051.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Snorlax", + fr: "Ronflex", + es: "Snorlax", + it: "Snorlax", + pt: "Snorlax", + de: "Relaxo" + }, + + rarity: "None", + category: "Pokemon", + hp: 150, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Voraciousness", + fr: "Avidité", + es: "Glotonería", + it: "Ingordigia", + pt: "Esfomeado", + de: "Unersättlichkeit" + }, + + effect: { + en: "Once during your turn, you may put up to 2 Leftovers cards from your discard pile into your hand.", + fr: "Une fois pendant votre tour, vous pouvez ajouter à votre main jusqu'à 2 cartes Restes de votre pile de défausse.", + es: "Una vez durante tu turno, puedes poner hasta 2 cartas de Restos de tu pila de descartes en tu mano.", + it: "Una sola volta durante il tuo turno, puoi prendere fino a due carte Avanzi dalla tua pila degli scarti e aggiungerle alle carte che hai in mano.", + pt: "Uma vez durante o seu turno, você poderá colocar até 2 cartas Sobras da sua pilha de descarte na sua mão.", + de: "Einmal während deines Zuges kannst du bis zu 2 Überreste-Karten aus deinem Ablagestapel auf deine Hand nehmen." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Thudding Press", + fr: "Pression Fracassante", + es: "Presión Sorda", + it: "Tonfopressa", + pt: "Compressão de Baque", + de: "Prallpresse" + }, + + effect: { + en: "This Pokémon also does 30 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 30 dégâts.", + es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.", + it: "Questo Pokémon infligge anche 30 danni a se stesso.", + pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.", + de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu." + }, + + damage: 130 + }], + + retreat: 4, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/052.ts b/data/Scarlet & Violet/SVP Black Star Promos/052.ts new file mode 100644 index 000000000..1a31135db --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/052.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Mewtwo", + fr: "Mewtwo", + es: "Mewtwo", + it: "Mewtwo", + pt: "Mewtwo", + de: "Mewtu" + }, + + rarity: "None", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Reflective Barrier", + fr: "Bouclier Réfléchissant", + es: "Barrera Reflectante", + it: "Barriera Riflettente", + pt: "Barreira Reflexiva", + de: "Reflektive Barriere" + }, + + effect: { + en: "During your opponent's next turn, if this Pokémon is damaged by an attack (even if it is Knocked Out), put damage counters on the Attacking Pokémon equal to the damage done to this Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, si ce Pokémon subit les dégâts d'une attaque (même s'il est mis K.O.), placez des marqueurs de dégâts sur le Pokémon Attaquant équivalents aux dégâts infligés à ce Pokémon.", + es: "Durante el próximo turno de tu rival, si este Pokémon resulta dañado por un ataque (incluso si queda Fuera de Combate), pon una cantidad de contadores de daño en el Pokémon Atacante equivalente al daño infligido a este Pokémon.", + it: "Durante il prossimo turno del tuo avversario, se questo Pokémon viene danneggiato da un attacco, anche se viene messo KO, metti sul Pokémon attaccante dei segnalini danno pari ai danni inflitti a questo Pokémon.", + pt: "Durante o próximo turno do seu oponente, se este Pokémon for danificado por um ataque (mesmo que ele seja Nocauteado), coloque contadores de dano no Pokémon Atacante equivalentes ao dano causado a este Pokémon.", + de: "Wenn dieses Pokémon während des nächsten Zuges deines Gegners durch eine Attacke Schaden erhält (auch wenn es dadurch kampfunfähig wird), lege der Höhe des diesem Pokémon zugefügten Schadens entsprechend Schadensmarken auf das Angreifende Pokémon." + }, + + damage: 20 + }, { + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Psyslash", + fr: "Psykochoc", + es: "Golpe Psíquico", + it: "Psicocolpo", + pt: "Pancada Psíquica", + de: "Psy-Schlitzer" + }, + + effect: { + en: "Discard 2 Energy from this Pokémon.", + fr: "Défaussez 2 Énergies de ce Pokémon.", + es: "Descarta 2 Energías de este Pokémon.", + it: "Scarta due Energie da questo Pokémon.", + pt: "Descarte 2 Energias deste Pokémon.", + de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 130 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/053.ts b/data/Scarlet & Violet/SVP Black Star Promos/053.ts new file mode 100644 index 000000000..fff9938c6 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/053.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Mew ex", + fr: "Mew-ex", + es: "Mew ex", + it: "Mew-ex", + pt: "Mew ex", + de: "Mew-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 180, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Restart", + fr: "Nouveau Départ", + es: "Reinicio", + it: "Riavvio", + pt: "Recomeçar", + de: "Neuanfang" + }, + + effect: { + en: "Once during your turn, you may draw cards until you have 3 cards in your hand.", + fr: "Une fois pendant votre tour, vous pouvez piocher des cartes jusqu'à en avoir 3 en main.", + es: "Una vez durante tu turno, puedes robar cartas hasta que tengas 3 cartas en tu mano.", + it: "Una sola volta durante il tuo turno, puoi pescare fino ad avere tre carte in mano.", + pt: "Uma vez durante o seu turno, você poderá comprar cartas até ter 3 cartas na sua mão.", + de: "Einmal während deines Zuges kannst du so lange Karten ziehen, bis du 3 Karten auf deiner Hand hast." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Genome Hacking", + fr: "Piratage de Génome", + es: "Hackeo Genoma", + it: "Hacking del Genoma", + pt: "Hackear Genoma", + de: "Genom-Hacking" + }, + + effect: { + en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack.", + fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque.", + es: "Elige uno de los ataques del Pokémon Activo de tu rival y úsalo para este ataque.", + it: "Scegli un attacco del Pokémon attivo del tuo avversario e usalo al posto di questo attacco.", + pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente e use-o como este ataque.", + de: "Wähle 1 Attacke des Aktiven Pokémon deines Gegners und setze sie als diese Attacke ein." + } + }], + + retreat: 0, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/054.ts b/data/Scarlet & Violet/SVP Black Star Promos/054.ts new file mode 100644 index 000000000..e000504c1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/054.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Greninja ex", + fr: "Amphinobi-ex", + es: "Greninja ex", + it: "Greninja-ex", + pt: "Greninja ex", + de: "Quajutsu-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 300, + types: ["Water"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Stealthy Shuriken", + fr: "Shuriken Furtif", + es: "Shuriken Sigiloso", + it: "Lame Furtive", + pt: "Estrela Ninja Furtiva", + de: "Tarn-Shuriken" + }, + + effect: { + en: "This attack does 40 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 40 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 40 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 40 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 40 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 40 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }, { + cost: ["Water", "Water"], + + name: { + en: "Torrential Slash", + fr: "Tranche Torrentielle", + es: "Tajo Torrencial", + it: "Lacerazione Torrenziale", + pt: "Talho Torrencial", + de: "Reißender Schnitt" + }, + + effect: { + en: "If your opponent's Active Pokémon already has any damage counters on it, this attack does 120 more damage.", + fr: "Si le Pokémon Actif de votre adversaire a déjà au moins un marqueur de dégâts, cette attaque inflige 120 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival ya tiene algún contador de daño sobre él, este ataque hace 120 puntos de daño más.", + it: "Se il Pokémon attivo del tuo avversario ha già dei segnalini danno, questo attacco infligge 120 danni in più.", + pt: "Se o Pokémon Ativo do seu oponente já tiver algum contador de dano nele, este ataque causará 120 pontos de dano a mais.", + de: "Wenn auf dem Aktiven Pokémon deines Gegners mindestens 1 Schadensmarke liegt, fügt diese Attacke 120 Schadenspunkte mehr zu." + }, + + damage: "120+" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/055.ts b/data/Scarlet & Violet/SVP Black Star Promos/055.ts new file mode 100644 index 000000000..f30ee0d16 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/055.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Kangaskhan ex", + fr: "Kangourex-ex", + es: "Kangaskhan ex", + it: "Kangaskhan-ex", + pt: "Kangaskhan ex", + de: "Kangama-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Triple Draw", + fr: "Triple Pioche", + es: "Triple Robo", + it: "Pescata Tripla", + pt: "Compra Tripla", + de: "Dreifachzug" + }, + + effect: { + en: "Draw 3 cards.", + fr: "Piochez 3 cartes.", + es: "Roba 3 cartas.", + it: "Pesca tre carte.", + pt: "Compre 3 cartas.", + de: "Ziehe 3 Karten." + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Incessant Punching", + fr: "Coups de Poing Incessants", + es: "Puñetazo Incesante", + it: "Pugni Incessanti", + pt: "Socos Incessantes", + de: "Dreschfest" + }, + + effect: { + en: "Flip 4 coins. This attack does 100 damage for each heads.", + fr: "Lancez 4 pièces. Cette attaque inflige 100 dégâts pour chaque côté face.", + es: "Lanza 4 monedas. Este ataque hace 100 puntos de daño por cada cara.", + it: "Lancia quattro volte una moneta. Questo attacco infligge 100 danni ogni volta che esce testa.", + pt: "Jogue 4 moedas. Este ataque causa 100 pontos de dano para cada cara.", + de: "Wirf 4 Münzen. Diese Attacke fügt 100 Schadenspunkte pro Kopf zu." + }, + + damage: "100×" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/056.ts b/data/Scarlet & Violet/SVP Black Star Promos/056.ts new file mode 100644 index 000000000..ddc95b6ed --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/056.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +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: "None", + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/057.ts b/data/Scarlet & Violet/SVP Black Star Promos/057.ts new file mode 100644 index 000000000..9e713bb7a --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/057.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Chi-Yu", + fr: "Yuyu", + es: "Chi-Yu", + it: "Chi-Yu", + pt: "Chi-Yu", + de: "Yuyu" + }, + + rarity: "None", + category: "Pokemon", + hp: 110, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Flare Bringer", + fr: "Porteur de Flamme", + es: "Portador de Llamas", + it: "Portafiamma", + pt: "Emissário das Chamas", + de: "Fackelbringer" + }, + + effect: { + en: "Attach up to 2 Basic Fire Energy cards from your discard pile to 1 of your Pokémon.", + fr: "Attachez jusqu'à 2 cartes Énergie Fire de base de votre pile de défausse à l'un de vos Pokémon.", + es: "Une hasta 2 cartas de Energía Fire Básica de tu pila de descartes a uno de tus Pokémon.", + it: "Assegna a uno dei tuoi Pokémon fino a due carte Energia base Fire dalla tua pila degli scarti.", + pt: "Ligue até 2 cartas de Energia Fire Básica da sua pilha de descarte a 1 dos seus Pokémon.", + de: "Lege bis zu 2 Basis-Fire-Energiekarten aus deinem Ablagestapel an 1 deiner Pokémon an." + } + }, { + cost: ["Fire", "Fire"], + + name: { + en: "Megafire of Envy", + fr: "Jalousie Méga Brûlante", + es: "Megafuego de Envidia", + it: "Megafuoco d'Invidia", + pt: "Megafogo da Inveja", + de: "Megafeuer des Neids" + }, + + effect: { + en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 90 more damage.", + fr: "Si au moins l'un de vos Pokémon a été mis K.O. par les dégâts d'une attaque pendant le dernier tour de votre adversaire, cette attaque inflige 90 dégâts supplémentaires.", + es: "Si alguno de tus Pokémon quedó Fuera de Combate por el daño de un ataque durante el último turno de tu rival, este ataque hace 90 puntos de daño más.", + it: "Se uno qualsiasi dei tuoi Pokémon è stato messo KO dai danni inflitti da un attacco durante l'ultimo turno del tuo avversario, questo attacco infligge 90 danni in più.", + pt: "Se algum dos seus Pokémon tiver sido Nocauteado pelo dano de um ataque durante o último turno do seu oponente, este ataque causará 90 pontos de dano a mais.", + de: "Wenn mindestens 1 deiner Pokémon während des letzten Zuges deines Gegners durch Schaden einer Attacke kampfunfähig wurde, fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "50+" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/058.ts b/data/Scarlet & Violet/SVP Black Star Promos/058.ts new file mode 100644 index 000000000..59b0209f9 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/058.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Iron Bundle", + fr: "Hotte-de-Fer", + es: "Ferrosaco", + it: "Saccoferreo", + pt: "Pacote Férreo", + de: "Eisenbündel" + }, + + rarity: "None", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Hyper Blower", + fr: "Hyper Souffleuse", + es: "Hipersoplador", + it: "Iperventola", + pt: "Ultrassoprador", + de: "Hypergebläse" + }, + + effect: { + en: "Once during your turn, if this Pokémon is on your Bench, you may switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.) If you do, discard this Pokémon and all attached cards.", + fr: "Une fois pendant votre tour, si ce Pokémon est sur votre Banc, vous pouvez envoyer le Pokémon Actif de votre adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.) Dans ce cas, défaussez ce Pokémon et toutes les cartes qui lui sont attachées.", + es: "Una vez durante tu turno, si este Pokémon está en tu Banca, puedes mover el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo). Si lo haces, descarta este Pokémon y todas las cartas unidas a él.", + it: "Una sola volta durante il tuo turno, se questo Pokémon è nella tua panchina, puoi spostare il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo. Se lo fai, scarta questo Pokémon e tutte le carte a esso assegnate.", + pt: "Uma vez durante o seu turno, se este Pokémon estiver no seu Banco, você poderá mandar o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.) Se fizer isto, descarte este Pokémon e todas as cartas ligadas a ele.", + de: "Einmal während deines Zuges, wenn sich dieses Pokémon auf deiner Bank befindet, kannst du das Aktive Pokémon deines Gegners auf seine Bank auswechseln. (Dein Gegner wählt das neue Aktive Pokémon.) Wenn du das machst, lege dieses Pokémon und alle angelegten Karten auf deinen Ablagestapel." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Refrigerated Stream", + fr: "Flux Réfrigéré", + es: "Corriente Refrigerada", + it: "Refrigetto", + pt: "Fluxo Refrigerado", + de: "Tiefkühlströmung" + }, + + effect: { + en: "If the Defending Pokémon is an Evolution Pokémon, it can't attack during your opponent's next turn.", + fr: "Si le Pokémon Défenseur est un Pokémon Évolutif, il ne peut pas attaquer pendant le prochain tour de votre adversaire.", + es: "Si el Pokémon Defensor es un Pokémon Evolución, 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 Evoluzione.", + pt: "Se o Pokémon Defensor for um Pokémon de Evolução, ele não poderá atacar durante o próximo turno do seu oponente.", + de: "Wenn das Verteidigende Pokémon ein Entwicklungs-Pokémon ist, kann es während des nächsten Zuges deines Gegners nicht angreifen." + }, + + damage: 80 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/059.ts b/data/Scarlet & Violet/SVP Black Star Promos/059.ts new file mode 100644 index 000000000..cac9df666 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/059.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Xatu", + fr: "Xatu", + es: "Xatu", + it: "Xatu", + pt: "Xatu", + de: "Xatu" + }, + + rarity: "None", + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/060.ts b/data/Scarlet & Violet/SVP Black Star Promos/060.ts new file mode 100644 index 000000000..ee19e6a55 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/060.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Aegislash", + fr: "Exagide", + es: "Aegislash", + it: "Aegislash", + pt: "Aegislash", + de: "Durengard" + }, + + rarity: "None", + category: "Pokemon", + hp: 150, + types: ["Metal"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Mysterious Shield", + fr: "Bouclier Mystérieux", + es: "Escudo Misterioso", + it: "Scudo Misterioso", + pt: "Escudo Misterioso", + de: "Geheimnisvoller Schild" + }, + + 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: ["Metal", "Colorless"], + + name: { + en: "Hard Bashing", + fr: "Rossée Dure", + es: "Duro Vapuleo", + it: "Colpoduro", + pt: "Batida Forte", + de: "Harter 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: 120 + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/061.ts b/data/Scarlet & Violet/SVP Black Star Promos/061.ts new file mode 100644 index 000000000..381bd54c1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/061.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pineco", + fr: "Pomdepik", + es: "Pineco", + it: "Pineco", + pt: "Pineco", + de: "Tannza" + }, + + rarity: "None", + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/062.ts b/data/Scarlet & Violet/SVP Black Star Promos/062.ts new file mode 100644 index 000000000..0c9427c85 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/062.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Sinistea", + fr: "Théffroi", + es: "Sinistea", + it: "Sinistea", + pt: "Sinistea", + de: "Fatalitee" + }, + + rarity: "None", + category: "Pokemon", + hp: 30, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Cold Tea", + fr: "Thé Froid", + es: "Té Frío", + it: "Tè Freddo", + pt: "Chá Frio", + de: "Kalter Tee" + }, + + 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: 10 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/063.ts b/data/Scarlet & Violet/SVP Black Star Promos/063.ts new file mode 100644 index 000000000..6db4140cb --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/063.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Cetitan", + fr: "Balbalèze", + es: "Cetitan", + it: "Cetitan", + pt: "Cetitan", + de: "Kolowal" + }, + + rarity: "None", + category: "Pokemon", + hp: 170, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Avalanche", + fr: "Avalanche", + es: "Alud", + it: "Slavina", + pt: "Avalanche", + de: "Lawine" + }, + + effect: { + en: "This attack also does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 10 puntos de daño a cada uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 10 danni a ciascuno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 10 pontos de dano a cada um 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 auch jedem Pokémon auf der Bank deines Gegners 10 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 30 + }, { + cost: ["Water", "Water", "Water"], + + name: { + en: "Rolling Slider", + fr: "Frappe Roulante", + es: "Deslizamiento Rodante", + it: "Rotoscivolata", + pt: "Deslizar Rolante", + de: "Rollendes Geschlitter" + }, + + effect: { + en: "Flip 3 coins. This attack does 100 damage for each heads.", + fr: "Lancez 3 pièces. Cette attaque inflige 100 dégâts pour chaque côté face.", + es: "Lanza 3 monedas. Este ataque hace 100 puntos de daño por cada cara.", + it: "Lancia tre volte una moneta. Questo attacco infligge 100 danni ogni volta che esce testa.", + pt: "Jogue 3 moedas. Este ataque causa 100 pontos de dano para cada cara.", + de: "Wirf 3 Münzen. Diese Attacke fügt 100 Schadenspunkte pro Kopf zu." + }, + + damage: "100×" + }], + + retreat: 4, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/064.ts b/data/Scarlet & Violet/SVP Black Star Promos/064.ts new file mode 100644 index 000000000..42edce3b2 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/064.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Arctibax", + fr: "Cryodo", + es: "Arctibax", + it: "Arctibax", + pt: "Arctibax", + de: "Cryospino" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Sharp Fin", + fr: "Aileron Aiguisé", + es: "Cortaleta", + it: "Pinnaffilata", + pt: "Barbatana Afiada", + de: "Schneidige Flosse" + }, + + damage: 40 + }, { + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Frost Smash", + fr: "Impact Glacial", + es: "Golpe Gélido", + it: "Gelocolpo", + pt: "Pancada Congelada", + de: "Frostschlag" + }, + + damage: 80 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/065.ts b/data/Scarlet & Violet/SVP Black Star Promos/065.ts new file mode 100644 index 000000000..b9f21dbf7 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/065.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Scream Tail", + fr: "Hurle-Queue", + es: "Colagrito", + it: "Codaurlante", + pt: "Cauda Brado", + de: "Brüllschweif" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Slap", + fr: "Gifle", + es: "Bofetón", + it: "Sberla", + pt: "Tapa", + de: "Hieb" + }, + + damage: 30 + }, { + cost: ["Psychic", "Colorless"], + + name: { + en: "Roaring Scream", + fr: "Hurlement Bestial", + es: "Grito Rugiente", + it: "Urlo Ruggente", + pt: "Brado Estrondo", + de: "Tosendes Gebrüll" + }, + + effect: { + en: "This attack does 20 damage to 1 of your opponent's Pokémon for each damage counter on this Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 20 dégâts à l'un des Pokémon de votre adversaire pour chaque marqueur de dégâts sur ce Pokémon. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 20 puntos de daño a uno de los Pokémon de tu rival por cada contador de daño en este Pokémon. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 20 danni a uno dei Pokémon del tuo avversario per ogni segnalino danno presente su questo Pokémon. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 20 pontos de dano a 1 dos Pokémon do seu oponente para cada contador de dano neste Pokémon. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners für jede Schadensmarke auf diesem Pokémon 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/066.ts b/data/Scarlet & Violet/SVP Black Star Promos/066.ts new file mode 100644 index 000000000..59b0209f9 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/066.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Iron Bundle", + fr: "Hotte-de-Fer", + es: "Ferrosaco", + it: "Saccoferreo", + pt: "Pacote Férreo", + de: "Eisenbündel" + }, + + rarity: "None", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Hyper Blower", + fr: "Hyper Souffleuse", + es: "Hipersoplador", + it: "Iperventola", + pt: "Ultrassoprador", + de: "Hypergebläse" + }, + + effect: { + en: "Once during your turn, if this Pokémon is on your Bench, you may switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.) If you do, discard this Pokémon and all attached cards.", + fr: "Une fois pendant votre tour, si ce Pokémon est sur votre Banc, vous pouvez envoyer le Pokémon Actif de votre adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.) Dans ce cas, défaussez ce Pokémon et toutes les cartes qui lui sont attachées.", + es: "Una vez durante tu turno, si este Pokémon está en tu Banca, puedes mover el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo). Si lo haces, descarta este Pokémon y todas las cartas unidas a él.", + it: "Una sola volta durante il tuo turno, se questo Pokémon è nella tua panchina, puoi spostare il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo. Se lo fai, scarta questo Pokémon e tutte le carte a esso assegnate.", + pt: "Uma vez durante o seu turno, se este Pokémon estiver no seu Banco, você poderá mandar o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.) Se fizer isto, descarte este Pokémon e todas as cartas ligadas a ele.", + de: "Einmal während deines Zuges, wenn sich dieses Pokémon auf deiner Bank befindet, kannst du das Aktive Pokémon deines Gegners auf seine Bank auswechseln. (Dein Gegner wählt das neue Aktive Pokémon.) Wenn du das machst, lege dieses Pokémon und alle angelegten Karten auf deinen Ablagestapel." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Refrigerated Stream", + fr: "Flux Réfrigéré", + es: "Corriente Refrigerada", + it: "Refrigetto", + pt: "Fluxo Refrigerado", + de: "Tiefkühlströmung" + }, + + effect: { + en: "If the Defending Pokémon is an Evolution Pokémon, it can't attack during your opponent's next turn.", + fr: "Si le Pokémon Défenseur est un Pokémon Évolutif, il ne peut pas attaquer pendant le prochain tour de votre adversaire.", + es: "Si el Pokémon Defensor es un Pokémon Evolución, 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 Evoluzione.", + pt: "Se o Pokémon Defensor for um Pokémon de Evolução, ele não poderá atacar durante o próximo turno do seu oponente.", + de: "Wenn das Verteidigende Pokémon ein Entwicklungs-Pokémon ist, kann es während des nächsten Zuges deines Gegners nicht angreifen." + }, + + damage: 80 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/067.ts b/data/Scarlet & Violet/SVP Black Star Promos/067.ts new file mode 100644 index 000000000..2b30da219 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/067.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Roaring Moon ex", + fr: "Rugit-Lune-ex", + es: "Bramaluna ex", + it: "Lunaruggente-ex", + pt: "Lua Estrondo ex", + de: "Donnersichel-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Frenzied Gouging", + fr: "Percée Frénétique", + es: "Excavación Frenética", + it: "Frenesquarcio", + pt: "Arrancada Frenética", + de: "Fieberhaftes Ausstechen" + }, + + effect: { + en: "Knock Out your opponent's Active Pokémon. If your opponent's Active Pokémon is Knocked Out in this way, this Pokémon does 200 damage to itself.", + fr: "Mettez K.O. le Pokémon Actif de votre adversaire. Si le Pokémon Actif de votre adversaire est mis K.O. de cette façon, ce Pokémon s'inflige 200 dégâts.", + es: "Deja Fuera de Combate al Pokémon Activo de tu rival. Si el Pokémon Activo de tu rival queda Fuera de Combate de esta manera, este Pokémon se hace 200 puntos de daño a sí mismo.", + it: "Metti KO il Pokémon attivo del tuo avversario. Se il Pokémon attivo del tuo avversario viene messo KO in questo modo, questo Pokémon infligge 200 danni a se stesso.", + pt: "Nocauteie o Pokémon Ativo do seu oponente. Se o Pokémon Ativo do seu oponente tiver sido Nocauteado desta forma, este Pokémon causará 200 pontos de dano a si mesmo.", + de: "Mache das Aktive Pokémon deines Gegners kampfunfähig. Wenn das Aktive Pokémon deines Gegners auf diese Weise kampfunfähig wird, fügt dieses Pokémon sich selbst 200 Schadenspunkte zu." + } + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Calamity Storm", + fr: "Tempête Calamiteuse", + es: "Tormenta Calamitosa", + it: "Tempesta Disastrosa", + pt: "Tempestade Calamitosa", + de: "Unheilvoller Sturm" + }, + + effect: { + en: "You may discard a Stadium in play. If you do, this attack does 120 more damage.", + fr: "Vous pouvez défausser un Stade en jeu. Dans ce cas, cette attaque inflige 120 dégâts supplémentaires.", + es: "Puedes descartar 1 Estadio en juego. Si lo haces, este ataque hace 120 puntos de daño más.", + it: "Puoi scartare una carta Stadio in gioco. Se lo fai, questo attacco infligge 120 danni in più.", + pt: "Você pode descartar um Estádio em jogo. Se fizer isto, este ataque causará 120 pontos de dano a mais.", + de: "Du kannst 1 Stadionkarte im Spiel auf den Ablagestapel legen. Wenn du das machst, fügt diese Attacke 120 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/068.ts b/data/Scarlet & Violet/SVP Black Star Promos/068.ts new file mode 100644 index 000000000..74801c815 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/068.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Iron Valiant ex", + fr: "Garde-de-Fer-ex", + es: "Ferropaladín ex", + it: "Eroeferreo-ex", + pt: "Valentia Férrea ex", + de: "Eisenkrieger-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Tachyon Bits", + fr: "Particules de Tachyon", + es: "Partículas Taquiónicas", + it: "Particelle Tachioniche", + pt: "Fragmentos Taquiônicos", + de: "Tachyonen-Teilchen" + }, + + effect: { + en: "Once during your turn, when this Pokémon moves from your Bench to the Active Spot, you may put 2 damage counters on 1 of your opponent's Pokémon.", + fr: "Une fois pendant votre tour, lorsque ce Pokémon se déplace de votre Banc vers le Poste Actif, vous pouvez placer 2 marqueurs de dégâts sur l'un des Pokémon de votre adversaire.", + es: "Una vez durante tu turno, cuando este Pokémon se mueve de tu Banca al Puesto Activo, puedes poner 2 contadores de daño en uno de los Pokémon de tu rival.", + it: "Una sola volta durante il tuo turno, quando questo Pokémon si sposta dalla tua panchina in posizione attiva, puoi mettere due segnalini danno su uno dei Pokémon del tuo avversario.", + pt: "Uma vez durante o seu turno, quando este Pokémon for movido do seu Banco para o Campo Ativo, você poderá colocar 2 contadores de dano em 1 dos Pokémon do seu oponente.", + de: "Einmal während deines Zuges, wenn dieses Pokémon von deiner Bank in die Aktive Position wechselt, kannst du 2 Schadensmarken auf 1 Pokémon deines Gegners legen." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Laser Blade", + fr: "Lame Laser", + es: "Cuchilla Láser", + it: "Lamalaser", + pt: "Espada Laser", + de: "Laserklinge" + }, + + 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: 200 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/069.ts b/data/Scarlet & Violet/SVP Black Star Promos/069.ts new file mode 100644 index 000000000..51fc0d4b8 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/069.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Fidough", + fr: "Pâtachiot", + es: "Fidough", + it: "Fidough", + pt: "Fidough", + de: "Hefel" + }, + + rarity: "None", + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/070.ts b/data/Scarlet & Violet/SVP Black Star Promos/070.ts new file mode 100644 index 000000000..6c3ec6291 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/070.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Greavard", + fr: "Toutombe", + es: "Greavard", + it: "Greavard", + pt: "Greavard", + de: "Gruff" + }, + + rarity: "None", + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/071.ts b/data/Scarlet & Violet/SVP Black Star Promos/071.ts new file mode 100644 index 000000000..fb0892cd4 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/071.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Maschiff", + fr: "Grondogue", + es: "Maschiff", + it: "Maschiff", + pt: "Maschiff", + de: "Mobtiff" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Ambush", + fr: "Embuscade", + es: "Emboscada", + it: "Imboscata", + pt: "Emboscada", + de: "Hinterhalt" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 20 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/072.ts b/data/Scarlet & Violet/SVP Black Star Promos/072.ts new file mode 100644 index 000000000..ad32bfea9 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/072.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +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: "None", + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/073.ts b/data/Scarlet & Violet/SVP Black Star Promos/073.ts new file mode 100644 index 000000000..3df63e470 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/073.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Iron Treads ex", + fr: "Roue-de-Fer-ex", + es: "Ferrodada ex", + it: "Solcoferreo-ex", + pt: "Trilho Férreo ex", + de: "Eisenrad-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Metal", "Colorless"], + + name: { + en: "Iron-Clad Roll", + fr: "Roulé de Fer", + es: "Voltereta Férrea", + it: "Rotolamento Corazzato", + pt: "Rolagem Chapa de Ferro", + de: "Eisenpanzerrolle" + }, + + effect: { + en: "After doing damage, you may discard all Future Booster Energy Capsules from this Pokémon. If you do, during your opponent's next turn, this Pokémon takes 150 less damage from attacks (after applying Weakness and Resistance).", + fr: "Après avoir infligé des dégâts, vous pouvez défausser toutes les Capsules Énergie Booster Temps Futur attachées à ce Pokémon. Dans ce cas, pendant le prochain tour de votre adversaire, ce Pokémon subit 150 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).", + es: "Después de infligir daño, puedes descartar todas las cartas de Tanque de Energía Potenciadora del Futuro de este Pokémon. Si lo haces, durante el próximo turno de tu rival, los ataques hacen 150 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).", + it: "Dopo aver inflitto danni, puoi scartare tutte le carte Capsula energetica Tempo Futuro da questo Pokémon. Se lo fai, durante il prossimo turno del tuo avversario, questo Pokémon subisce 150 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Depois de causar dano, você poderá descartar todas as Cápsulas Energéticas de Melhoria Futurista deste Pokémon. Se fizer isto, durante o próximo turno do seu oponente, este Pokémon receberá 150 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).", + de: "Nachdem du Schaden zugefügt hast, kannst du alle Energiekapseln aus der Zukunft von diesem Pokémon auf deinen Ablagestapel legen. Wenn du das machst, werden diesem Pokémon während des nächsten Zuges deines Gegners durch Attacken 150 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + }, + + damage: 150 + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/074.ts b/data/Scarlet & Violet/SVP Black Star Promos/074.ts new file mode 100644 index 000000000..ddc95b6ed --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/074.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +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: "None", + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/075.ts b/data/Scarlet & Violet/SVP Black Star Promos/075.ts new file mode 100644 index 000000000..80e37cbc2 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/075.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Mimikyu", + fr: "Mimiqui", + es: "Mimikyu", + it: "Mimikyu", + pt: "Mimikyu", + de: "Mimigma" + }, + + rarity: "None", + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/076.ts b/data/Scarlet & Violet/SVP Black Star Promos/076.ts new file mode 100644 index 000000000..54d85ee77 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/076.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Sprigatito", + fr: "Poussacha", + es: "Sprigatito", + it: "Sprigatito", + pt: "Sprigatito", + de: "Felori" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Gather Sunlight", + fr: "Collecte Solaire", + es: "Síntesis Solar", + it: "Radunasole", + pt: "Banho de Sol", + de: "Sonnenlicht sammeln" + }, + + 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: ["Grass"], + + name: { + en: "Seed Bomb", + fr: "Canon Graine", + es: "Bomba Germen", + it: "Semebomba", + pt: "Bomba de Sementes", + de: "Samenbomben" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/077.ts b/data/Scarlet & Violet/SVP Black Star Promos/077.ts new file mode 100644 index 000000000..e2ce383a7 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/077.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Floragato", + fr: "Matourgeon", + es: "Floragato", + it: "Floragato", + pt: "Floragato", + de: "Feliospa" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Seed Bomb", + fr: "Canon Graine", + es: "Bomba Germen", + it: "Semebomba", + pt: "Bomba de Sementes", + de: "Samenbomben" + }, + + damage: 30 + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "Magic Whip", + fr: "Fouet Magique", + es: "Latigazo Mágico", + it: "Magifrusta", + pt: "Chicote Mágico", + de: "Magische Peitsche" + }, + + effect: { + en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)", + fr: "Envoyez le Pokémon Actif de l'adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.)", + es: "Mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo).", + it: "Sposta il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo.", + pt: "Mande o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.)", + de: "Wechsle das Aktive Pokémon deines Gegners auf seine Bank aus. (Dein Gegner wählt das neue Aktive Pokémon.)" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/078.ts b/data/Scarlet & Violet/SVP Black Star Promos/078.ts new file mode 100644 index 000000000..dc114b7ac --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/078.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Meowscarada ex", + fr: "Miascarade-ex", + es: "Meowscarada ex", + it: "Meowscarada-ex", + pt: "Meowscarada ex", + de: "Maskagato-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 310, + types: ["Grass"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Bouquet Magic", + fr: "Bouquet Magique", + es: "Magia Floral", + it: "Bouquet Magico", + pt: "Buquê Mágico", + de: "Bouquetmagie" + }, + + effect: { + en: "You must discard a Basic Grass Energy card from your hand in order to use this Ability. Once during your turn, you may put 3 damage counters on 1 of your opponent's Benched Pokémon.", + fr: "Vous devez défausser une carte Énergie Grass de base de votre main pour pouvoir utiliser ce talent. Une fois pendant votre tour, vous pouvez placer 3 marqueurs de dégâts sur l'un des Pokémon de Banc de votre adversaire.", + es: "Debes descartar 1 carta de Energía Grass Básica de tu mano para poder usar esta habilidad. Una vez durante tu turno, puedes poner 3 contadores de daño en uno de los Pokémon en Banca de tu rival.", + it: "Devi scartare una carta Energia base Grass che hai in mano per usare questa abilità. Una sola volta durante il tuo turno, puoi mettere tre segnalini danno su uno dei Pokémon nella panchina del tuo avversario.", + pt: "Você deve descartar uma carta de Energia Grass Básica da sua mão para usar esta Habilidade. Uma vez durante o seu turno, você poderá colocar 3 contadores de dano em 1 dos Pokémon no Banco do seu oponente.", + de: "Du musst 1 Basis-Grass-Energiekarte aus deiner Hand auf deinen Ablagestapel legen, um diese Fähigkeit einzusetzen. Einmal während deines Zuges kannst du 3 Schadensmarken auf 1 Pokémon auf der Bank deines Gegners legen." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Scratching Nails", + fr: "Griffes Griffantes", + es: "Uñas Rasgadoras", + it: "Unghie Graffianti", + pt: "Unhas Arranhadoras", + de: "Kratzende Krallen" + }, + + effect: { + en: "If your opponent's Active Pokémon already has any damage counters on it, this attack does 120 more damage.", + fr: "Si le Pokémon Actif de votre adversaire a déjà au moins un marqueur de dégâts, cette attaque inflige 120 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival ya tiene algún contador de daño sobre él, este ataque hace 120 puntos de daño más.", + it: "Se il Pokémon attivo del tuo avversario ha già dei segnalini danno, questo attacco infligge 120 danni in più.", + pt: "Se o Pokémon Ativo do seu oponente já tiver algum contador de dano nele, este ataque causará 120 pontos de dano a mais.", + de: "Wenn auf dem Aktiven Pokémon deines Gegners mindestens 1 Schadensmarke liegt, fügt diese Attacke 120 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/079.ts b/data/Scarlet & Violet/SVP Black Star Promos/079.ts new file mode 100644 index 000000000..5314e2da9 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/079.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Fuecoco", + fr: "Chochodile", + es: "Fuecoco", + it: "Fuecoco", + pt: "Fuecoco", + de: "Krokel" + }, + + rarity: "None", + category: "Pokemon", + hp: 80, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Tackle", + fr: "Charge", + es: "Placaje", + it: "Azione", + pt: "Investida", + de: "Tackle" + }, + + damage: 20 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/080.ts b/data/Scarlet & Violet/SVP Black Star Promos/080.ts new file mode 100644 index 000000000..fc06fb5c6 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/080.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Crocalor", + fr: "Crocogril", + es: "Crocalor", + it: "Crocalor", + pt: "Crocalor", + de: "Lokroko" + }, + + rarity: "None", + category: "Pokemon", + hp: 110, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["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 + }, { + cost: ["Fire", "Fire"], + + name: { + en: "Hyper Voice", + fr: "Mégaphone", + es: "Vozarrón", + it: "Granvoce", + pt: "Hipervoz", + de: "Schallwelle" + }, + + damage: 70 + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/081.ts b/data/Scarlet & Violet/SVP Black Star Promos/081.ts new file mode 100644 index 000000000..5938fb14b --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/081.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Skeledirge ex", + fr: "Flâmigator-ex", + es: "Skeledirge ex", + it: "Skeledirge-ex", + pt: "Skeledirge ex", + de: "Skelokrok-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 340, + types: ["Fire"], + stage: "Stage2", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Vitality Song", + fr: "Chant Vitalité", + es: "Canto Vitalidad", + it: "Canto del Vigore", + pt: "Canção de Vitalidade", + de: "Vitalitätsgesang" + }, + + effect: { + en: "Heal 30 damage from each of your Pokémon.", + fr: "Soignez 30 dégâts de chacun de vos Pokémon.", + es: "Cura 30 puntos de daño a cada uno de tus Pokémon.", + it: "Cura ciascuno dei tuoi Pokémon da 30 danni.", + pt: "Cure 30 pontos de dano de cada um dos seus Pokémon.", + de: "Heile 30 Schadenspunkte bei jedem deiner Pokémon." + }, + + damage: 50 + }, { + cost: ["Fire", "Fire"], + + name: { + en: "Burning Voice", + fr: "Voix Brûlante", + es: "Voz Abrasadora", + it: "Bruciavoce", + pt: "Voz Abrasadora", + de: "Brennende Stimme" + }, + + effect: { + en: "This attack does 10 less damage for each damage counter on this Pokémon.", + fr: "Cette attaque inflige 10 dégâts de moins pour chaque marqueur de dégâts sur ce Pokémon.", + es: "Este ataque hace 10 puntos de daño menos por cada contador de daño en este Pokémon.", + it: "Questo attacco infligge 10 danni in meno per ogni segnalino danno presente su questo Pokémon.", + pt: "Este ataque causa 10 pontos de dano a menos para cada contador de dano neste Pokémon.", + de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte weniger zu." + }, + + damage: "270-" + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/082.ts b/data/Scarlet & Violet/SVP Black Star Promos/082.ts new file mode 100644 index 000000000..183aed4cf --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/082.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Quaxly", + fr: "Coiffeton", + es: "Quaxly", + it: "Quaxly", + pt: "Quaxly", + de: "Kwaks" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/083.ts b/data/Scarlet & Violet/SVP Black Star Promos/083.ts new file mode 100644 index 000000000..e26035753 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/083.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Quaxwell", + fr: "Canarbello", + es: "Quaxwell", + it: "Quaxwell", + pt: "Quaxwell", + de: "Fuentente" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Water Gun", + fr: "Pistolet à O", + es: "Pistola Agua", + it: "Pistolacqua", + pt: "Revólver d'Água", + de: "Aquaknarre" + }, + + damage: 30 + }, { + cost: ["Water", "Colorless"], + + name: { + en: "Wave Splash", + fr: "Grosse Vague", + es: "Chapoteo Ondulante", + it: "Schizzi d'Onda", + pt: "Onda Borrifante", + de: "Wellenplatscher" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/084.ts b/data/Scarlet & Violet/SVP Black Star Promos/084.ts new file mode 100644 index 000000000..f3496ce6c --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/084.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Quaquaval ex", + fr: "Palmaval-ex", + es: "Quaquaval ex", + it: "Quaquaval-ex", + pt: "Quaquaval ex", + de: "Bailonda-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 320, + types: ["Water"], + stage: "Stage2", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Exciting Dance", + fr: "Danse Palpitante", + es: "Baile Apasionante", + it: "Danza Coinvolgente", + pt: "Samba Empolgante", + de: "Mitreißender Tanz" + }, + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon. If you do, switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)", + fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc. Dans ce cas, envoyez le Pokémon Actif de l'adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.)", + es: "Cambia este Pokémon por uno de tus Pokémon en Banca. Si lo haces, mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo).", + it: "Scambia questo Pokémon con uno della tua panchina. Se lo fai, sposta il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo.", + pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco. Se fizer isto, mande o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.)", + de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus. Wenn du das machst, wechsle das Aktive Pokémon deines Gegners auf seine Bank aus. (Dein Gegner wählt das neue Aktive Pokémon.)" + }, + + damage: 60 + }, { + cost: ["Water", "Colorless"], + + name: { + en: "Spiral Shot", + fr: "Tir en Spirale", + es: "Lanzamiento en Espiral", + it: "Spiralcolpo", + pt: "Disparo Espiral", + de: "Spiralschuss" + }, + + 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: 230 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/085.ts b/data/Scarlet & Violet/SVP Black Star Promos/085.ts new file mode 100644 index 000000000..8ed4a05d0 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/085.ts @@ -0,0 +1,39 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu with Grey Felt Hat", + pt: "Pikachu com Chapéu de feltro Cinza" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + stage: "Basic", + + attacks: [ + { + cost: ["Lightning"], + + name: { + en: "Pika-Portrait", + pt: "Pika-Retrato" + }, + + effect: { + en: "Search your deck for a Pikachu and put it onto your Bench. Then, shuffle your deck.", + pt: "Procure por um Pikachu em seu baralho e coloque-o no seu Banco. Em seguida, embaralhe seu baralho." + }, + + } + ], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/086.ts b/data/Scarlet & Violet/SVP Black Star Promos/086.ts new file mode 100644 index 000000000..2283254b1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/086.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Mabosstiff ex", + fr: "Dogrino-ex", + es: "Mabosstiff ex", + it: "Mabosstiff-ex", + pt: "Mabosstiff ex", + de: "Mastifioso-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 260, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Daunt", + fr: "Découragement", + es: "Arredrar", + it: "Scoraggiare", + pt: "Atemorizar", + de: "Entmutigen" + }, + + effect: { + en: "During your opponent's next turn, attacks used by the Defending Pokémon do 50 less damage (before applying Weakness and Resistance).", + fr: "Pendant le prochain tour de votre adversaire, les attaques utilisées par le Pokémon Défenseur infligent 50 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 usados por el Pokémon Defensor hacen 50 puntos de daño menos (antes de aplicar Debilidad y Resistencia).", + it: "Durante il prossimo turno del tuo avversario, gli attacchi usati dal Pokémon difensore infliggono 50 danni in meno, prima di aver applicato debolezza e resistenza.", + pt: "Durante o próximo turno do seu oponente, os ataques usados pelo Pokémon Defensor causarão 50 pontos de dano a menos (antes de aplicar Fraqueza e Resistência).", + de: "Während des nächsten Zuges deines Gegners fügen die vom Verteidigenden Pokémon eingesetzten Attacken 50 Schadenspunkte weniger zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + damage: 30 + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Proud Fangs", + fr: "Crocs Fiers", + es: "Colmillos Imponentes", + it: "Zanne Fiere", + pt: "Presas Orgulhosas", + de: "Stattliche Fänge" + }, + + effect: { + en: "If your Benched Pokémon have any damage counters on them, this attack does 120 more damage.", + fr: "Si au moins un marqueur de dégâts est placé sur vos Pokémon de Banc, cette attaque inflige 120 dégâts supplémentaires.", + es: "Si tus Pokémon en Banca tienen algún contador de daño sobre ellos, este ataque hace 120 puntos de daño más.", + it: "Se i tuoi Pokémon in panchina hanno dei segnalini danno, questo attacco infligge 120 danni in più.", + pt: "Se os seus Pokémon no Banco tiverem algum contador de dano neles, este ataque causará 120 pontos de dano a mais.", + de: "Wenn auf den Pokémon auf deiner Bank mindestens 1 Schadensmarke liegt, fügt diese Attacke 120 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/087.ts b/data/Scarlet & Violet/SVP Black Star Promos/087.ts new file mode 100644 index 000000000..e089615a6 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/087.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Sprigatito ex", + fr: "Poussacha-ex", + es: "Sprigatito ex", + it: "Sprigatito-ex", + pt: "Sprigatito ex", + de: "Felori-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 200, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Scratch", + fr: "Griffe", + es: "Arañazo", + it: "Graffio", + pt: "Arranhão", + de: "Kratzer" + }, + + damage: 20 + }, { + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Magical Leaf", + fr: "Feuille Magik", + es: "Hoja Mágica", + it: "Fogliamagica", + pt: "Folha Mágica", + de: "Zauberblatt" + }, + + 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: 100 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/088.ts b/data/Scarlet & Violet/SVP Black Star Promos/088.ts new file mode 100644 index 000000000..34c6fe6ae --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/088.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu", + fr: "Pikachu", + es: "Pikachu", + it: "Pikachu", + pt: "Pikachu", + de: "Pikachu" + }, + + rarity: "None", + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/089.ts b/data/Scarlet & Violet/SVP Black Star Promos/089.ts new file mode 100644 index 000000000..6ee662494 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/089.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Feraligatr", + fr: "Aligatueur", + es: "Feraligatr", + it: "Feraligatr", + pt: "Feraligatr", + de: "Impergator" + }, + + rarity: "None", + category: "Pokemon", + hp: 180, + types: ["Water"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Torrential Heart", + fr: "Cœur Torrentiel", + es: "Corazón Torrencial", + it: "Cuore Torrenziale", + pt: "Âmago Torrencial", + de: "Reißendes Herz" + }, + + effect: { + en: "Once during your turn, you may put 5 damage counters on this Pokémon. If you do, during this turn, attacks used by this Pokémon do 120 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).", + fr: "Une fois pendant votre tour, vous pouvez placer 5 marqueurs de dégâts sur ce Pokémon. Dans ce cas, pendant ce tour, les attaques utilisées par ce Pokémon infligent 120 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Una vez durante tu turno, puedes poner 5 contadores de daño en este Pokémon. Si lo haces, durante este turno, los ataques usados por este Pokémon hacen 120 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + it: "Una sola volta durante il tuo turno, puoi mettere cinque segnalini danno su questo Pokémon. Se lo fai, durante questo turno, gli attacchi usati da questo Pokémon infliggono 120 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + pt: "Uma vez durante o seu turno, você poderá colocar 5 contadores de dano neste Pokémon. Se fizer isto, durante este turno, os ataques usados por este Pokémon causarão 120 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + de: "Einmal während deines Zuges kannst du 5 Schadensmarken auf dieses Pokémon legen. Wenn du das machst, fügen die von diesem Pokémon eingesetzten Attacken dem Aktiven Pokémon deines Gegners während dieses Zuges 120 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + } + }], + + attacks: [{ + cost: ["Water", "Water"], + + name: { + en: "Giant Wave", + fr: "Vague Géante", + es: "Ola Gigante", + it: "Onda Anomala", + pt: "Onda Gigante", + de: "Riesenwelle" + }, + + effect: { + en: "During your next turn, this Pokémon can't use Giant Wave.", + fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Vague Géante.", + es: "Durante tu próximo turno, este Pokémon no puede usar Ola Gigante.", + it: "Durante il tuo prossimo turno, questo Pokémon non può usare Onda Anomala.", + pt: "Durante o seu próximo turno, este Pokémon não poderá usar Onda Gigante.", + de: "Während deines nächsten Zuges kann dieses Pokémon Riesenwelle nicht einsetzen." + }, + + damage: 160 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/090.ts b/data/Scarlet & Violet/SVP Black Star Promos/090.ts new file mode 100644 index 000000000..2bf0d449b --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/090.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Metang", + fr: "Métang", + es: "Metang", + it: "Metang", + pt: "Metang", + de: "Metang" + }, + + rarity: "None", + category: "Pokemon", + hp: 100, + types: ["Metal"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Metal Maker", + fr: "Création de Métal", + es: "Creametal", + it: "Fabbricametallo", + pt: "Fabricante de Metal", + de: "Metallmacher" + }, + + effect: { + en: "Once during your turn, you may look at the top 4 cards of your deck and attach any number of Basic Metal Energy cards you find there to your Pokémon in any way you like. Shuffle the other cards and put them on the bottom of your deck.", + fr: "Une fois pendant votre tour, vous pouvez regarder les 4 cartes du dessus de votre deck, puis attacher le nombre voulu de cartes Énergie Metal de base que vous y trouvez à vos Pokémon, comme il vous plaît. Mélangez les autres cartes et placez-les en dessous de votre deck.", + es: "Una vez durante tu turno, puedes mirar las 4 primeras cartas de tu baraja y unir cualquier cantidad de cartas de Energía Metal Básica que encuentres entre ellas a tus Pokémon de la manera que desees. Baraja el resto de las cartas y ponlas en la parte inferior de tu baraja.", + it: "Una sola volta durante il tuo turno, puoi guardare le prime quattro carte del tuo mazzo e assegnare un numero qualsiasi di carte Energia base Metal presenti tra esse ai tuoi Pokémon nel modo che preferisci. Rimischia le altre carte e mettile in fondo al tuo mazzo.", + pt: "Uma vez durante o seu turno, você poderá olhar as 4 cartas de cima do seu baralho e ligar qualquer número de cartas de Energia Metal Básica que encontrar lá aos seus Pokémon como desejar. Embaralhe as outras cartas e coloque-as como as cartas de baixo do seu baralho.", + de: "Einmal während deines Zuges kannst du dir die obersten 4 Karten deines Decks anschauen und beliebig viele Basis-Metal-Energiekarten, die du dort findest, beliebig an deine Pokémon anlegen. Mische die anderen Karten und lege sie unter dein Deck." + } + }], + + attacks: [{ + cost: ["Metal", "Colorless", "Colorless"], + + name: { + en: "Beam", + fr: "Rayon", + es: "Transmisión", + it: "Raggio", + pt: "Feixe", + de: "Strahl" + }, + + damage: 60 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/091.ts b/data/Scarlet & Violet/SVP Black Star Promos/091.ts new file mode 100644 index 000000000..8f3144630 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/091.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Koraidon", + fr: "Koraidon", + es: "Koraidon", + it: "Koraidon", + pt: "Koraidon", + de: "Koraidon" + }, + + rarity: "None", + category: "Pokemon", + hp: 140, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + en: "Primordial Beatdown", + fr: "Dérouillée Primitive", + es: "Golpe Primitivo", + it: "Batosta Primordiale", + pt: "Abater Primordial", + de: "Urzeitlicher Niederprügler" + }, + + effect: { + en: "This attack does 30 damage for each of your Ancient Pokémon in play.", + fr: "Cette attaque inflige 30 dégâts pour chacun de vos Pokémon Temps passé en jeu.", + es: "Este ataque hace 30 puntos de daño por cada uno de tus Pokémon del pasado en juego.", + it: "Questo attacco infligge 30 danni per ogni tuo Pokémon Tempo Passato in gioco.", + pt: "Este ataque causa 30 pontos de dano para cada um dos seus Pokémon Ancestrais em jogo.", + de: "Diese Attacke fügt für jedes deiner Pokémon aus der Vergangenheit im Spiel 30 Schadenspunkte zu." + }, + + damage: "30×" + }, { + cost: ["Fire", "Fighting", "Colorless"], + + name: { + en: "Shred", + fr: "Déchiquetage", + es: "Hacer Trizas", + it: "Tritatutto", + pt: "Triturar", + de: "Zerfetzer" + }, + + 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: 130 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/092.ts b/data/Scarlet & Violet/SVP Black Star Promos/092.ts new file mode 100644 index 000000000..fab04270f --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/092.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Miraidon", + fr: "Miraidon", + es: "Miraidon", + it: "Miraidon", + pt: "Miraidon", + de: "Miraidon" + }, + + rarity: "None", + category: "Pokemon", + hp: 110, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Peak Acceleration", + fr: "Accélération Maximale", + es: "Aceleración Máxima", + it: "Accelerazione Massima", + pt: "Aceleração Máxima", + de: "Höchstbeschleunigung" + }, + + effect: { + en: "Search your deck for up to 2 Basic Energy cards and attach them to your Future Pokémon in any way you like. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base, puis attachez-les à vos Pokémon Temps futur comme il vous plaît. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Básica y únelas a tus Pokémon del futuro de la manera que desees. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due carte Energia base e assegnale ai tuoi Pokémon Tempo Futuro nel modo che preferisci. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 cartas de Energia Básica no seu baralho e ligue-as aos seus Pokémon Futuristas como desejar. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten und lege sie beliebig an deine Pokémon aus der Zukunft an. Mische anschließend dein Deck." + }, + + damage: 40 + }, { + cost: ["Lightning", "Lightning", "Psychic"], + + name: { + en: "Sparking Strike", + fr: "Frappe Étincelante", + es: "Golpe Chispeante", + it: "Colpo Scintilla", + pt: "Golpe Cintilante", + de: "Funkenschlag" + }, + + damage: 160 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/093.ts b/data/Scarlet & Violet/SVP Black Star Promos/093.ts new file mode 100644 index 000000000..ac7953da1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/093.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Carvanha", + fr: "Carvanha", + es: "Carvanha", + it: "Carvanha", + pt: "Carvanha", + de: "Kanivanha" + }, + + rarity: "None", + category: "Pokemon", + hp: 50, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Sharp Fang", + fr: "Croc Aiguisé", + es: "Colmillo Afilado", + it: "Zannaffilata", + pt: "Presa Afiada", + de: "Scharfe Fänge" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/094.ts b/data/Scarlet & Violet/SVP Black Star Promos/094.ts new file mode 100644 index 000000000..e795cbea5 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/094.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Bellibolt", + fr: "Ampibidou", + es: "Bellibolt", + it: "Bellibolt", + pt: "Bellibolt", + de: "Wampitz" + }, + + rarity: "None", + category: "Pokemon", + hp: 130, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Thunder Wave", + fr: "Cage Éclair", + es: "Onda Trueno", + it: "Tuononda", + pt: "Onda de Trovão", + de: "Donnerwelle" + }, + + 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." + } + }, { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Two-Bump Bolt", + fr: "Éclair Double-Choc", + es: "Doble Panzazo Eléctrico", + it: "Fulmine Doppio Bulbo", + pt: "Raio Baque Duplo", + de: "Doppelwampenblitz" + }, + + effect: { + en: "You may discard up to 2 Lightning Energy from this Pokémon. This attack does 80 more damage for each card you discarded in this way.", + fr: "Vous pouvez défausser jusqu'à 2 Énergies Lightning de ce Pokémon. Cette attaque inflige 80 dégâts supplémentaires pour chaque carte défaussée de cette façon.", + es: "Puedes descartar hasta 2 Energías Lightning de este Pokémon. Este ataque hace 80 puntos de daño más por cada carta que hayas descartado de esta manera.", + it: "Puoi scartare fino a due Energie Lightning da questo Pokémon. Questo attacco infligge 80 danni in più per ogni carta che hai scartato in questo modo.", + pt: "Você pode descartar até 2 Energias Lightning deste Pokémon. Este ataque causa 80 pontos de dano a mais para cada carta descartada desta forma.", + de: "Du kannst bis zu 2 Lightning-Energien von diesem Pokémon auf deinen Ablagestapel legen. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 80 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/095.ts b/data/Scarlet & Violet/SVP Black Star Promos/095.ts new file mode 100644 index 000000000..945cef521 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/095.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Cleffa", + fr: "Mélo", + es: "Cleffa", + it: "Cleffa", + pt: "Cleffa", + de: "Pii" + }, + + rarity: "None", + category: "Pokemon", + hp: 30, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + name: { + en: "Twinkling Hope", + fr: "Espoir Scintillant", + es: "Brillo Esperanzador", + it: "Brillasperanza", + pt: "Brilho de Esperança", + de: "Funkelnde Hoffnung" + }, + + 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." + } + }], + + retreat: 0, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/096.ts b/data/Scarlet & Violet/SVP Black Star Promos/096.ts new file mode 100644 index 000000000..cf02dae76 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/096.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Cyclizar", + fr: "Motorizard", + es: "Cyclizar", + it: "Cyclizar", + pt: "Cyclizar", + de: "Mopex" + }, + + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Flat-Out Dash", + fr: "Ruée Directe", + es: "A Todo Trapo", + it: "Corsa Tuttabirra", + pt: "Arremetida Desesperada", + de: "Vollgas-Spurt" + }, + + effect: { + en: "Flip a coin until you get tails. For each heads, draw a card.", + fr: "Lancez une pièce jusqu'à obtenir un côté pile. Pour chaque côté face, piochez une carte.", + es: "Lanza 1 moneda hasta que salga cruz. Por cada cara, roba 1 carta.", + it: "Lancia una moneta finché non esce croce. Ogni volta che esce testa, pesca una carta.", + pt: "Jogue uma moeda até sair coroa. Para cada cara, compre uma carta.", + de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Ziehe pro Kopf 1 Karte." + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Power Tackle", + fr: "Tacle Puissant", + es: "Placaje Poderoso", + it: "Forzazione", + pt: "Investida Poderosa", + de: "Kraft-Tackle" + }, + + 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: 120 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/097.ts b/data/Scarlet & Violet/SVP Black Star Promos/097.ts new file mode 100644 index 000000000..3f9ab2d17 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/097.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Flutter Mane", + fr: "Flotte-Mèche", + es: "Melenaleteo", + it: "Crinealato", + pt: "Juba Sopro", + de: "Flatterhaar" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Midnight Fluttering", + fr: "Flottement de Minuit", + es: "Aleteo de Medianoche", + it: "Nottealata", + pt: "Sopro da Meia-noite", + de: "Mitternachtsflattern" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, your opponent's Active Pokémon has no Abilities, except for Midnight Fluttering.", + fr: "Tant que ce Pokémon est sur le Poste Actif, le Pokémon Actif de votre adversaire n'a pas de talent, à l'exception de Flottement de Minuit.", + es: "Mientras este Pokémon esté en el Puesto Activo, el Pokémon Activo de tu rival no tiene ninguna habilidad, excepto Aleteo de Medianoche.", + it: "Fintanto che questo Pokémon è in posizione attiva, il Pokémon attivo del tuo avversario non ha abilità, a eccezione di Nottealata.", + pt: "Enquanto este Pokémon estiver no Campo Ativo, o Pokémon Ativo do seu oponente não terá Habilidades, exceto por Sopro da Meia-noite.", + de: "Solange dieses Pokémon in der Aktiven Position ist, hat das Aktive Pokémon deines Gegners keine Fähigkeiten, außer Mitternachtsflattern." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Hex Hurl", + fr: "Lancer de Malédictions", + es: "Lanzamiento Maléfico", + it: "Scagliasciagura", + pt: "Lançar Feitiço", + de: "Unheilsschleuder" + }, + + effect: { + en: "Put 2 damage counters on your opponent's Benched Pokémon in any way you like.", + fr: "Placez 2 marqueurs de dégâts sur les Pokémon de Banc de votre adversaire comme il vous plaît.", + es: "Pon 2 contadores de daño en los Pokémon en Banca de tu rival de la manera que desees.", + it: "Metti due segnalini danno sui Pokémon nella panchina del tuo avversario nel modo che preferisci.", + pt: "Coloque 2 contadores de dano nos Pokémon no Banco do seu oponente como desejar.", + de: "Lege 2 Schadensmarken beliebig auf die Pokémon auf der Bank deines Gegners." + }, + + damage: 90 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/098.ts b/data/Scarlet & Violet/SVP Black Star Promos/098.ts new file mode 100644 index 000000000..0b21a96fc --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/098.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Iron Thorns", + fr: "Épine-de-Fer", + es: "Ferropúas", + it: "Spineferree", + pt: "Espinhos Férreos", + de: "Eisendorn" + }, + + rarity: "None", + category: "Pokemon", + hp: 140, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Destructo-Press", + fr: "Destructo-Pression", + es: "Empuje Destructor", + it: "Pressa Distruttrice", + pt: "Aperto Destrutivo", + de: "Zerstörungsdruck" + }, + + effect: { + en: "Reveal the top 5 cards of your deck. This attack does 70 damage for each Future card you find there. Then, discard those Future cards and shuffle the other cards back into your deck.", + fr: "Montrez les 5 cartes du dessus de votre deck. Cette attaque inflige 70 dégâts pour chaque carte Temps futur que vous y trouvez. Défaussez ensuite ces cartes Temps futur et mélangez les autres cartes avec votre deck.", + es: "Enseña las 5 primeras cartas de tu baraja. Este ataque hace 70 puntos de daño por cada carta del futuro que encuentres entre ellas. Después, descarta esas cartas del futuro, pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Mostra le prime cinque carte del tuo mazzo. Questo attacco infligge 70 danni per ogni carta Tempo Futuro presente tra quelle carte. Poi scarta quelle carte Tempo Futuro e rimischia le altre carte nel tuo mazzo.", + pt: "Revele as 5 cartas de cima do seu baralho. Este ataque causa 70 pontos de dano para cada carta Futurista que encontrar lá. Em seguida, descarte aquelas cartas Futuristas e embaralhe as outras cartas de volta no seu baralho.", + de: "Zeige deinem Gegner die obersten 5 Karten deines Decks. Diese Attacke fügt für jede Zukunftskarte, die du dort findest, 70 Schadenspunkte zu. Lege anschließend jene Zukunftskarten auf deinen Ablagestapel und mische die anderen Karten zurück in dein Deck." + }, + + damage: "70×" + }, { + cost: ["Lightning", "Lightning", "Lightning", "Colorless"], + + name: { + en: "Megaton Lariat", + fr: "Lasso Titanesque", + es: "Lazo Megatón", + it: "Lazo Megatonico", + pt: "Lariat Megaton", + de: "Megatonnenlasso" + }, + + damage: 140 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/099.ts b/data/Scarlet & Violet/SVP Black Star Promos/099.ts new file mode 100644 index 000000000..025e75718 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/099.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Shroodle", + fr: "Gribouraigne", + es: "Shroodle", + it: "Shroodle", + pt: "Shroodle", + de: "Sproxi" + }, + + rarity: "None", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Scratch", + fr: "Griffe", + es: "Arañazo", + it: "Graffio", + pt: "Arranhão", + de: "Kratzer" + }, + + damage: 10 + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "Toxic Teeth", + fr: "Dents Toxiques", + es: "Incisivos Tóxicos", + it: "Denti Tossici", + pt: "Dentes Tóxicos", + de: "Giftige Schneidezähne" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", + es: "El Pokémon Activo de tu rival pasa a estar Envenenado.", + it: "Il Pokémon attivo del tuo avversario viene avvelenato.", + pt: "O Pokémon Ativo do seu oponente agora está Envenenado.", + de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet." + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/100.ts b/data/Scarlet & Violet/SVP Black Star Promos/100.ts new file mode 100644 index 000000000..3a66a7cd0 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/100.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Grafaiai ex", + fr: "Tag-Tag-ex", + es: "Grafaiai ex", + it: "Grafaiai-ex", + pt: "Grafaiai ex", + de: "Affiti-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 250, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Numbing Saliva", + fr: "Salive Paralysante", + es: "Saliva Sedante", + it: "Saliva Immobilizzante", + pt: "Saliva Entorpecente", + de: "Betäubender Speichel" + }, + + 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: 30 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Toxic Throw", + fr: "Lancé Toxique", + es: "Lanzamiento Tóxico", + it: "Lancio Tossico", + pt: "Arremesso Tóxico", + de: "Toxinwurf" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned. During your next turn, this Pokémon can't use Toxic Throw.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Lancé Toxique.", + es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Durante tu próximo turno, este Pokémon no puede usar Lanzamiento Tóxico.", + it: "Il Pokémon attivo del tuo avversario viene avvelenato. Durante il tuo prossimo turno, questo Pokémon non può usare Lancio Tossico.", + pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Durante o seu próximo turno, este Pokémon não poderá usar Arremesso Tóxico.", + de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Während deines nächsten Zuges kann dieses Pokémon Toxinwurf nicht einsetzen." + }, + + damage: 180 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/101.ts b/data/Scarlet & Violet/SVP Black Star Promos/101.ts new file mode 100644 index 000000000..606415f50 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/101.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu", + fr: "Pikachu", + es: "Pikachu", + it: "Pikachu", + pt: "Pikachu", + de: "Pikachu" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Scrappy Spark", + fr: "Étincelle Querelleuse", + es: "Chispa Intrépida", + it: "Scintilla Combattiva", + pt: "Faísca Obstinada", + de: "Rauffunke" + }, + + effect: { + en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.", + fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.", + es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 30 puntos de daño más por cada cara.", + it: "Lancia una moneta finché non esce croce. Questo attacco infligge 30 danni in più ogni volta che esce testa.", + pt: "Jogue uma moeda até sair coroa. Este ataque causa 30 pontos de dano a mais para cada cara.", + de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Diese Attacke fügt 30 Schadenspunkte mehr pro Kopf zu." + }, + + damage: "30+" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/102.ts b/data/Scarlet & Violet/SVP Black Star Promos/102.ts new file mode 100644 index 000000000..fa8104724 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/102.ts @@ -0,0 +1,39 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Oddish", + pt: "Oddish" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [ + { + cost: ["Grass"], + + name: { + en: "Razor Leaf", + pt: "Folha Navalha" + }, + + effect: { + en: "This attack does 20 damage for each Colorless Energy in your opponent's Active Pokémon Retreat Cost.", + pt: "Este ataque causará 20 pontos de dano para cada Energia Incolor no custo de Recuo do Pokémon Ativo do seu oponente." + }, + + } + ], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/103.ts b/data/Scarlet & Violet/SVP Black Star Promos/103.ts new file mode 100644 index 000000000..756e13cc5 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/103.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Houndoom ex", + fr: "Démolosse-ex", + es: "Houndoom ex", + it: "Houndoom-ex", + pt: "Houndoom ex", + de: "Hundemon-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 270, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Darkness", "Darkness"], + + name: { + en: "Evil Claw", + fr: "Griffe Maléfique", + es: "Garra Malvada", + it: "Artiglio Maligno", + pt: "Garra Maligna", + de: "Böse Klaue" + }, + + 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: 90 + }, { + cost: ["Darkness", "Darkness", "Darkness"], + + name: { + en: "Hound's Fang", + fr: "Croc de Molosse", + es: "Colmillo del Sabueso", + it: "Zanna del Segugio", + pt: "Cãoninos", + de: "Hundefänge" + }, + + effect: { + en: "This Pokémon also does 30 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 30 dégâts.", + es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.", + it: "Questo Pokémon infligge anche 30 danni a se stesso.", + pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.", + de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu." + }, + + damage: 220 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/104.ts b/data/Scarlet & Violet/SVP Black Star Promos/104.ts new file mode 100644 index 000000000..a73afefe1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/104.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Melmetal ex", + fr: "Melmetal-ex", + es: "Melmetal ex", + it: "Melmetal-ex", + pt: "Melmetal ex", + de: "Melmetal-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 300, + types: ["Metal"], + stage: "Stage1", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Metal-bolize", + fr: "Métal-Bolisme", + es: "Metal-bolizar", + it: "Metalbolismo", + pt: "Metal-bolizar", + de: "Metall-bolisieren" + }, + + effect: { + en: "Search your deck for up to 2 Basic Metal Energy cards and attach them to this Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Metal de base, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Metal Básica y únelas a este Pokémon. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due carte Energia base Metal e assegnale a questo Pokémon. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 cartas de Energia Metal Básica no seu baralho e ligue-as a este Pokémon. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Metal-Energiekarten und lege sie an dieses Pokémon an. Mische anschließend dein Deck." + } + }, { + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Full Metal Knuckle", + fr: "Poing Métal Pur", + es: "Nudillo Metálico Total", + it: "Metalpugno", + pt: "Punho Metálico Máximo", + de: "Vollmetallfaust" + }, + + effect: { + en: "This attack does 30 more damage for each Metal Energy attached to this Pokémon.", + fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Metal attachée à ce Pokémon.", + es: "Este ataque hace 30 puntos de daño más por cada Energía Metal unida a este Pokémon.", + it: "Questo attacco infligge 30 danni in più per ogni Energia Metal assegnata a questo Pokémon.", + pt: "Este ataque causa 30 pontos de dano a mais para cada Energia Metal ligada a este Pokémon.", + de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Metal-Energie 30 Schadenspunkte mehr zu." + }, + + damage: "90+" + }], + + retreat: 4, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/105.ts b/data/Scarlet & Violet/SVP Black Star Promos/105.ts new file mode 100644 index 000000000..3e2dadf8b --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/105.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Armarouge ex", + fr: "Carmadura-ex", + es: "Armarouge ex", + it: "Armarouge-ex", + pt: "Armarouge ex", + de: "Crimanzo-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 260, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Armor Cannon", + fr: "Canon Armure", + es: "Cañón Armadura", + it: "Corazza Cannone", + pt: "Canhão de Armadura", + de: "Rüstungskanone" + }, + + effect: { + en: "Discard a Fire Energy from this Pokémon.", + fr: "Défaussez une Énergie Fire de ce Pokémon.", + es: "Descarta 1 Energía Fire de este Pokémon.", + it: "Scarta un'Energia Fire da questo Pokémon.", + pt: "Descarte uma Energia Fire deste Pokémon.", + de: "Lege 1 Fire-Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 200 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/106.ts b/data/Scarlet & Violet/SVP Black Star Promos/106.ts new file mode 100644 index 000000000..7b545fc87 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/106.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex", + fr: "Pikachu-ex", + es: "Pikachu ex", + it: "Pikachu-ex", + pt: "Pikachu ex", + de: "Pikachu-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Thunderbolt", + fr: "Tonnerre", + es: "Rayo", + it: "Fulmine", + pt: "Relâmpago", + de: "Donnerblitz" + }, + + damage: 120 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/107.ts b/data/Scarlet & Violet/SVP Black Star Promos/107.ts new file mode 100644 index 000000000..b242e8bf2 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/107.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Mareep", + fr: "Wattouat", + es: "Mareep", + it: "Mareep", + pt: "Mareep", + de: "Voltilamm" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Headbutt", + fr: "Coup d'Boule", + es: "Golpe Cabeza", + it: "Bottintesta", + pt: "Cabeçada", + de: "Kopfnuss" + }, + + damage: 10 + }, { + cost: ["Lightning", "Colorless"], + + name: { + en: "Lightning Ball", + fr: "Boule Éclair", + es: "Bola Relámpago", + it: "Fulminpalla", + pt: "Bola de Raios", + de: "Kugelblitz" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/108.ts b/data/Scarlet & Violet/SVP Black Star Promos/108.ts new file mode 100644 index 000000000..b892a5357 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/108.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Flaaffy", + fr: "Lainergie", + es: "Flaaffy", + it: "Flaaffy", + pt: "Flaaffy", + de: "Waaty" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Headbutt", + fr: "Coup d'Boule", + es: "Golpe Cabeza", + it: "Bottintesta", + pt: "Cabeçada", + de: "Kopfnuss" + }, + + damage: 20 + }, { + cost: ["Lightning", "Colorless"], + + name: { + en: "Electro Ball", + fr: "Boule Élek", + es: "Bola Voltio", + it: "Energisfera", + pt: "Bola Elétrica", + de: "Elektroball" + }, + + damage: 50 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/109.ts b/data/Scarlet & Violet/SVP Black Star Promos/109.ts new file mode 100644 index 000000000..7e082c348 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/109.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Ampharos", + fr: "Pharamp", + es: "Ampharos", + it: "Ampharos", + pt: "Ampharos", + de: "Ampharos" + }, + + rarity: "None", + category: "Pokemon", + hp: 160, + types: ["Lightning"], + stage: "Stage2", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Electric Ball", + fr: "Boule de Foudre", + es: "Bola Eléctrica", + it: "Lamposfera", + pt: "Bola de Eletricidade", + de: "Stromball" + }, + + damage: 110 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/110.ts b/data/Scarlet & Violet/SVP Black Star Promos/110.ts new file mode 100644 index 000000000..b934d9d50 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/110.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Darkrai ex", + fr: "Darkrai-ex", + es: "Darkrai ex", + it: "Darkrai-ex", + pt: "Darkrai ex", + de: "Darkrai-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 210, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + en: "Wind of Darkness", + fr: "Vent Obscur", + es: "Viento de Oscuridad", + it: "Vento dell'Oscurità", + pt: "Vento da Escuridão", + de: "Wind der Finsternis" + }, + + damage: 40 + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Night Impact", + fr: "Impact Nocturne", + es: "Impacto Nocturno", + it: "Impatto Notturno", + pt: "Impacto Noturno", + de: "Nachteinschlag" + }, + + damage: 110 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/111.ts b/data/Scarlet & Violet/SVP Black Star Promos/111.ts new file mode 100644 index 000000000..304bbcd12 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/111.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pawniard", + fr: "Scalpion", + es: "Pawniard", + it: "Pawniard", + pt: "Pawniard", + de: "Gladiantri" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Pierce", + fr: "Transpercement", + es: "Perforar", + it: "Perforare", + pt: "Perfurar", + de: "Durchbohren" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/112.ts b/data/Scarlet & Violet/SVP Black Star Promos/112.ts new file mode 100644 index 000000000..eb425d3d5 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/112.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Bisharp", + fr: "Scalproie", + es: "Bisharp", + it: "Bisharp", + pt: "Bisharp", + de: "Caesurio" + }, + + rarity: "None", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Cut", + fr: "Coupe", + es: "Corte", + it: "Taglio", + pt: "Cortar", + de: "Zerschneider" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/113.ts b/data/Scarlet & Violet/SVP Black Star Promos/113.ts new file mode 100644 index 000000000..8139d39bc --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/113.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Kingambit", + fr: "Scalpereur", + es: "Kingambit", + it: "Kingambit", + pt: "Kingambit", + de: "Gladimperio" + }, + + rarity: "None", + category: "Pokemon", + hp: 170, + types: ["Darkness"], + stage: "Stage2", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Elbow Strike", + fr: "Coup de Coude", + es: "Codazo", + it: "Colpogomito", + pt: "Golpe de Cotovelo", + de: "Ellbogenstoß" + }, + + damage: 40 + }, { + cost: ["Darkness", "Colorless"], + + name: { + en: "Slicing Blade", + fr: "Lame Tranchante", + es: "Cuchilla Cortante", + it: "Affettalama", + pt: "Lâmina Fatiante", + de: "Schwertschneide" + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/114.ts b/data/Scarlet & Violet/SVP Black Star Promos/114.ts new file mode 100644 index 000000000..7b96d4a80 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/114.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Picnicker", + fr: "Fan de Pique-Nique", + es: "Dominguera", + it: "Fan dei picnic", + pt: "Fã de Piquenique", + de: "Picknickerin" + }, + + rarity: "None", + category: "Trainer", + + effect: { + en: "Flip a coin. If heads, draw 4 cards. If tails, draw 2 cards.", + fr: "Lancez une pièce. Si c'est face, piochez 4 cartes. Si c'est pile, piochez 2 cartes.", + es: "Lanza 1 moneda. Si sale cara, roba 4 cartas. Si sale cruz, roba 2 cartas.", + it: "Lancia una moneta. Se esce testa, pesca quattro carte. Se esce croce, pesca due carte.", + pt: "Jogue uma moeda. Se sair cara, compre 4 cartas. Se sair coroa, compre 2 cartas.", + de: "Wirf 1 Münze. Ziehe bei Kopf 4 Karten. Ziehe bei Zahl 2 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/115.ts b/data/Scarlet & Violet/SVP Black Star Promos/115.ts new file mode 100644 index 000000000..f10d00026 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/115.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Thwackey", + fr: "Badabouin", + es: "Thwackey", + it: "Thwackey", + pt: "Thwackey", + de: "Chimstix" + }, + + rarity: "None", + category: "Pokemon", + hp: 100, + types: ["Grass"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Boom Boom Groove", + fr: "Groove Boum Boum", + es: "Ritmo Bum Bum", + it: "Ritmo Bum Bum", + pt: "Batidão Ritmado", + de: "Bumm-Bumm-Groove" + }, + + effect: { + en: "Once during your turn, if your Active Pokémon has the Festival Lead Ability, you may search your deck for a card and put it into your hand. Then, shuffle your deck.", + fr: "Une fois pendant votre tour, si votre Pokémon Actif a le talent Tête de la Fête, vous pouvez chercher dans votre deck une carte, puis l'ajouter à votre main. Mélangez ensuite votre deck.", + es: "Una vez durante tu turno, si tu Pokémon Activo tiene la habilidad Líder del Festival, puedes buscar en tu baraja 1 carta y ponerla en tu mano. Después, baraja las cartas de tu baraja.", + it: "Una sola volta durante il tuo turno, se il tuo Pokémon attivo ha l'abilità Maestro della Festa, puoi cercare nel tuo mazzo una carta e aggiungerla a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Uma vez durante o seu turno, se o seu Pokémon Ativo tiver a Habilidade Líder de Festas, você poderá procurar por uma carta no seu baralho e colocá-la na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Einmal während deines Zuges, wenn dein Aktives Pokémon die Fähigkeit Festmeister hat, kannst du dein Deck nach 1 Karte durchsuchen und sie auf deine Hand nehmen. Mische anschließend dein Deck." + } + }], + + attacks: [{ + cost: ["Grass", "Grass"], + + name: { + en: "Beat", + fr: "Bataille", + es: "Toque", + it: "Battuta", + pt: "Pulso", + de: "Verprügler" + }, + + damage: 50 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/116.ts b/data/Scarlet & Violet/SVP Black Star Promos/116.ts new file mode 100644 index 000000000..ab265003a --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/116.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Infernape", + fr: "Simiabraz", + es: "Infernape", + it: "Infernape", + pt: "Infernape", + de: "Panferno" + }, + + rarity: "None", + category: "Pokemon", + hp: 140, + types: ["Fire"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Pyro Dance", + fr: "Danse Pyro", + es: "Pirodanza", + it: "Danza Infuocata", + pt: "Dança Incendiária", + de: "Pyrotanz" + }, + + effect: { + en: "Once during your turn, you may attach a Basic Fire Energy card, a Basic Fighting Energy card, or 1 of each from your hand to your Pokémon in any way you like.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Fire de base, une carte Énergie Fighting de base, ou une de chaque de votre main à vos Pokémon comme il vous plaît.", + es: "Una vez durante tu turno, puedes unir 1 carta de Energía Fire Básica, 1 carta de Energía Fighting Básica o 1 de cada una de tu mano a tus Pokémon de la manera que desees.", + it: "Una sola volta durante il tuo turno, puoi assegnare ai tuoi Pokémon una carta Energia base Fire, una carta Energia base Fighting o entrambe dalla tua mano nel modo che preferisci.", + pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Fire Básica, uma carta de Energia Fighting Básica ou 1 de cada da sua mão aos seus Pokémon como desejar.", + de: "Einmal während deines Zuges kannst du 1 Basis-Fire-Energiekarte, 1 Basis-Fighting-Energiekarte oder von beiden 1 aus deiner Hand beliebig an deine Pokémon anlegen." + } + }], + + attacks: [{ + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Scorching Fire", + fr: "Feu Infernal", + es: "Fuego Abrasador", + it: "Fuoco Ustionante", + pt: "Fogo Ardente", + de: "Versengendes Feuer" + }, + + effect: { + en: "Discard an Energy from this Pokémon.", + fr: "Défaussez une Énergie de ce Pokémon.", + es: "Descarta 1 Energía de este Pokémon.", + it: "Scarta un'Energia da questo Pokémon.", + pt: "Descarte uma Energia deste Pokémon.", + de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 200 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/117.ts b/data/Scarlet & Violet/SVP Black Star Promos/117.ts new file mode 100644 index 000000000..3bd1bd767 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/117.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Froslass", + fr: "Momartik", + es: "Froslass", + it: "Froslass", + pt: "Froslass", + de: "Frosdedje" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Freezing Shroud", + fr: "Voile Glaçant", + es: "Manto Helador", + it: "Manto Glaciale", + pt: "Manto Congelante", + de: "Frosthülle" + }, + + effect: { + en: "During Pokémon Checkup, put 1 damage counter on each Pokémon that has an Ability (both yours and your opponent's), except any Froslass.", + fr: "Pendant le Contrôle Pokémon, placez un marqueur de dégâts sur chacun des Pokémon ayant un talent (les vôtres et ceux de votre adversaire), à l'exception de Momartik.", + es: "Durante el Chequeo Pokémon, pon 1 contador de daño en cada Pokémon que tenga una habilidad (tanto tuyos como de tu rival), excepto en los Froslass.", + it: "Durante il controllo Pokémon, metti un segnalino danno su ciascun Pokémon che ha un'abilità, sia tuo che del tuo avversario, a eccezione di qualsiasi Froslass.", + pt: "Durante o Checape Pokémon, coloque 1 contador de dano em cada Pokémon que tem uma Habilidade (seus e do seu oponente), exceto por quaisquer Froslass.", + de: "Lege beim Pokémon-Check 1 Schadensmarke auf jedes Pokémon (deine und die deines Gegners), das eine Fähigkeit hat, außer Frosdedje." + } + }], + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Frost Smash", + fr: "Impact Glacial", + es: "Golpe Gélido", + it: "Gelocolpo", + pt: "Pancada Congelada", + de: "Frostschlag" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/118.ts b/data/Scarlet & Violet/SVP Black Star Promos/118.ts new file mode 100644 index 000000000..50c0e1ec6 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/118.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Tatsugiri", + fr: "Nigirigon", + es: "Tatsugiri", + it: "Tatsugiri", + pt: "Tatsugiri", + de: "Nigiragi" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Dragon"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Attract Customers", + fr: "Attrape-Clientèle", + es: "Atraer a la Clientela", + it: "Attiraclienti", + pt: "Atrair a Clientela", + de: "Kunden anlocken" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you may look at the top 6 cards of your deck, reveal a Supporter card you find there, and put it into your hand. Shuffle the other cards back into your deck.", + fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez regarder les 6 cartes du dessus de votre deck, montrer une carte Supporter que vous y trouvez, puis l'ajouter à votre main. Mélangez les autres cartes avec votre deck.", + es: "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes mirar las 6 primeras cartas de tu baraja, enseñar 1 carta de Partidario que encuentres entre ellas y ponerla en tu mano. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Una sola volta durante il tuo turno, se questo Pokémon è in posizione attiva, puoi guardare le prime sei carte del tuo mazzo, mostrare una carta Aiuto presente tra esse e aggiungerla alle carte che hai in mano. Poi rimischia le altre carte nel tuo mazzo.", + pt: "Uma vez durante o seu turno, se este Pokémon estiver no Campo Ativo, você poderá olhar as 6 cartas de cima do seu baralho, revelar uma carta de Apoiador que encontrar lá e colocá-la na sua mão. Embaralhe as outras cartas de volta no seu baralho.", + de: "Einmal während deines Zuges, wenn dieses Pokémon in der Aktiven Position ist, kannst du dir die obersten 6 Karten deines Decks anschauen, 1 Unterstützerkarte, die du dort findest, deinem Gegner zeigen und auf deine Hand nehmen. Mische die anderen Karten zurück in dein Deck." + } + }], + + attacks: [{ + cost: ["Fire", "Water"], + + name: { + en: "Surf", + fr: "Surf", + es: "Surf", + it: "Surf", + pt: "Surfar", + de: "Surfer" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/119.ts b/data/Scarlet & Violet/SVP Black Star Promos/119.ts new file mode 100644 index 000000000..0d6dee9a1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/119.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Toxel", + fr: "Toxizap", + es: "Toxel", + it: "Toxel", + pt: "Toxel", + de: "Toxel" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Slight Intrusion", + fr: "Légère Intrusion", + es: "Ligera Intromisión", + it: "Coinvolgimento", + pt: "Leve Invasão", + de: "Vorwagen" + }, + + 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 \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/120.ts b/data/Scarlet & Violet/SVP Black Star Promos/120.ts new file mode 100644 index 000000000..04eb27adb --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/120.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pupitar", + fr: "Ymphect", + es: "Pupitar", + it: "Pupitar", + pt: "Pupitar", + de: "Pupitar" + }, + + rarity: "None", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Rock Throw", + fr: "Jet-Pierres", + es: "Lanzarrocas", + it: "Sassata", + pt: "Lançamento de Rocha", + de: "Steinwurf" + }, + + damage: 20 + }, { + cost: ["Fighting", "Fighting"], + + name: { + en: "Blasting Tackle", + fr: "Charge Explosive", + es: "Placaje Explosivo", + it: "Azione Propulsiva", + pt: "Investida Avassaladora", + de: "Explosiver Tackle" + }, + + effect: { + en: "This attack also does 20 damage to 1 of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 20 dégâts à l'un de vos Pokémon de Banc. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 20 puntos de daño a uno de tus Pokémon en Banca. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 20 danni a uno dei Pokémon nella tua panchina. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 20 pontos de dano a 1 dos seus Pokémon no Banco. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt auch 1 Pokémon auf deiner Bank 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/121.ts b/data/Scarlet & Violet/SVP Black Star Promos/121.ts new file mode 100644 index 000000000..1d4a3b833 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/121.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Revavroom", + fr: "Vrombotor", + es: "Revavroom", + it: "Revavroom", + pt: "Revavroom", + de: "Knattatox" + }, + + rarity: "None", + category: "Pokemon", + hp: 140, + types: ["Metal"], + stage: "Stage1", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Swagger", + fr: "Vantardise", + es: "Contoneo", + it: "Bullo", + pt: "Arrogância", + de: "Angeberei" + }, + + effect: { + en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", + fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.", + it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.", + de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Huge Tackle", + fr: "Charge Gigantesque", + es: "Placaje Gigante", + it: "Macroazione", + pt: "Investidona", + de: "Riesiger Tackle" + }, + + effect: { + en: "If you have more cards in your hand than your opponent, this attack does 80 more damage.", + fr: "Si vous avez plus de cartes dans votre main que votre adversaire, cette attaque inflige 80 dégâts supplémentaires.", + es: "Si tienes más cartas en tu mano que tu rival, este ataque hace 80 puntos de daño más.", + it: "Se hai più carte in mano del tuo avversario, questo attacco infligge 80 danni in più.", + pt: "Se você tiver mais cartas na mão do que seu oponente, este ataque causará 80 pontos de dano a mais.", + de: "Wenn du mehr Karten auf deiner Hand hast als dein Gegner, fügt diese Attacke 80 Schadenspunkte mehr zu." + }, + + damage: "70+" + }], + + retreat: 3, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/122.ts b/data/Scarlet & Violet/SVP Black Star Promos/122.ts new file mode 100644 index 000000000..8b05f7cca --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/122.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Snorlax", + fr: "Ronflex", + es: "Snorlax", + it: "Snorlax", + pt: "Snorlax", + de: "Relaxo" + }, + + rarity: "None", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Lazy Press", + fr: "Pression Paresseuse", + es: "Presión Perezosa", + it: "Pressa Pigra", + pt: "Compressão Preguiçosa", + de: "Träge Presse" + }, + + damage: 120 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/123.ts b/data/Scarlet & Violet/SVP Black Star Promos/123.ts new file mode 100644 index 000000000..29eeb1a86 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/123.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Teal Mask Ogerpon", + fr: "Ogerpon Masque Turquoise", + es: "Ogerpon Máscara Turquesa", + it: "Ogerpon Maschera Turchese", + pt: "Ogerpon Máscara Turquesa", + de: "Türkisgrüne-Maske-Ogerpon" + }, + + rarity: "None", + category: "Pokemon", + hp: 110, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Mountain Stroll", + fr: "Promenade en Montagne", + es: "Paseo por la Montaña", + it: "Passeggiata Montana", + pt: "Passeio na Montanha", + de: "Bergspaziergang" + }, + + 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: ["Grass", "Colorless"], + + name: { + en: "Ogre Comeback", + fr: "Retour du Monstre", + es: "Venganza del Ogro", + it: "Ritorno dell'Orco", + pt: "Troco do Ogro", + de: "Oni-Comeback" + }, + + effect: { + en: "This attack does 20 more damage for each of your opponent's Benched Pokémon.", + fr: "Cette attaque inflige 20 dégâts supplémentaires pour chacun des Pokémon de Banc de votre adversaire.", + es: "Este ataque hace 20 puntos de daño más por cada uno de los Pokémon en Banca de tu rival.", + it: "Questo attacco infligge 20 danni in più per ogni Pokémon nella panchina del tuo avversario.", + pt: "Este ataque causa 20 pontos de dano a mais para cada Pokémon no Banco do seu oponente.", + de: "Diese Attacke fügt für jedes Pokémon auf der Bank deines Gegners 20 Schadenspunkte mehr zu." + }, + + damage: "20+" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/124.ts b/data/Scarlet & Violet/SVP Black Star Promos/124.ts new file mode 100644 index 000000000..7dc2b1d10 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/124.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Iono", + fr: "Mashynn", + es: "e-Nigma", + it: "Kissara", + pt: "Kissera", + de: "Enigmara" + }, + + rarity: "None", + category: "Trainer", + + effect: { + en: "Each player shuffles their hand and puts it on the bottom of their deck. If either player put any cards on the bottom of their deck in this way, each player draws a card for each of their remaining Prize cards.", + fr: "Chaque joueur mélange sa main, puis la place en dessous de son deck. Si l'un des joueurs place de cette façon au moins une carte en dessous de son deck, chaque joueur pioche une carte pour chaque carte Récompense qu'il lui reste.", + es: "Cada jugador baraja las cartas de su mano y las pone en la parte inferior de su baraja. Si cualquiera de los jugadores pone alguna carta en la parte inferior de su baraja de esta manera, cada jugador roba 1 carta por cada una de las cartas de Premio que le queden.", + it: "Ciascun giocatore rimischia le carte che ha in mano e le mette in fondo al proprio mazzo. Se almeno un giocatore ha messo delle carte in fondo al proprio mazzo in questo modo, ciascun giocatore pesca una carta per ciascuna delle proprie carte Premio rimanenti.", + pt: "Cada jogador embaralha a própria mão e coloca-a como as cartas de baixo do próprio baralho. Se qualquer um dos jogadores tiver colocado qualquer carta como a carta de baixo do próprio baralho desta forma, cada jogador comprará uma carta para cada uma das suas próprias cartas de Prêmio restantes.", + de: "Jeder Spieler mischt seine Handkarten und legt sie unter sein Deck. Wenn ein oder beide Spieler auf diese Weise mindestens 1 Karte unter ihr Deck gelegt haben, zieht jeder Spieler 1 Karte für jede seiner verbleibenden Preiskarten." + }, + + trainerType: "Supporter", + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/125.ts b/data/Scarlet & Violet/SVP Black Star Promos/125.ts new file mode 100644 index 000000000..cd8d54b65 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/125.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Armarouge ex", + fr: "Carmadura-ex", + es: "Armarouge ex", + it: "Armarouge-ex", + pt: "Armarouge ex", + de: "Crimanzo-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 260, + types: ["Fire"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Crimson Armor", + fr: "Armure Carmin", + es: "Armadura Carmesí", + it: "Rossocorazza", + pt: "Armadura Carmesim", + de: "Feuerrote Rüstung" + }, + + effect: { + en: "If this Pokémon has full HP, it takes 80 less damage from attacks from your opponent's Pokémon (after applying Weakness and Resistance).", + fr: "Si ce Pokémon a tous ses PV, il subit 80 dégâts de moins provenant des attaques des Pokémon de votre adversaire (après application de la Faiblesse et de la Résistance).", + es: "Si este Pokémon tiene todos sus PS, los ataques de los Pokémon de tu rival le hacen 80 puntos de daño menos (después de aplicar Debilidad y Resistencia).", + it: "Se questo Pokémon ha tutti i PS, subisce 80 danni in meno dagli attacchi dei Pokémon del tuo avversario, dopo aver applicato debolezza e resistenza.", + pt: "Se este Pokémon tiver PS cheio, receberá 80 pontos de dano a menos de ataques dos Pokémon do seu oponente (depois de aplicar Fraqueza e Resistência).", + de: "Wenn dieses Pokémon volle KP hat, werden ihm durch Attacken von Pokémon deines Gegners 80 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Scorching Bazooka", + fr: "Bazooka Incandescent", + es: "Pirobazuca", + it: "Bazooka Ustionante", + pt: "Bazuca Ardente", + de: "Versengende Bazooka" + }, + + effect: { + en: "This attack does 40 more damage for each Fire Energy attached to this Pokémon.", + fr: "Cette attaque inflige 40 dégâts supplémentaires pour chaque Énergie Fire attachée à ce Pokémon.", + es: "Este ataque hace 40 puntos de daño más por cada Energía Fire unida a este Pokémon.", + it: "Questo attacco infligge 40 danni in più per ogni Energia Fire assegnata a questo Pokémon.", + pt: "Este ataque causa 40 pontos de dano a mais para cada Energia Fire ligada a este Pokémon.", + de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Fire-Energie 40 Schadenspunkte mehr zu." + }, + + damage: "40+" + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/126.ts b/data/Scarlet & Violet/SVP Black Star Promos/126.ts new file mode 100644 index 000000000..d87baa88a --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/126.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Palafin ex", + fr: "Superdofin-ex", + es: "Palafin ex", + it: "Palafin-ex", + pt: "Palafin ex", + de: "Delfinator-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 340, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Hero's Spirit", + fr: "Âme Héroïque", + es: "Espíritu Heroico", + it: "Spirito dell'Eroe", + pt: "Espírito de Herói", + de: "Superheldenmut" + }, + + effect: { + en: "Put this Pokémon into play only with the effect of Palafin's Zero to Hero Ability.", + fr: "Ce Pokémon ne peut être mis en jeu que par l'effet du talent Supermutation de Superdofin.", + es: "Pon este Pokémon en juego solo con el efecto de la habilidad Cambio Heroico de Palafin.", + it: "Metti questo Pokémon in gioco solo per effetto dell'abilità Supercambio di Palafin.", + pt: "Coloque este Pokémon em jogo somente com o efeito da Habilidade Do Abismo ao Heroísmo de Palafin.", + de: "Bringe dieses Pokémon nur mit dem Effekt von Delfinators Fähigkeit Superwechsel ins Spiel." + } + }], + + attacks: [{ + cost: ["Water"], + + name: { + en: "Giga Impact", + fr: "Giga Impact", + es: "Gigaimpacto", + it: "Gigaimpatto", + pt: "Gigaimpacto", + de: "Gigastoß" + }, + + 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: 250 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/127.ts b/data/Scarlet & Violet/SVP Black Star Promos/127.ts new file mode 100644 index 000000000..f4295f4a4 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/127.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Walking Wake ex", + fr: "Serpente-Eau-ex", + es: "Ondulagua ex", + it: "Acquecrespe-ex", + pt: "Onda Ando ex", + de: "Windewoge-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Azure Seas", + fr: "Mers Azur", + es: "Mares Cerúleos", + it: "Mari Azzurri", + pt: "Mares Celestes", + de: "Azurmeer" + }, + + effect: { + en: "Damage from attacks used by this Pokémon isn't affected by any effects on your opponent's Active Pokémon.", + fr: "Les dégâts des attaques utilisées par ce Pokémon ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.", + es: "El daño de los ataques usados por este Pokémon no se ve afectado por ningún efecto en el Pokémon Activo de tu rival.", + it: "I danni degli attacchi usati da questo Pokémon non sono influenzati da alcun effetto presente sul Pokémon attivo del tuo avversario.", + pt: "O dano dos ataques usados por este Pokémon não é afetado por quaisquer efeitos no Pokémon Ativo do seu oponente.", + de: "Schaden durch von diesem Pokémon eingesetzte Attacken wird durch Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Catharsis Roar", + fr: "Rugissement Cathartique", + es: "Rugido Catártico", + it: "Ruggito Catartico", + pt: "Rugido Catarse", + de: "Katharsis-Gebrüll" + }, + + effect: { + en: "If your opponent's Active Pokémon is affected by a Special Condition, this attack does 120 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est affecté par un État Spécial, cette attaque inflige 120 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival se ve afectado por una Condición Especial, este ataque hace 120 puntos de daño más.", + it: "Se il Pokémon attivo del tuo avversario è influenzato da una condizione speciale, questo attacco infligge 120 danni in più.", + pt: "Se o Pokémon Ativo do seu oponente estiver afetado por uma Condição Especial, este ataque causará 120 pontos de dano a mais.", + de: "Wenn das Aktive Pokémon deines Gegners von einem Speziellen Zustand betroffen ist, fügt diese Attacke 120 Schadenspunkte mehr zu." + }, + + damage: "120+" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/128.ts b/data/Scarlet & Violet/SVP Black Star Promos/128.ts new file mode 100644 index 000000000..f4b11a62e --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/128.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Iron Leaves ex", + fr: "Vert-de-Fer-ex", + es: "Ferroverdor ex", + it: "Fogliaferrea-ex", + pt: "Folhas Férreas ex", + de: "Eisenblatt-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Grass"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Rapid Vernier", + fr: "Vernier Rapide", + es: "Propulsor Vernier", + it: "Propulsore Vernier", + pt: "Agilidade Vernier", + de: "Schnelle Justierung" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may switch it with your Active Pokémon. If you do, you may move any amount of Energy from your other Pokémon to this Pokémon.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez l'échanger contre votre Pokémon Actif. Dans ce cas, vous pouvez déplacer autant d'Énergies que vous le voulez de vos autres Pokémon vers ce Pokémon.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes cambiarlo por tu Pokémon Activo. Si lo haces, puedes mover cualquier cantidad de Energías de tus otros Pokémon a este Pokémon.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi scambiarlo con il tuo Pokémon attivo. Se lo fai, puoi spostare un numero qualsiasi di Energie dai tuoi altri Pokémon su questo Pokémon.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá trocá-lo pelo seu Pokémon Ativo. Se fizer isto, você poderá mover qualquer quantidade de Energia dos seus outros Pokémon para este Pokémon.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du es gegen dein Aktives Pokémon austauschen. Wenn du das machst, kannst du beliebig viele Energien von deinen anderen Pokémon auf dieses Pokémon verschieben." + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Colorless"], + + name: { + en: "Prism Edge", + fr: "Lame Prisme", + es: "Filo Prisma", + it: "Lama Prisma", + pt: "Lâmina Prisma", + de: "Prismaklinge" + }, + + 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: 180 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/129.ts b/data/Scarlet & Violet/SVP Black Star Promos/129.ts new file mode 100644 index 000000000..78cb2ce43 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/129.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pecharunt", + fr: "Pêchaminus", + es: "Pecharunt", + it: "Pecharunt", + pt: "Pecharunt", + de: "Infamomo" + }, + + rarity: "None", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Toxic Subjugation", + fr: "Emprise Toxique", + es: "Controlador Tóxico", + it: "Dominio Tossico", + pt: "Subjugação Tóxica", + de: "Giftige Knechtung" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, put 5 more damage counters on your opponent's Poisoned Pokémon during Pokémon Checkup.", + fr: "Tant que ce Pokémon est sur le Poste Actif, placez 5 marqueurs de dégâts supplémentaires sur les Pokémon Empoisonnés de votre adversaire pendant le Contrôle Pokémon.", + es: "Mientras este Pokémon esté en el Puesto Activo, pon 5 contadores de daño más en los Pokémon Envenenados de tu rival durante el Chequeo Pokémon.", + it: "Fintanto che questo Pokémon è in posizione attiva, metti altri cinque segnalini danno sui Pokémon avvelenati del tuo avversario durante il controllo Pokémon.", + pt: "Enquanto este Pokémon estiver no Campo Ativo, coloque 5 contadores de dano a mais nos Pokémon Envenenados do seu oponente durante o Checape Pokémon.", + de: "Solange dieses Pokémon in der Aktiven Position ist, lege beim Pokémon-Check 5 Schadensmarken mehr auf die vergifteten Pokémon deines Gegners." + } + }], + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + en: "Poison Chain", + fr: "Chaîne Poison", + es: "Cadena Venenosa", + it: "Catena Velenosa", + pt: "Corrente Peçonhenta", + de: "Giftige Kette" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned. During your opponent's next turn, that Pokémon can't retreat.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Pendant le prochain tour de votre adversaire, ce Pokémon-là ne peut pas battre en retraite.", + es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Durante el próximo turno de tu rival, ese Pokémon no puede retirarse.", + it: "Il Pokémon attivo del tuo avversario viene avvelenato. Durante il prossimo turno del tuo avversario, quel Pokémon non può ritirarsi.", + pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Durante o próximo turno do seu oponente, aquele Pokémon não poderá recuar.", + de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Während des nächsten Zuges deines Gegners kann sich jenes Pokémon nicht zurückziehen." + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/130.ts b/data/Scarlet & Violet/SVP Black Star Promos/130.ts new file mode 100644 index 000000000..b4f613643 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/130.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Kingambit", + fr: "Scalpereur", + es: "Kingambit", + it: "Kingambit", + pt: "Kingambit", + de: "Gladimperio" + }, + + rarity: "None", + category: "Pokemon", + hp: 180, + types: ["Metal"], + stage: "Stage2", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Strike Down", + fr: "Au Tapis", + es: "Derrotar", + it: "Atterramento", + pt: "Derrocada", + de: "Niederstrecken" + }, + + effect: { + en: "If your opponent's Active Pokémon has 4 or more damage counters on it, that Pokémon is Knocked Out.", + fr: "Si le Pokémon Actif de votre adversaire a au moins 4 marqueurs de dégâts, il est mis K.O.", + es: "Si el Pokémon Activo de tu rival tiene 4 contadores de daño o más sobre él, ese Pokémon queda Fuera de Combate.", + it: "Se il Pokémon attivo del tuo avversario ha quattro o più segnalini danno, quel Pokémon viene messo KO.", + pt: "Se o Pokémon Ativo do seu oponente tiver 4 ou mais contadores de dano nele, aquele Pokémon será Nocauteado.", + de: "Wenn auf dem Aktiven Pokémon deines Gegners mindestens 4 Schadensmarken liegen, ist jenes Pokémon kampfunfähig." + } + }, { + cost: ["Metal", "Colorless", "Colorless"], + + name: { + en: "Massive Rend", + fr: "Déchirure Massive", + es: "Corte Masivo", + it: "Supersquarcio", + pt: "Laceração Massiva", + de: "Riesiger Riss" + }, + + damage: 140 + }], + + retreat: 4, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/131.ts b/data/Scarlet & Violet/SVP Black Star Promos/131.ts new file mode 100644 index 000000000..ca0da42e4 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/131.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Kingdra ex", + fr: "Hyporoi-ex", + es: "Kingdra ex", + it: "Kingdra-ex", + pt: "Kingdra ex", + de: "Seedraking-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 310, + types: ["Water"], + stage: "Stage2", + + attacks: [{ + cost: ["Water"], + + name: { + en: "King's Order", + fr: "Ordre du Roi", + es: "Mandato Real", + it: "Ordine Sovrano", + pt: "Decreto do Rei", + de: "Auftrag des Königs" + }, + + effect: { + en: "Put up to 3 Water Pokémon from your discard pile onto your Bench.", + fr: "Placez jusqu'à 3 Pokémon Water de votre pile de défausse sur votre Banc.", + es: "Pon hasta 3 Pokémon Water de tu pila de descartes en tu Banca.", + it: "Prendi fino a tre Pokémon Water dalla tua pila degli scarti e mettili nella tua panchina.", + pt: "Coloque até 3 Pokémon Water da sua pilha de descarte no seu Banco.", + de: "Lege bis zu 3 Water-Pokémon aus deinem Ablagestapel auf deine Bank." + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "Hydro Pump", + fr: "Hydrocanon", + es: "Hidrobomba", + it: "Idropompa", + pt: "Jato d'Água", + de: "Hydropumpe" + }, + + effect: { + en: "This attack does 50 more damage for each Water Energy attached to this Pokémon.", + fr: "Cette attaque inflige 50 dégâts supplémentaires pour chaque Énergie Water attachée à ce Pokémon.", + es: "Este ataque hace 50 puntos de daño más por cada Energía Water unida a este Pokémon.", + it: "Questo attacco infligge 50 danni in più per ogni Energia Water assegnata a questo Pokémon.", + pt: "Este ataque causa 50 pontos de dano a mais para cada Energia Water ligada a este Pokémon.", + de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Water-Energie 50 Schadenspunkte mehr zu." + }, + + damage: "50+" + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/132.ts b/data/Scarlet & Violet/SVP Black Star Promos/132.ts new file mode 100644 index 000000000..e000504c1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/132.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Greninja ex", + fr: "Amphinobi-ex", + es: "Greninja ex", + it: "Greninja-ex", + pt: "Greninja ex", + de: "Quajutsu-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 300, + types: ["Water"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Stealthy Shuriken", + fr: "Shuriken Furtif", + es: "Shuriken Sigiloso", + it: "Lame Furtive", + pt: "Estrela Ninja Furtiva", + de: "Tarn-Shuriken" + }, + + effect: { + en: "This attack does 40 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 40 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 40 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 40 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 40 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 40 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }, { + cost: ["Water", "Water"], + + name: { + en: "Torrential Slash", + fr: "Tranche Torrentielle", + es: "Tajo Torrencial", + it: "Lacerazione Torrenziale", + pt: "Talho Torrencial", + de: "Reißender Schnitt" + }, + + effect: { + en: "If your opponent's Active Pokémon already has any damage counters on it, this attack does 120 more damage.", + fr: "Si le Pokémon Actif de votre adversaire a déjà au moins un marqueur de dégâts, cette attaque inflige 120 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival ya tiene algún contador de daño sobre él, este ataque hace 120 puntos de daño más.", + it: "Se il Pokémon attivo del tuo avversario ha già dei segnalini danno, questo attacco infligge 120 danni in più.", + pt: "Se o Pokémon Ativo do seu oponente já tiver algum contador de dano nele, este ataque causará 120 pontos de dano a mais.", + de: "Wenn auf dem Aktiven Pokémon deines Gegners mindestens 1 Schadensmarke liegt, fügt diese Attacke 120 Schadenspunkte mehr zu." + }, + + damage: "120+" + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/133.ts b/data/Scarlet & Violet/SVP Black Star Promos/133.ts new file mode 100644 index 000000000..43d7f64f1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/133.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Ledian", + fr: "Coxyclaque", + es: "Ledian", + it: "Ledian", + pt: "Ledian", + de: "Ledian" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Glittering Star Pattern", + fr: "Motif Étoile Scintillante", + es: "Motivo de Estrellas Brillantes", + it: "Motivo Stellato Brillante", + pt: "Pintas de Estrelas Cintilantes", + de: "Funkelndes Sternenmuster" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may switch in 1 of your opponent's Benched Pokémon that has 90 HP or less remaining to the Active Spot.", + fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez envoyer sur le Poste Actif l'un des Pokémon de Banc de votre adversaire auquel il reste 90 PV ou moins.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes cambiar 1 de los Pokémon en Banca de tu rival al que le queden 90 PS o menos por el Pokémon que esté en el Puesto Activo.", + it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi sostituire uno dei Pokémon nella panchina del tuo avversario che ha 90 PS o meno rimanenti con il suo Pokémon in posizione attiva.", + pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá mandar 1 dos Pokémon no Banco do seu oponente que tiver PS restante de 90 ou menos para o Campo Ativo.", + de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du 1 Pokémon von der Bank deines Gegners, das 90 oder weniger verbleibende KP hat, in die Aktive Position einwechseln." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Swift", + fr: "Météores", + es: "Meteoros", + it: "Comete", + pt: "Ataque Veloz", + de: "Sternschauer" + }, + + effect: { + en: "This attack's damage isn't affected by Weakness or Resistance, or by any effects on your opponent's Active Pokémon.", + fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout effet en action sur le Pokémon Actif de votre adversaire.", + es: "El daño de este ataque no se ve afectado por Debilidad o Resistencia, ni por ningún efecto en el Pokémon Activo de tu rival.", + it: "I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza, o da alcun effetto presente sul Pokémon attivo del tuo avversario.", + pt: "O dano deste ataque não é afetado por Fraqueza ou Resistência, ou por quaisquer efeitos no Pokémon Ativo do seu oponente.", + de: "Der Schaden dieser Attacke wird durch Schwäche, Resistenz oder Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert." + }, + + damage: 70 + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/134.ts b/data/Scarlet & Violet/SVP Black Star Promos/134.ts new file mode 100644 index 000000000..01ea7739c --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/134.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Crabominable", + fr: "Crabominable", + es: "Crabominable", + it: "Crabominable", + pt: "Crabominable", + de: "Krawell" + }, + + rarity: "None", + category: "Pokemon", + hp: 160, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Food Prep", + fr: "Préparation de Repas", + es: "Preparar la Comida", + it: "Preparacibo", + pt: "Preparação de Marmitas", + de: "Zubereitung" + }, + + effect: { + en: "Attacks used by this Pokémon cost Colorless less for each Kofu card in your discard pile.", + fr: "Les attaques utilisées par ce Pokémon coûtent Colorless de moins pour chaque carte Kombu dans votre pile de défausse.", + es: "Los ataques usados por este Pokémon cuestan Colorless menos por cada carta de Fuco en tu pila de descartes.", + it: "Il costo degli attacchi usati da questo Pokémon è ridotto di Colorless per ogni carta Algaro nella tua pila degli scarti.", + pt: "Os ataques usados por este Pokémon custam Colorless a menos para cada carta Álgaro na sua pilha de descarte.", + de: "Die Kosten der von diesem Pokémon eingesetzten Attacken verringern sich für jede Kombu-Karte in deinem Ablagestapel um Colorless." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Haymaker", + fr: "Coup de Poing Fracassant", + es: "Golpazo", + it: "Pugno Tremendo", + pt: "Golpe Arrasador", + de: "Schwinger" + }, + + effect: { + en: "During your next turn, this Pokémon can't use Haymaker.", + fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup de Poing Fracassant.", + es: "Durante tu próximo turno, este Pokémon no puede usar Golpazo.", + it: "Durante il tuo prossimo turno, questo Pokémon non può usare Pugno Tremendo.", + pt: "Durante o seu próximo turno, este Pokémon não poderá usar Golpe Arrasador.", + de: "Während deines nächsten Zuges kann dieses Pokémon Schwinger nicht einsetzen." + }, + + damage: 250 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/135.ts b/data/Scarlet & Violet/SVP Black Star Promos/135.ts new file mode 100644 index 000000000..885b90ceb --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/135.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Drifblim", + fr: "Grodrive", + es: "Drifblim", + it: "Drifblim", + pt: "Drifblim", + de: "Drifzepeli" + }, + + rarity: "None", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Everyone Explode Now", + fr: "Explosion Générale", + es: "Que Explote Todo el Mundo", + it: "Esplosione Generale", + pt: "Todos Explodem Agora", + de: "Alle explodieren – jetzt!" + }, + + effect: { + en: "This attack does 50 damage for each of your Drifloon and Drifblim in play. This attack also does 30 damage to each of your Drifloon and Drifblim. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 50 dégâts pour chacun de vos Baudrive et Grodrive en jeu. Cette attaque inflige aussi 30 dégâts à chacun de vos Baudrive et Grodrive. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 50 puntos de daño por cada uno de tus Drifloon y Drifblim en juego. Este ataque también hace 30 puntos de daño a cada uno de tus Drifloon y Drifblim. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 50 danni per ogni tuo Drifloon e Drifblim in gioco. Questo attacco infligge anche 30 danni a ciascuno dei tuoi Drifloon e Drifblim. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 50 pontos de dano para cada um dos seus Drifloon e Drifblim em jogo. Este ataque também causa 30 pontos de dano a cada um dos seus Drifloon e Drifblim. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt für jedes deiner Driftlon und Drifzepeli im Spiel 50 Schadenspunkte zu. Diese Attacke fügt auch jedem deiner Driftlon und Drifzepeli 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: "50×" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/136.ts b/data/Scarlet & Violet/SVP Black Star Promos/136.ts new file mode 100644 index 000000000..7534254d3 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/136.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Bouffalant", + fr: "Frison", + es: "Bouffalant", + it: "Bouffalant", + pt: "Bouffalant", + de: "Bisofank" + }, + + rarity: "None", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Curly Wall", + fr: "Mur Frisé", + es: "Muro Rizo", + it: "Muroriccio", + pt: "Parede Crespa", + de: "Zottelwand" + }, + + effect: { + en: "As long as you have at least 1 other Bouffalant in play, all of your Basic Colorless Pokémon take 60 less damage from attacks from your opponent's Pokémon (after applying Weakness and Resistance). The effect of Curly Wall doesn't stack.", + fr: "Tant que vous avez au moins un autre Frison en jeu, tous vos Pokémon Colorless de base subissent 60 dégâts de moins provenant des attaques des Pokémon de votre adversaire (après application de la Faiblesse et de la Résistance). L'effet de Mur Frisé n'est pas cumulable.", + es: "Mientras tengas por lo menos a otro Bouffalant en juego, los ataques de los Pokémon de tu rival hacen 60 puntos de daño menos a todos tus Pokémon Colorless Básicos (después de aplicar Debilidad y Resistencia). El efecto de Muro Rizo no se acumula.", + it: "Fintanto che hai almeno un altro Bouffalant in gioco, i tuoi Pokémon Base Colorless subiscono 60 danni in meno dagli attacchi dei Pokémon del tuo avversario, dopo aver applicato debolezza e resistenza. L'effetto di Muroriccio non è cumulabile.", + pt: "Enquanto você tiver pelo menos 1 outro Bouffalant em jogo, todos os seus Pokémon Colorless Básicos receberão 60 pontos de dano a menos de ataques dos Pokémon do seu oponente (depois de aplicar Fraqueza e Resistência). O efeito de Parede Crespa não acumula.", + de: "Solange du mindestens 1 anderes Bisofank im Spiel hast, werden allen deinen Basis-Colorless-Pokémon durch Attacken von Pokémon deines Gegners 60 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden). Der Effekt von Zottelwand stapelt sich nicht." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Boundless Power", + fr: "Puissance Illimitée", + es: "Poder Ilimitado", + it: "Potere Incontenibile", + pt: "Poder Ilimitado", + de: "Unbegrenzte Kraft" + }, + + 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: 130 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/137.ts b/data/Scarlet & Violet/SVP Black Star Promos/137.ts new file mode 100644 index 000000000..84a1f9f78 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/137.ts @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Horsea", + fr: "Hypotrempe", + es: "Horsea", + it: "Horsea", + pt: "Horsea", + de: "Seeper" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Hook", + fr: "Crochet", + es: "Garfio", + it: "Uncino", + pt: "Gancho", + de: "Haken" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/138.ts b/data/Scarlet & Violet/SVP Black Star Promos/138.ts new file mode 100644 index 000000000..a47d0caba --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/138.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Porygon2", + fr: "Porygon2", + es: "Porygon2", + it: "Porygon2", + pt: "Porygon2", + de: "Porygon2" + }, + + rarity: "None", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Powered Ball", + fr: "Boule Puissante", + es: "Bola Cargada", + it: "Palla Potenziata", + pt: "Bola Energizada", + de: "Angetriebener Ball" + }, + + effect: { + en: "Discard an Energy from this Pokémon.", + fr: "Défaussez une Énergie de ce Pokémon.", + es: "Descarta 1 Energía de este Pokémon.", + it: "Scarta un'Energia da questo Pokémon.", + pt: "Descarte uma Energia deste Pokémon.", + de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/139.ts b/data/Scarlet & Violet/SVP Black Star Promos/139.ts new file mode 100644 index 000000000..880d6dd1c --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/139.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Latias", + fr: "Latias", + es: "Latias", + it: "Latias", + pt: "Latias", + de: "Latias" + }, + + rarity: "None", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Mist Float", + fr: "Flottaison Brume", + es: "Flotación Nebulosa", + it: "Salvagente Nebbioso", + pt: "Névoa Flutuante", + de: "Gischtgleiter" + }, + + effect: { + en: "If this Pokémon has any Psychic Energy attached, it has no Retreat Cost.", + fr: "Si au moins une Énergie Psychic est attachée à ce Pokémon, il n'a pas de Coût de Retraite.", + es: "Si este Pokémon tiene alguna Energía Psychic unida, no tiene ningún Coste de Retirada.", + it: "Se questo Pokémon ha delle Energie Psychic assegnate, non ha costo di ritirata.", + pt: "Se este Pokémon tiver alguma Energia Psychic ligada a ele, não terá custo de Recuo.", + de: "Wenn an dieses Pokémon mindestens 1 Psychic-Energie angelegt ist, hat es keine Rückzugskosten." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Psychic Sphere", + fr: "Sphère Psy", + es: "Esfera Psíquica", + it: "Psicosfera", + pt: "Esfera Psíquica", + de: "Psychosphäre" + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/140.ts b/data/Scarlet & Violet/SVP Black Star Promos/140.ts new file mode 100644 index 000000000..3f02a3a67 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/140.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Tinkaton", + fr: "Forgelina", + es: "Tinkaton", + it: "Tinkaton", + pt: "Tinkaton", + de: "Granforgita" + }, + + rarity: "None", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + stage: "Stage2", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Knock Off", + fr: "Sabotage", + es: "Desarme", + it: "Privazione", + pt: "Derrubar", + de: "Abschlag" + }, + + effect: { + en: "Discard a random card from your opponent's hand.", + fr: "Défaussez au hasard une carte de la main de votre adversaire.", + es: "Descarta 1 carta aleatoria de la mano de tu rival.", + it: "Scarta una carta a caso dalla mano del tuo avversario.", + pt: "Descarte uma carta aleatória da mão do seu oponente.", + de: "Lege 1 zufällige Karte aus der Hand deines Gegners auf seinen Ablagestapel." + }, + + damage: 40 + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Wild Press", + fr: "Pression Sauvage", + es: "Presión Salvaje", + it: "Pressa Selvaggia", + pt: "Apertão Selvagem", + de: "Ungestümes Hämmern" + }, + + effect: { + en: "This Pokémon also does 60 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 60 dégâts.", + es: "Este Pokémon también se hace 60 puntos de daño a sí mismo.", + it: "Questo Pokémon infligge anche 60 danni a se stesso.", + pt: "Este Pokémon também causa 60 pontos de dano a si mesmo.", + de: "Dieses Pokémon fügt auch sich selbst 60 Schadenspunkte zu." + }, + + damage: 220 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/141.ts b/data/Scarlet & Violet/SVP Black Star Promos/141.ts new file mode 100644 index 000000000..07bcbe33e --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/141.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Noctowl", + fr: "Noarfang", + es: "Noctowl", + it: "Noctowl", + pt: "Noctowl", + de: "Noctuh" + }, + + rarity: "None", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Jewel Seeker", + fr: "Chercheur de Joyaux", + es: "Buscajoyas", + it: "Cercatore di Gemme", + pt: "Buscar Joias", + de: "Juwelenjäger" + }, + + effect: { + en: "Once during your turn, when you play this Pokémon from your hand to evolve 1 of your Pokémon, if you have any Tera Pokémon in play, you may search your deck for up to 2 Trainer cards, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Une fois pendant votre tour, lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon, si vous avez au moins un Pokémon Téracristal en jeu, vous pouvez chercher dans votre deck jusqu'à 2 cartes Dresseur, les montrer, puis les ajouter à votre main. Mélangez ensuite votre deck.", + es: "Una vez durante tu turno, cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon, si tienes algún Pokémon Teracristal en juego, puedes buscar en tu baraja hasta 2 cartas de Entrenador, enseñarlas y ponerlas en tu mano. Después, baraja las cartas de tu baraja.", + it: "Una sola volta durante il tuo turno, quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon, se hai dei Pokémon Teracristal in gioco, puoi cercare nel tuo mazzo fino a due carte Allenatore, mostrarle e aggiungerle alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Uma vez durante o seu turno, quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon, se você tiver algum Pokémon Tera em jogo, você poderá procurar por até 2 cartas de Treinador no seu baralho, revelá-las e colocá-las na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Einmal während deines Zuges, wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon zu entwickeln, kannst du, wenn du mindestens 1 Terakristall-Pokémon im Spiel hast, dein Deck nach bis zu 2 Trainerkarten durchsuchen, sie deinem Gegner zeigen und auf deine Hand nehmen. Mische anschließend dein Deck." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Speed Wing", + fr: "Ailes Vives", + es: "Ala Veloz", + it: "Alaveloce", + pt: "Asa da Velocidade", + de: "Turboschwinge" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/142.ts b/data/Scarlet & Violet/SVP Black Star Promos/142.ts new file mode 100644 index 000000000..799f79304 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/142.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Victini ex", + fr: "Victini-ex", + es: "Victini ex", + it: "Victini-ex", + pt: "Victini ex", + de: "Victini-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 190, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Strafe", + fr: "Bombarder", + es: "Pasada de Ataque", + it: "Mitragliare", + pt: "Bombardear", + de: "Beharken" + }, + + effect: { + en: "You may switch this Pokémon with 1 of your Benched Pokémon.", + fr: "Vous pouvez échanger ce Pokémon contre l'un de vos Pokémon de Banc.", + es: "Puedes cambiar este Pokémon por uno de tus Pokémon en Banca.", + it: "Puoi scambiare questo Pokémon con uno della tua panchina.", + pt: "Você pode trocar este Pokémon por 1 dos seus Pokémon no Banco.", + de: "Du kannst dieses Pokémon gegen 1 Pokémon auf deiner Bank austauschen." + }, + + damage: 30 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Victory Flame", + fr: "Flamme Victorieuse", + es: "Llama de Victoria", + it: "Fiamma della Vittoria", + pt: "Chama da Vitória", + de: "Triumphflamme" + }, + + 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: 220 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/143.ts b/data/Scarlet & Violet/SVP Black Star Promos/143.ts new file mode 100644 index 000000000..bbdeaecc6 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/143.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Miraidon ex", + fr: "Miraidon-ex", + es: "Miraidon ex", + it: "Miraidon-ex", + pt: "Miraidon ex", + de: "Miraidon-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Rapid Draw", + fr: "Pioche Rapide", + es: "Robo Rápido", + it: "Pescalesto", + pt: "Retirada Rápida", + de: "Schnellzieher" + }, + + 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." + }, + + damage: 20 + }, { + cost: ["Lightning", "Lightning", "Lightning"], + + name: { + en: "Techno Turbo", + fr: "Techno-Turbo", + es: "Tecno Turbo", + it: "Tecnoturbo", + pt: "Turbo Tecnológico", + de: "Techturbo" + }, + + effect: { + en: "Attach a Basic Lightning Energy card from your discard pile to 1 of your Benched Pokémon.", + fr: "Attachez une carte Énergie Lightning de base de votre pile de défausse à l'un de vos Pokémon de Banc.", + es: "Une 1 carta de Energía Lightning Básica de tu pila de descartes a uno de tus Pokémon en Banca.", + it: "Assegna a uno dei tuoi Pokémon in panchina una carta Energia base Lightning dalla tua pila degli scarti.", + pt: "Ligue uma carta de Energia Lightning Básica da sua pilha de descarte a 1 dos seus Pokémon no Banco.", + de: "Lege 1 Basis-Lightning-Energiekarte aus deinem Ablagestapel an 1 Pokémon auf deiner Bank an." + }, + + damage: 150 + }], + + retreat: 0, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/144.ts b/data/Scarlet & Violet/SVP Black Star Promos/144.ts new file mode 100644 index 000000000..71c6ea78e --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/144.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Gouging Fire ex", + fr: "Feu-Perçant-ex", + es: "Flamariete ex", + it: "Vampeaguzze-ex", + pt: "Fogo Corrosão ex", + de: "Keilflamme-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["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 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Blaze Blitz", + fr: "Assaut Flamboyant", + es: "Envite Llameante", + it: "Carica Infuocata", + pt: "Avanço Incendiário", + de: "Feuerblitz" + }, + + effect: { + en: "This Pokémon can't use Blaze Blitz again until it leaves the Active Spot.", + fr: "Ce Pokémon ne peut pas réutiliser Assaut Flamboyant tant qu'il ne quitte pas le Poste Actif.", + es: "Este Pokémon no puede usar Envite Llameante de nuevo hasta que deje el Puesto Activo.", + it: "Questo Pokémon non può più usare Carica Infuocata finché non lascia la posizione attiva.", + pt: "Este Pokémon não poderá usar Avanço Incendiário novamente até sair do Campo Ativo.", + de: "Dieses Pokémon kann Feuerblitz nicht wieder einsetzen, bis es die Aktive Position verlässt." + }, + + damage: 260 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/145.ts b/data/Scarlet & Violet/SVP Black Star Promos/145.ts new file mode 100644 index 000000000..d9e37a0d4 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/145.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Raging Bolt ex", + fr: "Ire-Foudre-ex", + es: "Electrofuria ex", + it: "Furiatonante-ex", + pt: "Raio Fúria ex", + de: "Furienblitz-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 240, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Burst Roar", + fr: "Rugissement Éclatant", + es: "Rugido Explosivo", + it: "Boatoscoppio", + pt: "Rugido Disruptivo", + de: "Berstender Brüller" + }, + + effect: { + en: "Discard your hand and draw 6 cards.", + fr: "Défaussez votre main, puis piochez 6 cartes.", + es: "Descarta las cartas de tu mano y roba 6 cartas.", + it: "Scarta le carte che hai in mano e pesca sei carte.", + pt: "Descarte a sua mão e compre 6 cartas.", + de: "Lege deine Handkarten auf deinen Ablagestapel und ziehe 6 Karten." + } + }, { + cost: ["Lightning", "Fighting"], + + name: { + en: "Bellowing Thunder", + fr: "Tonnerre Rugissant", + es: "Bramido Atronador", + it: "Fragortuono", + pt: "Trovão Estrondoso", + de: "Kläffender Donner" + }, + + effect: { + en: "You may discard any amount of Basic Energy from your Pokémon. This attack does 70 damage for each card you discarded in this way.", + fr: "Vous pouvez défausser autant d'Énergies de base que vous le voulez de vos Pokémon. Cette attaque inflige 70 dégâts pour chaque carte défaussée de cette façon.", + es: "Puedes descartar cualquier cantidad de Energías Básicas de tus Pokémon. Este ataque hace 70 puntos de daño por cada carta que hayas descartado de esta manera.", + it: "Puoi scartare tutte le Energie base che vuoi dai tuoi Pokémon. Questo attacco infligge 70 danni per ogni carta che hai scartato in questo modo.", + pt: "Você pode descartar qualquer quantidade de Energia Básica dos seus Pokémon. Este ataque causa 70 pontos de dano para cada carta descartada desta forma.", + de: "Du kannst beliebig viele Basis-Energien von deinen Pokémon auf deinen Ablagestapel legen. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 70 Schadenspunkte zu." + }, + + damage: "70×" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/146.ts b/data/Scarlet & Violet/SVP Black Star Promos/146.ts new file mode 100644 index 000000000..973a4aaba --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/146.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Iron Crown ex", + fr: "Chef-de-Fer-ex", + es: "Ferrotesta ex", + it: "Capoferreo-ex", + pt: "Chifres Férreos ex", + de: "Eisenhaupt-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Cobalt Command", + fr: "Ordre Cobalt", + es: "Orden Cobalto", + it: "Cobalcomando", + pt: "Comando de Cobalto", + de: "Kobaltbefehl" + }, + + effect: { + en: "Attacks used by your Future Pokémon, except any Iron Crown ex, do 20 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).", + fr: "Les attaques utilisées par vos Pokémon Temps futur, à l'exception de Chef-de-Fer-ex, infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Los ataques usados por tus Pokémon del futuro, excepto los de Ferrotesta ex, hacen 20 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + it: "Gli attacchi usati dai tuoi Pokémon Tempo Futuro, a eccezione di qualsiasi Capoferreo-ex, infliggono 20 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + pt: "Os ataques usados pelos seus Pokémon Futuristas, exceto por quaisquer Chifres Férreos ex, causam 20 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + de: "Attacken, die von deinen Pokémon aus der Zukunft, außer Eisenhaupt-ex, eingesetzt werden, fügen dem Aktiven Pokémon deines Gegners 20 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Twin Shotels", + fr: "Shotel Double", + es: "Shotel Gemelas", + it: "Doppio Shotel", + pt: "Espadas Gêmeas", + de: "Zwillings-Shotel" + }, + + effect: { + en: "This attack does 50 damage to 2 of your opponent's Pokémon. This attack's damage isn't affected by Weakness or Resistance, or by any effects on those Pokémon.", + fr: "Cette attaque inflige 50 dégâts à 2 des Pokémon de votre adversaire. Ces dégâts ne sont pas affectés par la Faiblesse, la Résistance ou tout effet en action sur ces Pokémon.", + es: "Este ataque hace 50 puntos de daño a 2 de los Pokémon de tu rival. El daño de este ataque no se ve afectado por Debilidad o Resistencia, ni por ningún efecto en esos Pokémon.", + it: "Questo attacco infligge 50 danni a due dei Pokémon del tuo avversario. I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza, o da alcun effetto presente su quei Pokémon.", + pt: "Este ataque causa 50 pontos de dano a 2 dos Pokémon do seu oponente. O dano deste ataque não é afetado por Fraqueza, Resistência ou por quaisquer efeitos naqueles Pokémon.", + de: "Diese Attacke fügt 2 Pokémon deines Gegners 50 Schadenspunkte zu. Der Schaden dieser Attacke wird durch Schwäche, Resistenz oder Effekte auf jenen Pokémon nicht verändert." + } + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/147.ts b/data/Scarlet & Violet/SVP Black Star Promos/147.ts new file mode 100644 index 000000000..c9a3944cd --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/147.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Iron Boulder ex", + fr: "Roc-de-Fer-ex", + es: "Ferromole ex", + it: "Massoferreo-ex", + pt: "Rocha Férrea ex", + de: "Eisenfels-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 240, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + en: "Repulsor Axe", + fr: "Hache Répulsion", + es: "Hacha Repeledora", + it: "Scure Respingente", + pt: "Machado Repulsor", + de: "Repulsionsaxt" + }, + + effect: { + en: "During your opponent's next turn, if this Pokémon is damaged by an attack (even if it is Knocked Out), put 8 damage counters on the Attacking Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, si ce Pokémon subit les dégâts d'une attaque (même s'il est mis K.O.), placez 8 marqueurs de dégâts sur le Pokémon Attaquant.", + es: "Durante el próximo turno de tu rival, si este Pokémon resulta dañado por un ataque (incluso si queda Fuera de Combate), pon 8 contadores de daño en el Pokémon Atacante.", + it: "Durante il prossimo turno del tuo avversario, se questo Pokémon viene danneggiato da un attacco, anche se viene messo KO, metti otto segnalini danno sul Pokémon attaccante.", + pt: "Durante o próximo turno do seu oponente, se este Pokémon for danificado por um ataque (mesmo que ele seja Nocauteado), coloque 8 contadores de dano no Pokémon Atacante.", + de: "Wenn diesem Pokémon während des nächsten Zuges deines Gegners durch eine Attacke Schaden zugefügt wird (auch wenn es dadurch kampfunfähig wird), lege 8 Schadensmarken auf das Angreifende Pokémon." + }, + + damage: 60 + }, { + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Power Stomp", + fr: "Piétinement Puissant", + es: "Pisotón Vigoroso", + it: "Forzapestone", + pt: "Pisoteada Poderosa", + de: "Kraftstampfer" + }, + + effect: { + en: "Discard 2 Energy from this Pokémon.", + fr: "Défaussez 2 Énergies de ce Pokémon.", + es: "Descarta 2 Energías de este Pokémon.", + it: "Scarta due Energie da questo Pokémon.", + pt: "Descarte 2 Energias deste Pokémon.", + de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 200 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/148.ts b/data/Scarlet & Violet/SVP Black Star Promos/148.ts new file mode 100644 index 000000000..4c9a44028 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/148.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Miraidon", + fr: "Miraidon", + es: "Miraidon", + it: "Miraidon", + pt: "Miraidon", + de: "Miraidon" + }, + + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Electric Claws", + fr: "Griffes Électriques", + es: "Garras Eléctricas", + it: "Artigli Elettrici", + pt: "Garras Elétricas", + de: "Elektrokrallen" + }, + + damage: 30 + }, { + cost: ["Lightning", "Lightning"], + + name: { + en: "Mach Bolt", + fr: "Éclair Fulgurant", + es: "Rayo Mach", + it: "Fulmine Mach", + pt: "Raio Supersônico", + de: "Flotter Sprung" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/149.ts b/data/Scarlet & Violet/SVP Black Star Promos/149.ts new file mode 100644 index 000000000..78cb2ce43 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/149.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pecharunt", + fr: "Pêchaminus", + es: "Pecharunt", + it: "Pecharunt", + pt: "Pecharunt", + de: "Infamomo" + }, + + rarity: "None", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Toxic Subjugation", + fr: "Emprise Toxique", + es: "Controlador Tóxico", + it: "Dominio Tossico", + pt: "Subjugação Tóxica", + de: "Giftige Knechtung" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, put 5 more damage counters on your opponent's Poisoned Pokémon during Pokémon Checkup.", + fr: "Tant que ce Pokémon est sur le Poste Actif, placez 5 marqueurs de dégâts supplémentaires sur les Pokémon Empoisonnés de votre adversaire pendant le Contrôle Pokémon.", + es: "Mientras este Pokémon esté en el Puesto Activo, pon 5 contadores de daño más en los Pokémon Envenenados de tu rival durante el Chequeo Pokémon.", + it: "Fintanto che questo Pokémon è in posizione attiva, metti altri cinque segnalini danno sui Pokémon avvelenati del tuo avversario durante il controllo Pokémon.", + pt: "Enquanto este Pokémon estiver no Campo Ativo, coloque 5 contadores de dano a mais nos Pokémon Envenenados do seu oponente durante o Checape Pokémon.", + de: "Solange dieses Pokémon in der Aktiven Position ist, lege beim Pokémon-Check 5 Schadensmarken mehr auf die vergifteten Pokémon deines Gegners." + } + }], + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + en: "Poison Chain", + fr: "Chaîne Poison", + es: "Cadena Venenosa", + it: "Catena Velenosa", + pt: "Corrente Peçonhenta", + de: "Giftige Kette" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned. During your opponent's next turn, that Pokémon can't retreat.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Pendant le prochain tour de votre adversaire, ce Pokémon-là ne peut pas battre en retraite.", + es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Durante el próximo turno de tu rival, ese Pokémon no puede retirarse.", + it: "Il Pokémon attivo del tuo avversario viene avvelenato. Durante il prossimo turno del tuo avversario, quel Pokémon non può ritirarsi.", + pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Durante o próximo turno do seu oponente, aquele Pokémon não poderá recuar.", + de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Während des nächsten Zuges deines Gegners kann sich jenes Pokémon nicht zurückziehen." + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/150.ts b/data/Scarlet & Violet/SVP Black Star Promos/150.ts new file mode 100644 index 000000000..c0e33f0aa --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/150.ts @@ -0,0 +1,32 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Paradise Resort", + fr: "Hôtel \" Au paradis des Pokémon \"", + es: "Complejo Turístico Paraíso", + it: "Resort Paradiso", + pt: "Resort Paraíso", + de: "Paradies Resort" + }, + + rarity: "None", + category: "Trainer", + + effect: { + en: "The Retreat Cost of each Psyduck in play (both yours and your opponent's) is Colorless less.", + fr: "Le Coût de Retraite de chacun des Psykokwak en jeu (les vôtres et ceux de votre adversaire) est diminué de Colorless.", + es: "El Coste de Retirada de cada Psyduck en juego (tanto tuyos como de tu rival) es de Colorless menos.", + it: "Il costo di ritirata di ciascuno Psyduck in gioco, sia tuo che del tuo avversario, è ridotto di Colorless.", + pt: "O custo de Recuo de cada Psyduck em jogo (seus e do seu oponente) é Colorless a menos.", + de: "Die Rückzugskosten aller Enton im Spiel (deiner und der deines Gegners) verringern sich um Colorless." + }, + + trainerType: "Stadium", + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/151.ts b/data/Scarlet & Violet/SVP Black Star Promos/151.ts new file mode 100644 index 000000000..ced806fc1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/151.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Gouging Fire", + fr: "Feu-Perçant", + es: "Flamariete", + it: "Vampeaguzze", + pt: "Fogo Corrosão", + de: "Keilflamme" + }, + + rarity: "None", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Lunge Out", + fr: "Allonger", + es: "Arremeter", + it: "Affondo Lungo", + pt: "Bote", + de: "Sprungangriff" + }, + + damage: 30 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Blazing Charge", + fr: "Charge Enflammée", + es: "Carga Calcinadora", + it: "Carica Ardente", + pt: "Avanço Flamejante", + de: "Lodernder Ansturm" + }, + + effect: { + en: "If your opponent has 4 or fewer Prize cards remaining, this attack does 70 more damage.", + fr: "S'il reste 4 cartes Récompense ou moins à votre adversaire, cette attaque inflige 70 dégâts supplémentaires.", + es: "Si a tu rival le quedan 4 cartas de Premio o menos, este ataque hace 70 puntos de daño más.", + it: "Se il tuo avversario ha quattro o meno carte Premio rimanenti, questo attacco infligge 70 danni in più.", + pt: "Se o seu oponente tiver 4 ou menos cartas de Prêmio restantes, este ataque causará 70 pontos de dano a mais.", + de: "Wenn dein Gegner 4 oder weniger verbleibende Preiskarten hat, fügt diese Attacke 70 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/152.ts b/data/Scarlet & Violet/SVP Black Star Promos/152.ts new file mode 100644 index 000000000..b9c9ad4dc --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/152.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Chien-Pao", + fr: "Baojian", + es: "Chien-Pao", + it: "Chien-Pao", + pt: "Chien-Pao", + de: "Baojian" + }, + + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Snow Sink", + fr: "Enlisement Neigeux", + es: "Hundimiento Nieve", + it: "Neveaffondo", + pt: "Afundar na Neve", + de: "Schneesenke" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may discard a Stadium in play.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez défausser un Stade en jeu.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes descartar un Estadio en juego.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi scartare una carta Stadio in gioco.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá descartar um Estádio em jogo.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du 1 Stadionkarte im Spiel auf den Ablagestapel legen." + } + }], + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Icicle Loop", + fr: "Boucle Stalactite", + es: "Bucle Témpano", + it: "Gelocircuito", + pt: "Loop Geladinho", + de: "Eiszapfenschleife" + }, + + effect: { + en: "Put an Energy attached to this Pokémon into your hand.", + fr: "Ajoutez à votre main une Énergie attachée à ce Pokémon.", + es: "Pon 1 Energía unida a este Pokémon en tu mano.", + it: "Prendi un'Energia assegnata a questo Pokémon e aggiungila alle carte che hai in mano.", + pt: "Coloque uma Energia ligada a este Pokémon na sua mão.", + de: "Nimm 1 an dieses Pokémon angelegte Energie auf deine Hand." + }, + + damage: 120 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/153.ts b/data/Scarlet & Violet/SVP Black Star Promos/153.ts new file mode 100644 index 000000000..a10faa418 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/153.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Magneton", + fr: "Magnéton", + es: "Magneton", + it: "Magneton", + pt: "Magneton", + de: "Magneton" + }, + + rarity: "None", + category: "Pokemon", + hp: 100, + types: ["Lightning"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Overvolt Discharge", + fr: "Décharge Survoltée", + es: "Descarga Sobretensión", + it: "Scarica di Sovratensione", + pt: "Descarga Supervoltaica", + de: "Hochspannungsentladung" + }, + + effect: { + en: "Once during your turn, you may attach up to 3 Basic Energy cards from your discard pile to your Lightning Pokémon in any way you like. If you use this Ability, this Pokémon is Knocked Out.", + fr: "Une fois pendant votre tour, vous pouvez attacher jusqu'à 3 cartes Énergie de base de votre pile de défausse à vos Pokémon Lightning, comme il vous plaît. Si vous utilisez ce talent, ce Pokémon est mis K.O.", + es: "Una vez durante tu turno, puedes unir hasta 3 cartas de Energía Básica de tu pila de descartes a tus Pokémon Lightning de la manera que desees. Si usas esta habilidad, este Pokémon queda Fuera de Combate.", + it: "Una sola volta durante il tuo turno, puoi assegnare ai tuoi Pokémon Lightning fino a tre carte Energia base dalla tua pila degli scarti nel modo che preferisci. Se usi questa abilità, questo Pokémon viene messo KO.", + pt: "Uma vez durante o seu turno, você poderá ligar até 3 cartas de Energia Básica da sua pilha de descarte aos seus Pokémon Lightning como desejar. Se você usar esta Habilidade, este Pokémon será Nocauteado.", + de: "Einmal während deines Zuges kannst du bis zu 3 Basis-Energiekarten aus deinem Ablagestapel beliebig an deine Lightning-Pokémon anlegen. Wenn du diese Fähigkeit einsetzt, ist dieses Pokémon kampfunfähig." + } + }], + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Electric Ball", + fr: "Boule de Foudre", + es: "Bola Eléctrica", + it: "Lamposfera", + pt: "Bola de Eletricidade", + de: "Stromball" + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/154.ts b/data/Scarlet & Violet/SVP Black Star Promos/154.ts new file mode 100644 index 000000000..83f351c0c --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/154.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Indeedee", + fr: "Wimessir", + es: "Indeedee", + it: "Indeedee", + pt: "Indeedee", + de: "Servol" + }, + + rarity: "None", + category: "Pokemon", + hp: 100, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Obliging Heal", + fr: "Soin Serviable", + es: "Curación Servicial", + it: "Cure Premurose", + pt: "Cura Prestativa", + de: "Höfliche Heilung" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may heal 30 damage from your Active Pokémon and have it recover from a Special Condition.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez soigner 30 dégâts de votre Pokémon Actif et le guérir d'un État Spécial.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes curar 30 puntos de daño a tu Pokémon Activo y hacer que se recupere de una Condición Especial.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi curare il tuo Pokémon attivo da 30 danni e farlo guarire da una condizione speciale.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá curar 30 pontos de dano do seu Pokémon Ativo e fazer com que ele se recupere de uma Condição Especial.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du 30 Schadenspunkte bei deinem Aktiven Pokémon heilen, und es erholt sich von 1 Speziellen Zustand." + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Super Psy Bolt", + fr: "Super Psy", + es: "Superrayo Psi", + it: "Superpsico", + pt: "Super-raio Psíquico", + de: "Super-Psischlag" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/155.ts b/data/Scarlet & Violet/SVP Black Star Promos/155.ts new file mode 100644 index 000000000..240a1dfde --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/155.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Wooper", + fr: "Axoloto", + es: "Wooper", + it: "Wooper", + pt: "Wooper", + de: "Felino" + }, + + rarity: "None", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Scoop Water", + fr: "Écope Eau", + es: "Palada de Agua", + it: "Idrorecupero", + pt: "Recolher Água", + de: "Wasser schöpfen" + }, + + effect: { + en: "Shuffle up to 3 Basic Water Energy cards from your discard pile into your deck.", + fr: "Mélangez jusqu'à 3 cartes Énergie Water de base de votre pile de défausse avec votre deck.", + es: "Pon hasta 3 cartas de Energía Water Básica de tu pila de descartes en tu baraja y barájalas todas.", + it: "Rimischia fino a tre carte Energia base Water dalla tua pila degli scarti nel tuo mazzo.", + pt: "Embaralhe até 3 cartas de Energia Water Básica da sua pilha de descarte no seu baralho.", + de: "Mische bis zu 3 Basis-Water-Energiekarten aus deinem Ablagestapel in dein Deck." + } + }, { + cost: ["Water"], + + name: { + en: "Headbutt", + fr: "Coup d'Boule", + es: "Golpe Cabeza", + it: "Bottintesta", + pt: "Cabeçada", + de: "Kopfnuss" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/156.ts b/data/Scarlet & Violet/SVP Black Star Promos/156.ts new file mode 100644 index 000000000..e033e7c26 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/156.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Quagsire", + fr: "Maraiste", + es: "Quagsire", + it: "Quagsire", + pt: "Quagsire", + de: "Morlord" + }, + + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Rollout", + fr: "Roulade", + es: "Rodar", + it: "Rotolamento", + pt: "Rolagem", + de: "Walzer" + }, + + damage: 30 + }, { + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Drenched Headbutt", + fr: "Coup d'Boule Trempé", + es: "Cabezazo Empapado", + it: "Bottintesta Inzuppata", + pt: "Cabeçada Encharcada", + de: "Durchtränkte Kopfnuss" + }, + + effect: { + en: "Discard the top 3 cards of your deck. This attack does 80 damage for each Energy card you discarded in this way.", + fr: "Défaussez les 3 cartes du dessus de votre deck. Cette attaque inflige 80 dégâts pour chaque carte Énergie défaussée de cette façon.", + es: "Descarta las 3 primeras cartas de tu baraja. Este ataque hace 80 puntos de daño por cada carta de Energía que hayas descartado de esta manera.", + it: "Scarta le prime tre carte del tuo mazzo. Questo attacco infligge 80 danni per ogni carta Energia che hai scartato in questo modo.", + pt: "Descarte as 3 cartas de cima do seu baralho. Este ataque causa 80 pontos de dano para cada carta de Energia descartada desta forma.", + de: "Lege die obersten 3 Karten deines Decks auf deinen Ablagestapel. Diese Attacke fügt für jede auf diese Weise abgelegte Energiekarte 80 Schadenspunkte zu." + }, + + damage: "80×" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/157.ts b/data/Scarlet & Violet/SVP Black Star Promos/157.ts new file mode 100644 index 000000000..421090a96 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/157.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Zapdos", + fr: "Électhor", + es: "Zapdos", + it: "Zapdos", + pt: "Zapdos", + de: "Zapdos" + }, + + rarity: "None", + category: "Pokemon", + hp: 110, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Follow-Up Bolt", + fr: "Éclair de Relance", + es: "Seguimiento Rayo", + it: "Proseguimento Fulmine", + pt: "Raio em Sequência", + de: "Anschluss-Blitz" + }, + + effect: { + en: "This attack does 10 more damage for each damage counter on your opponent's Active Pokémon.", + fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts sur le Pokémon Actif de votre adversaire.", + es: "Este ataque hace 10 puntos de daño más por cada contador de daño en el Pokémon Activo de tu rival.", + it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente sul Pokémon attivo del tuo avversario.", + pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano no Pokémon Ativo do seu oponente.", + de: "Diese Attacke fügt für jede Schadensmarke auf dem Aktiven Pokémon deines Gegners 10 Schadenspunkte mehr zu." + }, + + damage: "20+" + }, { + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + en: "Drill Peck", + fr: "Bec Vrille", + es: "Pico Taladro", + it: "Perforbecco", + pt: "Bico Broca", + de: "Bohrschnabel" + }, + + damage: 80 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/158.ts b/data/Scarlet & Violet/SVP Black Star Promos/158.ts new file mode 100644 index 000000000..f72cbdaf8 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/158.ts @@ -0,0 +1,61 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pachirisu", + fr: "Pachirisu", + es: "Pachirisu", + it: "Pachirisu", + pt: "Pachirisu", + de: "Pachirisu" + }, + + rarity: "None", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Crackling Charge", + fr: "Charge Crépitante", + es: "Carga Chispeante", + it: "Carica Crepitante", + pt: "Carga Crépida", + de: "Knisternde Aufladung" + }, + + effect: { + en: "Flip 3 coins. Attach a number of Basic Lightning Energy cards up to the number of heads from your discard pile to your Benched Pokémon in any way you like.", + fr: "Lancez 3 pièces. Attachez à vos Pokémon de Banc un nombre de cartes Énergie Lightning de base de votre pile de défausse inférieur ou égal au nombre de côtés face obtenus, comme il vous plaît.", + es: "Lanza 3 monedas. Coge de tu pila de descartes una cantidad de cartas de Energía Lightning Básica igual o inferior al número de caras que te hayan salido y únelas a tus Pokémon en Banca de la manera que desees.", + it: "Lancia tre volte una moneta. Assegna ai tuoi Pokémon in panchina un numero di carte Energia base Lightning dalla tua pila degli scarti uguale o inferiore al numero di volte in cui è uscito testa nel modo che preferisci.", + pt: "Jogue 3 moedas. Ligue um número de cartas de Energia Lightning Básica até o número de caras da sua pilha de descarte aos seus Pokémon no Banco como desejar.", + de: "Wirf 3 Münzen. Lege bis zu so viele Basis-Lightning-Energiekarten, wie du Kopf geworfen hast, aus deinem Ablagestapel beliebig an die Pokémon auf deiner Bank an." + } + }, { + cost: ["Lightning", "Colorless"], + + name: { + en: "Tiny Bolt", + fr: "Foudre Minuscule", + es: "Relampaguito", + it: "Minifulmine", + pt: "Corisquinho", + de: "Mini-Blitz" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/159.ts b/data/Scarlet & Violet/SVP Black Star Promos/159.ts new file mode 100644 index 000000000..a10faa418 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/159.ts @@ -0,0 +1,63 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Magneton", + fr: "Magnéton", + es: "Magneton", + it: "Magneton", + pt: "Magneton", + de: "Magneton" + }, + + rarity: "None", + category: "Pokemon", + hp: 100, + types: ["Lightning"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Overvolt Discharge", + fr: "Décharge Survoltée", + es: "Descarga Sobretensión", + it: "Scarica di Sovratensione", + pt: "Descarga Supervoltaica", + de: "Hochspannungsentladung" + }, + + effect: { + en: "Once during your turn, you may attach up to 3 Basic Energy cards from your discard pile to your Lightning Pokémon in any way you like. If you use this Ability, this Pokémon is Knocked Out.", + fr: "Une fois pendant votre tour, vous pouvez attacher jusqu'à 3 cartes Énergie de base de votre pile de défausse à vos Pokémon Lightning, comme il vous plaît. Si vous utilisez ce talent, ce Pokémon est mis K.O.", + es: "Una vez durante tu turno, puedes unir hasta 3 cartas de Energía Básica de tu pila de descartes a tus Pokémon Lightning de la manera que desees. Si usas esta habilidad, este Pokémon queda Fuera de Combate.", + it: "Una sola volta durante il tuo turno, puoi assegnare ai tuoi Pokémon Lightning fino a tre carte Energia base dalla tua pila degli scarti nel modo che preferisci. Se usi questa abilità, questo Pokémon viene messo KO.", + pt: "Uma vez durante o seu turno, você poderá ligar até 3 cartas de Energia Básica da sua pilha de descarte aos seus Pokémon Lightning como desejar. Se você usar esta Habilidade, este Pokémon será Nocauteado.", + de: "Einmal während deines Zuges kannst du bis zu 3 Basis-Energiekarten aus deinem Ablagestapel beliebig an deine Lightning-Pokémon anlegen. Wenn du diese Fähigkeit einsetzt, ist dieses Pokémon kampfunfähig." + } + }], + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Electric Ball", + fr: "Boule de Foudre", + es: "Bola Eléctrica", + it: "Lamposfera", + pt: "Bola de Eletricidade", + de: "Stromball" + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/160.ts b/data/Scarlet & Violet/SVP Black Star Promos/160.ts new file mode 100644 index 000000000..524cfc666 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/160.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Squawkabilly ex", + fr: "Tapatoès-ex", + es: "Squawkabilly ex", + it: "Squawkabilly-ex", + pt: "Squawkabilly ex", + de: "Krawalloro-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Squawk and Seize", + fr: "Tapage et Prise", + es: "Graznido y Captura", + it: "Strilla e Afferra", + pt: "Grasnar e Aproveitar", + de: "Krawallkrallen" + }, + + effect: { + en: "Once during your first turn, you may discard your hand and draw 6 cards. You can't use more than 1 Squawk and Seize Ability during your turn.", + fr: "Une fois pendant votre premier tour, vous pouvez défausser votre main et piocher 6 cartes. Vous ne pouvez utiliser qu'un talent Tapage et Prise pendant votre tour.", + es: "Una vez durante tu primer turno, puedes descartar las cartas de tu mano y robar 6 cartas. No puedes usar más de una habilidad Graznido y Captura durante tu turno.", + it: "Una sola volta durante il tuo primo turno, puoi scartare le carte che hai in mano e pescare sei carte. Non puoi usare più di un'abilità Strilla e Afferra durante il tuo turno.", + pt: "Uma vez durante o seu primeiro turno, você poderá descartar a sua mão e comprar 6 cartas. Você não pode usar mais de 1 Habilidade Grasnar e Aproveitar durante o seu turno.", + de: "Einmal während deines ersten Zuges kannst du deine Handkarten auf deinen Ablagestapel legen und 6 Karten ziehen. Du kannst die Fähigkeit Krawallkrallen nur einmal während deines Zuges einsetzen." + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Motivate", + fr: "Motivation", + es: "Motivar", + it: "Incentivo", + pt: "Motivação", + de: "Motivieren" + }, + + effect: { + en: "Attach up to 2 Basic Energy cards from your discard pile to 1 of your Benched Pokémon.", + fr: "Attachez jusqu'à 2 cartes Énergie de base de votre pile de défausse à l'un de vos Pokémon de Banc.", + es: "Une hasta 2 cartas de Energía Básica de tu pila de descartes a uno de tus Pokémon en Banca.", + it: "Assegna a uno dei tuoi Pokémon in panchina fino a due carte Energia base dalla tua pila degli scarti.", + pt: "Ligue até 2 cartas de Energia Básica da sua pilha de descarte a 1 dos seus Pokémon no Banco.", + de: "Lege bis zu 2 Basis-Energiekarten aus deinem Ablagestapel an 1 Pokémon auf deiner Bank an." + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/161.ts b/data/Scarlet & Violet/SVP Black Star Promos/161.ts new file mode 100644 index 000000000..e3f090751 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/161.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +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: "None", + category: "Pokemon", + hp: 330, + types: ["Fire"], + stage: "Stage2", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Brave Wing", + fr: "Aile de Bravoure", + es: "Ala Osada", + it: "Ala Impavida", + pt: "Asa Intrépida", + de: "Tapfere Flügel" + }, + + effect: { + en: "If this Pokémon has any damage counters on it, this attack does 100 more damage.", + fr: "Si au moins un marqueur de dégâts est placé sur ce Pokémon, cette attaque inflige 100 dégâts supplémentaires.", + es: "Si este Pokémon tiene algún contador de daño sobre él, este ataque hace 100 puntos de daño más.", + it: "Se questo Pokémon ha dei segnalini danno, questo attacco infligge 100 danni in più.", + pt: "Se este Pokémon tiver algum contador de dano nele, este ataque causará 100 pontos de dano a mais.", + de: "Wenn auf diesem Pokémon mindestens 1 Schadensmarke liegt, fügt diese Attacke 100 Schadenspunkte mehr zu." + }, + + damage: "60+" + }, { + cost: ["Fire", "Fire", "Fire", "Fire"], + + name: { + en: "Explosive Vortex", + fr: "Vortex Explosif", + es: "Vórtice Explosivo", + it: "Vortice Esplosivo", + pt: "Vórtice Explosivo", + de: "Explosiver Wirbel" + }, + + effect: { + en: "Discard 3 Energy from this Pokémon.", + fr: "Défaussez 3 Énergies de ce Pokémon.", + es: "Descarta 3 Energías de este Pokémon.", + it: "Scarta tre Energie da questo Pokémon.", + pt: "Descarte 3 Energias deste Pokémon.", + de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 330 + }], + + retreat: 2, + regulationMark: "G" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/162.ts b/data/Scarlet & Violet/SVP Black Star Promos/162.ts new file mode 100644 index 000000000..e594c2c0e --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/162.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Houndstone ex", + fr: "Tomberro-ex", + es: "Houndstone ex", + it: "Houndstone-ex", + pt: "Houndstone ex", + de: "Friedwuff-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 260, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Horrifying Fang", + fr: "Croc Horrifiant", + es: "Colmillo Terrorífico", + it: "Zanna Orripilante", + pt: "Caninos Aterrorizantes", + de: "Grauenhafter Reißer" + }, + + effect: { + en: "Flip a coin until you get tails. This attack does 20 more damage for each heads.", + fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.", + es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 20 puntos de daño más por cada cara.", + it: "Lancia una moneta finché non esce croce. Questo attacco infligge 20 danni in più ogni volta che esce testa.", + pt: "Jogue uma moeda até sair coroa. Este ataque causa 20 pontos de dano a mais para cada cara.", + de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Diese Attacke fügt 20 Schadenspunkte mehr pro Kopf zu." + }, + + damage: "100+" + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/163.ts b/data/Scarlet & Violet/SVP Black Star Promos/163.ts new file mode 100644 index 000000000..e94cc8243 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/163.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Cinderace ex", + fr: "Pyrobut-ex", + es: "Cinderace ex", + it: "Cinderace-ex", + pt: "Cinderace ex", + de: "Liberlo-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 320, + types: ["Fire"], + stage: "Stage2", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Flare Strike", + fr: "Attaque Flamboyante", + es: "Impacto Ígneo", + it: "Colpo Fiammante", + pt: "Golpe de Chamas", + de: "Feuergeschoss" + }, + + effect: { + en: "During your next turn, this Pokémon can't use Flare Strike.", + fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Attaque Flamboyante.", + es: "Durante tu próximo turno, este Pokémon no puede usar Impacto Ígneo.", + it: "Durante il tuo prossimo turno, questo Pokémon non può usare Colpo Fiammante.", + pt: "Durante o seu próximo turno, este Pokémon não poderá usar Golpe de Chamas.", + de: "Während deines nächsten Zuges kann dieses Pokémon Feuergeschoss nicht einsetzen." + }, + + damage: 280 + }, { + cost: ["Fire", "Fighting", "Darkness"], + + name: { + en: "Garnet Volley", + fr: "Volée de Grenats", + es: "Volea Granate", + it: "Cannonata di Granato", + pt: "Voleio de Granate", + de: "Granat-Volley" + }, + + effect: { + en: "This attack does 180 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 180 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 180 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 180 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 180 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 180 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }], + + retreat: 0, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/164.ts b/data/Scarlet & Violet/SVP Black Star Promos/164.ts new file mode 100644 index 000000000..c995c33b8 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/164.ts @@ -0,0 +1,70 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Lapras ex", + fr: "Lokhlass-ex", + es: "Lapras ex", + it: "Lapras-ex", + pt: "Lapras ex", + de: "Lapras-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Power Splash", + fr: "Éclaboussure Puissante", + es: "Salpicadura Enérgica", + it: "Forzasplash", + pt: "Esguicho Poderoso", + de: "Power-Platscher" + }, + + effect: { + en: "This attack does 40 damage for each Energy attached to this Pokémon.", + fr: "Cette attaque inflige 40 dégâts pour chaque Énergie attachée à ce Pokémon.", + es: "Este ataque hace 40 puntos de daño por cada Energía unida a este Pokémon.", + it: "Questo attacco infligge 40 danni per ogni Energia assegnata a questo Pokémon.", + pt: "Este ataque causa 40 pontos de dano para cada Energia ligada a este Pokémon.", + de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Energie 40 Schadenspunkte zu." + }, + + damage: "40×" + }, { + cost: ["Water", "Psychic", "Metal"], + + name: { + en: "Larimar Rain", + fr: "Pluie Larimar", + es: "Lluvia Larimar", + it: "Pioggia di Larimar", + pt: "Chuva de Larimar", + de: "Larimar-Regen" + }, + + effect: { + en: "Look at the top 20 cards of your deck and attach any number of Energy cards you find there to your Pokémon in any way you like. Shuffle the other cards back into your deck.", + fr: "Regardez les 20 cartes du dessus de votre deck, puis attachez le nombre voulu de cartes Énergie que vous y trouvez à vos Pokémon, comme il vous plaît. Mélangez les autres cartes avec votre deck.", + es: "Mira las 20 primeras cartas de tu baraja y une cualquier cantidad de cartas de Energía que encuentres entre ellas a tus Pokémon de la manera que desees. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Guarda le prime 20 carte del tuo mazzo e assegna un numero qualsiasi di carte Energia presenti tra esse ai tuoi Pokémon nel modo che preferisci. Poi rimischia le altre carte nel tuo mazzo.", + pt: "Olhe as 20 cartas de cima do seu baralho e ligue qualquer número de cartas de Energia que encontrar lá aos seus Pokémon como desejar. Embaralhe as outras cartas de volta no seu baralho.", + de: "Schau dir die obersten 20 Karten deines Decks an und lege beliebig viele Energiekarten, die du dort findest, beliebig an deine Pokémon an. Mische die anderen Karten zurück in dein Deck." + } + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/165.ts b/data/Scarlet & Violet/SVP Black Star Promos/165.ts new file mode 100644 index 000000000..c336d6029 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/165.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Terapagos ex", + fr: "Terapagos-ex", + es: "Terapagos ex", + it: "Terapagos-ex", + pt: "Terapagos ex", + de: "Terapagos-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Unified Beatdown", + fr: "Dérouillée Groupée", + es: "Golpe Unísono", + it: "Batosta all'Unisono", + pt: "Abater Unificado", + de: "Vereinter Niederprügler" + }, + + effect: { + en: "If you go second, you can't use this attack during your first turn. This attack does 30 damage for each of your Benched Pokémon.", + fr: "Si vous jouez en second, vous ne pouvez pas utiliser cette attaque pendant votre premier tour. Cette attaque inflige 30 dégâts pour chacun de vos Pokémon de Banc.", + es: "Si sales en segundo lugar, no puedes usar este ataque durante tu primer turno. Este ataque hace 30 puntos de daño por cada uno de tus Pokémon en Banca.", + it: "Se inizi per secondo, non puoi usare questo attacco durante il tuo primo turno. Questo attacco infligge 30 danni per ogni Pokémon nella tua panchina.", + pt: "Se você for o segundo a jogar, você não poderá usar este ataque durante o seu primeiro turno. Este ataque causa 30 pontos de dano para cada um dos seus Pokémon no Banco.", + de: "Wenn du als Zweiter am Zug bist, kannst du diese Attacke während deines ersten Zuges nicht einsetzen. Diese Attacke fügt für jedes Pokémon auf deiner Bank 30 Schadenspunkte zu." + }, + + damage: "30×" + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + en: "Crown Opal", + fr: "Couronne Opale", + es: "Ópalo Corona", + it: "Opale della Corona", + pt: "Coroa de Opalas", + de: "Kronen-Opal" + }, + + effect: { + en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic non-Colorless Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon non-Colorless de base.", + es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon no Colorless Básicos.", + it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base non di tipo Colorless.", + pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon Básicos que não sejam de tipo Colorless.", + de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon, die keine Colorless-Pokémon sind, zugefügt wird." + }, + + damage: 180 + }], + + retreat: 2, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/166.ts b/data/Scarlet & Violet/SVP Black Star Promos/166.ts new file mode 100644 index 000000000..1789b09b7 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/166.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Teal Mask Ogerpon ex", + fr: "Ogerpon Masque Turquoise-ex", + es: "Ogerpon Máscara Turquesa ex", + it: "Ogerpon Maschera Turchese-ex", + pt: "Ogerpon Máscara Turquesa ex", + de: "Türkisgrüne-Maske-Ogerpon-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 210, + types: ["Grass"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Teal Dance", + fr: "Danse Turquoise", + es: "Danza Turquesa", + it: "Danza Turchese", + pt: "Dança Turquesa", + de: "Türkisgrüner Tanz" + }, + + effect: { + en: "Once during your turn, you may attach a Basic Grass Energy card from your hand to this Pokémon. If you attached Energy to a Pokémon in this way, draw a card.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Grass de base de votre main à ce Pokémon. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, piochez une carte.", + es: "Una vez durante tu turno, puedes unir 1 carta de Energía Grass Básica de tu mano a este Pokémon. Si has unido Energía a un Pokémon de esta manera, roba 1 carta.", + it: "Una sola volta durante il tuo turno, puoi assegnare a questo Pokémon una carta Energia base Grass dalla tua mano. Se hai assegnato dell'Energia a un Pokémon in questo modo, pesca una carta.", + pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Grass Básica da sua mão a este Pokémon. Se você ligou Energia a um Pokémon desta forma, compre uma carta.", + de: "Einmal während deines Zuges kannst du 1 Basis-Grass-Energiekarte aus deiner Hand an dieses Pokémon anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, ziehe 1 Karte." + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Grass"], + + name: { + en: "Myriad Leaf Shower", + fr: "Pluie de Feuilles", + es: "Lluvia de Hojas", + it: "Miriade di Foglie Cadenti", + pt: "Chuva Infinita de Folhas", + de: "Laubschauer" + }, + + 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: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/167.ts b/data/Scarlet & Violet/SVP Black Star Promos/167.ts new file mode 100644 index 000000000..03a6ac114 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/167.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Flareon", + pt: "Flareon", + }, + + rarity: "None", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Stage1", + + attacks: [ + { + cost: ["Fire"], + + name: { + en: "Destructive Flame", + pt: "Chama Destruidora", + }, + + effect: { + en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", + pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente." + }, + + damage: "30" + }, + { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Fighting Blaze", + pt: "Luta Labareda", + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon EX or Pokémon V, this attack does 90 more damage.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon EX ou um Pokémon V, este ataque causará 90 pontos de dano a mais." + }, + + damage: "90+" + }, + ], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/168.ts b/data/Scarlet & Violet/SVP Black Star Promos/168.ts new file mode 100644 index 000000000..0c0dd796d --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/168.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Vaporeon", + pt: "Vaporeon", + }, + + rarity: "None", + category: "Pokemon", + hp: 130, + types: ["Water"], + stage: "Stage1", + + attacks: [ + { + cost: ["Water"], + + name: { + en: "Spiral Drain", + pt: "Dreno Espiral", + }, + + effect: { + en: "Heal 30 damage from this Pokémon.", + pt: "Cure 30 pontos de dano deste Pokémon." + }, + + damage: "30" + }, + { + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Fighting Whirlpool", + pt: "Luta Redemoinho", + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon EX or Pokémon V, this attack does 90 more damage.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon EX ou um Pokémon V, este ataque causará 90 pontos de dano a mais." + }, + + damage: "90+" + }, + ], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/169.ts b/data/Scarlet & Violet/SVP Black Star Promos/169.ts new file mode 100644 index 000000000..53372d814 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/169.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Jolteon", + pt: "Jolteon", + }, + + rarity: "None", + category: "Pokemon", + hp: 110, + types: ["Lightning"], + stage: "Stage1", + + attacks: [ + { + cost: ["Lightning"], + + name: { + en: "Linear Attack", + pt: "Ataque Linear", + }, + + effect: { + en: "This attack does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + pt: "Este ataque causa 30 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)" + }, + }, + { + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + en: "Fighting Lightning", + pt: "Luta Relâmpago", + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon EX or Pokémon V, this attack does 90 more damage.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon EX ou um Pokémon V, este ataque causará 90 pontos de dano a mais." + }, + + damage: "90+" + }, + ], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/170.ts b/data/Scarlet & Violet/SVP Black Star Promos/170.ts new file mode 100644 index 000000000..7e72566c2 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/170.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Leafeon", + pt: "Leafeon", + }, + + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Stage1", + + attacks: [ + { + cost: ["Colorless"], + + name: { + en: "Leaflet Blessings", + pt: "Bênçãos das Folhinhas", + }, + + effect: { + en: "Attach a Basic Grass Energy card from your hand to 1 of your Benched Pokémon. If you do, heal all damage from that Pokémon.", + pt: "Ligue uma carta de Energia Grama Básica da sua mão a 1 dos seus Pokémon no Banco. Se fizer isso, cure todo o dano daquele Pokémon." + }, + }, + { + cost: ["Grass", "Colorless"], + + name: { + en: "Solar Beam", + pt: "Raio Solar", + }, + + damage: "70" + }, + ], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/171.ts b/data/Scarlet & Violet/SVP Black Star Promos/171.ts new file mode 100644 index 000000000..59f4cfc63 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/171.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Glaceon", + pt: "Glaceon", + }, + + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Stage1", + + attacks: [ + { + cost: ["Water"], + + name: { + en: "Permeating Chill", + pt: "Frio Penetrante", + }, + + effect: { + en: "At the end of your opponent's next turn, put 9 damage counters on the Defending Pokémon.", + pt: "Coloque 9 contadores de dano no Pokémon Defensor no final do próximo turno do seu oponente." + }, + }, + { + cost: ["Water", "Colorless"], + + name: { + en: "Icicle Missile", + pt: "Míssil Gélido", + }, + + damage: "70" + }, + ], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/172.ts b/data/Scarlet & Violet/SVP Black Star Promos/172.ts new file mode 100644 index 000000000..856976270 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/172.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Sylveon", + pt: "Sylveon", + }, + + rarity: "None", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Stage1", + + attacks: [ + { + cost: ["Psychic"], + + name: { + en: "Mystical Return", + pt: "Retorno Místico", + }, + + effect: { + en: "Flip a coin. If heads, choose 1 of your opponent's Benched Pokémon. Shuffle that Pokémon and all attached cards into their deck.", + pt: "Jogue uma moeda. Se sair cara, escolha 1 dos Pokémon no bancodo seu oponente. Embaralhe aquele Pokémon e todas as cartas ligadas a ele no baralho dele." + }, + }, + { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Disarming Voice", + pt: "Voz Desarmante", + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso." + }, + + damage: "90" + }, + ], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/173.ts b/data/Scarlet & Violet/SVP Black Star Promos/173.ts new file mode 100644 index 000000000..ff05aee97 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/173.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Eevee", + pt: "Eevee", + }, + + rarity: "None", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Boosted Evolution", + pt: "Impulso da Evolução", + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, it can evolve during your first turn or the turn you play it.", + pt: "Enquanto este Pokémon estiver no Campo Ativo, ele poderá evoluir durante o seu primeiro turno ou durante o turno em que for colocado em jogo." + } + }], + + attacks: [ + { + cost: ["Colorless", "Colorless"], + + name: { + en: "Reckless Charge", + pt: "Carga Indomável", + }, + + effect: { + en: "This Pokémon also does 10 damage to itself.", + pt: "Este Pokémon também causará 10 pontos de dano a si mesmo." + }, + } + ], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/177.ts b/data/Scarlet & Violet/SVP Black Star Promos/177.ts new file mode 100644 index 000000000..676ec936c --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/177.ts @@ -0,0 +1,72 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Bloodmoon Ursaluna ex", + fr: "Ursaking Lune Vermeille-ex", + es: "Ursaluna Luna Carmesí ex", + it: "Ursaluna Luna Cremisi-ex", + pt: "Ursaluna Lua Sangrenta ex", + de: "Blutmond-Ursaluna-ex" + }, + + rarity: "None", + category: "Pokemon", + hp: 260, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Seasoned Skill", + fr: "Compétence Maîtrisée", + es: "Habilidad Demostrada", + it: "Talento Esperto", + pt: "Talento Inato", + de: "Routiniertes Geschick" + }, + + effect: { + en: "Blood Moon used by this Pokémon costs Colorless less for each Prize card your opponent has taken.", + fr: "Lune Rouge utilisée par ce Pokémon coûte Colorless de moins pour chaque carte Récompense que votre adversaire a récupérée.", + es: "El ataque Luna Roja usado por este Pokémon cuesta Colorless menos por cada carta de Premio que haya cogido tu rival.", + it: "Il costo dell'attacco Luna Rossa usato da questo Pokémon è ridotto di Colorless per ogni carta Premio presa dal tuo avversario.", + pt: "O ataque Luar de Sangue usado por este Pokémon custa Colorless a menos para cada carta de Prêmio que seu oponente pegou.", + de: "Die Kosten der von diesem Pokémon eingesetzten Attacke Blutmond verringern sich für jede von deinem Gegner genommene Preiskarte um Colorless." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Blood Moon", + fr: "Lune Rouge", + es: "Luna Roja", + it: "Luna Rossa", + pt: "Luar de Sangue", + de: "Blutmond" + }, + + 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: 240 + }], + + retreat: 3, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/SVP Black Star Promos/190.ts b/data/Scarlet & Violet/SVP Black Star Promos/190.ts new file mode 100644 index 000000000..7af05a9a1 --- /dev/null +++ b/data/Scarlet & Violet/SVP Black Star Promos/190.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../SVP Black Star Promos" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu", + pt: "Pikachu", + }, + + rarity: "None", + category: "Pokemon", + hp: 50, + types: ["Lightning"], + stage: "Basic", + + attacks: [ + { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Scrappy Spark", + pt: "Faísca Obstinada" + }, + + effect: { + en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.", + pt: "Jogue uma moeda até que saia coroa. Este ataque causará 30 pontos de dano a mais para cada cara." + }, + + damage: "30+" + } + ], + + retreat: 1, + regulationMark: "H" +} + +export default card \ No newline at end of file diff --git a/data/Scarlet & Violet/Scarlet & Violet.ts b/data/Scarlet & Violet/Scarlet & Violet.ts index 1ca60837f..79bb40b9c 100644 --- a/data/Scarlet & Violet/Scarlet & Violet.ts +++ b/data/Scarlet & Violet/Scarlet & Violet.ts @@ -19,7 +19,12 @@ const set: Set = { official: 198 }, - releaseDate: "2023-03-31" + releaseDate: "2023-03-31", + + abbreviations: { + official: "SV", + fr: "E&V" + } } export default set diff --git a/data/Scarlet & Violet/Scarlet & Violet/134.ts b/data/Scarlet & Violet/Scarlet & Violet/134.ts index ec96679d1..00e678fad 100644 --- a/data/Scarlet & Violet/Scarlet & Violet/134.ts +++ b/data/Scarlet & Violet/Scarlet & Violet/134.ts @@ -66,7 +66,6 @@ const card: Card = { illustrator: "Anesaki Dynamic", variants: { - reverse: false, normal: false } } diff --git a/data/Scarlet & Violet/Scarlet & Violet/190.ts b/data/Scarlet & Violet/Scarlet & Violet/190.ts index a2399fe9a..1e929a6f1 100644 --- a/data/Scarlet & Violet/Scarlet & Violet/190.ts +++ b/data/Scarlet & Violet/Scarlet & Violet/190.ts @@ -30,7 +30,6 @@ const card: Card = { variants: { reverse: false, - normal: false } } diff --git a/data/Scarlet & Violet/Shrouded Fable.ts b/data/Scarlet & Violet/Shrouded Fable.ts index 1e6f7fbdd..29a365e52 100644 --- a/data/Scarlet & Violet/Shrouded Fable.ts +++ b/data/Scarlet & Violet/Shrouded Fable.ts @@ -19,7 +19,12 @@ const set: Set = { official: 64 }, - releaseDate: "2024-08-02" + releaseDate: "2024-08-02", + + abbreviations: { + official: "SFA", + fr: "FNE" + } } export default set diff --git a/data/Scarlet & Violet/Shrouded Fable/001.ts b/data/Scarlet & Violet/Shrouded Fable/001.ts index 61612aaf2..294e569e7 100644 --- a/data/Scarlet & Violet/Shrouded Fable/001.ts +++ b/data/Scarlet & Violet/Shrouded Fable/001.ts @@ -44,7 +44,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/002.ts b/data/Scarlet & Violet/Shrouded Fable/002.ts index a542ba5fa..d5b06b68b 100644 --- a/data/Scarlet & Violet/Shrouded Fable/002.ts +++ b/data/Scarlet & Violet/Shrouded Fable/002.ts @@ -66,7 +66,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/003.ts b/data/Scarlet & Violet/Shrouded Fable/003.ts index 4a73f3974..b2dffec86 100644 --- a/data/Scarlet & Violet/Shrouded Fable/003.ts +++ b/data/Scarlet & Violet/Shrouded Fable/003.ts @@ -55,7 +55,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/004.ts b/data/Scarlet & Violet/Shrouded Fable/004.ts index ddb70c73f..0427e43d9 100644 --- a/data/Scarlet & Violet/Shrouded Fable/004.ts +++ b/data/Scarlet & Violet/Shrouded Fable/004.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/005.ts b/data/Scarlet & Violet/Shrouded Fable/005.ts index 74134509a..d94495473 100644 --- a/data/Scarlet & Violet/Shrouded Fable/005.ts +++ b/data/Scarlet & Violet/Shrouded Fable/005.ts @@ -64,7 +64,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/006.ts b/data/Scarlet & Violet/Shrouded Fable/006.ts index 23c6e8ae6..f732963e2 100644 --- a/data/Scarlet & Violet/Shrouded Fable/006.ts +++ b/data/Scarlet & Violet/Shrouded Fable/006.ts @@ -44,7 +44,11 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/007.ts b/data/Scarlet & Violet/Shrouded Fable/007.ts index da6ce4767..dd013fd16 100644 --- a/data/Scarlet & Violet/Shrouded Fable/007.ts +++ b/data/Scarlet & Violet/Shrouded Fable/007.ts @@ -48,7 +48,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/008.ts b/data/Scarlet & Violet/Shrouded Fable/008.ts index c556287a2..d8fdfaafa 100644 --- a/data/Scarlet & Violet/Shrouded Fable/008.ts +++ b/data/Scarlet & Violet/Shrouded Fable/008.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/009.ts b/data/Scarlet & Violet/Shrouded Fable/009.ts index 91a404cda..fa0d6bd8b 100644 --- a/data/Scarlet & Violet/Shrouded Fable/009.ts +++ b/data/Scarlet & Violet/Shrouded Fable/009.ts @@ -66,7 +66,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/010.ts b/data/Scarlet & Violet/Shrouded Fable/010.ts index 8df49a220..0998e8d12 100644 --- a/data/Scarlet & Violet/Shrouded Fable/010.ts +++ b/data/Scarlet & Violet/Shrouded Fable/010.ts @@ -55,7 +55,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/011.ts b/data/Scarlet & Violet/Shrouded Fable/011.ts index 8b08e2446..03bd36144 100644 --- a/data/Scarlet & Violet/Shrouded Fable/011.ts +++ b/data/Scarlet & Violet/Shrouded Fable/011.ts @@ -55,7 +55,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/012.ts b/data/Scarlet & Violet/Shrouded Fable/012.ts index a52acf8d6..8e95ef3ec 100644 --- a/data/Scarlet & Violet/Shrouded Fable/012.ts +++ b/data/Scarlet & Violet/Shrouded Fable/012.ts @@ -64,7 +64,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/013.ts b/data/Scarlet & Violet/Shrouded Fable/013.ts index 3db5babf2..72aff60f4 100644 --- a/data/Scarlet & Violet/Shrouded Fable/013.ts +++ b/data/Scarlet & Violet/Shrouded Fable/013.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/014.ts b/data/Scarlet & Violet/Shrouded Fable/014.ts index 113f231a8..64be119cd 100644 --- a/data/Scarlet & Violet/Shrouded Fable/014.ts +++ b/data/Scarlet & Violet/Shrouded Fable/014.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/015.ts b/data/Scarlet & Violet/Shrouded Fable/015.ts index 2def30341..2a209b528 100644 --- a/data/Scarlet & Violet/Shrouded Fable/015.ts +++ b/data/Scarlet & Violet/Shrouded Fable/015.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/016.ts b/data/Scarlet & Violet/Shrouded Fable/016.ts index 493eefd3d..62ac28315 100644 --- a/data/Scarlet & Violet/Shrouded Fable/016.ts +++ b/data/Scarlet & Violet/Shrouded Fable/016.ts @@ -44,7 +44,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/017.ts b/data/Scarlet & Violet/Shrouded Fable/017.ts index d1c30c520..ef66086e5 100644 --- a/data/Scarlet & Violet/Shrouded Fable/017.ts +++ b/data/Scarlet & Violet/Shrouded Fable/017.ts @@ -44,7 +44,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/018.ts b/data/Scarlet & Violet/Shrouded Fable/018.ts index d435bb8a5..e9e1cba98 100644 --- a/data/Scarlet & Violet/Shrouded Fable/018.ts +++ b/data/Scarlet & Violet/Shrouded Fable/018.ts @@ -55,7 +55,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/019.ts b/data/Scarlet & Violet/Shrouded Fable/019.ts index b7bfaabbb..ca69651ab 100644 --- a/data/Scarlet & Violet/Shrouded Fable/019.ts +++ b/data/Scarlet & Violet/Shrouded Fable/019.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/020.ts b/data/Scarlet & Violet/Shrouded Fable/020.ts index e145f5b7e..695978631 100644 --- a/data/Scarlet & Violet/Shrouded Fable/020.ts +++ b/data/Scarlet & Violet/Shrouded Fable/020.ts @@ -66,7 +66,11 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/021.ts b/data/Scarlet & Violet/Shrouded Fable/021.ts index 229531ebf..c83c7f3f6 100644 --- a/data/Scarlet & Violet/Shrouded Fable/021.ts +++ b/data/Scarlet & Violet/Shrouded Fable/021.ts @@ -64,7 +64,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/022.ts b/data/Scarlet & Violet/Shrouded Fable/022.ts index 7ceb8cb7b..ca6f5ab3e 100644 --- a/data/Scarlet & Violet/Shrouded Fable/022.ts +++ b/data/Scarlet & Violet/Shrouded Fable/022.ts @@ -64,7 +64,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/023.ts b/data/Scarlet & Violet/Shrouded Fable/023.ts index 01dc7f8cf..766cfb6dc 100644 --- a/data/Scarlet & Violet/Shrouded Fable/023.ts +++ b/data/Scarlet & Violet/Shrouded Fable/023.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/024.ts b/data/Scarlet & Violet/Shrouded Fable/024.ts index 74bb5e4ca..463e61085 100644 --- a/data/Scarlet & Violet/Shrouded Fable/024.ts +++ b/data/Scarlet & Violet/Shrouded Fable/024.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/025.ts b/data/Scarlet & Violet/Shrouded Fable/025.ts index 032772eea..8e0ccfcc5 100644 --- a/data/Scarlet & Violet/Shrouded Fable/025.ts +++ b/data/Scarlet & Violet/Shrouded Fable/025.ts @@ -66,7 +66,11 @@ const card: Card = { }], retreat: 4, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/026.ts b/data/Scarlet & Violet/Shrouded Fable/026.ts index da67017fb..6fd3f2270 100644 --- a/data/Scarlet & Violet/Shrouded Fable/026.ts +++ b/data/Scarlet & Violet/Shrouded Fable/026.ts @@ -66,7 +66,11 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/027.ts b/data/Scarlet & Violet/Shrouded Fable/027.ts index c3f54f9a8..64ac928a5 100644 --- a/data/Scarlet & Violet/Shrouded Fable/027.ts +++ b/data/Scarlet & Violet/Shrouded Fable/027.ts @@ -55,7 +55,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/028.ts b/data/Scarlet & Violet/Shrouded Fable/028.ts index 9e0ecbb07..b512a5252 100644 --- a/data/Scarlet & Violet/Shrouded Fable/028.ts +++ b/data/Scarlet & Violet/Shrouded Fable/028.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/029.ts b/data/Scarlet & Violet/Shrouded Fable/029.ts index 5b8148fd6..5e6b96af1 100644 --- a/data/Scarlet & Violet/Shrouded Fable/029.ts +++ b/data/Scarlet & Violet/Shrouded Fable/029.ts @@ -66,7 +66,11 @@ const card: Card = { }], retreat: 0, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/030.ts b/data/Scarlet & Violet/Shrouded Fable/030.ts index f0abf1257..1eb40df3c 100644 --- a/data/Scarlet & Violet/Shrouded Fable/030.ts +++ b/data/Scarlet & Violet/Shrouded Fable/030.ts @@ -44,7 +44,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/031.ts b/data/Scarlet & Violet/Shrouded Fable/031.ts index b04908cec..8d9373c3b 100644 --- a/data/Scarlet & Violet/Shrouded Fable/031.ts +++ b/data/Scarlet & Violet/Shrouded Fable/031.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/032.ts b/data/Scarlet & Violet/Shrouded Fable/032.ts index cdf2ffa55..d76382eb7 100644 --- a/data/Scarlet & Violet/Shrouded Fable/032.ts +++ b/data/Scarlet & Violet/Shrouded Fable/032.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/033.ts b/data/Scarlet & Violet/Shrouded Fable/033.ts index 081daf466..6b83d2a3a 100644 --- a/data/Scarlet & Violet/Shrouded Fable/033.ts +++ b/data/Scarlet & Violet/Shrouded Fable/033.ts @@ -55,7 +55,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/034.ts b/data/Scarlet & Violet/Shrouded Fable/034.ts index 662afa170..8fadc663a 100644 --- a/data/Scarlet & Violet/Shrouded Fable/034.ts +++ b/data/Scarlet & Violet/Shrouded Fable/034.ts @@ -55,7 +55,11 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/035.ts b/data/Scarlet & Violet/Shrouded Fable/035.ts index b3998c253..de951edbe 100644 --- a/data/Scarlet & Violet/Shrouded Fable/035.ts +++ b/data/Scarlet & Violet/Shrouded Fable/035.ts @@ -64,7 +64,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/036.ts b/data/Scarlet & Violet/Shrouded Fable/036.ts index c990acf18..34361500f 100644 --- a/data/Scarlet & Violet/Shrouded Fable/036.ts +++ b/data/Scarlet & Violet/Shrouded Fable/036.ts @@ -64,7 +64,12 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/037.ts b/data/Scarlet & Violet/Shrouded Fable/037.ts index 4735ade57..ef1271b5c 100644 --- a/data/Scarlet & Violet/Shrouded Fable/037.ts +++ b/data/Scarlet & Violet/Shrouded Fable/037.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/038.ts b/data/Scarlet & Violet/Shrouded Fable/038.ts index 4fcce9238..b137b64d7 100644 --- a/data/Scarlet & Violet/Shrouded Fable/038.ts +++ b/data/Scarlet & Violet/Shrouded Fable/038.ts @@ -64,7 +64,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/039.ts b/data/Scarlet & Violet/Shrouded Fable/039.ts index 4fdcc8216..bbb115c63 100644 --- a/data/Scarlet & Violet/Shrouded Fable/039.ts +++ b/data/Scarlet & Violet/Shrouded Fable/039.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/040.ts b/data/Scarlet & Violet/Shrouded Fable/040.ts index a99756d87..f93eb5c1d 100644 --- a/data/Scarlet & Violet/Shrouded Fable/040.ts +++ b/data/Scarlet & Violet/Shrouded Fable/040.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/041.ts b/data/Scarlet & Violet/Shrouded Fable/041.ts index bcfbd6ec1..6f9321116 100644 --- a/data/Scarlet & Violet/Shrouded Fable/041.ts +++ b/data/Scarlet & Violet/Shrouded Fable/041.ts @@ -48,7 +48,11 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/042.ts b/data/Scarlet & Violet/Shrouded Fable/042.ts index 9102aaf29..75f74e93d 100644 --- a/data/Scarlet & Violet/Shrouded Fable/042.ts +++ b/data/Scarlet & Violet/Shrouded Fable/042.ts @@ -66,7 +66,11 @@ const card: Card = { }], retreat: 4, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/043.ts b/data/Scarlet & Violet/Shrouded Fable/043.ts index b0dfb80c2..023d831e3 100644 --- a/data/Scarlet & Violet/Shrouded Fable/043.ts +++ b/data/Scarlet & Violet/Shrouded Fable/043.ts @@ -55,7 +55,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/044.ts b/data/Scarlet & Violet/Shrouded Fable/044.ts index 095af3af8..68a3c0b4b 100644 --- a/data/Scarlet & Violet/Shrouded Fable/044.ts +++ b/data/Scarlet & Violet/Shrouded Fable/044.ts @@ -48,7 +48,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/045.ts b/data/Scarlet & Violet/Shrouded Fable/045.ts index cb56a3906..fc550f65d 100644 --- a/data/Scarlet & Violet/Shrouded Fable/045.ts +++ b/data/Scarlet & Violet/Shrouded Fable/045.ts @@ -66,7 +66,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/046.ts b/data/Scarlet & Violet/Shrouded Fable/046.ts index 89478a975..085520fb6 100644 --- a/data/Scarlet & Violet/Shrouded Fable/046.ts +++ b/data/Scarlet & Violet/Shrouded Fable/046.ts @@ -64,7 +64,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/047.ts b/data/Scarlet & Violet/Shrouded Fable/047.ts index ec7b1d9cf..c6632c8d7 100644 --- a/data/Scarlet & Violet/Shrouded Fable/047.ts +++ b/data/Scarlet & Violet/Shrouded Fable/047.ts @@ -64,7 +64,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/048.ts b/data/Scarlet & Violet/Shrouded Fable/048.ts index 35b26f4ad..ce3b3b0e4 100644 --- a/data/Scarlet & Violet/Shrouded Fable/048.ts +++ b/data/Scarlet & Violet/Shrouded Fable/048.ts @@ -44,7 +44,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/049.ts b/data/Scarlet & Violet/Shrouded Fable/049.ts index 2e40627c0..9901eadbe 100644 --- a/data/Scarlet & Violet/Shrouded Fable/049.ts +++ b/data/Scarlet & Violet/Shrouded Fable/049.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/050.ts b/data/Scarlet & Violet/Shrouded Fable/050.ts index 56dd1a3cc..4cb0e3940 100644 --- a/data/Scarlet & Violet/Shrouded Fable/050.ts +++ b/data/Scarlet & Violet/Shrouded Fable/050.ts @@ -55,7 +55,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/051.ts b/data/Scarlet & Violet/Shrouded Fable/051.ts index e8dcd742a..141e7ff30 100644 --- a/data/Scarlet & Violet/Shrouded Fable/051.ts +++ b/data/Scarlet & Violet/Shrouded Fable/051.ts @@ -44,7 +44,11 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/052.ts b/data/Scarlet & Violet/Shrouded Fable/052.ts index a2c300bd1..856ee2b5b 100644 --- a/data/Scarlet & Violet/Shrouded Fable/052.ts +++ b/data/Scarlet & Violet/Shrouded Fable/052.ts @@ -44,7 +44,11 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/053.ts b/data/Scarlet & Violet/Shrouded Fable/053.ts index 0988ecf74..e17ba7631 100644 --- a/data/Scarlet & Violet/Shrouded Fable/053.ts +++ b/data/Scarlet & Violet/Shrouded Fable/053.ts @@ -57,7 +57,11 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/054.ts b/data/Scarlet & Violet/Shrouded Fable/054.ts index f619a0d0d..7c69c7da3 100644 --- a/data/Scarlet & Violet/Shrouded Fable/054.ts +++ b/data/Scarlet & Violet/Shrouded Fable/054.ts @@ -26,7 +26,11 @@ const card: Card = { }, trainerType: "Stadium", - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/055.ts b/data/Scarlet & Violet/Shrouded Fable/055.ts index a870ff79b..64cd2cf63 100644 --- a/data/Scarlet & Violet/Shrouded Fable/055.ts +++ b/data/Scarlet & Violet/Shrouded Fable/055.ts @@ -26,7 +26,11 @@ const card: Card = { }, trainerType: "Tool", - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/056.ts b/data/Scarlet & Violet/Shrouded Fable/056.ts index 9450e1caa..7e7369204 100644 --- a/data/Scarlet & Violet/Shrouded Fable/056.ts +++ b/data/Scarlet & Violet/Shrouded Fable/056.ts @@ -26,7 +26,11 @@ const card: Card = { }, trainerType: "Supporter", - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/057.ts b/data/Scarlet & Violet/Shrouded Fable/057.ts index 001be849a..96ef57b26 100644 --- a/data/Scarlet & Violet/Shrouded Fable/057.ts +++ b/data/Scarlet & Violet/Shrouded Fable/057.ts @@ -26,7 +26,11 @@ const card: Card = { }, trainerType: "Supporter", - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/058.ts b/data/Scarlet & Violet/Shrouded Fable/058.ts index ae3dc66e4..20a3b0fa9 100644 --- a/data/Scarlet & Violet/Shrouded Fable/058.ts +++ b/data/Scarlet & Violet/Shrouded Fable/058.ts @@ -26,7 +26,12 @@ const card: Card = { }, trainerType: "Item", - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/059.ts b/data/Scarlet & Violet/Shrouded Fable/059.ts index aceb37203..be99c5e26 100644 --- a/data/Scarlet & Violet/Shrouded Fable/059.ts +++ b/data/Scarlet & Violet/Shrouded Fable/059.ts @@ -26,7 +26,11 @@ const card: Card = { }, trainerType: "Supporter", - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/060.ts b/data/Scarlet & Violet/Shrouded Fable/060.ts index 633499b1e..76d2cb275 100644 --- a/data/Scarlet & Violet/Shrouded Fable/060.ts +++ b/data/Scarlet & Violet/Shrouded Fable/060.ts @@ -26,7 +26,12 @@ const card: Card = { }, trainerType: "Stadium", - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/061.ts b/data/Scarlet & Violet/Shrouded Fable/061.ts index d5875d2d1..5af83273f 100644 --- a/data/Scarlet & Violet/Shrouded Fable/061.ts +++ b/data/Scarlet & Violet/Shrouded Fable/061.ts @@ -26,7 +26,11 @@ const card: Card = { }, trainerType: "Item", - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/062.ts b/data/Scarlet & Violet/Shrouded Fable/062.ts index 58e564f3b..c6311397a 100644 --- a/data/Scarlet & Violet/Shrouded Fable/062.ts +++ b/data/Scarlet & Violet/Shrouded Fable/062.ts @@ -26,7 +26,12 @@ const card: Card = { }, trainerType: "Item", - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/063.ts b/data/Scarlet & Violet/Shrouded Fable/063.ts index c4ef91eb5..254f238a7 100644 --- a/data/Scarlet & Violet/Shrouded Fable/063.ts +++ b/data/Scarlet & Violet/Shrouded Fable/063.ts @@ -26,7 +26,11 @@ const card: Card = { }, trainerType: "Tool", - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/064.ts b/data/Scarlet & Violet/Shrouded Fable/064.ts index f25277874..f21b0a882 100644 --- a/data/Scarlet & Violet/Shrouded Fable/064.ts +++ b/data/Scarlet & Violet/Shrouded Fable/064.ts @@ -26,7 +26,11 @@ const card: Card = { }, trainerType: "Supporter", - regulationMark: "H" + regulationMark: "H", + + variants: { + holo: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/065.ts b/data/Scarlet & Violet/Shrouded Fable/065.ts index bdb9df55c..632dafc1e 100644 --- a/data/Scarlet & Violet/Shrouded Fable/065.ts +++ b/data/Scarlet & Violet/Shrouded Fable/065.ts @@ -44,7 +44,12 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/066.ts b/data/Scarlet & Violet/Shrouded Fable/066.ts index bc4829547..5d41037c3 100644 --- a/data/Scarlet & Violet/Shrouded Fable/066.ts +++ b/data/Scarlet & Violet/Shrouded Fable/066.ts @@ -57,7 +57,12 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/067.ts b/data/Scarlet & Violet/Shrouded Fable/067.ts index a632cafdf..7fa6b17f7 100644 --- a/data/Scarlet & Violet/Shrouded Fable/067.ts +++ b/data/Scarlet & Violet/Shrouded Fable/067.ts @@ -55,7 +55,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/068.ts b/data/Scarlet & Violet/Shrouded Fable/068.ts index 9d1949870..66c170e42 100644 --- a/data/Scarlet & Violet/Shrouded Fable/068.ts +++ b/data/Scarlet & Violet/Shrouded Fable/068.ts @@ -55,7 +55,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/069.ts b/data/Scarlet & Violet/Shrouded Fable/069.ts index 4153ede17..bd2c19162 100644 --- a/data/Scarlet & Violet/Shrouded Fable/069.ts +++ b/data/Scarlet & Violet/Shrouded Fable/069.ts @@ -57,7 +57,12 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/070.ts b/data/Scarlet & Violet/Shrouded Fable/070.ts index 1ab35009d..c03fcd64c 100644 --- a/data/Scarlet & Violet/Shrouded Fable/070.ts +++ b/data/Scarlet & Violet/Shrouded Fable/070.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/071.ts b/data/Scarlet & Violet/Shrouded Fable/071.ts index 51e433d5e..e5784946e 100644 --- a/data/Scarlet & Violet/Shrouded Fable/071.ts +++ b/data/Scarlet & Violet/Shrouded Fable/071.ts @@ -64,7 +64,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/072.ts b/data/Scarlet & Violet/Shrouded Fable/072.ts index 18eca939a..6bd3dc9d3 100644 --- a/data/Scarlet & Violet/Shrouded Fable/072.ts +++ b/data/Scarlet & Violet/Shrouded Fable/072.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/073.ts b/data/Scarlet & Violet/Shrouded Fable/073.ts index a9c8090bd..b3991b945 100644 --- a/data/Scarlet & Violet/Shrouded Fable/073.ts +++ b/data/Scarlet & Violet/Shrouded Fable/073.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/074.ts b/data/Scarlet & Violet/Shrouded Fable/074.ts index 2ee1afd13..aff5ea31e 100644 --- a/data/Scarlet & Violet/Shrouded Fable/074.ts +++ b/data/Scarlet & Violet/Shrouded Fable/074.ts @@ -57,7 +57,12 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/075.ts b/data/Scarlet & Violet/Shrouded Fable/075.ts index 625302d44..c4fa657d6 100644 --- a/data/Scarlet & Violet/Shrouded Fable/075.ts +++ b/data/Scarlet & Violet/Shrouded Fable/075.ts @@ -57,7 +57,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/076.ts b/data/Scarlet & Violet/Shrouded Fable/076.ts index f62cfe5f1..d05d5cc12 100644 --- a/data/Scarlet & Violet/Shrouded Fable/076.ts +++ b/data/Scarlet & Violet/Shrouded Fable/076.ts @@ -48,7 +48,12 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/077.ts b/data/Scarlet & Violet/Shrouded Fable/077.ts index 9ea5532a8..a4c8b23a3 100644 --- a/data/Scarlet & Violet/Shrouded Fable/077.ts +++ b/data/Scarlet & Violet/Shrouded Fable/077.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 2, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/078.ts b/data/Scarlet & Violet/Shrouded Fable/078.ts index ca767d881..0fc8a035a 100644 --- a/data/Scarlet & Violet/Shrouded Fable/078.ts +++ b/data/Scarlet & Violet/Shrouded Fable/078.ts @@ -57,7 +57,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/079.ts b/data/Scarlet & Violet/Shrouded Fable/079.ts index 78637278d..f63dfda8b 100644 --- a/data/Scarlet & Violet/Shrouded Fable/079.ts +++ b/data/Scarlet & Violet/Shrouded Fable/079.ts @@ -57,7 +57,12 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/080.ts b/data/Scarlet & Violet/Shrouded Fable/080.ts index d8a539e28..5d487f00d 100644 --- a/data/Scarlet & Violet/Shrouded Fable/080.ts +++ b/data/Scarlet & Violet/Shrouded Fable/080.ts @@ -64,7 +64,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/081.ts b/data/Scarlet & Violet/Shrouded Fable/081.ts index 52c58b607..a3e32cad7 100644 --- a/data/Scarlet & Violet/Shrouded Fable/081.ts +++ b/data/Scarlet & Violet/Shrouded Fable/081.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/082.ts b/data/Scarlet & Violet/Shrouded Fable/082.ts index 4a31d8341..aba61e50a 100644 --- a/data/Scarlet & Violet/Shrouded Fable/082.ts +++ b/data/Scarlet & Violet/Shrouded Fable/082.ts @@ -64,7 +64,12 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/083.ts b/data/Scarlet & Violet/Shrouded Fable/083.ts index 6e615a292..c1f52c274 100644 --- a/data/Scarlet & Violet/Shrouded Fable/083.ts +++ b/data/Scarlet & Violet/Shrouded Fable/083.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/084.ts b/data/Scarlet & Violet/Shrouded Fable/084.ts index f5a2d3f1f..018a41abb 100644 --- a/data/Scarlet & Violet/Shrouded Fable/084.ts +++ b/data/Scarlet & Violet/Shrouded Fable/084.ts @@ -64,7 +64,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/085.ts b/data/Scarlet & Violet/Shrouded Fable/085.ts index 423444733..02e2ce3a5 100644 --- a/data/Scarlet & Violet/Shrouded Fable/085.ts +++ b/data/Scarlet & Violet/Shrouded Fable/085.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/086.ts b/data/Scarlet & Violet/Shrouded Fable/086.ts index 68d0c317a..ac447502a 100644 --- a/data/Scarlet & Violet/Shrouded Fable/086.ts +++ b/data/Scarlet & Violet/Shrouded Fable/086.ts @@ -26,7 +26,12 @@ const card: Card = { }, trainerType: "Supporter", - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/087.ts b/data/Scarlet & Violet/Shrouded Fable/087.ts index e8c125445..c520e832a 100644 --- a/data/Scarlet & Violet/Shrouded Fable/087.ts +++ b/data/Scarlet & Violet/Shrouded Fable/087.ts @@ -26,7 +26,12 @@ const card: Card = { }, trainerType: "Supporter", - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/088.ts b/data/Scarlet & Violet/Shrouded Fable/088.ts index d093d5f54..be5241442 100644 --- a/data/Scarlet & Violet/Shrouded Fable/088.ts +++ b/data/Scarlet & Violet/Shrouded Fable/088.ts @@ -26,7 +26,12 @@ const card: Card = { }, trainerType: "Supporter", - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/089.ts b/data/Scarlet & Violet/Shrouded Fable/089.ts index 575e3ecac..4e0692ad7 100644 --- a/data/Scarlet & Violet/Shrouded Fable/089.ts +++ b/data/Scarlet & Violet/Shrouded Fable/089.ts @@ -26,7 +26,12 @@ const card: Card = { }, trainerType: "Supporter", - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/090.ts b/data/Scarlet & Violet/Shrouded Fable/090.ts index d46ed11d0..bc83ebbb4 100644 --- a/data/Scarlet & Violet/Shrouded Fable/090.ts +++ b/data/Scarlet & Violet/Shrouded Fable/090.ts @@ -64,7 +64,12 @@ const card: Card = { }], retreat: 3, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/091.ts b/data/Scarlet & Violet/Shrouded Fable/091.ts index 5b39f0592..836818aa0 100644 --- a/data/Scarlet & Violet/Shrouded Fable/091.ts +++ b/data/Scarlet & Violet/Shrouded Fable/091.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/092.ts b/data/Scarlet & Violet/Shrouded Fable/092.ts index 9e0511d2e..30ac36683 100644 --- a/data/Scarlet & Violet/Shrouded Fable/092.ts +++ b/data/Scarlet & Violet/Shrouded Fable/092.ts @@ -64,7 +64,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/093.ts b/data/Scarlet & Violet/Shrouded Fable/093.ts index 5ca578a29..52ac0972c 100644 --- a/data/Scarlet & Violet/Shrouded Fable/093.ts +++ b/data/Scarlet & Violet/Shrouded Fable/093.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/094.ts b/data/Scarlet & Violet/Shrouded Fable/094.ts index be359b01d..1fa213dbe 100644 --- a/data/Scarlet & Violet/Shrouded Fable/094.ts +++ b/data/Scarlet & Violet/Shrouded Fable/094.ts @@ -26,7 +26,12 @@ const card: Card = { }, trainerType: "Supporter", - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/095.ts b/data/Scarlet & Violet/Shrouded Fable/095.ts index 6f1d43b6f..95edd4a75 100644 --- a/data/Scarlet & Violet/Shrouded Fable/095.ts +++ b/data/Scarlet & Violet/Shrouded Fable/095.ts @@ -66,7 +66,12 @@ const card: Card = { }], retreat: 1, - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/096.ts b/data/Scarlet & Violet/Shrouded Fable/096.ts index 9509e4c55..0fec1edaa 100644 --- a/data/Scarlet & Violet/Shrouded Fable/096.ts +++ b/data/Scarlet & Violet/Shrouded Fable/096.ts @@ -26,7 +26,12 @@ const card: Card = { }, trainerType: "Item", - regulationMark: "G" + regulationMark: "G", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/097.ts b/data/Scarlet & Violet/Shrouded Fable/097.ts index b8284a77c..bc0533517 100644 --- a/data/Scarlet & Violet/Shrouded Fable/097.ts +++ b/data/Scarlet & Violet/Shrouded Fable/097.ts @@ -26,7 +26,12 @@ const card: Card = { }, trainerType: "Tool", - regulationMark: "H" + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/098.ts b/data/Scarlet & Violet/Shrouded Fable/098.ts index 3d2936cef..0414a39bd 100644 --- a/data/Scarlet & Violet/Shrouded Fable/098.ts +++ b/data/Scarlet & Violet/Shrouded Fable/098.ts @@ -16,7 +16,12 @@ const card: Card = { rarity: "Hyper rare", category: "Energy", types: ["Darkness"], - energyType: "Normal" + energyType: "Normal", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Shrouded Fable/099.ts b/data/Scarlet & Violet/Shrouded Fable/099.ts index 68883ff0b..0940e7b7f 100644 --- a/data/Scarlet & Violet/Shrouded Fable/099.ts +++ b/data/Scarlet & Violet/Shrouded Fable/099.ts @@ -16,7 +16,12 @@ const card: Card = { rarity: "Hyper rare", category: "Energy", types: ["Metal"], - energyType: "Normal" + energyType: "Normal", + + variants: { + normal: false, + reverse: false + } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Stellar Crown.ts b/data/Scarlet & Violet/Stellar Crown.ts new file mode 100644 index 000000000..b65cbb8d0 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown.ts @@ -0,0 +1,29 @@ +import { Set } from '../../interfaces' +import serie from '../Scarlet & Violet' + +const set: Set = { + id: "sv07", + + name: { + de: "Stellarkrone", + en: "Stellar Crown", + es: "Corona Astral", + fr: "Couronne Stellaire", + it: "Corona Astrale", + pt: "Coroa Estelar" + }, + + serie: serie, + + cardCount: { + official: 142 + }, + + releaseDate: "2024-09-13", + + abbreviations: { + official: "SCR" + } +} + +export default set diff --git a/data/Scarlet & Violet/Stellar Crown/001.ts b/data/Scarlet & Violet/Stellar Crown/001.ts new file mode 100644 index 000000000..d1882c500 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/001.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Venusaur ex", + fr: "Florizarre-ex", + es: "Venusaur ex", + it: "Venusaur-ex", + pt: "Venusaur ex", + de: "Bisaflor-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 340, + types: ["Grass"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Tranquil Flower", + fr: "Fleur Paisible", + es: "Flor Silente", + it: "Calmafiore", + pt: "Flor Serena", + de: "Ruhige Blume" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you may heal 60 damage from 1 of your Pokémon.", + fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez soigner 60 dégâts de l'un de vos Pokémon.", + es: "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes curar 60 puntos de daño a uno de tus Pokémon.", + it: "Una sola volta durante il tuo turno, se questo Pokémon è in posizione attiva, puoi curare uno dei tuoi Pokémon da 60 danni.", + pt: "Uma vez durante o seu turno, se este Pokémon estiver no Campo Ativo, você poderá curar 60 pontos de dano de 1 dos seus Pokémon.", + de: "Einmal während deines Zuges, wenn dieses Pokémon in der Aktiven Position ist, kannst du 60 Schadenspunkte bei 1 deiner Pokémon heilen." + } + }], + + attacks: [{ + cost: ["Grass", "Grass", "Colorless"], + + name: { + en: "Dangerous Toxwhip", + fr: "Fouet Vénéneux", + es: "Toxilatigazo Peligroso", + it: "Tossifrusta Pericolosa", + pt: "Chicotóxico Perigoso", + de: "Gefährliche Giftranke" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused and Poisoned.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus et Empoisonné.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido y Envenenado.", + it: "Il Pokémon attivo del tuo avversario viene confuso e avvelenato.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso e Envenenado.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt und vergiftet." + }, + + damage: 150 + }], + + retreat: 4, + regulationMark: "G", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/002.ts b/data/Scarlet & Violet/Stellar Crown/002.ts new file mode 100644 index 000000000..58d857829 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/002.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Ledyba", + fr: "Coxy", + es: "Ledyba", + it: "Ledyba", + pt: "Ledyba", + de: "Ledyba" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Headbutt Bounce", + fr: "Culbute Surprise", + es: "Bote Cabezazo", + it: "Rimbalzo Bottintesta", + pt: "Cabeçada Ricochete", + de: "Abrupter Kopfstoß" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/003.ts b/data/Scarlet & Violet/Stellar Crown/003.ts new file mode 100644 index 000000000..3d98ea4a7 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/003.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Ledian", + fr: "Coxyclaque", + es: "Ledian", + it: "Ledian", + pt: "Ledian", + de: "Ledian" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Glittering Star Pattern", + fr: "Motif Étoile Scintillante", + es: "Motivo de Estrellas Brillantes", + it: "Motivo Stellato Brillante", + pt: "Pintas de Estrelas Cintilantes", + de: "Funkelndes Sternenmuster" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may switch in 1 of your opponent's Benched Pokémon that has 90 HP or less remaining to the Active Spot.", + fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez envoyer sur le Poste Actif l'un des Pokémon de Banc de votre adversaire auquel il reste 90 PV ou moins.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes cambiar 1 de los Pokémon en Banca de tu rival al que le queden 90 PS o menos por el Pokémon que esté en el Puesto Activo.", + it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi sostituire uno dei Pokémon nella panchina del tuo avversario che ha 90 PS o meno rimanenti con il suo Pokémon in posizione attiva.", + pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá mandar 1 dos Pokémon no Banco do seu oponente que tiver PS restante de 90 ou menos para o Campo Ativo.", + de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du 1 Pokémon von der Bank deines Gegners, das 90 oder weniger verbleibende KP hat, in die Aktive Position einwechseln." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Swift", + fr: "Météores", + es: "Meteoros", + it: "Comete", + pt: "Ataque Veloz", + de: "Sternschauer" + }, + + effect: { + en: "This attack's damage isn't affected by Weakness or Resistance, or by any effects on your opponent's Active Pokémon.", + fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout effet en action sur le Pokémon Actif de votre adversaire.", + es: "El daño de este ataque no se ve afectado por Debilidad o Resistencia, ni por ningún efecto en el Pokémon Activo de tu rival.", + it: "I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza, o da alcun effetto presente sul Pokémon attivo del tuo avversario.", + pt: "O dano deste ataque não é afetado por Fraqueza ou Resistência, ou por quaisquer efeitos no Pokémon Ativo do seu oponente.", + de: "Der Schaden dieser Attacke wird durch Schwäche, Resistenz oder Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert." + }, + + damage: 70 + }], + + retreat: 0, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/004.ts b/data/Scarlet & Violet/Stellar Crown/004.ts new file mode 100644 index 000000000..6c2ff8093 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/004.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Celebi", + fr: "Celebi", + es: "Celebi", + it: "Celebi", + pt: "Celebi", + de: "Celebi" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 80, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + 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: ["Grass"], + + name: { + en: "Leaf Step", + fr: "Enjambée de Feuillage", + es: "Paso Hoja", + it: "Passofoglia", + pt: "Passo de Folha", + de: "Blattschritt" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/005.ts b/data/Scarlet & Violet/Stellar Crown/005.ts new file mode 100644 index 000000000..6c2ce903f --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/005.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lileep", + fr: "Lilia", + es: "Lileep", + it: "Lileep", + pt: "Lileep", + de: "Liliep" + }, + + rarity: "Common", + category: "Pokemon", + hp: 100, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Bind Down", + fr: "Astreinte", + es: "Amarrar", + it: "Legafermo", + pt: "Aprisionamento", + de: "Anbinden" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 50 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/006.ts b/data/Scarlet & Violet/Stellar Crown/006.ts new file mode 100644 index 000000000..a05ea93cc --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/006.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Cradily", + fr: "Vacilys", + es: "Cradily", + it: "Cradily", + pt: "Cradily", + de: "Wielie" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 150, + types: ["Grass"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Selective Slime", + fr: "Mucus Sélectif", + es: "Secreción Selectiva", + it: "Muco Selettivo", + pt: "Meleca Seletiva", + de: "Selektiver Schleim" + }, + + effect: { + en: "Once during your turn, you may flip a coin. If heads, choose Burned, Confused, or Poisoned. Your opponent's Active Pokémon is now affected by that Special Condition.", + fr: "Une fois pendant votre tour, vous pouvez lancer une pièce. Si c'est face, choisissez entre Brûlé, Confus ou Empoisonné. Le Pokémon Actif de votre adversaire est maintenant affecté par cet État Spécial.", + es: "Una vez durante tu turno, puedes lanzar 1 moneda. Si sale cara, elige entre Confundido, Envenenado o Quemado. El Pokémon Activo de tu rival pasa a estar afectado por esa Condición Especial.", + it: "Una sola volta durante il tuo turno, puoi lanciare una moneta. Se esce testa, scegli tra bruciato, confuso e avvelenato. Il Pokémon attivo del tuo avversario è influenzato da quella condizione speciale.", + pt: "Uma vez durante o seu turno, você poderá jogar uma moeda. Se sair cara, escolha entre Confuso, Envenenado e Queimado. O Pokémon Ativo do seu oponente agora está afetado por aquela Condição Especial.", + de: "Einmal während deines Zuges kannst du 1 Münze werfen. Wähle bei Kopf Verbrennung, Vergiftung oder Verwirrung. Das Aktive Pokémon deines Gegners ist jetzt von jenem Speziellen Zustand betroffen." + } + }], + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Miasma Wind", + fr: "Vent Miasme", + es: "Viento Miasma", + it: "Vento Maleodorante", + pt: "Vento Miasma", + de: "Miasma" + }, + + effect: { + en: "This attack does 100 damage for each Special Condition affecting your opponent's Active Pokémon.", + fr: "Cette attaque inflige 100 dégâts pour chaque État Spécial affectant le Pokémon Actif de votre adversaire.", + es: "Este ataque hace 100 puntos de daño por cada Condición Especial que afecte al Pokémon Activo de tu rival.", + it: "Questo attacco infligge 100 danni per ogni condizione speciale che influenza il Pokémon attivo del tuo avversario.", + pt: "Este ataque causa 100 pontos de dano para cada Condição Especial afetando o Pokémon Ativo do seu oponente.", + de: "Diese Attacke fügt für jeden Speziellen Zustand, von dem das Aktive Pokémon deines Gegners betroffen ist, 100 Schadenspunkte zu." + }, + + damage: "100×" + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/007.ts b/data/Scarlet & Violet/Stellar Crown/007.ts new file mode 100644 index 000000000..a0356b32c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/007.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Carnivine", + fr: "Vortente", + es: "Carnivine", + it: "Carnivine", + pt: "Carnivine", + de: "Venuflibis" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Nosh", + fr: "Casse-Croûte", + es: "Piscolabis", + it: "Spuntino", + pt: "Mordiscar", + de: "Snack" + }, + + effect: { + en: "Heal 40 damage from this Pokémon.", + fr: "Soignez 40 dégâts de ce Pokémon.", + es: "Cura 40 puntos de daño a este Pokémon.", + it: "Cura questo Pokémon da 40 danni.", + pt: "Cure 40 pontos de dano deste Pokémon.", + de: "Heile 40 Schadenspunkte bei diesem Pokémon." + } + }, { + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Loom Over", + fr: "Menacer", + es: "Cernirse", + it: "Presenza Minacciosa", + pt: "Pairar Sobre", + de: "Schattenseite" + }, + + effect: { + en: "This attack does 10 less damage for each damage counter on this Pokémon.", + fr: "Cette attaque inflige 10 dégâts de moins pour chaque marqueur de dégâts sur ce Pokémon.", + es: "Este ataque hace 10 puntos de daño menos por cada contador de daño en este Pokémon.", + it: "Questo attacco infligge 10 danni in meno per ogni segnalino danno presente su questo Pokémon.", + pt: "Este ataque causa 10 pontos de dano a menos para cada contador de dano neste Pokémon.", + de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte weniger zu." + }, + + damage: "130-" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/008.ts b/data/Scarlet & Violet/Stellar Crown/008.ts new file mode 100644 index 000000000..32f50b21d --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/008.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Mow Rotom", + fr: "Motisma Tonte", + es: "Rotom Corte", + it: "Rotom Taglio", + pt: "Rotom Corte", + de: "Schneid-Rotom" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Reaping Dash", + fr: "Ruée Faucheuse", + es: "Carrera Segadora", + it: "Falciscatto", + pt: "Arremetida Ceifadora", + de: "Mähender Sprint" + }, + + effect: { + en: "Before doing damage, discard all Pokémon Tools and Special Energy from your opponent's Active Pokémon.", + fr: "Avant d'infliger des dégâts, défaussez tous les Outils Pokémon et toutes les Énergies spéciales du Pokémon Actif de votre adversaire.", + es: "Antes de infligir daño, descarta todas las Herramientas Pokémon y Energías Especiales del Pokémon Activo de tu rival.", + it: "Prima di infliggere danni, scarta tutte le carte Oggetto Pokémon e le Energie speciali dal Pokémon attivo del tuo avversario.", + pt: "Antes de causar dano, descarte todas as Ferramentas Pokémon e Energias Especiais do Pokémon Ativo do seu oponente.", + de: "Bevor du Schaden zufügst, lege alle Pokémon-Ausrüstungen und Spezial-Energien vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/009.ts b/data/Scarlet & Violet/Stellar Crown/009.ts new file mode 100644 index 000000000..b5713af9a --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/009.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Grubbin", + fr: "Larvibule", + es: "Grubbin", + it: "Grubbin", + pt: "Grubbin", + de: "Mabula" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Ambush", + fr: "Embuscade", + es: "Emboscada", + it: "Imboscata", + pt: "Emboscada", + de: "Hinterhalt" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 30 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 30 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 30 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 30 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/010.ts b/data/Scarlet & Violet/Stellar Crown/010.ts new file mode 100644 index 000000000..d61ae85f8 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/010.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Gossifleur", + fr: "Tournicoton", + es: "Gossifleur", + it: "Gossifleur", + pt: "Gossifleur", + de: "Cottini" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Double Spin", + fr: "Double Tour", + es: "Doble Giro", + it: "Doppioturbo", + pt: "Giro Duplo", + de: "Doppeldreher" + }, + + effect: { + en: "Flip 2 coins. This attack does 10 damage for each heads.", + fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts pour chaque côté face.", + es: "Lanza 2 monedas. Este ataque hace 10 puntos de daño por cada cara.", + it: "Lancia due volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.", + pt: "Jogue 2 moedas. Este ataque causa 10 pontos de dano para cada cara.", + de: "Wirf 2 Münzen. Diese Attacke fügt 10 Schadenspunkte pro Kopf zu." + }, + + damage: "10×" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/011.ts b/data/Scarlet & Violet/Stellar Crown/011.ts new file mode 100644 index 000000000..aad82b57f --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/011.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Eldegoss", + fr: "Blancoton", + es: "Eldegoss", + it: "Eldegoss", + pt: "Eldegoss", + de: "Cottomi" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Breezy Gift", + fr: "Cadeau Zéphyr", + es: "Regalo Brisa", + it: "Donobrezza", + pt: "Presente das Brisas", + de: "Luftiges Geschenk" + }, + + effect: { + en: "Put this Pokémon and all attached cards into your deck. If you do, search your deck for up to 3 cards and put them into your hand. Then, shuffle your deck.", + fr: "Placez dans votre deck ce Pokémon et toutes les cartes qui lui sont attachées. Dans ce cas, cherchez dans votre deck jusqu'à 3 cartes, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Pon este Pokémon y todas las cartas unidas a él en tu baraja. Si lo haces, busca en tu baraja hasta 3 cartas y ponlas en tu mano. Después, baraja las cartas de tu baraja.", + it: "Metti questo Pokémon e tutte le carte a esso assegnate nel tuo mazzo. Se lo fai, cerca nel tuo mazzo fino a tre carte e aggiungile a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Coloque este Pokémon e todas as cartas ligadas a ele no seu baralho. Se fizer isto, procure por até 3 cartas no seu baralho e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Lege dieses Pokémon und alle angelegten Karten in dein Deck. Wenn du das machst, durchsuche dein Deck nach bis zu 3 Karten und nimm sie auf deine Hand. Mische anschließend dein Deck." + } + }, { + cost: ["Grass"], + + name: { + en: "Leafage", + fr: "Feuillage", + es: "Follaje", + it: "Fogliame", + pt: "Folhagem", + de: "Blattwerk" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/012.ts b/data/Scarlet & Violet/Stellar Crown/012.ts new file mode 100644 index 000000000..6fa7978f0 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/012.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Applin", + fr: "Verpom", + es: "Applin", + it: "Applin", + pt: "Applin", + de: "Knapfel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 40, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Spray Fluid", + fr: "Fluide Éclaboussant", + es: "Fluido Rociado", + it: "Fluidospray", + pt: "Fluido Spray", + de: "Sprühwasser" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/013.ts b/data/Scarlet & Violet/Stellar Crown/013.ts new file mode 100644 index 000000000..29767726e --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/013.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Dipplin", + fr: "Pomdramour", + es: "Dipplin", + it: "Dipplin", + pt: "Dipplin", + de: "Sirapfel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Coated Attack", + fr: "Attaque Enrobée", + es: "Ataque Confitado", + it: "Attacco Glassato", + pt: "Ataque Revestido", + de: "Kandierte Attacke" + }, + + effect: { + en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon de base.", + es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon Básicos.", + it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base.", + pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon Básicos.", + de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon zugefügt wird." + }, + + damage: 20 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/014.ts b/data/Scarlet & Violet/Stellar Crown/014.ts new file mode 100644 index 000000000..3a67214f1 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/014.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Hydrapple ex", + fr: "Pomdorochi-ex", + es: "Hydrapple ex", + it: "Hydrapple-ex", + pt: "Hydrapple ex", + de: "Hydrapfel-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Ripening Charge", + fr: "Charge Mûrissante", + es: "Carga Maduración", + it: "Maturacarica", + pt: "Investida Madura", + de: "Reifende Aufladung" + }, + + effect: { + en: "Once during your turn, you may attach a Basic Grass Energy card from your hand to 1 of your Pokémon. If you attached Energy to a Pokémon in this way, heal 30 damage from that Pokémon.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Grass de base de votre main à l'un de vos Pokémon. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, soignez 30 dégâts de ce Pokémon-là.", + es: "Una vez durante tu turno, puedes unir 1 carta de Energía Grass Básica de tu mano a uno de tus Pokémon. Si has unido Energía a un Pokémon de esta manera, cura 30 puntos de daño a ese Pokémon.", + it: "Una sola volta durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon una carta Energia base Grass dalla tua mano. Se hai assegnato dell'Energia a un Pokémon in questo modo, cura quel Pokémon da 30 danni.", + pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Grass Básica da sua mão a 1 dos seus Pokémon. Se você ligou Energia a um Pokémon desta forma, cure 30 pontos de dano daquele Pokémon.", + de: "Einmal während deines Zuges kannst du 1 Basis-Grass-Energiekarte aus deiner Hand an 1 deiner Pokémon anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, heile 30 Schadenspunkte bei jenem Pokémon." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Syrup Storm", + fr: "Tempête Nectar", + es: "Tormenta en Almíbar", + it: "Tempesta Sciroppata", + pt: "Tempestade Melada", + de: "Sirupsturm" + }, + + effect: { + en: "This attack does 30 more damage for each Grass Energy attached to all of your Pokémon.", + fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Grass attachée à tous vos Pokémon.", + es: "Este ataque hace 30 puntos de daño más por cada Energía Grass unida a cada uno de tus Pokémon.", + it: "Questo attacco infligge 30 danni in più per ogni Energia Grass assegnata ai tuoi Pokémon.", + pt: "Este ataque causa 30 pontos de dano a mais para cada Energia Grass ligada a todos os seus Pokémon.", + de: "Diese Attacke fügt für jede an alle deine Pokémon angelegte Grass-Energie 30 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/015.ts b/data/Scarlet & Violet/Stellar Crown/015.ts new file mode 100644 index 000000000..e0275458b --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/015.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Nymble", + fr: "Lilliterelle", + es: "Nymble", + it: "Nymble", + pt: "Nymble", + de: "Micrick" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Tackle", + fr: "Charge", + es: "Placaje", + it: "Azione", + pt: "Investida", + de: "Tackle" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/016.ts b/data/Scarlet & Violet/Stellar Crown/016.ts new file mode 100644 index 000000000..6bb725b32 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/016.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lokix", + fr: "Gambex", + es: "Lokix", + it: "Lokix", + pt: "Lokix", + de: "Lextremo" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Spiral Kick", + fr: "Coup'd Pied en Spirale", + es: "Patada Espiral", + it: "Spiralcalcio", + pt: "Chute Espiral", + de: "Drehtritt" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/017.ts b/data/Scarlet & Violet/Stellar Crown/017.ts new file mode 100644 index 000000000..f3ac4cbad --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/017.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Toedscool", + fr: "Terracool", + es: "Toedscool", + it: "Toedscool", + pt: "Toedscool", + de: "Tentagra" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Ram", + fr: "Collision", + es: "Apisonar", + it: "Carica", + pt: "Aríete", + de: "Ramme" + }, + + damage: 10 + }, { + cost: ["Grass", "Colorless"], + + name: { + en: "Gentle Slap", + fr: "Gifle Douce", + es: "Bofetada Gentil", + it: "Schiaffetto", + pt: "Tapinha", + de: "Sanfter Hieb" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/018.ts b/data/Scarlet & Violet/Stellar Crown/018.ts new file mode 100644 index 000000000..6d984cec4 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/018.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Toedscruel", + fr: "Terracruel", + es: "Toedscruel", + it: "Toedscruel", + pt: "Toedscruel", + de: "Tenterra" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 140, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Mega Drain", + fr: "Méga-Sangsue", + es: "Megaagotar", + it: "Megassorbimento", + pt: "Megadreno", + de: "Megasauger" + }, + + 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: 30 + }, { + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Whip Smash", + fr: "Frappe Fouet", + es: "Golpe Látigo", + it: "Frustata Devastante", + pt: "Chicote Esmagador", + de: "Peitschenschlag" + }, + + damage: 90 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/019.ts b/data/Scarlet & Violet/Stellar Crown/019.ts new file mode 100644 index 000000000..840455edd --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/019.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Ponyta", + fr: "Ponyta", + es: "Ponyta", + it: "Ponyta", + pt: "Ponyta", + de: "Ponita" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Flop", + fr: "Flop", + es: "Vuelta", + it: "Tonfo", + pt: "Baque", + de: "Plumps" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/020.ts b/data/Scarlet & Violet/Stellar Crown/020.ts new file mode 100644 index 000000000..c7f6b28d6 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/020.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Rapidash", + fr: "Galopa", + es: "Rapidash", + it: "Rapidash", + pt: "Rapidash", + de: "Gallopa" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + en: "Burning Run", + fr: "Course Enflammée", + es: "Carrera Ardiente", + it: "Bruciacorsa", + pt: "Corrida Fervente", + de: "Brennender Spurt" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 60 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 60 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 60 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 60 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 60 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 60 Schadenspunkte mehr zu." + }, + + damage: "60+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/021.ts b/data/Scarlet & Violet/Stellar Crown/021.ts new file mode 100644 index 000000000..1b8d43c9b --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/021.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Pansear", + fr: "Flamajou", + es: "Pansear", + it: "Pansear", + pt: "Pansear", + de: "Grillmak" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Call for Family", + fr: "Appel à la Famille", + es: "Llamar a la Familia", + it: "Cerca Famiglia", + pt: "Chamar a Família", + de: "Familienruf" + }, + + effect: { + en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja 1 Pokémon Básico y ponlo en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo un Pokémon Base e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por um Pokémon Básico no seu baralho e coloque-o no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach 1 Basis-Pokémon und lege es auf deine Bank. Mische anschließend dein Deck." + } + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Searing Flame", + fr: "Flammes Calcinantes", + es: "Llama Abrasadora", + it: "Fiamme Ustionanti", + pt: "Chama Cauterizante", + de: "Sengende Flammen" + }, + + 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: 20 + }], + + retreat: 1, + regulationMark: "G", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/022.ts b/data/Scarlet & Violet/Stellar Crown/022.ts new file mode 100644 index 000000000..a73b45b4a --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/022.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Reshiram", + fr: "Reshiram", + es: "Reshiram", + it: "Reshiram", + pt: "Reshiram", + de: "Reshiram" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Heat Blast", + fr: "Explosion de Chaleur", + es: "Explosión de Calor", + it: "Caldobomba", + pt: "Raio de Calor", + de: "Hitzestoß" + }, + + damage: 90 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/023.ts b/data/Scarlet & Violet/Stellar Crown/023.ts new file mode 100644 index 000000000..55ddd3125 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/023.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Salandit", + fr: "Tritox", + es: "Salandit", + it: "Salandit", + pt: "Salandit", + de: "Molunk" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Ember", + fr: "Flammèche", + es: "Ascuas", + it: "Braciere", + pt: "Brasa", + de: "Glut" + }, + + effect: { + en: "Discard an Energy from this Pokémon.", + fr: "Défaussez une Énergie de ce Pokémon.", + es: "Descarta 1 Energía de este Pokémon.", + it: "Scarta un'Energia da questo Pokémon.", + pt: "Descarte uma Energia deste Pokémon.", + de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/024.ts b/data/Scarlet & Violet/Stellar Crown/024.ts new file mode 100644 index 000000000..bb7467d78 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/024.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Salazzle", + fr: "Malamandre", + es: "Salazzle", + it: "Salazzle", + pt: "Salazzle", + de: "Amfira" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Sudden Scorching", + fr: "Incandescence Soudaine", + es: "Calcinación Súbita", + it: "Ustione Improvvisa", + pt: "Ardência Repentina", + de: "Plötzliche Versengung" + }, + + effect: { + en: "Your opponent discards a card from their hand. If this Pokémon evolved from Salandit during this turn, your opponent discards 2 more cards.", + fr: "Votre adversaire défausse une carte de sa main. Si ce Pokémon a évolué de Tritox pendant ce tour, votre adversaire défausse 2 cartes supplémentaires.", + es: "Tu rival descarta 1 carta de su mano. Si este Pokémon ha evolucionado de Salandit durante este turno, tu rival descarta 2 cartas más.", + it: "Il tuo avversario scarta una carta che ha in mano. Se questo Pokémon si è evoluto da Salandit durante questo turno, il tuo avversario scarta altre due carte.", + pt: "O seu oponente descarta uma carta da mão dele. Se este Pokémon evoluiu de Salandit durante este turno, o seu oponente descartará 2 cartas a mais.", + de: "Dein Gegner legt 1 Karte aus seiner Hand auf seinen Ablagestapel. Wenn sich dieses Pokémon während dieses Zuges aus Molunk entwickelt hat, legt dein Gegner 2 Karten mehr auf seinen Ablagestapel." + } + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Flamethrower", + fr: "Lance-Flammes", + es: "Lanzallamas", + it: "Lanciafiamme", + pt: "Lança-chamas", + de: "Flammenwurf" + }, + + effect: { + en: "Discard an Energy from this Pokémon.", + fr: "Défaussez une Énergie de ce Pokémon.", + es: "Descarta 1 Energía de este Pokémon.", + it: "Scarta un'Energia da questo Pokémon.", + pt: "Descarte uma Energia deste Pokémon.", + de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 130 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/025.ts b/data/Scarlet & Violet/Stellar Crown/025.ts new file mode 100644 index 000000000..588e39ac9 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/025.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Turtonator", + fr: "Boumata", + es: "Turtonator", + it: "Turtonator", + pt: "Turtonator", + de: "Tortunator" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Ring of Fire", + fr: "Anneau de Feu", + es: "Anillo de Fuego", + it: "Anello di Fuoco", + pt: "Anel de Fogo", + de: "Feuerring" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Burned. During your opponent's next turn, that Pokémon can't retreat.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé. Pendant le prochain tour de votre adversaire, ce Pokémon-là ne peut pas battre en retraite.", + es: "El Pokémon Activo de tu rival pasa a estar Quemado. Durante el próximo turno de tu rival, ese Pokémon no puede retirarse.", + it: "Il Pokémon attivo del tuo avversario viene bruciato. Durante il prossimo turno del tuo avversario, quel Pokémon non può ritirarsi.", + pt: "O Pokémon Ativo do seu oponente agora está Queimado. Durante o próximo turno do seu oponente, aquele Pokémon não poderá recuar.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt. Während des nächsten Zuges deines Gegners kann sich jenes Pokémon nicht zurückziehen." + }, + + damage: 50 + }, { + cost: ["Fire", "Fire", "Colorless", "Colorless"], + + name: { + en: "Inferno Onrush", + fr: "Torrent d'Enfer", + es: "Infierno Desatado", + it: "Assalto Infernale", + pt: "Investida Infernal", + de: "Inferno-Ansturm" + }, + + effect: { + en: "This Pokémon also does 60 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 60 dégâts.", + es: "Este Pokémon también se hace 60 puntos de daño a sí mismo.", + it: "Questo Pokémon infligge anche 60 danni a se stesso.", + pt: "Este Pokémon também causa 60 pontos de dano a si mesmo.", + de: "Dieses Pokémon fügt auch sich selbst 60 Schadenspunkte zu." + }, + + damage: 180 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/026.ts b/data/Scarlet & Violet/Stellar Crown/026.ts new file mode 100644 index 000000000..e55833482 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/026.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Scorbunny", + fr: "Flambino", + es: "Scorbunny", + it: "Scorbunny", + pt: "Scorbunny", + de: "Hopplo" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Quick Attack", + fr: "Vive-Attaque", + es: "Ataque Rápido", + it: "Attacco Rapido", + pt: "Ataque Rápido", + de: "Ruckzuckhieb" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 10 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 10 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 10 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 10 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 10 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/027.ts b/data/Scarlet & Violet/Stellar Crown/027.ts new file mode 100644 index 000000000..05c42748a --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/027.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Raboot", + fr: "Lapyro", + es: "Raboot", + it: "Raboot", + pt: "Raboot", + de: "Kickerlo" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Low Sweep", + fr: "Balayette", + es: "Puntapié", + it: "Calciobasso", + pt: "Movimento Baixo", + de: "Fußtritt" + }, + + damage: 30 + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Combustion", + fr: "Fournaise", + es: "Combustión", + it: "Fuoco Continuo", + pt: "Combustão", + de: "Glühen" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/028.ts b/data/Scarlet & Violet/Stellar Crown/028.ts new file mode 100644 index 000000000..e81f83d2d --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/028.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Cinderace ex", + fr: "Pyrobut-ex", + es: "Cinderace ex", + it: "Cinderace-ex", + pt: "Cinderace ex", + de: "Liberlo-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 320, + types: ["Fire"], + stage: "Stage2", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Flare Strike", + fr: "Attaque Flamboyante", + es: "Impacto Ígneo", + it: "Colpo Fiammante", + pt: "Golpe de Chamas", + de: "Feuergeschoss" + }, + + effect: { + en: "During your next turn, this Pokémon can't use Flare Strike.", + fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Attaque Flamboyante.", + es: "Durante tu próximo turno, este Pokémon no puede usar Impacto Ígneo.", + it: "Durante il tuo prossimo turno, questo Pokémon non può usare Colpo Fiammante.", + pt: "Durante o seu próximo turno, este Pokémon não poderá usar Golpe de Chamas.", + de: "Während deines nächsten Zuges kann dieses Pokémon Feuergeschoss nicht einsetzen." + }, + + damage: 280 + }, { + cost: ["Fire", "Fighting", "Darkness"], + + name: { + en: "Garnet Volley", + fr: "Volée de Grenats", + es: "Volea Granate", + it: "Cannonata di Granato", + pt: "Voleio de Granate", + de: "Granat-Volley" + }, + + effect: { + en: "This attack does 180 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 180 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 180 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 180 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 180 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 180 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }], + + retreat: 0, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/029.ts b/data/Scarlet & Violet/Stellar Crown/029.ts new file mode 100644 index 000000000..52af53c4c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/029.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +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", "Colorless"], + + name: { + en: "Flare", + fr: "Flamboiement", + es: "Llama", + it: "Fiammata", + pt: "Chama", + de: "Flackern" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/030.ts b/data/Scarlet & Violet/Stellar Crown/030.ts new file mode 100644 index 000000000..e73306faf --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/030.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Blastoise ex", + fr: "Tortank-ex", + es: "Blastoise ex", + it: "Blastoise-ex", + pt: "Blastoise ex", + de: "Turtok-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 330, + types: ["Water"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Solid Shell", + fr: "Coquille Dure", + es: "Caparazón Sólido", + it: "Guscio Solido", + pt: "Carapaça Sólida", + de: "Solider Panzer" + }, + + effect: { + en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).", + fr: "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: "Los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).", + it: "Questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Este Pokémon recebe 30 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).", + de: "Diesem Pokémon werden durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + } + }], + + attacks: [{ + cost: ["Water", "Water"], + + name: { + en: "Twin Cannons", + fr: "Double Canon", + es: "Cañones Gemelos", + it: "Duocannone", + pt: "Canhões Gêmeos", + de: "Zwillingsdüsen" + }, + + effect: { + en: "Discard up to 2 Basic Water Energy cards from your hand. This attack does 140 damage for each card you discarded in this way.", + fr: "Défaussez jusqu'à 2 cartes Énergie Water de base de votre main. Cette attaque inflige 140 dégâts pour chaque carte défaussée de cette façon.", + es: "Descarta hasta 2 cartas de Energía Water Básica de tu mano. Este ataque hace 140 puntos de daño por cada carta que hayas descartado de esta manera.", + it: "Scarta fino a due carte Energia base Water dalla tua mano. Questo attacco infligge 140 danni per ogni carta che hai scartato in questo modo.", + pt: "Descarte até 2 cartas de Energia Water Básica da sua mão. Este ataque causa 140 pontos de dano para cada carta descartada desta forma.", + de: "Lege bis zu 2 Basis-Water-Energiekarten aus deiner Hand auf deinen Ablagestapel. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 140 Schadenspunkte zu." + }, + + damage: "140×" + }], + + retreat: 3, + regulationMark: "G", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/031.ts b/data/Scarlet & Violet/Stellar Crown/031.ts new file mode 100644 index 000000000..f06581a74 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/031.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lapras", + fr: "Lokhlass", + es: "Lapras", + it: "Lapras", + pt: "Lapras", + de: "Lapras" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Water Gun", + fr: "Pistolet à O", + es: "Pistola Agua", + it: "Pistolacqua", + pt: "Revólver d'Água", + de: "Aquaknarre" + }, + + damage: 20 + }, { + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Surf", + fr: "Surf", + es: "Surf", + it: "Surf", + pt: "Surfar", + de: "Surfer" + }, + + damage: 80 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/032.ts b/data/Scarlet & Violet/Stellar Crown/032.ts new file mode 100644 index 000000000..89a064929 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/032.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lapras ex", + fr: "Lokhlass-ex", + es: "Lapras ex", + it: "Lapras-ex", + pt: "Lapras ex", + de: "Lapras-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Power Splash", + fr: "Éclaboussure Puissante", + es: "Salpicadura Enérgica", + it: "Forzasplash", + pt: "Esguicho Poderoso", + de: "Power-Platscher" + }, + + effect: { + en: "This attack does 40 damage for each Energy attached to this Pokémon.", + fr: "Cette attaque inflige 40 dégâts pour chaque Énergie attachée à ce Pokémon.", + es: "Este ataque hace 40 puntos de daño por cada Energía unida a este Pokémon.", + it: "Questo attacco infligge 40 danni per ogni Energia assegnata a questo Pokémon.", + pt: "Este ataque causa 40 pontos de dano para cada Energia ligada a este Pokémon.", + de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Energie 40 Schadenspunkte zu." + }, + + damage: "40×" + }, { + cost: ["Water", "Psychic", "Metal"], + + name: { + en: "Larimar Rain", + fr: "Pluie Larimar", + es: "Lluvia Larimar", + it: "Pioggia di Larimar", + pt: "Chuva de Larimar", + de: "Larimar-Regen" + }, + + effect: { + en: "Look at the top 20 cards of your deck and attach any number of Energy cards you find there to your Pokémon in any way you like. Shuffle the other cards back into your deck.", + fr: "Regardez les 20 cartes du dessus de votre deck, puis attachez le nombre voulu de cartes Énergie que vous y trouvez à vos Pokémon, comme il vous plaît. Mélangez les autres cartes avec votre deck.", + es: "Mira las 20 primeras cartas de tu baraja y une cualquier cantidad de cartas de Energía que encuentres entre ellas a tus Pokémon de la manera que desees. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Guarda le prime 20 carte del tuo mazzo e assegna un numero qualsiasi di carte Energia presenti tra esse ai tuoi Pokémon nel modo che preferisci. Poi rimischia le altre carte nel tuo mazzo.", + pt: "Olhe as 20 cartas de cima do seu baralho e ligue qualquer número de cartas de Energia que encontrar lá aos seus Pokémon como desejar. Embaralhe as outras cartas de volta no seu baralho.", + de: "Schau dir die obersten 20 Karten deines Decks an und lege beliebig viele Energiekarten, die du dort findest, beliebig an deine Pokémon an. Mische die anderen Karten zurück in dein Deck." + } + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/033.ts b/data/Scarlet & Violet/Stellar Crown/033.ts new file mode 100644 index 000000000..ce9785b3c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/033.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Marill", + fr: "Marill", + es: "Marill", + it: "Marill", + pt: "Marill", + de: "Marill" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Rollout", + fr: "Roulade", + es: "Rodar", + it: "Rotolamento", + pt: "Rolagem", + de: "Walzer" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/034.ts b/data/Scarlet & Violet/Stellar Crown/034.ts new file mode 100644 index 000000000..c817cc8ef --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/034.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Azumarill", + fr: "Azumarill", + es: "Azumarill", + it: "Azumarill", + pt: "Azumarill", + de: "Azumarill" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Bubble Beam", + fr: "Bulles d'O", + es: "Rayo Burbuja", + it: "Bollaraggio", + pt: "Jato de Bolhas", + de: "Blubbstrahl" + }, + + 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: 60 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/035.ts b/data/Scarlet & Violet/Stellar Crown/035.ts new file mode 100644 index 000000000..5225f5fd8 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/035.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Finneon", + fr: "Écayon", + es: "Finneon", + it: "Finneon", + pt: "Finneon", + de: "Finneon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Sprinkle Water", + fr: "Eau Aspergeante", + es: "Esparcir Agua", + it: "Goccioline", + pt: "Aspergir Água", + de: "Wassersprüher" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/036.ts b/data/Scarlet & Violet/Stellar Crown/036.ts new file mode 100644 index 000000000..3e2aedbf1 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/036.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lumineon", + fr: "Luminéon", + es: "Lumineon", + it: "Lumineon", + pt: "Lumineon", + de: "Lumineon" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 110, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Return", + fr: "Retour", + es: "Retribución", + it: "Ritorno", + pt: "Retorno", + de: "Rückkehr" + }, + + effect: { + en: "You may draw cards until you have 6 cards in your hand.", + fr: "Vous pouvez piocher des cartes jusqu'à en avoir 6 en main.", + es: "Puedes robar cartas hasta que tengas 6 cartas en tu mano.", + it: "Puoi pescare fino ad avere sei carte in mano.", + pt: "Você pode comprar cartas até ter 6 cartas na sua mão.", + de: "Du kannst so lange Karten ziehen, bis du 6 Karten auf deiner Hand hast." + }, + + damage: 20 + }, { + cost: ["Water", "Colorless"], + + name: { + en: "Razor Fin", + fr: "Aileron-Rasoir", + es: "Aleta Afilada", + it: "Pinnalama", + pt: "Barbatana Cortante", + de: "Rasierflosse" + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/037.ts b/data/Scarlet & Violet/Stellar Crown/037.ts new file mode 100644 index 000000000..7e2682b36 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/037.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Tirtouga", + fr: "Carapagos", + es: "Tirtouga", + it: "Tirtouga", + pt: "Tirtouga", + de: "Galapaflos" + }, + + rarity: "Common", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water", "Water"], + + name: { + en: "Splashing Turn", + fr: "Tour Éclaboussant", + es: "Giro Chapoteante", + it: "Girata Inondante", + pt: "Giro Borrifante", + de: "Platschende Drehung" + }, + + 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: 70 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/038.ts b/data/Scarlet & Violet/Stellar Crown/038.ts new file mode 100644 index 000000000..52f37402b --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/038.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Carracosta", + fr: "Mégapagos", + es: "Carracosta", + it: "Carracosta", + pt: "Carracosta", + de: "Karippas" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 160, + types: ["Water"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Primal Knowledge", + fr: "Primo-Savoir", + es: "Conocimiento Primigenio", + it: "Sapienza Primordiale", + pt: "Sabedoria Primitiva", + de: "Urzeitwissen" + }, + + effect: { + en: "Attacks used by your Pokémon do 30 more damage to your opponent's Active Evolution Pokémon (before applying Weakness and Resistance).", + fr: "Les attaques utilisées par vos Pokémon infligent 30 dégâts supplémentaires au Pokémon Évolutif Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Los ataques usados por tus Pokémon hacen 30 puntos de daño más al Pokémon Evolución Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + it: "Gli attacchi usati dai tuoi Pokémon infliggono 30 danni in più al Pokémon Evoluzione attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + pt: "Os ataques usados pelos seus Pokémon causam 30 pontos de dano a mais ao Pokémon de Evolução Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + de: "Die von deinen Pokémon eingesetzten Attacken fügen dem Aktiven Entwicklungs-Pokémon deines Gegners 30 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + } + }], + + attacks: [{ + cost: ["Water", "Water"], + + name: { + en: "Tidal Wave", + fr: "Raz-de-Marée", + es: "Maremoto", + it: "Mareggiata", + pt: "Maremoto", + de: "Flutwelle" + }, + + damage: 150 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/039.ts b/data/Scarlet & Violet/Stellar Crown/039.ts new file mode 100644 index 000000000..e0a0a0901 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/039.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Froakie", + fr: "Grenousse", + es: "Froakie", + it: "Froakie", + pt: "Froakie", + de: "Froxy" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Rain Splash", + fr: "Pluie Éclaboussante", + es: "Golpe de Lluvia", + it: "Spruzzapioggia", + pt: "Chuva Borrifante", + de: "Regenplatscher" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/040.ts b/data/Scarlet & Violet/Stellar Crown/040.ts new file mode 100644 index 000000000..17b4c68ea --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/040.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Frogadier", + fr: "Croâporal", + es: "Frogadier", + it: "Frogadier", + pt: "Frogadier", + de: "Amphizel" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Wave Splash", + fr: "Grosse Vague", + es: "Chapoteo Ondulante", + it: "Schizzi d'Onda", + pt: "Onda Borrifante", + de: "Wellenplatscher" + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/041.ts b/data/Scarlet & Violet/Stellar Crown/041.ts new file mode 100644 index 000000000..80ae200f0 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/041.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Greninja ex", + fr: "Amphinobi-ex", + es: "Greninja ex", + it: "Greninja-ex", + pt: "Greninja ex", + de: "Quajutsu-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 300, + types: ["Water"], + stage: "Stage2", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Shifting Shuriken", + fr: "Shuriken Changeant", + es: "Shuriken Cambiante", + it: "Lame Mutevoli", + pt: "Estrela Ninja Mutável", + de: "Wandel-Shuriken" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 100 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 100 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 100 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 100 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 100 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 100 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/042.ts b/data/Scarlet & Violet/Stellar Crown/042.ts new file mode 100644 index 000000000..6469fbb31 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/042.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Crabominable", + fr: "Crabominable", + es: "Crabominable", + it: "Crabominable", + pt: "Crabominable", + de: "Krawell" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 160, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Food Prep", + fr: "Préparation de Repas", + es: "Preparar la Comida", + it: "Preparacibo", + pt: "Preparação de Marmitas", + de: "Zubereitung" + }, + + effect: { + en: "Attacks used by this Pokémon cost Colorless less for each Kofu card in your discard pile.", + fr: "Les attaques utilisées par ce Pokémon coûtent Colorless de moins pour chaque carte Kombu dans votre pile de défausse.", + es: "Los ataques usados por este Pokémon cuestan Colorless menos por cada carta de Fuco en tu pila de descartes.", + it: "Il costo degli attacchi usati da questo Pokémon è ridotto di Colorless per ogni carta Algaro nella tua pila degli scarti.", + pt: "Os ataques usados por este Pokémon custam Colorless a menos para cada carta Álgaro na sua pilha de descarte.", + de: "Die Kosten der von diesem Pokémon eingesetzten Attacken verringern sich für jede Kombu-Karte in deinem Ablagestapel um Colorless." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Haymaker", + fr: "Coup de Poing Fracassant", + es: "Golpazo", + it: "Pugno Tremendo", + pt: "Golpe Arrasador", + de: "Schwinger" + }, + + effect: { + en: "During your next turn, this Pokémon can't use Haymaker.", + fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup de Poing Fracassant.", + es: "Durante tu próximo turno, este Pokémon no puede usar Golpazo.", + it: "Durante il tuo prossimo turno, questo Pokémon non può usare Pugno Tremendo.", + pt: "Durante o seu próximo turno, este Pokémon não poderá usar Golpe Arrasador.", + de: "Während deines nächsten Zuges kann dieses Pokémon Schwinger nicht einsetzen." + }, + + damage: 250 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/043.ts b/data/Scarlet & Violet/Stellar Crown/043.ts new file mode 100644 index 000000000..33e15efad --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/043.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Chewtle", + fr: "Khélocrok", + es: "Chewtle", + it: "Chewtle", + pt: "Chewtle", + de: "Kamehaps" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Headbutt", + fr: "Coup d'Boule", + es: "Golpe Cabeza", + it: "Bottintesta", + pt: "Cabeçada", + de: "Kopfnuss" + }, + + damage: 60 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/044.ts b/data/Scarlet & Violet/Stellar Crown/044.ts new file mode 100644 index 000000000..b470ba9cf --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/044.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Drednaw", + fr: "Torgamord", + es: "Drednaw", + it: "Drednaw", + pt: "Drednaw", + de: "Kamalm" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 140, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Impervious Shell", + fr: "Coquille Impénétrable", + es: "Caparazón Impenetrable", + it: "Guscio Impenetrabile", + pt: "Casco Impenetrável", + de: "Undurchdringlicher Panzer" + }, + + effect: { + en: "Prevent all damage done to this Pokémon by attacks from your opponent's Pokémon if that damage is 200 or more.", + fr: "Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon de votre adversaire si ces dégâts sont de 200 ou plus.", + es: "Se evita todo el daño infligido a este Pokémon por ataques de los Pokémon de tu rival si ese daño es igual o superior a 200 puntos de daño.", + it: "Previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon del tuo avversario se quei danni sono 200 o più.", + pt: "Previna todo o dano causado a este Pokémon por ataques dos Pokémon do seu oponente se aquele dano for 200 ou mais.", + de: "Verhindere allen Schaden, der diesem Pokémon durch Attacken von Pokémon deines Gegners zugefügt wird, wenn jener Schaden 200 Schadenspunkte oder mehr beträgt." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Hard Crunch", + fr: "Mâchouil'Dur", + es: "Aplaste Contundente", + it: "Ultrasgranocchio", + pt: "Mastigada Bruta", + de: "Kräftiger Knirscher" + }, + + effect: { + en: "If your opponent's Active Pokémon already has any damage counters on it, this attack does 80 more damage.", + fr: "Si le Pokémon Actif de votre adversaire a déjà au moins un marqueur de dégâts, cette attaque inflige 80 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival ya tiene algún contador de daño sobre él, este ataque hace 80 puntos de daño más.", + it: "Se il Pokémon attivo del tuo avversario ha già dei segnalini danno, questo attacco infligge 80 danni in più.", + pt: "Se o Pokémon Ativo do seu oponente já tiver algum contador de dano nele, este ataque causará 80 pontos de dano a mais.", + de: "Wenn auf dem Aktiven Pokémon deines Gegners mindestens 1 Schadensmarke liegt, fügt diese Attacke 80 Schadenspunkte mehr zu." + }, + + damage: "80+" + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/045.ts b/data/Scarlet & Violet/Stellar Crown/045.ts new file mode 100644 index 000000000..718ea8c5e --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/045.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Veluza", + fr: "Délestin", + es: "Veluza", + it: "Veluza", + pt: "Veluza", + de: "Agiluza" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Food Prep", + fr: "Préparation de Repas", + es: "Preparar la Comida", + it: "Preparacibo", + pt: "Preparação de Marmitas", + de: "Zubereitung" + }, + + effect: { + en: "Attacks used by this Pokémon cost Colorless less for each Kofu card in your discard pile.", + fr: "Les attaques utilisées par ce Pokémon coûtent Colorless de moins pour chaque carte Kombu dans votre pile de défausse.", + es: "Los ataques usados por este Pokémon cuestan Colorless menos por cada carta de Fuco en tu pila de descartes.", + it: "Il costo degli attacchi usati da questo Pokémon è ridotto di Colorless per ogni carta Algaro nella tua pila degli scarti.", + pt: "Os ataques usados por este Pokémon custam Colorless a menos para cada carta Álgaro na sua pilha de descarte.", + de: "Die Kosten der von diesem Pokémon eingesetzten Attacken verringern sich für jede Kombu-Karte in deinem Ablagestapel um Colorless." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Sonic Edge", + fr: "Tranchant Sonique", + es: "Tajo Sónico", + it: "Muro del Suono", + pt: "Gume Sônico", + de: "Schallkante" + }, + + 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: 110 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/046.ts b/data/Scarlet & Violet/Stellar Crown/046.ts new file mode 100644 index 000000000..e573294d6 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/046.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Electabuzz", + fr: "Élektek", + es: "Electabuzz", + it: "Electabuzz", + pt: "Electabuzz", + de: "Elektek" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + 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: ["Lightning", "Lightning"], + + name: { + en: "Magnum Punch", + fr: "Poing Magnum", + es: "Puño Mágnum", + it: "Superpugno", + pt: "Soco Magnum", + de: "Magnum-Schlag" + }, + + damage: 40 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/047.ts b/data/Scarlet & Violet/Stellar Crown/047.ts new file mode 100644 index 000000000..7d8da89cd --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/047.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Electivire", + fr: "Élekable", + es: "Electivire", + it: "Electivire", + pt: "Electivire", + de: "Elevoltek" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 150, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Electroslug", + fr: "Électro Frappe", + es: "Electropuñetazo", + it: "Elettropugno", + pt: "Soco Elétrico", + de: "Elektroschuss" + }, + + damage: 40 + }, { + cost: ["Lightning", "Lightning"], + + name: { + en: "Unleash Lightning", + fr: "Déchaînement d'Éclairs", + es: "Relámpago Desatado", + it: "Scatenafulmini", + pt: "Lançamento de Raios", + de: "Blitzentladung" + }, + + effect: { + en: "During your next turn, your Pokémon can't attack. (This includes new Pokémon that come into play.)", + fr: "Pendant votre prochain tour, vos Pokémon ne peuvent pas attaquer. (Cela comprend les nouveaux Pokémon qui sont mis en jeu.)", + es: "Durante tu próximo turno, tus Pokémon no pueden atacar. (Esto incluye los nuevos Pokémon que entren en juego).", + it: "Durante il tuo prossimo turno, i tuoi Pokémon non possono attaccare. Questo include i nuovi Pokémon entrati in gioco.", + pt: "Durante o seu próximo turno, seus Pokémon não poderão atacar. (Isto inclui novos Pokémon que entrarem em jogo.)", + de: "Während deines nächsten Zuges können deine Pokémon nicht angreifen. (Dies schließt neue Pokémon ein, die ins Spiel gebracht werden.)" + }, + + damage: 220 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/048.ts b/data/Scarlet & Violet/Stellar Crown/048.ts new file mode 100644 index 000000000..00b774b99 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/048.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Chinchou", + fr: "Loupio", + es: "Chinchou", + it: "Chinchou", + pt: "Chinchou", + de: "Lampi" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Double Voltage", + fr: "Double Voltage", + es: "Doble Tensión", + it: "Doppio Voltaggio", + pt: "Voltagem Dupla", + de: "Doppelspannung" + }, + + effect: { + en: "Flip 2 coins. This attack does 20 damage for each heads.", + fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts pour chaque côté face.", + es: "Lanza 2 monedas. Este ataque hace 20 puntos de daño por cada cara.", + it: "Lancia due volte una moneta. Questo attacco infligge 20 danni ogni volta che esce testa.", + pt: "Jogue 2 moedas. Este ataque causa 20 pontos de dano para cada cara.", + de: "Wirf 2 Münzen. Diese Attacke fügt 20 Schadenspunkte pro Kopf zu." + }, + + damage: "20×" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/049.ts b/data/Scarlet & Violet/Stellar Crown/049.ts new file mode 100644 index 000000000..23224b006 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/049.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +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: "Disorienting Flash", + fr: "Flash Désorientant", + es: "Destello Aturdidor", + it: "Flash Disorientante", + pt: "Clarão Atordoante", + de: "Desorientierender Blitz" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused. Put 8 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 8 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 8 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 otto 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 8 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 8 Schadensmarken anstelle von 3 Schadensmarken auf jenes Pokémon." + } + }, { + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + en: "Thunderous Bolt", + fr: "Éclair du Tonnerre", + es: "Rayo Atronador", + it: "Fulmine Tonante", + pt: "Raio Estrondoso", + de: "Donnernder Einschlag" + }, + + 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: 140 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/050.ts b/data/Scarlet & Violet/Stellar Crown/050.ts new file mode 100644 index 000000000..647b76a34 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/050.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Joltik", + fr: "Statitik", + es: "Joltik", + it: "Joltik", + pt: "Joltik", + de: "Wattzapf" + }, + + rarity: "Common", + category: "Pokemon", + hp: 30, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Jolting Charge", + fr: "Recharge Statique", + es: "Jolgorio de Voltios", + it: "Scossacarica", + pt: "Carga Eletrizante", + de: "Wattladung" + }, + + effect: { + en: "Search your deck for up to 2 Basic Grass Energy cards and up to 2 Basic Lightning Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Grass de base et jusqu'à 2 cartes Énergie Lightning de base, puis attachez-les à vos Pokémon comme il vous plaît. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Grass Básica y hasta 2 cartas de Energía Lightning Básica y únelas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due carte Energia base Grass e fino a due carte Energia base Lightning e assegnale ai tuoi Pokémon nel modo che preferisci. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 cartas de Energia Grass Básica e até 2 cartas de Energia Lightning Básica no seu baralho e ligue-as aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Grass-Energiekarten und bis zu 2 Basis-Lightning-Energiekarten und lege sie beliebig an deine Pokémon an. Mische anschließend dein Deck." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/051.ts b/data/Scarlet & Violet/Stellar Crown/051.ts new file mode 100644 index 000000000..4ea6f4fc0 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/051.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Galvantula ex", + fr: "Mygavolt-ex", + es: "Galvantula ex", + it: "Galvantula-ex", + pt: "Galvantula ex", + de: "Voltula-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Charged Web", + fr: "Toile Chargée", + es: "Tela Cargada", + it: "Tela Elettrificata", + pt: "Eletroteia", + de: "Geladenes Netz" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex or Pokémon V, this attack does 110 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex ou un Pokémon-V, cette attaque inflige 110 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 110 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 110 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á 110 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 110 Schadenspunkte mehr zu." + }, + + damage: "110+" + }, { + cost: ["Grass", "Lightning", "Fighting"], + + name: { + en: "Fulgurite", + fr: "Fulgurite", + es: "Fulgurita", + it: "Folgorite", + pt: "Fulgurito", + de: "Fulgurit" + }, + + effect: { + en: "Discard all Energy from this Pokémon. During your opponent's next turn, they can't play any Item cards from their hand.", + fr: "Défaussez toutes les Énergies de ce Pokémon. Pendant son prochain tour, votre adversaire ne peut pas jouer de cartes Objet de sa main.", + es: "Descarta todas las Energías de este Pokémon. Durante el próximo turno de tu rival, este no puede jugar ninguna carta de Objeto de su mano.", + it: "Scarta tutte le Energie da questo Pokémon. Durante il suo prossimo turno, il tuo avversario non può giocare le carte Strumento che ha in mano.", + pt: "Descarte todas as Energias deste Pokémon. Durante o próximo turno do seu oponente, ele não poderá jogar nenhuma carta de Item da mão dele.", + de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel. Dein Gegner kann während seines nächsten Zuges keine Itemkarten aus seiner Hand spielen." + }, + + damage: 180 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/052.ts b/data/Scarlet & Violet/Stellar Crown/052.ts new file mode 100644 index 000000000..1641ee45f --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/052.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Charjabug", + fr: "Chrysapile", + es: "Charjabug", + it: "Charjabug", + pt: "Charjabug", + de: "Akkup" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Parallel Placement", + fr: "Placement Parallèle", + es: "Colocación Paralela", + it: "Disposizione in Parallelo", + pt: "Posicionamento Paralelo", + de: "Parallelschaltung" + }, + + effect: { + en: "Search your deck for up to 3 Charjabug and put them onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 3 Chrysapile, puis placez-les sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 3 Charjabug y ponlos en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a tre Charjabug e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 3 Charjabug no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 3 Akkup und lege sie auf deine Bank. Mische anschließend dein Deck." + } + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/053.ts b/data/Scarlet & Violet/Stellar Crown/053.ts new file mode 100644 index 000000000..5f3d2fc06 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/053.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Vikavolt", + fr: "Lucanon", + es: "Vikavolt", + it: "Vikavolt", + pt: "Vikavolt", + de: "Donarion" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 160, + types: ["Lightning"], + stage: "Stage2", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Volt Switch", + fr: "Change-Éclair", + es: "Voltiocambio", + it: "Invertivolt", + pt: "Troca Elétrica", + de: "Voltwechsel" + }, + + effect: { + en: "Switch this Pokémon with 1 of your Benched Lightning Pokémon.", + fr: "Échangez ce Pokémon contre l'un de vos Pokémon Lightning de Banc.", + es: "Cambia este Pokémon por uno de tus Pokémon Lightning en Banca.", + it: "Scambia questo Pokémon con un Pokémon Lightning della tua panchina.", + pt: "Troque este Pokémon por 1 dos seus Pokémon Lightning no Banco.", + de: "Tausche dieses Pokémon gegen 1 Lightning-Pokémon auf deiner Bank aus." + }, + + damage: 90 + }, { + cost: ["Lightning", "Lightning", "Colorless", "Colorless"], + + name: { + en: "Sparking Strike", + fr: "Frappe Étincelante", + es: "Golpe Chispeante", + it: "Colpo Scintilla", + pt: "Golpe Cintilante", + de: "Funkenschlag" + }, + + damage: 240 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/054.ts b/data/Scarlet & Violet/Stellar Crown/054.ts new file mode 100644 index 000000000..4e0c0337d --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/054.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Togedemaru", + fr: "Togedemaru", + es: "Togedemaru", + it: "Togedemaru", + pt: "Togedemaru", + de: "Togedemaru" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Electrifying Chance", + fr: "Chance Électrifiante", + es: "Oportunidad Electrizante", + it: "Occasione Elettrizzante", + pt: "Sorte Elétrica", + de: "Elektrisierende Chance" + }, + + effect: { + en: "If you have exactly 1 Prize card remaining, your opponent's Active Pokémon is now Paralyzed.", + fr: "S'il vous reste exactement une carte Récompense, le Pokémon Actif de votre adversaire est maintenant Paralysé.", + es: "Si te queda exactamente una carta de Premio, el Pokémon Activo de tu rival pasa a estar Paralizado.", + it: "Se hai esattamente una carta Premio rimanente, il Pokémon attivo del tuo avversario viene paralizzato.", + pt: "Se você tiver exatamente 1 carta de Prêmio restante, o Pokémon Ativo do seu oponente agora estará Paralisado.", + de: "Wenn du genau 1 verbleibende Preiskarte hast, ist das Aktive Pokémon deines Gegners jetzt paralysiert." + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/055.ts b/data/Scarlet & Violet/Stellar Crown/055.ts new file mode 100644 index 000000000..f976c8872 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/055.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Zeraora", + fr: "Zeraora", + es: "Zeraora", + it: "Zeraora", + pt: "Zeraora", + de: "Zeraora" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Combat Thunder", + fr: "Tonnerre Combat", + es: "Trueno Combativo", + it: "Combattuono", + pt: "Trovão Combatente", + de: "Gefechtsdonner" + }, + + effect: { + en: "This attack does 20 more damage for each of your opponent's Benched Pokémon.", + fr: "Cette attaque inflige 20 dégâts supplémentaires pour chacun des Pokémon de Banc de votre adversaire.", + es: "Este ataque hace 20 puntos de daño más por cada uno de los Pokémon en Banca de tu rival.", + it: "Questo attacco infligge 20 danni in più per ogni Pokémon nella panchina del tuo avversario.", + pt: "Este ataque causa 20 pontos de dano a mais para cada Pokémon no Banco do seu oponente.", + de: "Diese Attacke fügt für jedes Pokémon auf der Bank deines Gegners 20 Schadenspunkte mehr zu." + }, + + damage: "20+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/056.ts b/data/Scarlet & Violet/Stellar Crown/056.ts new file mode 100644 index 000000000..7e27152d1 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/056.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Pawmi", + fr: "Pohm", + es: "Pawmi", + it: "Pawmi", + pt: "Pawmi", + de: "Pamo" + }, + + rarity: "Common", + category: "Pokemon", + hp: 40, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Targeted Spark", + fr: "Étincelle Ciblée", + es: "Chispa Direccionada", + it: "Scintilla Mirata", + pt: "Faísca na Mira", + de: "Gezielter Funke" + }, + + effect: { + en: "This attack does 20 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 20 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 20 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 20 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 20 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/057.ts b/data/Scarlet & Violet/Stellar Crown/057.ts new file mode 100644 index 000000000..6735995d9 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/057.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Slowpoke", + fr: "Ramoloss", + es: "Slowpoke", + it: "Slowpoke", + pt: "Slowpoke", + de: "Flegmon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Dangle Tail", + fr: "Queue Ballante", + es: "Cola Reclamo", + it: "Coda Ciondolante", + pt: "Cauda Atrapalhada", + de: "Baumelschweif" + }, + + effect: { + en: "Put a Pokémon from your discard pile into your hand.", + fr: "Ajoutez un Pokémon de votre pile de défausse à votre main.", + es: "Pon 1 Pokémon de tu pila de descartes en tu mano.", + it: "Prendi un Pokémon dalla tua pila degli scarti e aggiungilo alle carte che hai in mano.", + pt: "Coloque um Pokémon da sua pilha de descarte na sua mão.", + de: "Nimm 1 Pokémon aus deinem Ablagestapel auf deine Hand." + } + }, { + cost: ["Psychic", "Colorless"], + + name: { + en: "Tackle", + fr: "Charge", + es: "Placaje", + it: "Azione", + pt: "Investida", + de: "Tackle" + }, + + damage: 30 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/058.ts b/data/Scarlet & Violet/Stellar Crown/058.ts new file mode 100644 index 000000000..66cacb429 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/058.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Slowking", + fr: "Roigada", + es: "Slowking", + it: "Slowking", + pt: "Slowking", + de: "Laschoking" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Seek Inspiration", + fr: "Recherche d'Inspiration", + es: "Búsqueda de Inspiración", + it: "Cerca Ispirazione", + pt: "Buscar Inspiração", + de: "Inspirationssuche" + }, + + effect: { + en: "Discard the top card of your deck, and if that card is a Pokémon that doesn't have a Rule Box, choose 1 of its attacks and use it as this attack. (Pokémon ex, Pokémon V, etc. have Rule Boxes.)", + fr: "Défaussez la carte du dessus de votre deck. Si cette carte est un Pokémon sans encadré Règle, choisissez l'une de ses attaques et utilisez-la en tant que cette attaque. (Les Pokémon-ex, Pokémon-V, etc. ont des encadrés Règle.)", + es: "Descarta la primera carta de tu baraja y, si esa carta es un Pokémon que no tiene un recuadro de regla, elige uno de sus ataques y úsalo para este ataque. (Pokémon ex, Pokémon V, etc. tienen recuadros de regla).", + it: "Scarta la prima carta del tuo mazzo e, se quella carta è un Pokémon che non ha una regola speciale, scegli uno dei suoi attacchi e usalo al posto di questo attacco. I Pokémon-ex, i Pokémon-V, ecc. hanno regole speciali.", + pt: "Descarte a carta de cima do seu baralho, e se aquela carta for um Pokémon que não tiver uma Caixa de Regras, escolha 1 dos seus ataques e use-o como este ataque. (Pokémon ex, Pokémon V, etc. têm Caixas de Regras.)", + de: "Lege die oberste Karte deines Decks auf deinen Ablagestapel, und wenn jene Karte ein Pokémon ist, das kein Regelfeld hat, wähle 1 seiner Attacken und setze sie als diese Attacke ein. (Pokémon-ex, Pokémon-V usw. haben Regelfelder.)" + } + }, { + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Super Psy Bolt", + fr: "Super Psy", + es: "Superrayo Psi", + it: "Superpsico", + pt: "Super-raio Psíquico", + de: "Super-Psischlag" + }, + + damage: 120 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/059.ts b/data/Scarlet & Violet/Stellar Crown/059.ts new file mode 100644 index 000000000..bba16926e --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/059.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Mewtwo", + fr: "Mewtwo", + es: "Mewtwo", + it: "Mewtwo", + pt: "Mewtwo", + de: "Mewtu" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Super Psy Bolt", + fr: "Super Psy", + es: "Superrayo Psi", + it: "Superpsico", + pt: "Super-raio Psíquico", + de: "Super-Psischlag" + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/060.ts b/data/Scarlet & Violet/Stellar Crown/060.ts new file mode 100644 index 000000000..8a16b207e --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/060.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Drifloon", + fr: "Baudrive", + es: "Drifloon", + it: "Drifloon", + pt: "Drifloon", + de: "Driftlon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Expand", + fr: "Développement", + es: "Expandir", + it: "Espansione", + pt: "Expandir", + de: "Ausdehnen" + }, + + effect: { + en: "During your opponent's next turn, this Pokémon takes 10 less damage from attacks (after applying Weakness and Resistance).", + fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 10 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 10 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 10 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Durante o próximo turno do seu oponente, este Pokémon receberá 10 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 10 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/061.ts b/data/Scarlet & Violet/Stellar Crown/061.ts new file mode 100644 index 000000000..9c899dc62 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/061.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Drifblim", + fr: "Grodrive", + es: "Drifblim", + it: "Drifblim", + pt: "Drifblim", + de: "Drifzepeli" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Everyone Explode Now", + fr: "Explosion Générale", + es: "Que Explote Todo el Mundo", + it: "Esplosione Generale", + pt: "Todos Explodem Agora", + de: "Alle explodieren – jetzt!" + }, + + effect: { + en: "This attack does 50 damage for each of your Drifloon and Drifblim in play. This attack also does 30 damage to each of your Drifloon and Drifblim. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 50 dégâts pour chacun de vos Baudrive et Grodrive en jeu. Cette attaque inflige aussi 30 dégâts à chacun de vos Baudrive et Grodrive. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 50 puntos de daño por cada uno de tus Drifloon y Drifblim en juego. Este ataque también hace 30 puntos de daño a cada uno de tus Drifloon y Drifblim. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 50 danni per ogni tuo Drifloon e Drifblim in gioco. Questo attacco infligge anche 30 danni a ciascuno dei tuoi Drifloon e Drifblim. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 50 pontos de dano para cada um dos seus Drifloon e Drifblim em jogo. Este ataque também causa 30 pontos de dano a cada um dos seus Drifloon e Drifblim. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt für jedes deiner Driftlon und Drifzepeli im Spiel 50 Schadenspunkte zu. Diese Attacke fügt auch jedem deiner Driftlon und Drifzepeli 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: "50×" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/062.ts b/data/Scarlet & Violet/Stellar Crown/062.ts new file mode 100644 index 000000000..6a3b8d3f7 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/062.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Yamask", + fr: "Tutafeh", + es: "Yamask", + it: "Yamask", + pt: "Yamask", + de: "Makabaja" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Psychic"], + + name: { + en: "Ominous Eyes", + fr: "Regard Menaçant", + es: "Ojos Aciagos", + it: "Sguardo Malevolo", + pt: "Olhos Tenebrosos", + de: "Unheilvolle Augen" + }, + + effect: { + en: "Put 3 damage counters on 1 of your opponent's Pokémon.", + fr: "Placez 3 marqueurs de dégâts sur l'un des Pokémon de votre adversaire.", + es: "Pon 3 contadores de daño en uno de los Pokémon de tu rival.", + it: "Metti tre segnalini danno su uno dei Pokémon del tuo avversario.", + pt: "Coloque 3 contadores de dano em 1 dos Pokémon do seu oponente.", + de: "Lege 3 Schadensmarken auf 1 Pokémon deines Gegners." + } + }], + + retreat: 2, + regulationMark: "G", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/063.ts b/data/Scarlet & Violet/Stellar Crown/063.ts new file mode 100644 index 000000000..1543f286c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/063.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Comfey", + fr: "Guérilande", + es: "Comfey", + it: "Comfey", + pt: "Comfey", + de: "Curelei" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Flower Shower", + fr: "Pluie de Fleurs", + es: "Lluvia de Flores", + it: "Doccia Floreale", + pt: "Fluxo de Flores", + de: "Blumenschauer" + }, + + effect: { + en: "Each player draws 3 cards.", + fr: "Chaque joueur pioche 3 cartes.", + es: "Cada jugador roba 3 cartas.", + it: "Ciascun giocatore pesca tre carte.", + pt: "Cada jogador compra 3 cartas.", + de: "Jeder Spieler zieht 3 Karten." + } + }, { + cost: ["Psychic"], + + name: { + en: "Play Rough", + fr: "Câlinerie", + es: "Carantoña", + it: "Carineria", + pt: "Jogo Duro", + de: "Knuddler" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 20 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu." + }, + + damage: "20+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/064.ts b/data/Scarlet & Violet/Stellar Crown/064.ts new file mode 100644 index 000000000..31eaec967 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/064.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Milcery", + fr: "Crèmy", + es: "Milcery", + it: "Milcery", + pt: "Milcery", + de: "Hokumil" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Mumble", + fr: "Murmure", + es: "Farfullar", + it: "Borbottio", + pt: "Resmungo", + de: "Grummeln" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/065.ts b/data/Scarlet & Violet/Stellar Crown/065.ts new file mode 100644 index 000000000..c02467900 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/065.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Alcremie", + fr: "Charmilly", + es: "Alcremie", + it: "Alcremie", + pt: "Alcremie", + de: "Pokusan" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Colorful Confection", + fr: "Friandise Colorée", + es: "Dulces de Colores", + it: "Dolcetti Colorati", + pt: "Confeitos Coloridos", + de: "Buntes Konfekt" + }, + + effect: { + en: "Search your deck for up to 5 Pokémon that are the same type as any Basic Energy attached to this Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 5 Pokémon de mêmes types que les Énergies de base attachées à ce Pokémon, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 5 Pokémon que sean del mismo tipo que alguna de las Energías Básicas unidas a este Pokémon, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a cinque Pokémon che sono dello stesso tipo di qualsiasi Energia base assegnata a questo Pokémon, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 5 Pokémon no seu baralho que sejam do mesmo tipo de qualquer Energia Básica ligada a este Pokémon, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 5 Pokémon, die denselben Typ haben wie eine beliebige an dieses Pokémon angelegte Basis-Energie, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + } + }, { + cost: ["Psychic", "Colorless"], + + name: { + en: "Magical Shot", + fr: "Coup Magique", + es: "Disparo Mágico", + it: "Magicolpo", + pt: "Tiro Mágico", + de: "Magischer Schuss" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/066.ts b/data/Scarlet & Violet/Stellar Crown/066.ts new file mode 100644 index 000000000..feba70102 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/066.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Fidough", + fr: "Pâtachiot", + es: "Fidough", + it: "Fidough", + pt: "Fidough", + de: "Hefel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Pleasant Aroma", + fr: "Arôme Plaisant", + es: "Aroma Placentero", + it: "Fragranza Piacevole", + pt: "Aroma Agradável", + de: "Angenehmes Aroma" + }, + + effect: { + en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja 1 Pokémon Básico y ponlo en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo un Pokémon Base e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por um Pokémon Básico no seu baralho e coloque-o no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach 1 Basis-Pokémon und lege es auf deine Bank. Mische anschließend dein Deck." + } + }, { + cost: ["Colorless"], + + name: { + en: "Stampede", + fr: "Ruée", + es: "Estampida", + it: "Fuggi Fuggi", + pt: "Estouro", + de: "Zertrampeln" + }, + + damage: 10 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/067.ts b/data/Scarlet & Violet/Stellar Crown/067.ts new file mode 100644 index 000000000..f4e8f5d1d --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/067.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Dachsbun ex", + fr: "Briochien-ex", + es: "Dachsbun ex", + it: "Dachsbun-ex", + pt: "Dachsbun ex", + de: "Backel-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 250, + types: ["Psychic"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Time to Chow Down", + fr: "J'ai les Crocs", + es: "Hora de Zampar", + it: "A Pancia Piena", + pt: "Tá na Mesa, Pessoal", + de: "Zeit zum Futtern" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may heal all damage from each of your Evolution Pokémon. If you healed any damage in this way, discard all Energy from those Pokémon.", + fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez soigner tous les dégâts de chacun de vos Pokémon Évolutifs. Si vous avez soigné des dégâts de cette façon, défaussez toutes les Énergies de ces Pokémon.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes curar todos los puntos de daño a cada uno de tus Pokémon Evolución. Si has curado algún punto de daño de esta manera, descarta todas las Energías de los Pokémon que hayas curado.", + it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi curare ciascuno dei tuoi Pokémon Evoluzione da tutti i danni. Se hai curato dei danni in questo modo, scarta tutte le Energie dai Pokémon che hai curato.", + pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá curar todo o dano de cada um dos seus Pokémon de Evolução. Se você curou qualquer dano desta forma, descarte todas as Energias daqueles Pokémon.", + de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du allen Schaden bei jedem deiner Entwicklungs-Pokémon heilen. Wenn du auf diese Weise Schaden geheilt hast, lege alle Energien von jenen Pokémon auf deinen Ablagestapel." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Wonder Shine", + fr: "Éclat Merveilleux", + es: "Brillo Prodigioso", + it: "Luce Meraviglia", + pt: "Brilho Encantado", + de: "Wunderglanz" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido.", + it: "Il Pokémon attivo del tuo avversario viene confuso.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt." + }, + + damage: 130 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/068.ts b/data/Scarlet & Violet/Stellar Crown/068.ts new file mode 100644 index 000000000..98f8d8492 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/068.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Flittle", + fr: "Flotillon", + es: "Flittle", + it: "Flittle", + pt: "Flittle", + de: "Flattutu" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Peck", + fr: "Picpic", + es: "Picotazo", + it: "Beccata", + pt: "Bicada", + de: "Pikser" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/069.ts b/data/Scarlet & Violet/Stellar Crown/069.ts new file mode 100644 index 000000000..3c8bc82ea --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/069.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Espathra", + fr: "Cléopsytra", + es: "Espathra", + it: "Espathra", + pt: "Espathra", + de: "Psiopatra" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Psychic Flash", + fr: "Flash Psy", + es: "Destello Psíquico", + it: "Psicoflash", + pt: "Clarão Psíquico", + de: "Psycho-Blitz" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/070.ts b/data/Scarlet & Violet/Stellar Crown/070.ts new file mode 100644 index 000000000..464f22aec --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/070.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Greavard", + fr: "Toutombe", + es: "Greavard", + it: "Greavard", + pt: "Greavard", + de: "Gruff" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Paw Shake Punch", + fr: "Coup de Patte", + es: "Sacudir y Dar la Patita", + it: "Pugno Qua la Zampa", + pt: "Dá Soquinho", + de: "Pfötchenhieb" + }, + + damage: 20 + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Bite", + fr: "Morsure", + es: "Mordisco", + it: "Morso", + pt: "Mordida", + de: "Biss" + }, + + damage: 50 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/071.ts b/data/Scarlet & Violet/Stellar Crown/071.ts new file mode 100644 index 000000000..d33ad42da --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/071.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Iron Boulder", + fr: "Roc-de-Fer", + es: "Ferromole", + it: "Massoferreo", + pt: "Rocha Férrea", + de: "Eisenfels" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Adjusted Horn", + fr: "Corne Ajustée", + es: "Cuerno Graduable", + it: "Equicorno", + pt: "Chifre Ajustado", + de: "Angepasstes Horn" + }, + + effect: { + en: "If you don't have the same number of cards in your hand as your opponent, this attack does nothing.", + fr: "Si vous n'avez pas le même nombre de cartes dans votre main que votre adversaire, cette attaque ne fait rien.", + es: "Si no tienes la misma cantidad de cartas en tu mano que tu rival, este ataque no hace nada.", + it: "Se non hai lo stesso numero di carte in mano del tuo avversario, questo attacco non ha effetto.", + pt: "Se você não tiver o mesmo número de cartas na sua mão do que seu oponente, este ataque não fará nada.", + de: "Wenn du nicht genauso viele Karten auf der Hand hast wie dein Gegner, hat diese Attacke keine Auswirkungen." + }, + + damage: 170 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/072.ts b/data/Scarlet & Violet/Stellar Crown/072.ts new file mode 100644 index 000000000..0036a1491 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/072.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Cubone", + fr: "Osselait", + es: "Cubone", + it: "Cubone", + pt: "Cubone", + de: "Tragosso" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + 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: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/073.ts b/data/Scarlet & Violet/Stellar Crown/073.ts new file mode 100644 index 000000000..c3f85b47e --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/073.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Marowak", + fr: "Ossatueur", + es: "Marowak", + it: "Marowak", + pt: "Marowak", + de: "Knogga" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Growl", + fr: "Rugissement", + es: "Gruñido", + it: "Ruggito", + pt: "Rosnadura", + de: "Heuler" + }, + + effect: { + en: "During your opponent's next turn, attacks used by the Defending Pokémon do 40 less damage (before applying Weakness and Resistance).", + fr: "Pendant le prochain tour de votre adversaire, les attaques utilisées par le Pokémon Défenseur infligent 40 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 usados por el Pokémon Defensor hacen 40 puntos de daño menos (antes de aplicar Debilidad y Resistencia).", + it: "Durante il prossimo turno del tuo avversario, gli attacchi usati dal Pokémon difensore infliggono 40 danni in meno, prima di aver applicato debolezza e resistenza.", + pt: "Durante o próximo turno do seu oponente, os ataques usados pelo Pokémon Defensor causarão 40 pontos de dano a menos (antes de aplicar Fraqueza e Resistência).", + de: "Während des nächsten Zuges deines Gegners fügen die vom Verteidigenden Pokémon eingesetzten Attacken 40 Schadenspunkte weniger zu (bevor Schwäche und Resistenz verrechnet werden)." + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "Bone Vengeance", + fr: "Os Vengeur", + es: "Venganza Ósea", + it: "Ossorivalsa", + pt: "Vingança Óssea", + de: "Knochenvergeltung" + }, + + effect: { + en: "If any of your Benched Cubone have any damage counters on them, this attack does 120 more damage.", + fr: "Si au moins un marqueur de dégâts est placé sur au moins l'un de vos Osselait de Banc, cette attaque inflige 120 dégâts supplémentaires.", + es: "Si alguno de tus Cubone en Banca tiene algún contador de daño sobre él, este ataque hace 120 puntos de daño más.", + it: "Se uno qualsiasi dei tuoi Cubone in panchina ha dei segnalini danno, questo attacco infligge 120 danni in più.", + pt: "Se algum dos seus Cubone no Banco tiver algum contador de dano nele, este ataque causará 120 pontos de dano a mais.", + de: "Wenn auf mindestens 1 Tragosso auf deiner Bank mindestens 1 Schadensmarke liegt, fügt diese Attacke 120 Schadenspunkte mehr zu." + }, + + damage: "60+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/074.ts b/data/Scarlet & Violet/Stellar Crown/074.ts new file mode 100644 index 000000000..6f32593d9 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/074.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Rhyhorn", + fr: "Rhinocorne", + es: "Rhyhorn", + it: "Rhyhorn", + pt: "Rhyhorn", + de: "Rihorn" + }, + + rarity: "Common", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + en: "Horn Attack", + fr: "Koud'Korne", + es: "Cornada", + it: "Incornata", + pt: "Ataque de Chifre", + de: "Hornattacke" + }, + + damage: 50 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/075.ts b/data/Scarlet & Violet/Stellar Crown/075.ts new file mode 100644 index 000000000..2a635f5aa --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/075.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Rhydon", + fr: "Rhinoféros", + es: "Rhydon", + it: "Rhydon", + pt: "Rhydon", + de: "Rizeros" + }, + + rarity: "Common", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Destructive Horn", + fr: "Corne Destructrice", + es: "Cuerno Destructivo", + it: "Corno Distruttivo", + pt: "Chifre da Destruição", + de: "Zerstörerisches Horn" + }, + + effect: { + en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", + fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.", + it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.", + de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 80 + }], + + retreat: 4, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/076.ts b/data/Scarlet & Violet/Stellar Crown/076.ts new file mode 100644 index 000000000..ad88346df --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/076.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Rhyperior", + fr: "Rhinastoc", + es: "Rhyperior", + it: "Rhyperior", + pt: "Rhyperior", + de: "Rihornior" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 200, + types: ["Fighting"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Wide Wall", + fr: "Mur Large", + es: "Muro Ancho", + it: "Grande Muro", + pt: "Paredão", + de: "Breiter Wall" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, whenever your opponent plays a Supporter card from their hand, prevent all effects of that card done to all of your Pokémon.", + fr: "Tant que ce Pokémon est sur le Poste Actif, chaque fois que votre adversaire joue une carte Supporter de sa main, évitez tous les effets de cette carte infligés à tous vos Pokémon.", + es: "Mientras este Pokémon esté en el Puesto Activo, cada vez que tu rival juegue una carta de Partidario de su mano, se evitan todos los efectos de esa carta infligidos a cada uno de tus Pokémon.", + it: "Fintanto che questo Pokémon è in posizione attiva, ogni volta che il tuo avversario gioca una carta Aiuto dalla sua mano, previeni tutti gli effetti di quella carta sui tuoi Pokémon.", + pt: "Enquanto este Pokémon estiver no Campo Ativo, sempre que seu oponente jogar uma carta de Apoiador da mão dele, previna todos os efeitos daquela carta causados a todos os seus Pokémon.", + de: "Solange dieses Pokémon in der Aktiven Position ist, verhindere jedes Mal, wenn dein Gegner 1 Unterstützerkarte aus seiner Hand spielt, alle Effekte jener Karte, die allen deinen Pokémon zugefügt werden." + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Drill Run", + fr: "Tunnelier", + es: "Taladradora", + it: "Giravvita", + pt: "Furação", + de: "Schlagbohrer" + }, + + effect: { + en: "Discard an Energy from your opponent's Active Pokémon.", + fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Descarta 1 Energía del Pokémon Activo de tu rival.", + it: "Scarta un'Energia dal Pokémon attivo del tuo avversario.", + pt: "Descarte uma Energia do Pokémon Ativo do seu oponente.", + de: "Lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 180 + }], + + retreat: 4, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/077.ts b/data/Scarlet & Violet/Stellar Crown/077.ts new file mode 100644 index 000000000..1b5a98c11 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/077.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Meditite", + fr: "Méditikka", + es: "Meditite", + it: "Meditite", + pt: "Meditite", + de: "Meditie" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Beat", + fr: "Bataille", + es: "Toque", + it: "Battuta", + pt: "Pulso", + de: "Verprügler" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/078.ts b/data/Scarlet & Violet/Stellar Crown/078.ts new file mode 100644 index 000000000..b75ebba9b --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/078.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Meditite", + fr: "Méditikka", + es: "Meditite", + it: "Meditite", + pt: "Meditite", + de: "Meditie" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Calm Mind", + fr: "Plénitude", + es: "Paz Mental", + it: "Calmamente", + pt: "Mente Calma", + de: "Gedankengut" + }, + + effect: { + en: "Heal 20 damage from this Pokémon.", + fr: "Soignez 20 dégâts de ce Pokémon.", + es: "Cura 20 puntos de daño a este Pokémon.", + it: "Cura questo Pokémon da 20 danni.", + pt: "Cure 20 pontos de dano deste Pokémon.", + de: "Heile 20 Schadenspunkte bei diesem Pokémon." + } + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Chop", + fr: "Coup Tranchant", + es: "Cortar", + it: "Ceffone", + pt: "Trincar", + de: "Hacker" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/079.ts b/data/Scarlet & Violet/Stellar Crown/079.ts new file mode 100644 index 000000000..fd7a215e0 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/079.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Medicham", + fr: "Charmina", + es: "Medicham", + it: "Medicham", + pt: "Medicham", + de: "Meditalis" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Double Smash", + fr: "Double Broiement", + es: "Golpe Doble", + it: "Colpo Duplice", + pt: "Bordoada Dupla", + de: "Doppelstoß" + }, + + effect: { + en: "Flip 2 coins. This attack does 40 damage for each heads.", + fr: "Lancez 2 pièces. Cette attaque inflige 40 dégâts pour chaque côté face.", + es: "Lanza 2 monedas. Este ataque hace 40 puntos de daño por cada cara.", + it: "Lancia due volte una moneta. Questo attacco infligge 40 danni ogni volta che esce testa.", + pt: "Jogue 2 moedas. Este ataque causa 40 pontos de dano para cada cara.", + de: "Wirf 2 Münzen. Diese Attacke fügt 40 Schadenspunkte pro Kopf zu." + }, + + damage: "40×" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/080.ts b/data/Scarlet & Violet/Stellar Crown/080.ts new file mode 100644 index 000000000..3b1bb339c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/080.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Medicham ex", + fr: "Charmina-ex", + es: "Medicham ex", + it: "Medicham-ex", + pt: "Medicham ex", + de: "Meditalis-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Chi-Atsu", + fr: "Chi-Atsu", + es: "Qi-Atsu", + it: "Chi-Atsu", + pt: "Chi-Atsu", + de: "Chi-Atsu" + }, + + effect: { + en: "Put damage counters on your opponent's Active Pokémon until its remaining HP is 50.", + fr: "Placez des marqueurs de dégâts sur le Pokémon Actif de votre adversaire jusqu'à ce qu'il ne lui reste que 50 PV.", + es: "Pon contadores de daño en el Pokémon Activo de tu rival hasta que le queden 50 PS.", + it: "Metti dei segnalini danno sul Pokémon attivo del tuo avversario finché i suoi PS rimanenti diventano 50.", + pt: "Coloque contadores de dano no Pokémon Ativo do seu oponente até o PS restante dele ser 50.", + de: "Lege so lange Schadensmarken auf das Aktive Pokémon deines Gegners, bis seine verbleibenden KP gleich 50 sind." + } + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Yoga Kick", + fr: "Yoga Kick", + es: "Patada Yoga", + it: "Calcio Yoga", + pt: "Chute Ioga", + de: "Yogakick" + }, + + effect: { + en: "This attack's damage isn't affected by Weakness or Resistance.", + fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.", + es: "El daño de este ataque no se ve afectado por Debilidad o Resistencia.", + it: "I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza.", + pt: "O dano deste ataque não é afetado por Fraqueza ou Resistência.", + de: "Der Schaden dieser Attacke wird durch Schwäche oder Resistenz nicht verändert." + }, + + damage: 190 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/081.ts b/data/Scarlet & Violet/Stellar Crown/081.ts new file mode 100644 index 000000000..3b1199ccb --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/081.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Riolu", + fr: "Riolu", + es: "Riolu", + it: "Riolu", + pt: "Riolu", + de: "Riolu" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + en: "Punch", + fr: "Koud'Poing", + es: "Puño", + it: "Pugno", + pt: "Soco", + de: "Boxhieb" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/082.ts b/data/Scarlet & Violet/Stellar Crown/082.ts new file mode 100644 index 000000000..67025c59e --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/082.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lucario ex", + fr: "Lucario-ex", + es: "Lucario ex", + it: "Lucario-ex", + pt: "Lucario ex", + de: "Lucario-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 250, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + en: "Low Kick", + fr: "Balayage", + es: "Patada Baja", + it: "Colpo Basso", + pt: "Rasteira", + de: "Fußkick" + }, + + damage: 50 + }, { + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Aura Knuckle", + fr: "Poing Aura", + es: "Nudillo Aural", + it: "Aurapugno", + pt: "Punho de Aura", + de: "Aurafaust" + }, + + damage: 120 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/083.ts b/data/Scarlet & Violet/Stellar Crown/083.ts new file mode 100644 index 000000000..ecd9ae0df --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/083.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Mienfoo", + fr: "Kungfouine", + es: "Mienfoo", + it: "Mienfoo", + pt: "Mienfoo", + de: "Lin-Fu" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Knock Off", + fr: "Sabotage", + es: "Desarme", + it: "Privazione", + pt: "Derrubar", + de: "Abschlag" + }, + + effect: { + en: "Discard a random card from your opponent's hand.", + fr: "Défaussez au hasard une carte de la main de votre adversaire.", + es: "Descarta 1 carta aleatoria de la mano de tu rival.", + it: "Scarta una carta a caso dalla mano del tuo avversario.", + pt: "Descarte uma carta aleatória da mão do seu oponente.", + de: "Lege 1 zufällige Karte aus der Hand deines Gegners auf seinen Ablagestapel." + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/084.ts b/data/Scarlet & Violet/Stellar Crown/084.ts new file mode 100644 index 000000000..8cca67759 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/084.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Mienshao", + fr: "Shaofouine", + es: "Mienshao", + it: "Mienshao", + pt: "Mienshao", + de: "Wie-Shu" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Gale Roundhouse", + fr: "Coup Circulaire Bourrasque", + es: "Gancho Vendaval", + it: "Calcioraffica", + pt: "Chute Vendaval", + de: "Rundumwirbel" + }, + + effect: { + en: "If your opponent has 5 or fewer cards in their hand, this attack does 60 more damage.", + fr: "Si votre adversaire a 5 cartes ou moins dans sa main, cette attaque inflige 60 dégâts supplémentaires.", + es: "Si tu rival tiene 5 cartas o menos en su mano, este ataque hace 60 puntos de daño más.", + it: "Se il tuo avversario ha cinque o meno carte in mano, questo attacco infligge 60 danni in più.", + pt: "Se o seu oponente tiver 5 ou menos cartas na mão dele, este ataque causará 60 pontos de dano a mais.", + de: "Wenn dein Gegner 5 oder weniger Karten auf seiner Hand hat, fügt diese Attacke 60 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/085.ts b/data/Scarlet & Violet/Stellar Crown/085.ts new file mode 100644 index 000000000..1ca4c6d02 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/085.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Pancham", + fr: "Pandespiègle", + es: "Pancham", + it: "Pancham", + pt: "Pancham", + de: "Pam-Pam" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Leer", + fr: "Groz'Yeux", + es: "Malicioso", + it: "Fulmisguardo", + pt: "Encarar", + de: "Silberblick" + }, + + 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." + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "Low Kick", + fr: "Balayage", + es: "Patada Baja", + it: "Colpo Basso", + pt: "Rasteira", + de: "Fußkick" + }, + + damage: 20 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/086.ts b/data/Scarlet & Violet/Stellar Crown/086.ts new file mode 100644 index 000000000..adf2ff8ec --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/086.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Diancie", + fr: "Diancie", + es: "Diancie", + it: "Diancie", + pt: "Diancie", + de: "Diancie" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Diffuse Reflection", + fr: "Réflexion Diffuse", + es: "Refracción Dispersa", + it: "Riflesso Diffuso", + pt: "Difusão de Reflexo", + de: "Streureflektion" + }, + + effect: { + en: "This attack does 40 damage for each Special Energy attached to all of your opponent's Pokémon.", + fr: "Cette attaque inflige 40 dégâts pour chaque Énergie spéciale attachée à tous les Pokémon de votre adversaire.", + es: "Este ataque hace 40 puntos de daño por cada Energía Especial unida a cada uno de los Pokémon de tu rival.", + it: "Questo attacco infligge 40 danni per ogni Energia speciale assegnata ai Pokémon del tuo avversario.", + pt: "Este ataque causa 40 pontos de dano para cada Energia Especial ligada a todos os Pokémon do seu oponente.", + de: "Diese Attacke fügt für jede an alle Pokémon deines Gegners angelegte Spezial-Energie 40 Schadenspunkte zu." + }, + + damage: "40×" + }, { + cost: ["Fighting", "Colorless"], + + name: { + en: "Power Gem", + fr: "Rayon Gemme", + es: "Joya de Luz", + it: "Gemmoforza", + pt: "Gema Poderosa", + de: "Juwelenkraft" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/087.ts b/data/Scarlet & Violet/Stellar Crown/087.ts new file mode 100644 index 000000000..ff4ae29e7 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/087.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Crabrawler", + fr: "Crabagarre", + es: "Crabrawler", + it: "Crabrawler", + pt: "Crabrawler", + de: "Krabbox" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Vise Grip", + fr: "Force Poigne", + es: "Agarre", + it: "Presa", + pt: "Agarramento Compressor", + de: "Klammer" + }, + + damage: 20 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Crabhammer", + fr: "Pince-Masse", + es: "Martillazo", + it: "Martellata", + pt: "Martelo Caranguejo", + de: "Krabbhammer" + }, + + damage: 50 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/088.ts b/data/Scarlet & Violet/Stellar Crown/088.ts new file mode 100644 index 000000000..cb920020c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/088.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Falinks", + fr: "Hexadron", + es: "Falinks", + it: "Falinks", + pt: "Falinks", + de: "Legios" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Form Ranks", + fr: "Formation d'Escadron", + es: "En Formación", + it: "Formaschieramento", + pt: "Formação de Escalão", + de: "Formation bilden" + }, + + effect: { + en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 Pokémon Básicos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck." + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "All-Out Attack", + fr: "Attaque Totale", + es: "Ataque sin Cuartel", + it: "Attacco-Tutto-per-Tutto", + pt: "Atacar com Tudo", + de: "Volle Attacke" + }, + + effect: { + en: "If this Pokémon used Form Ranks during your last turn, this attack does 90 more damage.", + fr: "Si ce Pokémon a utilisé Formation d'Escadron pendant votre dernier tour, cette attaque inflige 90 dégâts supplémentaires.", + es: "Si este Pokémon usó En Formación durante tu último turno, este ataque hace 90 puntos de daño más.", + it: "Se questo Pokémon ha usato Formaschieramento durante il tuo ultimo turno, questo attacco infligge 90 danni in più.", + pt: "Se este Pokémon usou Formação de Escalão durante o seu último turno, este ataque causará 90 pontos de dano a mais.", + de: "Wenn dieses Pokémon während deines letzten Zuges Formation bilden eingesetzt hat, fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/089.ts b/data/Scarlet & Violet/Stellar Crown/089.ts new file mode 100644 index 000000000..1a962eefa --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/089.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Garganacl ex", + fr: "Gigansel-ex", + es: "Garganacl ex", + it: "Garganacl-ex", + pt: "Garganacl ex", + de: "Saltigant-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 340, + types: ["Fighting"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Salty Body", + fr: "Corps Salé", + es: "Cuerpo Salino", + it: "Corpo di Sale", + pt: "Corpo Salino", + de: "Salziger Körper" + }, + + effect: { + en: "This Pokémon can't be affected by any Special Conditions.", + fr: "Ce Pokémon ne peut être affecté par aucun État Spécial.", + es: "Este Pokémon no puede verse afectado por ninguna Condición Especial.", + it: "Questo Pokémon non può essere influenzato da condizioni speciali.", + pt: "Este Pokémon não pode ser afetado por quaisquer Condições Especiais.", + de: "Dieses Pokémon kann nicht von Speziellen Zuständen betroffen werden." + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Block Hammer", + fr: "Marteau Bloquant", + es: "Bloqueo Martillo", + it: "Bloccomartello", + pt: "Martelo Bloqueador", + de: "Blockhammer" + }, + + effect: { + en: "During your opponent's next turn, this Pokémon takes 60 less damage from attacks (after applying Weakness and Resistance).", + fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 60 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 60 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 60 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Durante o próximo turno do seu oponente, este Pokémon receberá 60 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 60 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + }, + + damage: 170 + }], + + retreat: 4, + regulationMark: "G", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/090.ts b/data/Scarlet & Violet/Stellar Crown/090.ts new file mode 100644 index 000000000..3421751ef --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/090.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Koraidon", + fr: "Koraidon", + es: "Koraidon", + it: "Koraidon", + pt: "Koraidon", + de: "Koraidon" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Fighting"], + + name: { + en: "Resolute Fang", + fr: "Croc Résolu", + es: "Colmillo Resuelto", + it: "Zanna Risoluta", + pt: "Presas Resolutas", + de: "Resolute Fänge" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 70 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex, cette attaque inflige 70 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival es un Pokémon ex, este ataque hace 70 puntos de daño más.", + it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex, questo attacco infligge 70 danni in più.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex, este ataque causará 70 pontos de dano a mais.", + de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex ist, fügt diese Attacke 70 Schadenspunkte mehr zu." + }, + + damage: "50+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/091.ts b/data/Scarlet & Violet/Stellar Crown/091.ts new file mode 100644 index 000000000..2bb01f5b3 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/091.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Gulpin", + fr: "Gloupti", + es: "Gulpin", + it: "Gulpin", + pt: "Gulpin", + de: "Schluppuck" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Drool", + fr: "Gluant", + es: "Babeo", + it: "Sbavare", + pt: "Babar", + de: "Sabbern" + }, + + damage: 10 + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Super Poison Breath", + fr: "Super Haleine Empoisonnée", + es: "Aliento Supervenenoso", + it: "Super Velenospiro", + pt: "Super-hálito Venenoso", + de: "Super-Gifthauch" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", + es: "El Pokémon Activo de tu rival pasa a estar Envenenado.", + it: "Il Pokémon attivo del tuo avversario viene avvelenato.", + pt: "O Pokémon Ativo do seu oponente agora está Envenenado.", + de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet." + }, + + damage: 30 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/092.ts b/data/Scarlet & Violet/Stellar Crown/092.ts new file mode 100644 index 000000000..356a4debd --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/092.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Swalot", + fr: "Avaltout", + es: "Swalot", + it: "Swalot", + pt: "Swalot", + de: "Schlukwech" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Devouring Mouth", + fr: "Bouche Dévoreuse", + es: "Boca Devoradora", + it: "Bocca Divoratrice", + pt: "Bocona Devoradora", + de: "Verschlingermaul" + }, + + effect: { + en: "If this Pokémon has more Energy attached than your opponent's Active Pokémon, this attack does 160 more damage.", + fr: "Si ce Pokémon a plus d'Énergies attachées que le Pokémon Actif de votre adversaire, cette attaque inflige 160 dégâts supplémentaires.", + es: "Si este Pokémon tiene más Energía unida que el Pokémon Activo de tu rival, este ataque hace 160 puntos de daño más.", + it: "Se questo Pokémon ha più Energie assegnate del Pokémon attivo del tuo avversario, questo attacco infligge 160 danni in più.", + pt: "Se este Pokémon tiver mais Energia ligada a ele do que o Pokémon Ativo do seu oponente, este ataque causará 160 pontos de dano a mais.", + de: "Wenn an dieses Pokémon mehr Energie angelegt ist als an das Aktive Pokémon deines Gegners, fügt diese Attacke 160 Schadenspunkte mehr zu." + }, + + damage: "10+" + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Venomous Hit", + fr: "Frappe Venimeuse", + es: "Golpe Venenoso", + it: "Colpo Velenoso", + pt: "Golpe Venenoso", + de: "Giftiger Schlag" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", + es: "El Pokémon Activo de tu rival pasa a estar Envenenado.", + it: "Il Pokémon attivo del tuo avversario viene avvelenato.", + pt: "O Pokémon Ativo do seu oponente agora está Envenenado.", + de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet." + }, + + damage: 100 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/093.ts b/data/Scarlet & Violet/Stellar Crown/093.ts new file mode 100644 index 000000000..64cbe52fb --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/093.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Pangoro", + fr: "Pandarbare", + es: "Pangoro", + it: "Pangoro", + pt: "Pangoro", + de: "Pandagro" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Pull", + fr: "Tirer", + es: "Tirar", + it: "Tira", + pt: "Puxar", + de: "Ziehen" + }, + + effect: { + en: "Switch in 1 of your opponent's Benched Pokémon to the Active Spot.", + fr: "Envoyez l'un des Pokémon de Banc de votre adversaire sur le Poste Actif.", + es: "Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo.", + it: "Sostituisci uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon in posizione attiva.", + pt: "Mande 1 dos Pokémon no Banco do seu oponente para o Campo Ativo.", + de: "Wechsle 1 Pokémon von der Bank deines Gegners in die Aktive Position ein." + } + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Tantrum", + fr: "Mauvaise Humeur", + es: "Rabieta", + it: "Collera", + pt: "Petulância", + de: "Rappel" + }, + + effect: { + en: "This Pokémon is now Confused.", + fr: "Ce Pokémon est maintenant Confus.", + es: "Este Pokémon pasa a estar Confundido.", + it: "Questo Pokémon viene confuso.", + pt: "Este Pokémon agora está Confuso.", + de: "Dieses Pokémon ist jetzt verwirrt." + }, + + damage: 160 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/094.ts b/data/Scarlet & Violet/Stellar Crown/094.ts new file mode 100644 index 000000000..e6a96b65c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/094.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Impidimp", + fr: "Grimalin", + es: "Impidimp", + it: "Impidimp", + pt: "Impidimp", + de: "Bähmon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Smack", + fr: "Claque", + es: "Palmetazo", + it: "Schiaffo", + pt: "Estalo", + de: "Klatscher" + }, + + damage: 10 + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Claw Slash", + fr: "Tranch'Griffe", + es: "Cuchillada Garra", + it: "Lacerartiglio", + pt: "Golpe de Garra", + de: "Klauenschlitzer" + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/095.ts b/data/Scarlet & Violet/Stellar Crown/095.ts new file mode 100644 index 000000000..33a26bbd0 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/095.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Morgrem", + fr: "Fourbelin", + es: "Morgrem", + it: "Morgrem", + pt: "Morgrem", + de: "Pelzebub" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Gentle Slap", + fr: "Gifle Douce", + es: "Bofetada Gentil", + it: "Schiaffetto", + pt: "Tapinha", + de: "Sanfter Hieb" + }, + + damage: 40 + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Darkness Fang", + fr: "Croc Obscur", + es: "Colmillo de Oscuridad", + it: "Oscurizanna", + pt: "Presa Sombria", + de: "Fänge der Dunkelheit" + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/096.ts b/data/Scarlet & Violet/Stellar Crown/096.ts new file mode 100644 index 000000000..dd341d485 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/096.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Grimmsnarl", + fr: "Angoliath", + es: "Grimmsnarl", + it: "Grimmsnarl", + pt: "Grimmsnarl", + de: "Olangaar" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 170, + types: ["Darkness"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Goad 'n' Grab", + fr: "Prise Provocatrice", + es: "Acoso y Derribo", + it: "Assillarraffa", + pt: "Chamar na Chincha", + de: "Köderklatsche" + }, + + effect: { + en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.) If you do, this attack does 160 damage to the new Active Pokémon.", + fr: "Envoyez le Pokémon Actif de votre adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.) Dans ce cas, cette attaque inflige 160 dégâts au nouveau Pokémon Actif.", + es: "Mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo). Si lo haces, este ataque hace 160 puntos de daño al nuevo Pokémon Activo.", + it: "Sposta il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo. Se lo fai, questo attacco infligge 160 danni al nuovo Pokémon attivo.", + pt: "Mande o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.) Se fizer isto, este ataque causará 160 pontos de dano ao novo Pokémon Ativo.", + de: "Wechsle das Aktive Pokémon deines Gegners auf seine Bank aus. (Dein Gegner wählt das neue Aktive Pokémon.) Wenn du das machst, fügt diese Attacke dem neuen Aktiven Pokémon 160 Schadenspunkte zu." + } + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Knuckle Sandwich", + fr: "Choc Poing", + es: "Puño a Bocajarro", + it: "Schiacciatina", + pt: "Soco Falso", + de: "Keile" + }, + + effect: { + en: "Discard 2 Energy from this Pokémon.", + fr: "Défaussez 2 Énergies de ce Pokémon.", + es: "Descarta 2 Energías de este Pokémon.", + it: "Scarta due Energie da questo Pokémon.", + pt: "Descarte 2 Energias deste Pokémon.", + de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 160 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/097.ts b/data/Scarlet & Violet/Stellar Crown/097.ts new file mode 100644 index 000000000..3f93a562a --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/097.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Bombirdier", + fr: "Lestombaile", + es: "Bombirdier", + it: "Bombirdier", + pt: "Bombirdier", + de: "Adebom" + }, + + rarity: "Common", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness", "Colorless"], + + 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 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: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/098.ts b/data/Scarlet & Violet/Stellar Crown/098.ts new file mode 100644 index 000000000..4d6153d47 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/098.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Jirachi", + fr: "Jirachi", + es: "Jirachi", + it: "Jirachi", + pt: "Jirachi", + de: "Jirachi" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 80, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Swelling Wish", + fr: "Souhait Grandissant", + es: "Deseo Rebosante", + it: "Desiderio Amplificato", + pt: "Desejo Crescente", + de: "Wachsender Wunsch" + }, + + effect: { + en: "Attach a Basic Energy card from your discard pile to 1 of your Benched Pokémon.", + fr: "Attachez une carte Énergie de base de votre pile de défausse à l'un de vos Pokémon de Banc.", + es: "Une 1 carta de Energía Básica de tu pila de descartes a uno de tus Pokémon en Banca.", + it: "Assegna a uno dei tuoi Pokémon in panchina una carta Energia base dalla tua pila degli scarti.", + pt: "Ligue uma carta de Energia Básica da sua pilha de descarte a 1 dos seus Pokémon no Banco.", + de: "Lege 1 Basis-Energiekarte aus deinem Ablagestapel an 1 Pokémon auf deiner Bank an." + } + }, { + cost: ["Metal", "Colorless"], + + name: { + en: "Slap", + fr: "Gifle", + es: "Bofetón", + it: "Sberla", + pt: "Tapa", + de: "Hieb" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/099.ts b/data/Scarlet & Violet/Stellar Crown/099.ts new file mode 100644 index 000000000..cc2c8956f --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/099.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Klink", + fr: "Tic", + es: "Klink", + it: "Klink", + pt: "Klink", + de: "Klikk" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Metal"], + 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: ["Colorless", "Colorless"], + + name: { + en: "Beam", + fr: "Rayon", + es: "Transmisión", + it: "Raggio", + pt: "Feixe", + de: "Strahl" + }, + + damage: 20 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/100.ts b/data/Scarlet & Violet/Stellar Crown/100.ts new file mode 100644 index 000000000..0f1fcce72 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/100.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Klang", + fr: "Clic", + es: "Klang", + it: "Klang", + pt: "Klang", + de: "Kliklak" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Metal"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Iron Tackle", + fr: "Charge de Fer", + es: "Bloqueo de Hierro", + it: "Azione Ferrea", + pt: "Golpe de Colisão Férreo", + de: "Eisentackle" + }, + + 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: 60 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/101.ts b/data/Scarlet & Violet/Stellar Crown/101.ts new file mode 100644 index 000000000..f7a83a3ed --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/101.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Klinklang", + fr: "Cliticlic", + es: "Klinklang", + it: "Klinklang", + pt: "Klinklang", + de: "Klikdiklak" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 140, + types: ["Metal"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Emergency Rotation", + fr: "Rotation d'Urgence", + es: "Rotación de Emergencia", + it: "Rotazione di Emergenza", + pt: "Rotação Emergencial", + de: "Notfallrotation" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in your hand and your opponent has any Stage 2 Pokémon in play, you may put this Pokémon onto your Bench.", + fr: "Une fois pendant votre tour, si ce Pokémon est dans votre main et que votre adversaire a au moins un Pokémon de Niveau 2 en jeu, vous pouvez placer ce Pokémon sur votre Banc.", + es: "Una vez durante tu turno, si este Pokémon está en tu mano y tu rival tiene algún Pokémon de Fase 2 en juego, puedes poner este Pokémon en tu Banca.", + it: "Una sola volta durante il tuo turno, se hai questo Pokémon in mano e il tuo avversario ha dei Pokémon di Fase 2 in gioco, puoi mettere questo Pokémon nella tua panchina.", + pt: "Uma vez durante o seu turno, se este Pokémon estiver na sua mão e seu oponente tiver algum Pokémon Estágio 2 em jogo, você poderá colocar este Pokémon no seu Banco.", + de: "Einmal während deines Zuges, wenn dieses Pokémon auf deiner Hand ist und dein Gegner mindestens 1 Phase-2-Pokémon im Spiel hat, kannst du dieses Pokémon auf deine Bank legen." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Hyper Ray", + fr: "Hyper Rayon", + es: "Hiperdescarga", + it: "Granraggio", + pt: "Hiperfeixe", + de: "Hyperlicht" + }, + + effect: { + en: "Discard all Energy from this Pokémon.", + fr: "Défaussez toutes les Énergies de ce Pokémon.", + es: "Descarta todas las Energías de este Pokémon.", + it: "Scarta tutte le Energie da questo Pokémon.", + pt: "Descarte todas as Energias deste Pokémon.", + de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 130 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/102.ts b/data/Scarlet & Violet/Stellar Crown/102.ts new file mode 100644 index 000000000..962166094 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/102.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Meltan", + fr: "Meltan", + es: "Meltan", + it: "Meltan", + pt: "Meltan", + de: "Meltan" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Stampede", + fr: "Ruée", + es: "Estampida", + it: "Fuggi Fuggi", + pt: "Estouro", + de: "Zertrampeln" + }, + + damage: 10 + }, { + cost: ["Metal", "Colorless", "Colorless"], + + name: { + en: "Beam", + fr: "Rayon", + es: "Transmisión", + it: "Raggio", + pt: "Feixe", + de: "Strahl" + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/103.ts b/data/Scarlet & Violet/Stellar Crown/103.ts new file mode 100644 index 000000000..84362b69d --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/103.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Meltan", + fr: "Meltan", + es: "Meltan", + it: "Meltan", + pt: "Meltan", + de: "Meltan" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Knickknack Carrying", + fr: "Trimballe Bricoles", + es: "Transporte de Chatarra", + it: "Trasporto di Cianfrusaglie", + pt: "Carregando Tranqueira", + de: "Klimbimtransport" + }, + + effect: { + en: "Search your deck for a Pokémon Tool card, reveal it, and put it into your hand. Then, shuffle your deck.", + fr: "Cherchez dans votre deck une carte Outil Pokémon, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.", + es: "Busca en tu baraja 1 carta de Herramienta Pokémon, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo una carta Oggetto Pokémon, mostrala e aggiungila alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por uma carta de Ferramenta Pokémon no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach 1 Pokémon-Ausrüstung, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + } + }, { + cost: ["Metal", "Colorless"], + + name: { + en: "Ram", + fr: "Collision", + es: "Apisonar", + it: "Carica", + pt: "Aríete", + de: "Ramme" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/104.ts b/data/Scarlet & Violet/Stellar Crown/104.ts new file mode 100644 index 000000000..3451c2b14 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/104.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Melmetal", + fr: "Melmetal", + es: "Melmetal", + it: "Melmetal", + pt: "Melmetal", + de: "Melmetal" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 160, + types: ["Metal"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Wrack Down", + fr: "Réduire en Poussière", + es: "Desmoronar", + it: "Abbattere", + pt: "Desmoronar", + de: "Niederschleudern" + }, + + damage: 50 + }, { + cost: ["Metal", "Colorless", "Colorless"], + + name: { + en: "Reforged Axe", + fr: "Hache Reforgée", + es: "Hacha Reforjada", + it: "Scure Riforgiata", + pt: "Machado Reforjado", + de: "Umgeschmiedete Axt" + }, + + effect: { + en: "Before doing damage, discard all Pokémon Tools from this Pokémon. If you can't discard any, this attack does nothing.", + fr: "Avant d'infliger des dégâts, défaussez toutes les cartes Outil Pokémon de ce Pokémon. Si vous ne pouvez pas en défausser, cette attaque ne fait rien.", + es: "Antes de infligir daño, descarta todas las Herramientas Pokémon de este Pokémon. Si no puedes descartar ninguna, este ataque no hace nada.", + it: "Prima di infliggere danni, scarta tutte le carte Oggetto Pokémon da questo Pokémon. Se non puoi scartarne, questo attacco non ha effetto.", + pt: "Antes de causar dano, descarte todas as Ferramentas Pokémon deste Pokémon. Se não puder descartar nenhuma, este ataque não fará nada.", + de: "Bevor du Schaden zufügst, lege alle Pokémon-Ausrüstungen von diesem Pokémon auf deinen Ablagestapel. Wenn du keine auf deinen Ablagestapel legen kannst, hat diese Attacke keine Auswirkungen." + }, + + damage: 250 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/105.ts b/data/Scarlet & Violet/Stellar Crown/105.ts new file mode 100644 index 000000000..a035ef551 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/105.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Melmetal ex", + fr: "Melmetal-ex", + es: "Melmetal ex", + it: "Melmetal-ex", + pt: "Melmetal ex", + de: "Melmetal-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 280, + types: ["Metal"], + stage: "Stage1", + + attacks: [{ + cost: ["Metal", "Metal", "Colorless", "Colorless"], + + name: { + en: "Iron Swing", + fr: "Frappe de Fer", + es: "Ferrogolpe", + it: "Ferrocolpo", + pt: "Giro Metálico", + de: "Eisenschwung" + }, + + effect: { + en: "Flip 2 coins. This attack does 100 damage for each heads.", + fr: "Lancez 2 pièces. Cette attaque inflige 100 dégâts pour chaque côté face.", + es: "Lanza 2 monedas. Este ataque hace 100 puntos de daño por cada cara.", + it: "Lancia due volte una moneta. Questo attacco infligge 100 danni ogni volta che esce testa.", + pt: "Jogue 2 moedas. Este ataque causa 100 pontos de dano para cada cara.", + de: "Wirf 2 Münzen. Diese Attacke fügt 100 Schadenspunkte pro Kopf zu." + }, + + damage: "100×" + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/106.ts b/data/Scarlet & Violet/Stellar Crown/106.ts new file mode 100644 index 000000000..648b2a872 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/106.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Duraludon", + fr: "Duralugon", + es: "Duraludon", + it: "Duraludon", + pt: "Duraludon", + de: "Duraludon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Hammer In", + fr: "Enfoncement", + es: "Martillear", + it: "Martello", + pt: "Martelada", + de: "Einhämmern" + }, + + damage: 30 + }, { + cost: ["Metal", "Metal", "Colorless"], + + name: { + en: "Raging Hammer", + fr: "Marteau Rageur", + es: "Martillo Furioso", + it: "Martelfuria", + pt: "Martelo Feroz", + de: "Wuthammer" + }, + + effect: { + en: "This attack does 10 more damage for each damage counter on this Pokémon.", + fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.", + es: "Este ataque hace 10 puntos de daño más por cada contador de daño en este Pokémon.", + it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente su questo Pokémon.", + pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano neste Pokémon.", + de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte mehr zu." + }, + + damage: "80+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/107.ts b/data/Scarlet & Violet/Stellar Crown/107.ts new file mode 100644 index 000000000..c12d786f1 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/107.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Archaludon", + fr: "Pondralugon", + es: "Archaludon", + it: "Archaludon", + pt: "Archaludon", + de: "Briduradon" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 180, + types: ["Metal"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Metal Bridge", + fr: "Pont Métal", + es: "Puente Metálico", + it: "Metalponte", + pt: "Ponte Metálica", + de: "Metallbrücke" + }, + + effect: { + en: "All of your Pokémon that have Metal Energy attached have no Retreat Cost.", + fr: "Vos Pokémon auxquels de l'Énergie Metal est attachée n'ont pas de Coût de Retraite.", + es: "Ninguno de tus Pokémon que tenga alguna Energía Metal unida tiene Coste de Retirada.", + it: "Tutti i tuoi Pokémon che hanno delle Energie Metal assegnate non hanno costo di ritirata.", + pt: "Todos os seus Pokémon que têm Energia Metal ligada a eles não têm custo de Recuo.", + de: "Alle deine Pokémon, an die Metal-Energie angelegt ist, haben keine Rückzugskosten." + } + }], + + attacks: [{ + cost: ["Metal", "Metal", "Colorless"], + + name: { + en: "Iron Blaster", + fr: "Explose-Fer", + es: "Explosión Férrea", + it: "Esplodiferro", + pt: "Detonador de Ferro", + de: "Eisenblaster" + }, + + 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: 2, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/108.ts b/data/Scarlet & Violet/Stellar Crown/108.ts new file mode 100644 index 000000000..174f4fff1 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/108.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Varoom", + fr: "Vrombi", + es: "Varoom", + it: "Varoom", + pt: "Varoom", + de: "Knattox" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Ram", + fr: "Collision", + es: "Apisonar", + it: "Carica", + pt: "Aríete", + de: "Ramme" + }, + + damage: 30 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/109.ts b/data/Scarlet & Violet/Stellar Crown/109.ts new file mode 100644 index 000000000..a170b1671 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/109.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Revavroom", + fr: "Vrombotor", + es: "Revavroom", + it: "Revavroom", + pt: "Revavroom", + de: "Knattatox" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 150, + types: ["Metal"], + stage: "Stage1", + + attacks: [{ + cost: ["Metal", "Colorless", "Colorless"], + + name: { + en: "Outta-Control Dash", + fr: "Ruée Incontrôlable", + es: "A Todo Gas", + it: "Corsa Senza Freni", + pt: "Investida Desgovernada", + de: "Furioses Flitzen" + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/110.ts b/data/Scarlet & Violet/Stellar Crown/110.ts new file mode 100644 index 000000000..414fb5996 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/110.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Orthworm ex", + fr: "Ferdeter-ex", + es: "Orthworm ex", + it: "Orthworm-ex", + pt: "Orthworm ex", + de: "Schlurm-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 220, + types: ["Metal"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Pummeling Payback", + fr: "Représailles Martelage", + es: "Venganza Demoledora", + it: "Rivincita Furiosa", + pt: "Vingança Demolidora", + de: "Faustdicke Vergeltung" + }, + + effect: { + en: "If this Pokémon is damaged by an attack from your opponent's Pokémon (even if this Pokémon is Knocked Out), put 2 damage counters on the Attacking Pokémon for each Metal Energy attached to this Pokémon.", + fr: "Si ce Pokémon subit les dégâts d'une attaque de l'un des Pokémon de votre adversaire (même si ce Pokémon est mis K.O.), placez 2 marqueurs de dégâts sur le Pokémon Attaquant pour chaque Énergie Metal attachée à ce Pokémon.", + es: "Si este Pokémon resulta dañado por un ataque de los Pokémon de tu rival (incluso si este Pokémon queda Fuera de Combate), pon 2 contadores de daño en el Pokémon Atacante por cada Energía Metal unida a este Pokémon.", + it: "Se questo Pokémon viene danneggiato da un attacco di un Pokémon del tuo avversario, anche se viene messo KO, metti due segnalini danno sul Pokémon attaccante per ogni Energia Metal assegnata a questo Pokémon.", + pt: "Se este Pokémon for danificado por um ataque dos Pokémon do seu oponente (mesmo que este Pokémon seja Nocauteado), coloque 2 contadores de dano no Pokémon Atacante para cada Energia Metal ligada a este Pokémon.", + de: "Wenn dieses Pokémon durch eine Attacke von Pokémon deines Gegners Schaden erhält (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 2 Schadensmarken auf das Angreifende Pokémon für jede an dieses Pokémon angelegte Metal-Energie." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Rock Tomb", + fr: "Tomberoche", + es: "Tumba Rocas", + it: "Rocciotomba", + pt: "Tumba de Rochas", + de: "Felsgrab" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 150 + }], + + retreat: 4, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/111.ts b/data/Scarlet & Violet/Stellar Crown/111.ts new file mode 100644 index 000000000..191dabe1c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/111.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Raging Bolt", + fr: "Ire-Foudre", + es: "Electrofuria", + it: "Furiatonante", + pt: "Raio Fúria", + de: "Furienblitz" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Fighting"], + + name: { + en: "Thunderburst Storm", + fr: "Tempête Foudroyante", + es: "Tormenta Atronadora", + it: "Tempesta di Tuoni", + pt: "Tempestade Trovejante", + de: "Gewittersturm" + }, + + effect: { + en: "This attack does 30 damage to 1 of your opponent's Pokémon for each Energy attached to this Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 30 dégâts à l'un des Pokémon de votre adversaire pour chaque Énergie attachée à ce Pokémon. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 30 puntos de daño a uno de los Pokémon de tu rival por cada Energía unida a este Pokémon. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 30 danni a uno dei Pokémon del tuo avversario per ogni Energia assegnata a questo Pokémon. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 30 pontos de dano a 1 dos Pokémon do seu oponente para cada Energia ligada a este Pokémon. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners für jede an dieses Pokémon angelegte Energie 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }, { + cost: ["Lightning", "Fighting", "Colorless"], + + name: { + en: "Dragon Headbutt", + fr: "Dracoud'Boule", + es: "Cabezazo Dragón", + it: "Dragozuccata", + pt: "Cabeçada do Dragão", + de: "Drachen-Kopfnuss" + }, + + damage: 130 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/112.ts b/data/Scarlet & Violet/Stellar Crown/112.ts new file mode 100644 index 000000000..a22838c07 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/112.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Tauros", + fr: "Tauros", + es: "Tauros", + it: "Tauros", + pt: "Tauros", + de: "Tauros" + }, + + rarity: "Common", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Destructive Horn", + fr: "Corne Destructrice", + es: "Cuerno Destructivo", + it: "Corno Distruttivo", + pt: "Chifre da Destruição", + de: "Zerstörerisches Horn" + }, + + effect: { + en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", + fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.", + it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.", + de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 70 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/113.ts b/data/Scarlet & Violet/Stellar Crown/113.ts new file mode 100644 index 000000000..514e4ee25 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/113.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Eevee", + fr: "Évoli", + es: "Eevee", + it: "Eevee", + pt: "Eevee", + de: "Evoli" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Call for Family", + fr: "Appel à la Famille", + es: "Llamar a la Familia", + it: "Cerca Famiglia", + pt: "Chamar a Família", + de: "Familienruf" + }, + + effect: { + en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja 1 Pokémon Básico y ponlo en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo un Pokémon Base e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por um Pokémon Básico no seu baralho e coloque-o no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach 1 Basis-Pokémon und lege es auf deine Bank. Mische anschließend dein Deck." + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "Gnaw", + fr: "Ronge", + es: "Roer", + it: "Rosicchiamento", + pt: "Roída", + de: "Nagen" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/114.ts b/data/Scarlet & Violet/Stellar Crown/114.ts new file mode 100644 index 000000000..4ac10911e --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/114.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Hoothoot", + fr: "Hoothoot", + es: "Hoothoot", + it: "Hoothoot", + pt: "Hoothoot", + de: "Hoothoot" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Triple Stab", + fr: "Aiguillon Triple", + es: "Triple Puñalada", + it: "Tripla Pugnalata", + pt: "Estocada Tripla", + de: "Triplexstich" + }, + + 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: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/115.ts b/data/Scarlet & Violet/Stellar Crown/115.ts new file mode 100644 index 000000000..0bba40214 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/115.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Noctowl", + fr: "Noarfang", + es: "Noctowl", + it: "Noctowl", + pt: "Noctowl", + de: "Noctuh" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Jewel Seeker", + fr: "Chercheur de Joyaux", + es: "Buscajoyas", + it: "Cercatore di Gemme", + pt: "Buscar Joias", + de: "Juwelenjäger" + }, + + effect: { + en: "Once during your turn, when you play this Pokémon from your hand to evolve 1 of your Pokémon, if you have any Tera Pokémon in play, you may search your deck for up to 2 Trainer cards, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Une fois pendant votre tour, lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon, si vous avez au moins un Pokémon Téracristal en jeu, vous pouvez chercher dans votre deck jusqu'à 2 cartes Dresseur, les montrer, puis les ajouter à votre main. Mélangez ensuite votre deck.", + es: "Una vez durante tu turno, cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon, si tienes algún Pokémon Teracristal en juego, puedes buscar en tu baraja hasta 2 cartas de Entrenador, enseñarlas y ponerlas en tu mano. Después, baraja las cartas de tu baraja.", + it: "Una sola volta durante il tuo turno, quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon, se hai dei Pokémon Teracristal in gioco, puoi cercare nel tuo mazzo fino a due carte Allenatore, mostrarle e aggiungerle alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Uma vez durante o seu turno, quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon, se você tiver algum Pokémon Tera em jogo, você poderá procurar por até 2 cartas de Treinador no seu baralho, revelá-las e colocá-las na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Einmal während deines Zuges, wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon zu entwickeln, kannst du, wenn du mindestens 1 Terakristall-Pokémon im Spiel hast, dein Deck nach bis zu 2 Trainerkarten durchsuchen, sie deinem Gegner zeigen und auf deine Hand nehmen. Mische anschließend dein Deck." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Speed Wing", + fr: "Ailes Vives", + es: "Ala Veloz", + it: "Alaveloce", + pt: "Asa da Velocidade", + de: "Turboschwinge" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/116.ts b/data/Scarlet & Violet/Stellar Crown/116.ts new file mode 100644 index 000000000..d806bd189 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/116.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Glameow", + fr: "Chaglam", + es: "Glameow", + it: "Glameow", + pt: "Glameow", + de: "Charmian" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Hook", + fr: "Crochet", + es: "Garfio", + it: "Uncino", + pt: "Gancho", + de: "Haken" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/117.ts b/data/Scarlet & Violet/Stellar Crown/117.ts new file mode 100644 index 000000000..1802d19d8 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/117.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Purugly", + fr: "Chaffreux", + es: "Purugly", + it: "Purugly", + pt: "Purugly", + de: "Shnurgarst" + }, + + rarity: "Common", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Nyan Roll", + fr: "Roulade Miaou", + es: "Vuelta Nyan", + it: "Ruota Felina", + pt: "Enrolar do Nyan", + de: "Miaurolle" + }, + + 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." + }, + + damage: 80 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/118.ts b/data/Scarlet & Violet/Stellar Crown/118.ts new file mode 100644 index 000000000..364515416 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/118.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Fan Rotom", + fr: "Motisma Hélice", + es: "Rotom Ventilador", + it: "Rotom Vortice", + pt: "Rotom Ventilador", + de: "Wirbel-Rotom" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Fan Call", + fr: "Appel Hélice", + es: "Llamada del Ventilador", + it: "Richiamovortice", + pt: "Chamado Ventiladoresco", + de: "Ruf des Ventilators" + }, + + effect: { + en: "Once during your first turn, you may search your deck for up to 3 Colorless Pokémon with 100 HP or less, reveal them, and put them into your hand. Then, shuffle your deck. You can't use more than 1 Fan Call Ability during your turn.", + fr: "Une fois pendant votre premier tour, vous pouvez chercher dans votre deck jusqu'à 3 Pokémon Colorless ayant 100 PV ou moins, les montrer, puis les ajouter à votre main. Mélangez ensuite votre deck. Vous ne pouvez utiliser qu'un talent Appel Hélice pendant votre tour.", + es: "Una vez durante tu primer turno, puedes buscar en tu baraja hasta 3 Pokémon Colorless con 100 PS o menos, enseñarlos y ponerlos en tu mano. Después, baraja las cartas de tu baraja. No puedes usar más de una habilidad Llamada del Ventilador durante tu turno.", + it: "Una sola volta durante il tuo primo turno, puoi cercare nel tuo mazzo fino a tre Pokémon Colorless con 100 PS o meno, mostrarli e aggiungerli alle carte che hai in mano. Poi rimischia le carte del tuo mazzo. Non puoi usare più di un'abilità Richiamovortice durante il tuo turno.", + pt: "Uma vez durante o seu primeiro turno, você poderá procurar por até 3 Pokémon Colorless com 100 PS ou menos no seu baralho, revelá-los e colocá-los na sua mão. Em seguida, embaralhe o seu baralho. Você não pode usar mais de 1 Habilidade Chamado Ventiladoresco durante o seu turno.", + de: "Einmal während deines ersten Zuges kannst du dein Deck nach bis zu 3 Colorless-Pokémon mit 100 oder weniger KP durchsuchen, sie deinem Gegner zeigen und auf deine Hand nehmen. Mische anschließend dein Deck. Du kannst die Fähigkeit Ruf des Ventilators nur einmal während deines Zuges einsetzen." + } + }], + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Assault Landing", + fr: "Atterrissage d'Assaut", + es: "Aterrizaje Asalto", + it: "Atterrassalto", + pt: "Aterrissagem Ofensiva", + de: "Angriffslandung" + }, + + effect: { + en: "If there is no Stadium in play, this attack does nothing.", + fr: "S'il n'y a pas de Stade en jeu, cette attaque ne fait rien.", + es: "Si no hay ningún Estadio en juego, este ataque no hace nada.", + it: "Se non c'è alcuna carta Stadio in gioco, questo attacco non ha effetto.", + pt: "Se não houver Estádio em jogo, este ataque não fará nada.", + de: "Wenn keine Stadionkarte im Spiel ist, hat diese Attacke keine Auswirkungen." + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/119.ts b/data/Scarlet & Violet/Stellar Crown/119.ts new file mode 100644 index 000000000..9be67be4f --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/119.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Bouffalant", + fr: "Frison", + es: "Bouffalant", + it: "Bouffalant", + pt: "Bouffalant", + de: "Bisofank" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Curly Wall", + fr: "Mur Frisé", + es: "Muro Rizo", + it: "Muroriccio", + pt: "Parede Crespa", + de: "Zottelwand" + }, + + effect: { + en: "As long as you have at least 1 other Bouffalant in play, all of your Basic Colorless Pokémon take 60 less damage from attacks from your opponent's Pokémon (after applying Weakness and Resistance). The effect of Curly Wall doesn't stack.", + fr: "Tant que vous avez au moins un autre Frison en jeu, tous vos Pokémon Colorless de base subissent 60 dégâts de moins provenant des attaques des Pokémon de votre adversaire (après application de la Faiblesse et de la Résistance). L'effet de Mur Frisé n'est pas cumulable.", + es: "Mientras tengas por lo menos a otro Bouffalant en juego, los ataques de los Pokémon de tu rival hacen 60 puntos de daño menos a todos tus Pokémon Colorless Básicos (después de aplicar Debilidad y Resistencia). El efecto de Muro Rizo no se acumula.", + it: "Fintanto che hai almeno un altro Bouffalant in gioco, i tuoi Pokémon Base Colorless subiscono 60 danni in meno dagli attacchi dei Pokémon del tuo avversario, dopo aver applicato debolezza e resistenza. L'effetto di Muroriccio non è cumulabile.", + pt: "Enquanto você tiver pelo menos 1 outro Bouffalant em jogo, todos os seus Pokémon Colorless Básicos receberão 60 pontos de dano a menos de ataques dos Pokémon do seu oponente (depois de aplicar Fraqueza e Resistência). O efeito de Parede Crespa não acumula.", + de: "Solange du mindestens 1 anderes Bisofank im Spiel hast, werden allen deinen Basis-Colorless-Pokémon durch Attacken von Pokémon deines Gegners 60 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden). Der Effekt von Zottelwand stapelt sich nicht." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Boundless Power", + fr: "Puissance Illimitée", + es: "Poder Ilimitado", + it: "Potere Incontenibile", + pt: "Poder Ilimitado", + de: "Unbegrenzte Kraft" + }, + + 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: 130 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/120.ts b/data/Scarlet & Violet/Stellar Crown/120.ts new file mode 100644 index 000000000..8d9e628a9 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/120.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Tornadus", + fr: "Boréas", + es: "Tornadus", + it: "Tornadus", + pt: "Tornadus", + de: "Boreos" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Knuckle Punch", + fr: "Coud'Phalange", + es: "Puño con Nudillos", + it: "Noccapugno", + pt: "Soco com Punho", + de: "Knöchelhieb" + }, + + damage: 50 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Storm Barrier", + fr: "Barrière Tempête", + es: "Barrera Tempestad", + it: "Barriera Tempestosa", + pt: "Barreira Tempestuosa", + de: "Sturmbarriere" + }, + + effect: { + en: "During your opponent's next turn, this Pokémon takes 50 less damage from attacks (after applying Weakness and Resistance).", + fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 50 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 50 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 50 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Durante o próximo turno do seu oponente, este Pokémon receberá 50 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 50 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + }, + + damage: 100 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/121.ts b/data/Scarlet & Violet/Stellar Crown/121.ts new file mode 100644 index 000000000..c83442639 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/121.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Fletchling", + fr: "Passerouge", + es: "Fletchling", + it: "Fletchling", + pt: "Fletchling", + de: "Dartiri" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Send Back", + fr: "Renvoyer", + es: "Retornar", + it: "Mandaindietro", + pt: "Mandar Embora", + de: "Zurückschicken" + }, + + effect: { + en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)", + fr: "Envoyez le Pokémon Actif de l'adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.)", + es: "Mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo).", + it: "Sposta il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo.", + pt: "Mande o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.)", + de: "Wechsle das Aktive Pokémon deines Gegners auf seine Bank aus. (Dein Gegner wählt das neue Aktive Pokémon.)" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/122.ts b/data/Scarlet & Violet/Stellar Crown/122.ts new file mode 100644 index 000000000..bf891d88f --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/122.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Fletchinder", + fr: "Braisillon", + es: "Fletchinder", + it: "Fletchinder", + pt: "Fletchinder", + de: "Dartignis" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Speed Dive", + fr: "Plongée Rapide", + es: "Picado Rápido", + it: "Immersione Rapida", + pt: "Mergulho Veloz", + de: "Tempohechtsprung" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/123.ts b/data/Scarlet & Violet/Stellar Crown/123.ts new file mode 100644 index 000000000..75cdcd19c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/123.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Talonflame", + fr: "Flambusard", + es: "Talonflame", + it: "Talonflame", + pt: "Talonflame", + de: "Fiaro" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Aero Chase", + fr: "Poursuite Aérienne", + es: "Persecución Aérea", + it: "Tallonamento Aereo", + pt: "Caçada Aérea", + de: "Aero-Jagd" + }, + + effect: { + en: "If the Retreat Cost of your opponent's Active Pokémon is ColorlessColorless or more, this attack does 110 more damage.", + fr: "Si le Coût de Retraite du Pokémon Actif de votre adversaire est de ColorlessColorless ou plus, cette attaque inflige 110 dégâts supplémentaires.", + es: "Si el Coste de Retirada del Pokémon Activo de tu rival es de ColorlessColorless o más, este ataque hace 110 puntos de daño más.", + it: "Se il costo di ritirata del Pokémon attivo del tuo avversario è ColorlessColorless o più, questo attacco infligge 110 danni in più.", + pt: "Se o custo de Recuo do Pokémon Ativo do seu oponente for ColorlessColorless ou mais, este ataque causará 110 pontos de dano a mais.", + de: "Wenn die Rückzugskosten des Aktiven Pokémon deines Gegners ColorlessColorless oder mehr betragen, fügt diese Attacke 110 Schadenspunkte mehr zu." + }, + + damage: "110+" + }], + + retreat: 0, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/124.ts b/data/Scarlet & Violet/Stellar Crown/124.ts new file mode 100644 index 000000000..0df594c17 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/124.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Wooloo", + fr: "Moumouton", + es: "Wooloo", + it: "Wooloo", + pt: "Wooloo", + de: "Wolly" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Knock Over", + fr: "Culbute", + es: "Tumbar", + it: "Sconvolgimento", + pt: "Arrebatar", + de: "Umwerfen" + }, + + effect: { + en: "You may discard a Stadium in play.", + fr: "Vous pouvez défausser un Stade en jeu.", + es: "Puedes descartar 1 Estadio en juego.", + it: "Puoi scartare una carta Stadio in gioco.", + pt: "Você pode descartar um Estádio em jogo.", + de: "Du kannst 1 Stadionkarte im Spiel auf den Ablagestapel legen." + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/125.ts b/data/Scarlet & Violet/Stellar Crown/125.ts new file mode 100644 index 000000000..8dd8ab1ac --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/125.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Dubwool", + fr: "Moumouflon", + es: "Dubwool", + it: "Dubwool", + pt: "Dubwool", + de: "Zwollock" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Soft Wool", + fr: "Laine Douce", + es: "Lana Suave", + it: "Lana Soffice", + pt: "Lã Fofinha", + de: "Weiche Wolle" + }, + + effect: { + en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).", + fr: "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: "Los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).", + it: "Questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Este Pokémon recebe 30 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).", + de: "Diesem Pokémon werden durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Knock Over", + fr: "Culbute", + es: "Tumbar", + it: "Sconvolgimento", + pt: "Arrebatar", + de: "Umwerfen" + }, + + effect: { + en: "You may discard a Stadium in play.", + fr: "Vous pouvez défausser un Stade en jeu.", + es: "Puedes descartar 1 Estadio en juego.", + it: "Puoi scartare una carta Stadio in gioco.", + pt: "Você pode descartar um Estádio em jogo.", + de: "Du kannst 1 Stadionkarte im Spiel auf den Ablagestapel legen." + }, + + damage: 70 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/126.ts b/data/Scarlet & Violet/Stellar Crown/126.ts new file mode 100644 index 000000000..205128fe5 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/126.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lechonk", + fr: "Gourmelet", + es: "Lechonk", + it: "Lechonk", + pt: "Lechonk", + de: "Ferkuli" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Rear Kick", + fr: "Ruade", + es: "Patada Trasera", + it: "Retrocalcio", + pt: "Chute Traseiro", + de: "Rückwärtskick" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/127.ts b/data/Scarlet & Violet/Stellar Crown/127.ts new file mode 100644 index 000000000..a0ea7e0f5 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/127.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Cyclizar", + fr: "Motorizard", + es: "Cyclizar", + it: "Cyclizar", + pt: "Cyclizar", + de: "Mopex" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Tail Snap", + fr: "Coud'Queue Sec", + es: "Pinza Cola", + it: "Schioccacoda", + pt: "Surpresa de Cauda", + de: "Schweifhieb" + }, + + damage: 10 + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "Speed Attack", + fr: "Attaque Rapide", + es: "Ataque Fugaz", + it: "Attacco Veloce", + pt: "Ataque em Velocidade", + de: "Tempoangriff" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/128.ts b/data/Scarlet & Violet/Stellar Crown/128.ts new file mode 100644 index 000000000..1988c571c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/128.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Terapagos ex", + fr: "Terapagos-ex", + es: "Terapagos ex", + it: "Terapagos-ex", + pt: "Terapagos ex", + de: "Terapagos-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Unified Beatdown", + fr: "Dérouillée Groupée", + es: "Golpe Unísono", + it: "Batosta all'Unisono", + pt: "Abater Unificado", + de: "Vereinter Niederprügler" + }, + + effect: { + en: "If you go second, you can't use this attack during your first turn. This attack does 30 damage for each of your Benched Pokémon.", + fr: "Si vous jouez en second, vous ne pouvez pas utiliser cette attaque pendant votre premier tour. Cette attaque inflige 30 dégâts pour chacun de vos Pokémon de Banc.", + es: "Si sales en segundo lugar, no puedes usar este ataque durante tu primer turno. Este ataque hace 30 puntos de daño por cada uno de tus Pokémon en Banca.", + it: "Se inizi per secondo, non puoi usare questo attacco durante il tuo primo turno. Questo attacco infligge 30 danni per ogni Pokémon nella tua panchina.", + pt: "Se você for o segundo a jogar, você não poderá usar este ataque durante o seu primeiro turno. Este ataque causa 30 pontos de dano para cada um dos seus Pokémon no Banco.", + de: "Wenn du als Zweiter am Zug bist, kannst du diese Attacke während deines ersten Zuges nicht einsetzen. Diese Attacke fügt für jedes Pokémon auf deiner Bank 30 Schadenspunkte zu." + }, + + damage: "30×" + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + en: "Crown Opal", + fr: "Couronne Opale", + es: "Ópalo Corona", + it: "Opale della Corona", + pt: "Coroa de Opalas", + de: "Kronen-Opal" + }, + + effect: { + en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic non-Colorless Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon non-Colorless de base.", + es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon no Colorless Básicos.", + it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base non di tipo Colorless.", + pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon Básicos que não sejam de tipo Colorless.", + de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon, die keine Colorless-Pokémon sind, zugefügt wird." + }, + + damage: 180 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/129.ts b/data/Scarlet & Violet/Stellar Crown/129.ts new file mode 100644 index 000000000..c08d58ee2 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/129.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Antique Cover Fossil", + fr: "Fossile Plaque Ancien", + es: "Fósil Tapa Antiguo", + it: "Vecchio Fossiltappo", + pt: "Fóssil Casca Arcaico", + de: "Antikes Schildfossil" + }, + + rarity: "Common", + category: "Trainer", + hp: 60, + + abilities: [{ + type: "Ability", + + name: { + en: "Protective Cover", + fr: "Plaque Protectrice", + es: "Tapa Protectora", + it: "Tappo Protettivo", + pt: "Casca Protetora", + de: "Schutzabdeckung" + }, + + 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.)" + } + }], + + effect: { + en: "Play this card as if it were a 60-HP Basic Colorless Pokémon. This card can't be affected by any Special Conditions and can't retreat.\n\nAt any time during your turn, you may discard this card from play.", + fr: "Jouez cette carte comme si c'était un Pokémon Colorless de base avec 60 PV. Cette carte ne peut être affectée par aucun État Spécial et ne peut pas battre en retraite.\nÀ tout moment pendant votre tour, vous pouvez défausser cette carte du jeu.", + es: "Juega esta carta como si fuera un Pokémon Colorless Básico de 60 PS. Esta carta no puede verse afectada por ninguna Condición Especial y no puede retirarse.\n\nEn cualquier momento durante tu turno, puedes descartar esta carta del juego.", + it: "Gioca questa carta come se fosse un Pokémon Base Colorless con 60 PS. Questa carta non può essere influenzata da condizioni speciali e non può ritirarsi.\nDurante il tuo turno, in qualsiasi momento, puoi scartare questa carta dal gioco.", + pt: "Jogue esta carta como se fosse um Pokémon Colorless Básico com PS 60. Esta carta não pode ser afetada por quaisquer Condições Especiais e não pode recuar.\nA qualquer momento durante o seu turno, você poderá descartar esta carta do jogo.", + de: "Spiele diese Karte, als ob sie ein Basis-Colorless-Pokémon mit 60 KP wäre. Diese Karte kann von keinen Speziellen Zuständen betroffen werden und sich nicht zurückziehen.\nDu kannst diese Karte jederzeit während deines Zuges aus dem Spiel nehmen und auf deinen Ablagestapel legen." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/130.ts b/data/Scarlet & Violet/Stellar Crown/130.ts new file mode 100644 index 000000000..14b34f3b9 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/130.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Antique Root Fossil", + fr: "Fossile Racine Ancien", + es: "Fósil Raíz Antiguo", + it: "Vecchio Radifossile", + pt: "Fóssil Raiz Arcaico", + de: "Antikes Wurzelfossil" + }, + + rarity: "Common", + category: "Trainer", + hp: 60, + + abilities: [{ + type: "Ability", + + name: { + en: "Primal Root", + fr: "Primo-Racine", + es: "Raíz Primigenia", + it: "Radice Primordiale", + pt: "Raiz Primitiva", + de: "Urzeitwurzel" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, attacks used by your opponent's Basic Pokémon cost Colorless more.", + fr: "Tant que ce Pokémon est sur le Poste Actif, les attaques utilisées par les Pokémon de base de votre adversaire coûtent Colorless de plus.", + es: "Mientras este Pokémon esté en el Puesto Activo, los ataques usados por los Pokémon Básicos de tu rival cuestan Colorless más.", + it: "Fintanto che questo Pokémon è in posizione attiva, il costo degli attacchi usati dai Pokémon Base del tuo avversario aumenta di Colorless.", + pt: "Enquanto este Pokémon estiver no Campo Ativo, os ataques usados pelos Pokémon Básicos do seu oponente custarão Colorless a mais.", + de: "Solange dieses Pokémon in der Aktiven Position ist, erhöhen sich die Kosten der von Basis-Pokémon deines Gegners eingesetzten Attacken um Colorless." + } + }], + + effect: { + en: "Play this card as if it were a 60-HP Basic Colorless Pokémon. This card can't be affected by any Special Conditions and can't retreat.\n\nAt any time during your turn, you may discard this card from play.", + fr: "Jouez cette carte comme si c'était un Pokémon Colorless de base avec 60 PV. Cette carte ne peut être affectée par aucun État Spécial et ne peut pas battre en retraite.\nÀ tout moment pendant votre tour, vous pouvez défausser cette carte du jeu.", + es: "Juega esta carta como si fuera un Pokémon Colorless Básico de 60 PS. Esta carta no puede verse afectada por ninguna Condición Especial y no puede retirarse.\n\nEn cualquier momento durante tu turno, puedes descartar esta carta del juego.", + it: "Gioca questa carta come se fosse un Pokémon Base Colorless con 60 PS. Questa carta non può essere influenzata da condizioni speciali e non può ritirarsi.\nDurante il tuo turno, in qualsiasi momento, puoi scartare questa carta dal gioco.", + pt: "Jogue esta carta como se fosse um Pokémon Colorless Básico com PS 60. Esta carta não pode ser afetada por quaisquer Condições Especiais e não pode recuar.\nA qualquer momento durante o seu turno, você poderá descartar esta carta do jogo.", + de: "Spiele diese Karte, als ob sie ein Basis-Colorless-Pokémon mit 60 KP wäre. Diese Karte kann von keinen Speziellen Zuständen betroffen werden und sich nicht zurückziehen.\nDu kannst diese Karte jederzeit während deines Zuges aus dem Spiel nehmen und auf deinen Ablagestapel legen." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/131.ts b/data/Scarlet & Violet/Stellar Crown/131.ts new file mode 100644 index 000000000..3e4ef91dd --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/131.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Area Zero Underdepths", + fr: "Abîme Zéro", + es: "Caverna Abisal Cero", + it: "Grande Abisso Zero", + pt: "Abismo da Área Zero", + de: "Höhlensystem Null" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Each player who has any Tera Pokémon in play can have up to 8 Pokémon on their Bench.\n\nIf a player no longer has any Tera Pokémon in play, that player discards Pokémon from their Bench until they have 5. When this card leaves play, both players discard Pokémon from their Bench until they have 5, and the player who played this card discards first.", + fr: "Chaque joueur ayant au moins un Pokémon Téracristal en jeu peut avoir jusqu'à 8 Pokémon sur son Banc.\nSi un joueur n'a plus de Pokémon Téracristal en jeu, ce joueur-là défausse ses Pokémon de Banc jusqu'à en avoir 5. Lorsque cette carte n'est plus en jeu, les deux joueurs défaussent leurs Pokémon de Banc jusqu'à en avoir 5, et le joueur qui a joué cette carte défausse en premier.", + es: "Cada jugador que tenga algún Pokémon Teracristal en juego puede tener hasta 8 Pokémon en su Banca.\n\nSi un jugador ya no tiene ningún Pokémon Teracristal en juego, ese jugador descarta Pokémon de su Banca hasta que tenga 5. Cuando esta carta ya no esté en juego, cada jugador descarta Pokémon de su Banca hasta que tenga 5, y el jugador que haya jugado esta carta descarta en primer lugar.", + it: "Ciascun giocatore che ha dei Pokémon Teracristal in gioco può avere fino a otto Pokémon in panchina.\nSe un giocatore non ha più Pokémon Teracristal in gioco, quel giocatore scarta\ndei Pokémon dalla sua panchina fino ad averne cinque. Quando questa carta viene rimossa dal gioco, entrambi i giocatori scartano dei Pokémon dalla propria panchina fino ad averne cinque e il giocatore che ha giocato questa carta scarta per primo.", + pt: "Cada jogador que tiver algum Pokémon Tera em jogo poderá ter até 8 Pokémon no próprio Banco.\nSe um jogador não tiver mais algum Pokémon Tera em jogo, aquele jogador descartará Pokémon do próprio Banco até ter 5. Quando esta carta sair de jogo, ambos os jogadores descartarão Pokémon do próprio Banco até terem 5, e o jogador que jogou esta carta descartará primeiro.", + de: "Jeder Spieler, der mindestens 1 Terakristall-Pokémon im Spiel hat, kann bis zu 8 Pokémon auf seiner Bank haben.\nWenn ein Spieler keine Terakristall-Pokémon mehr im Spiel hat, legt jener Spieler so lange Pokémon von seiner Bank auf seinen Ablagestapel, bis er 5 Pokémon auf seiner Bank hat. Wenn diese Karte das Spiel verlässt, legen beide Spieler so lange Pokémon von ihrer Bank auf ihren Ablagestapel, bis sie 5 Pokémon auf ihrer Bank haben, und der Spieler, der diese Karte gespielt hat, legt als Erster ab." + }, + + trainerType: "Stadium", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/132.ts b/data/Scarlet & Violet/Stellar Crown/132.ts new file mode 100644 index 000000000..6b6785f35 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/132.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Briar", + fr: "Bria", + es: "Brie", + it: "Rea", + pt: "Urzy", + de: "Brianna" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "You can use this card only if your opponent has exactly 2 Prize cards remaining.\n\nDuring this turn, if your opponent's Active Pokémon is Knocked Out by damage from an attack used by your Tera Pokémon, take 1 more Prize card.", + fr: "Vous ne pouvez utiliser cette carte que s'il reste exactement 2 cartes Récompense à votre adversaire.\nPendant ce tour, si le Pokémon Actif de votre adversaire est mis K.O. par les dégâts d'une attaque utilisée par vos Pokémon Téracristal, récupérez une carte Récompense supplémentaire.", + es: "Puedes usar esta carta solo si a tu rival le quedan exactamente 2 cartas de Premio.\n\nDurante este turno, si el Pokémon Activo de tu rival queda Fuera de Combate por el daño de un ataque usado por tus Pokémon Teracristal, coge 1 carta de Premio más.", + it: "Puoi usare questa carta solo se il tuo avversario ha esattamente due carte Premio rimanenti.\nDurante questo turno, se il Pokémon attivo del tuo avversario viene messo KO dai danni inflitti da un attacco\nusato da un tuo Pokémon Teracristal, prendi una carta Premio in più.", + pt: "Você só pode usar esta carta se o seu oponente tiver exatamente 2 cartas de Prêmio restantes.\nDurante este turno, se o Pokémon Ativo do seu oponente for Nocauteado pelo dano de um ataque usado pelos seus Pokémon Tera, pegue 1 carta de Prêmio a mais.", + de: "Du kannst diese Karte nur einsetzen, wenn dein Gegner genau 2 verbleibende Preiskarten hat.\nWenn das Aktive Pokémon deines Gegners während dieses Zuges durch Schaden einer von deinen Terakristall-Pokémon eingesetzten Attacke kampfunfähig wird, nimm 1 Preiskarte mehr." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/133.ts b/data/Scarlet & Violet/Stellar Crown/133.ts new file mode 100644 index 000000000..7d46cb21a --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/133.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Crispin", + fr: "Rubépin", + es: "Denis", + it: "Piros", + pt: "Plínio", + de: "Matt" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Search your deck for up to 2 Basic Energy cards of different types, reveal them, and put 1 of them into your hand. Attach the other to 1 of your Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base de types différents, montrez-les, puis ajoutez l'une d'elles à votre main. Attachez l'autre à l'un de vos Pokémon. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Básica de diferentes tipos, enséñalas y pon 1 de ellas en tu mano. Une la otra a uno de tus Pokémon. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due carte Energia base di tipo diverso, mostrale e aggiungine una alle carte che hai in mano. Assegna l'altra a uno dei tuoi Pokémon. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 cartas de Energia Básica de tipos diferentes no seu baralho, revele-as e coloque 1 delas na sua mão. Ligue a outra a 1 dos seus Pokémon. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten verschiedenen Typs, zeige sie deinem Gegner und nimm 1 von ihnen auf deine Hand. Lege die andere an 1 deiner Pokémon an. Mische anschließend dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/134.ts b/data/Scarlet & Violet/Stellar Crown/134.ts new file mode 100644 index 000000000..fb7a80480 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/134.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Deluxe Bomb", + fr: "Bombe Deluxe", + es: "Bomba Lujosa", + it: "Bomba Deluxe", + pt: "Bomba Deluxe", + de: "Luxusbombe" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is in the Active Spot and is damaged by an attack from your opponent's Pokémon (even if this Pokémon is Knocked Out), put 12 damage counters on the Attacking Pokémon. If you placed any damage counters in this way, discard this card.", + fr: "Si le Pokémon auquel cette carte est attachée est sur le Poste Actif et qu'il subit les dégâts d'une attaque d'un Pokémon de votre adversaire (même si ce Pokémon est mis K.O.), placez 12 marqueurs de dégâts sur le Pokémon Attaquant. Si vous avez placé au moins un marqueur de dégâts de cette façon, défaussez cette carte.", + es: "Si el Pokémon al que está unida esta carta está en el Puesto Activo y resulta dañado por un ataque de los Pokémon de tu rival (incluso si este Pokémon queda Fuera de Combate), pon 12 contadores de daño en el Pokémon Atacante. Si has puesto algún contador de daño de esta manera, descarta esta carta.", + it: "Se il Pokémon a cui è assegnata questa carta è in posizione attiva e viene danneggiato da un attacco di un Pokémon del tuo avversario, anche se viene messo KO, metti 12 segnalini danno sul Pokémon attaccante. Se hai messo dei segnalini danno in questo modo, scarta questa carta.", + pt: "Se o Pokémon ao qual esta carta está ligada estiver no Campo Ativo e for danificado por um ataque dos Pokémon do seu oponente (mesmo que este Pokémon seja Nocauteado), coloque 12 contadores de dano no Pokémon Atacante. Se você colocou algum contador de dano desta forma, descarte esta carta.", + de: "Wenn das Pokémon, an das diese Karte angelegt ist, in der Aktiven Position ist und durch eine Attacke von Pokémon deines Gegners Schaden erhält (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 12 Schadensmarken auf das Angreifende Pokémon. Wenn du auf diese Weise mindestens 1 Schadensmarke platziert hast, lege diese Karte auf deinen Ablagestapel." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/135.ts b/data/Scarlet & Violet/Stellar Crown/135.ts new file mode 100644 index 000000000..e9980551e --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/135.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Glass Trumpet", + fr: "Trompette de Verre", + es: "Trompeta de Cristal", + it: "Tromba di Vetro", + pt: "Trompete de Vidro", + de: "Glastrompete" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "You can use this card only if you have any Tera Pokémon in play.\n\nChoose up to 2 of your Benched Colorless Pokémon and attach a Basic Energy card from your discard pile to each of them.", + fr: "Vous ne pouvez utiliser cette carte que si vous avez au moins un Pokémon Téracristal en jeu.\nChoisissez jusqu'à 2 de vos Pokémon Colorless de Banc, puis attachez une carte Énergie de base de votre pile de défausse à chacun d'eux.", + es: "Puedes usar esta carta solo si tienes algún Pokémon Teracristal en juego.\n\nElige hasta 2 de tus Pokémon Colorless en Banca y une 1 carta de Energía Básica de tu pila de descartes a cada uno de ellos.", + it: "Puoi usare questa carta solo se hai dei Pokémon Teracristal in gioco.\nScegli fino a due dei tuoi Pokémon Colorless in panchina e assegna a ognuno di essi una carta Energia base dalla tua pila degli scarti.", + pt: "Você só pode usar esta carta se tiver algum Pokémon Tera em jogo.\nEscolha até 2 dos seus Pokémon Colorless no Banco e ligue uma carta de Energia Básica da sua pilha de descarte a cada um deles.", + de: "Du kannst diese Karte nur einsetzen, wenn du mindestens 1 Terakristall-Pokémon im Spiel hast.\nWähle bis zu 2 Colorless-Pokémon auf deiner Bank und lege 1 Basis-Energiekarte aus deinem Ablagestapel an jedes von ihnen an." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/136.ts b/data/Scarlet & Violet/Stellar Crown/136.ts new file mode 100644 index 000000000..91bc319fd --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/136.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Grand Tree", + fr: "Arbre Majestueux", + es: "Árbol Colosal", + it: "Albero Maestoso", + pt: "Árvore Grandiosa", + de: "Prachtbaum" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Once during each player's turn, that player may search their deck for a Stage 1 Pokémon that evolves from 1 of their Basic Pokémon and put it onto that Pokémon to evolve it. If that Pokémon was evolved in this way, that player may search their deck for a Stage 2 Pokémon that evolves from that Pokémon and put it onto that Pokémon to evolve it. Then, that player shuffles their deck. (Players can't evolve a Basic Pokémon during their first turn or a Basic Pokémon that was put into play this turn.)", + fr: "Une fois pendant le tour de chaque joueur, ce joueur-là peut chercher dans son deck un Pokémon de Niveau 1 qui évolue de l'un de ses Pokémon de base et le placer sur ce Pokémon-là pour le faire évoluer. Si ce Pokémon a évolué de cette façon, ce joueur peut chercher dans son deck un Pokémon de Niveau 2 qui évolue de ce Pokémon-là et le placer sur ce dernier pour le faire évoluer. Ce joueur mélange ensuite son deck. (Les joueurs ne peuvent pas faire évoluer un Pokémon de base pendant leur premier tour ou un Pokémon de base qui a été mis en jeu pendant ce tour.)", + es: "Una vez durante el turno de cada jugador, ese jugador puede buscar en su baraja 1 Pokémon de Fase 1 que evolucione de uno de sus Pokémon Básicos y ponerlo sobre ese Pokémon para hacerlo evolucionar. Si ese Pokémon ha evolucionado de esta manera, ese jugador puede buscar en su baraja 1 Pokémon de Fase 2 que evolucione de ese Pokémon y ponerlo sobre ese Pokémon para hacerlo evolucionar. Después, ese jugador baraja las cartas de su baraja. (Los jugadores no pueden hacer evolucionar a un Pokémon Básico durante su primer turno o a un Pokémon Básico que se haya puesto en juego en este turno).", + it: "Una sola volta durante il turno di ciascun giocatore, quel giocatore può cercare nel suo mazzo un Pokémon di Fase 1 che si evolve da uno dei suoi Pokémon Base e mettercelo sopra per farlo evolvere. Se quel Pokémon si è evoluto in questo modo, quel giocatore può cercare nel suo mazzo un Pokémon di Fase 2 che si evolve da quel Pokémon e mettercelo sopra per farlo evolvere. Poi quel giocatore rimischia le carte del suo mazzo. Non si può far evolvere un Pokémon Base durante il proprio primo turno né un Pokémon Base che è stato messo in gioco nel turno in corso.", + pt: "Uma vez durante o turno de cada jogador, aquele jogador poderá procurar no próprio baralho por um Pokémon Estágio 1 que evolua de 1 dos seus Pokémon Básicos e colocá-lo sobre aquele Pokémon para evoluí-lo. Se aquele Pokémon foi evoluído desta forma, aquele jogador poderá procurar no próprio baralho por um Pokémon Estágio 2 que evolua daquele Pokémon e colocá-lo sobre aquele Pokémon para evoluí-lo. Em seguida, aquele jogador embaralha o próprio baralho. (Os jogadores não podem evoluir um Pokémon Básico durante o primeiro turno deles ou um Pokémon Básico que foi colocado em jogo neste turno.)", + de: "Einmal während des Zuges jedes Spielers kann jener Spieler sein Deck nach 1 Phase-1-Pokémon, das sich aus 1 seiner Basis-Pokémon entwickelt, durchsuchen und es auf jenes Pokémon legen, um es zu entwickeln. Wenn jenes Pokémon auf diese Weise entwickelt wurde, kann jener Spieler sein Deck nach 1 Phase-2-Pokémon durchsuchen, das sich aus jenem Pokémon entwickelt, und es auf jenes Pokémon legen, um es zu entwickeln. Anschließend mischt jener Spieler sein Deck. (Spieler können während ihres ersten Zuges kein Basis-Pokémon entwickeln, und sie können kein Basis-Pokémon, das während dieses Zuges ins Spiel gebracht wurde, entwickeln.)" + }, + + trainerType: "Stadium", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/137.ts b/data/Scarlet & Violet/Stellar Crown/137.ts new file mode 100644 index 000000000..9734fbf96 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/137.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Gravity Gemstone", + fr: "Gemme Gravité", + es: "Gema Gravedad", + it: "Gemma Gravitazionale", + pt: "Gema da Gravidade", + de: "Erdanziehungsedelstein" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "As long as the Pokémon this card is attached to is in the Active Spot, the Retreat Cost of both Active Pokémon is Colorless more.", + fr: "Tant que le Pokémon auquel cette carte est attachée est sur le Poste Actif, le Coût de Retraite des deux Pokémon Actifs est augmenté de Colorless.", + es: "Mientras el Pokémon al que esté unida esta carta esté en el Puesto Activo, el Coste de Retirada de ambos Pokémon Activos es de Colorless más.", + it: "Fintanto che il Pokémon a cui è assegnata questa carta è in posizione attiva, il costo di ritirata di entrambi i Pokémon attivi aumenta di Colorless.", + pt: "Enquanto o Pokémon ao qual esta carta está ligada estiver no Campo Ativo, o custo de Recuo de ambos os Pokémon Ativos será Colorless a mais.", + de: "Solange das Pokémon, an das diese Karte angelegt ist, in der Aktiven Position ist, erhöhen sich die Rückzugskosten beider Aktiven Pokémon um Colorless." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/138.ts b/data/Scarlet & Violet/Stellar Crown/138.ts new file mode 100644 index 000000000..0297947e7 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/138.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Kofu", + fr: "Kombu", + es: "Fuco", + it: "Algaro", + pt: "Álgaro", + de: "Kombu" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Put 2 cards from your hand on the bottom of your deck in any order. If you put 2 cards on the bottom of your deck in this way, draw 4 cards. (If you can't put 2 cards from your hand on the bottom of your deck, you can't use this card.)", + fr: "Placez 2 cartes de votre main en dessous de votre deck dans l'ordre de votre choix. Si vous avez placé 2 cartes en dessous de votre deck de cette façon, piochez 4 cartes. (Si vous ne pouvez pas placer 2 cartes de votre main en dessous de votre deck, vous ne pouvez pas utiliser cette carte.)", + es: "Pon 2 cartas de tu mano en la parte inferior de tu baraja en el orden que quieras. Si pones 2 cartas en la parte inferior de tu baraja de esta manera, roba 4 cartas. (Si no puedes poner 2 cartas de tu mano en la parte inferior de tu baraja, no puedes usar esta carta).", + it: "Prendi due carte che hai in mano e mettile in fondo al tuo mazzo nell'ordine che preferisci. Se hai messo due carte in fondo al tuo mazzo in questo modo, pesca quattro carte. Se non puoi mettere due carte che hai in mano in fondo al tuo mazzo, non puoi usare questa carta.", + pt: "Coloque 2 cartas da sua mão como as cartas de baixo do seu baralho em qualquer ordem. Se você colocou 2 cartas como as cartas de baixo do seu baralho desta forma, compre 4 cartas. (Se você não puder colocar 2 cartas da sua mão como as cartas de baixo do seu baralho, não poderá usar esta carta.)", + de: "Lege 2 Karten aus deiner Hand in beliebiger Reihenfolge unter dein Deck. Wenn du auf diese Weise 2 Karten unter dein Deck gelegt hast, ziehe 4 Karten. (Wenn du nicht 2 Karten aus deiner Hand unter dein Deck legen kannst, kannst du diese Karte nicht einsetzen.)" + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/139.ts b/data/Scarlet & Violet/Stellar Crown/139.ts new file mode 100644 index 000000000..17331eb88 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/139.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lacey", + fr: "Taro", + es: "Aroa", + it: "Rupi", + pt: "Tarsila", + de: "Tara" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Shuffle your hand into your deck. Then, draw 4 cards. If your opponent has 3 or fewer Prize cards remaining, draw 8 cards instead.", + fr: "Mélangez votre main avec votre deck. Ensuite, piochez 4 cartes. S'il reste 3 cartes Récompense ou moins à votre adversaire, piochez 8 cartes à la place.", + es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 4 cartas. Si a tu rival le quedan 3 cartas de Premio o menos, roba 8 cartas en vez de 4.", + it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca quattro carte. Se il tuo avversario ha tre o meno carte Premio rimanenti, invece pescane otto.", + pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 4 cartas. Se o seu oponente tiver 3 ou menos cartas de Prêmio restantes, compre 8 cartas ao invés de 4.", + de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 4 Karten. Wenn dein Gegner 3 oder weniger verbleibende Preiskarten hat, ziehe stattdessen 8 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/140.ts b/data/Scarlet & Violet/Stellar Crown/140.ts new file mode 100644 index 000000000..69465787c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/140.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Occa Berry", + fr: "Baie Chocco", + es: "Baya Caoca", + it: "Baccacao", + pt: "Fruta Cau", + de: "Koakobeere" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is damaged by an attack from your opponent's Fire Pokémon, it takes 60 less damage (after applying Weakness and Resistance), and discard this card.", + fr: "Si le Pokémon auquel cette carte est attachée subit les dégâts d'une attaque de l'un des Pokémon Fire de votre adversaire, il subit 60 dégâts de moins (après application de la Faiblesse et de la Résistance), et vous défaussez cette carte.", + es: "Si el Pokémon al que está unida esta carta resulta dañado por un ataque de los Pokémon Fire de tu rival, ese ataque le hace 60 puntos de daño menos (después de aplicar Debilidad y Resistencia), y descartas esta carta.", + it: "Se il Pokémon a cui è assegnata questa carta viene danneggiato da un attacco di un Pokémon Fire del tuo avversario, subisce 60 danni in meno, dopo aver applicato debolezza e resistenza, e tu scarti questa carta.", + pt: "Se o Pokémon ao qual esta carta está ligada for danificado por um ataque dos Pokémon Fire do seu oponente, ele receberá 60 pontos de dano a menos (depois de aplicar Fraqueza e Resistência), e descarte esta carta.", + de: "Wenn das Pokémon, an das diese Karte angelegt ist, durch eine Attacke von Fire-Pokémon deines Gegners Schaden erhält, werden ihm 60 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden), und du legst diese Karte auf deinen Ablagestapel." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/141.ts b/data/Scarlet & Violet/Stellar Crown/141.ts new file mode 100644 index 000000000..ecebaa7b4 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/141.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Payapa Berry", + fr: "Baie Yapap", + es: "Baya Payapa", + it: "Baccapayapa", + pt: "Fruta Paiapa", + de: "Pyapabeere" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is damaged by an attack from your opponent's Psychic Pokémon, it takes 60 less damage (after applying Weakness and Resistance), and discard this card.", + fr: "Si le Pokémon auquel cette carte est attachée subit les dégâts d'une attaque de l'un des Pokémon Psychic de votre adversaire, il subit 60 dégâts de moins (après application de la Faiblesse et de la Résistance), et vous défaussez cette carte.", + es: "Si el Pokémon al que está unida esta carta resulta dañado por un ataque de los Pokémon Psychic de tu rival, ese ataque le hace 60 puntos de daño menos (después de aplicar Debilidad y Resistencia), y descartas esta carta.", + it: "Se il Pokémon a cui è assegnata questa carta viene danneggiato da un attacco di un Pokémon Psychic del tuo avversario, subisce 60 danni in meno, dopo aver applicato debolezza e resistenza, e tu scarti questa carta.", + pt: "Se o Pokémon ao qual esta carta está ligada for danificado por um ataque dos Pokémon Psychic do seu oponente, ele receberá 60 pontos de dano a menos (depois de aplicar Fraqueza e Resistência), e descarte esta carta.", + de: "Wenn das Pokémon, an das diese Karte angelegt ist, durch eine Attacke von Psychic-Pokémon deines Gegners Schaden erhält, werden ihm 60 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden), und du legst diese Karte auf deinen Ablagestapel." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/142.ts b/data/Scarlet & Violet/Stellar Crown/142.ts new file mode 100644 index 000000000..d5a3a97e1 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/142.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Sparkling Crystal", + fr: "Cristal Scintillant", + es: "Cristal Brillante", + it: "Cristallo Scintillante", + pt: "Cristal Cintilante", + de: "Funkelnder Kristall" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "When the Tera Pokémon this card is attached to uses an attack, that attack costs 1 Energy less. (The Energy can be of any type.)", + fr: "Lorsque le Pokémon Téracristal auquel cette carte est attachée utilise une attaque, cette attaque-là coûte une Énergie de moins. (Cette Énergie peut être de tout type.)", + es: "Cuando el Pokémon Teracristal al que está unida esta carta usa un ataque, ese ataque cuesta una Energía menos. (La Energía puede ser de cualquier tipo).", + it: "Quando il Pokémon Teracristal a cui è assegnata questa carta usa un attacco, quell'attacco costa un'Energia in meno. L'Energia può essere di qualsiasi tipo.", + pt: "Quando o Pokémon Tera ao qual esta carta está ligada usar um ataque, aquele ataque custará 1 Energia a menos. (A Energia pode ser de qualquer tipo.)", + de: "Wenn das Terakristall-Pokémon, an das diese Karte angelegt ist, eine Attacke einsetzt, verringern sich die Kosten jener Attacke um 1 Energie. (Die Energie kann beliebigen Typs sein.)" + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/143.ts b/data/Scarlet & Violet/Stellar Crown/143.ts new file mode 100644 index 000000000..e440b1b95 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/143.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Bulbasaur", + fr: "Bulbizarre", + es: "Bulbasaur", + it: "Bulbasaur", + pt: "Bulbasaur", + de: "Bisasam" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Leech Seed", + fr: "Vampigraine", + es: "Drenadoras", + it: "Parassiseme", + pt: "Semente Sanguessuga", + de: "Egelsamen" + }, + + effect: { + en: "Heal 20 damage from this Pokémon.", + fr: "Soignez 20 dégâts de ce Pokémon.", + es: "Cura 20 puntos de daño a este Pokémon.", + it: "Cura questo Pokémon da 20 danni.", + pt: "Cure 20 pontos de dano deste Pokémon.", + de: "Heile 20 Schadenspunkte bei diesem Pokémon." + }, + + damage: 20 + }], + + retreat: 2, + regulationMark: "G", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/144.ts b/data/Scarlet & Violet/Stellar Crown/144.ts new file mode 100644 index 000000000..bba34d148 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/144.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Ledian", + fr: "Coxyclaque", + es: "Ledian", + it: "Ledian", + pt: "Ledian", + de: "Ledian" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 90, + types: ["Grass"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Glittering Star Pattern", + fr: "Motif Étoile Scintillante", + es: "Motivo de Estrellas Brillantes", + it: "Motivo Stellato Brillante", + pt: "Pintas de Estrelas Cintilantes", + de: "Funkelndes Sternenmuster" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may switch in 1 of your opponent's Benched Pokémon that has 90 HP or less remaining to the Active Spot.", + fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez envoyer sur le Poste Actif l'un des Pokémon de Banc de votre adversaire auquel il reste 90 PV ou moins.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes cambiar 1 de los Pokémon en Banca de tu rival al que le queden 90 PS o menos por el Pokémon que esté en el Puesto Activo.", + it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi sostituire uno dei Pokémon nella panchina del tuo avversario che ha 90 PS o meno rimanenti con il suo Pokémon in posizione attiva.", + pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá mandar 1 dos Pokémon no Banco do seu oponente que tiver PS restante de 90 ou menos para o Campo Ativo.", + de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du 1 Pokémon von der Bank deines Gegners, das 90 oder weniger verbleibende KP hat, in die Aktive Position einwechseln." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Swift", + fr: "Météores", + es: "Meteoros", + it: "Comete", + pt: "Ataque Veloz", + de: "Sternschauer" + }, + + effect: { + en: "This attack's damage isn't affected by Weakness or Resistance, or by any effects on your opponent's Active Pokémon.", + fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout effet en action sur le Pokémon Actif de votre adversaire.", + es: "El daño de este ataque no se ve afectado por Debilidad o Resistencia, ni por ningún efecto en el Pokémon Activo de tu rival.", + it: "I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza, o da alcun effetto presente sul Pokémon attivo del tuo avversario.", + pt: "O dano deste ataque não é afetado por Fraqueza ou Resistência, ou por quaisquer efeitos no Pokémon Ativo do seu oponente.", + de: "Der Schaden dieser Attacke wird durch Schwäche, Resistenz oder Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert." + }, + + damage: 70 + }], + + retreat: 0, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/145.ts b/data/Scarlet & Violet/Stellar Crown/145.ts new file mode 100644 index 000000000..4992a2a6b --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/145.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lileep", + fr: "Lilia", + es: "Lileep", + it: "Lileep", + pt: "Lileep", + de: "Liliep" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 100, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Bind Down", + fr: "Astreinte", + es: "Amarrar", + it: "Legafermo", + pt: "Aprisionamento", + de: "Anbinden" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 50 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/146.ts b/data/Scarlet & Violet/Stellar Crown/146.ts new file mode 100644 index 000000000..091ffae1b --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/146.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Turtonator", + fr: "Boumata", + es: "Turtonator", + it: "Turtonator", + pt: "Turtonator", + de: "Tortunator" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Ring of Fire", + fr: "Anneau de Feu", + es: "Anillo de Fuego", + it: "Anello di Fuoco", + pt: "Anel de Fogo", + de: "Feuerring" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Burned. During your opponent's next turn, that Pokémon can't retreat.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé. Pendant le prochain tour de votre adversaire, ce Pokémon-là ne peut pas battre en retraite.", + es: "El Pokémon Activo de tu rival pasa a estar Quemado. Durante el próximo turno de tu rival, ese Pokémon no puede retirarse.", + it: "Il Pokémon attivo del tuo avversario viene bruciato. Durante il prossimo turno del tuo avversario, quel Pokémon non può ritirarsi.", + pt: "O Pokémon Ativo do seu oponente agora está Queimado. Durante o próximo turno do seu oponente, aquele Pokémon não poderá recuar.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt. Während des nächsten Zuges deines Gegners kann sich jenes Pokémon nicht zurückziehen." + }, + + damage: 50 + }, { + cost: ["Fire", "Fire", "Colorless", "Colorless"], + + name: { + en: "Inferno Onrush", + fr: "Torrent d'Enfer", + es: "Infierno Desatado", + it: "Assalto Infernale", + pt: "Investida Infernal", + de: "Inferno-Ansturm" + }, + + effect: { + en: "This Pokémon also does 60 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 60 dégâts.", + es: "Este Pokémon también se hace 60 puntos de daño a sí mismo.", + it: "Questo Pokémon infligge anche 60 danni a se stesso.", + pt: "Este Pokémon também causa 60 pontos de dano a si mesmo.", + de: "Dieses Pokémon fügt auch sich selbst 60 Schadenspunkte zu." + }, + + damage: 180 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/147.ts b/data/Scarlet & Violet/Stellar Crown/147.ts new file mode 100644 index 000000000..95858d47d --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/147.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Raboot", + fr: "Lapyro", + es: "Raboot", + it: "Raboot", + pt: "Raboot", + de: "Kickerlo" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 90, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Low Sweep", + fr: "Balayette", + es: "Puntapié", + it: "Calciobasso", + pt: "Movimento Baixo", + de: "Fußtritt" + }, + + damage: 30 + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Combustion", + fr: "Fournaise", + es: "Combustión", + it: "Fuoco Continuo", + pt: "Combustão", + de: "Glühen" + }, + + damage: 60 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/148.ts b/data/Scarlet & Violet/Stellar Crown/148.ts new file mode 100644 index 000000000..655b7ca38 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/148.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Squirtle", + fr: "Carapuce", + es: "Squirtle", + it: "Squirtle", + pt: "Squirtle", + de: "Schiggy" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Withdraw", + fr: "Repli", + es: "Refugio", + it: "Ritirata", + pt: "Retirada", + de: "Panzerschutz" + }, + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage done to this Pokémon by attacks.", + fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques.", + es: "Lanza 1 moneda. Si sale cara, durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques.", + it: "Lancia una moneta. Se esce testa, durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon da qualsiasi attacco.", + pt: "Jogue uma moeda. Se sair cara, durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques.", + de: "Wirf 1 Münze. Verhindere bei Kopf während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken zugefügt wird." + } + }, { + cost: ["Water", "Water"], + + name: { + en: "Skull Bash", + fr: "Coud'Krâne", + es: "Cabezazo", + it: "Capocciata", + pt: "Quebra-crânio", + de: "Schädelwumme" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "G", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/149.ts b/data/Scarlet & Violet/Stellar Crown/149.ts new file mode 100644 index 000000000..64e39c2de --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/149.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Crabominable", + fr: "Crabominable", + es: "Crabominable", + it: "Crabominable", + pt: "Crabominable", + de: "Krawell" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 160, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Food Prep", + fr: "Préparation de Repas", + es: "Preparar la Comida", + it: "Preparacibo", + pt: "Preparação de Marmitas", + de: "Zubereitung" + }, + + effect: { + en: "Attacks used by this Pokémon cost Colorless less for each Kofu card in your discard pile.", + fr: "Les attaques utilisées par ce Pokémon coûtent Colorless de moins pour chaque carte Kombu dans votre pile de défausse.", + es: "Los ataques usados por este Pokémon cuestan Colorless menos por cada carta de Fuco en tu pila de descartes.", + it: "Il costo degli attacchi usati da questo Pokémon è ridotto di Colorless per ogni carta Algaro nella tua pila degli scarti.", + pt: "Os ataques usados por este Pokémon custam Colorless a menos para cada carta Álgaro na sua pilha de descarte.", + de: "Die Kosten der von diesem Pokémon eingesetzten Attacken verringern sich für jede Kombu-Karte in deinem Ablagestapel um Colorless." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Haymaker", + fr: "Coup de Poing Fracassant", + es: "Golpazo", + it: "Pugno Tremendo", + pt: "Golpe Arrasador", + de: "Schwinger" + }, + + effect: { + en: "During your next turn, this Pokémon can't use Haymaker.", + fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup de Poing Fracassant.", + es: "Durante tu próximo turno, este Pokémon no puede usar Golpazo.", + it: "Durante il tuo prossimo turno, questo Pokémon non può usare Pugno Tremendo.", + pt: "Durante o seu próximo turno, este Pokémon não poderá usar Golpe Arrasador.", + de: "Während deines nächsten Zuges kann dieses Pokémon Schwinger nicht einsetzen." + }, + + damage: 250 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/150.ts b/data/Scarlet & Violet/Stellar Crown/150.ts new file mode 100644 index 000000000..798eb3f1a --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/150.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Joltik", + fr: "Statitik", + es: "Joltik", + it: "Joltik", + pt: "Joltik", + de: "Wattzapf" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 30, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Jolting Charge", + fr: "Recharge Statique", + es: "Jolgorio de Voltios", + it: "Scossacarica", + pt: "Carga Eletrizante", + de: "Wattladung" + }, + + effect: { + en: "Search your deck for up to 2 Basic Grass Energy cards and up to 2 Basic Lightning Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Grass de base et jusqu'à 2 cartes Énergie Lightning de base, puis attachez-les à vos Pokémon comme il vous plaît. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Grass Básica y hasta 2 cartas de Energía Lightning Básica y únelas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due carte Energia base Grass e fino a due carte Energia base Lightning e assegnale ai tuoi Pokémon nel modo che preferisci. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 cartas de Energia Grass Básica e até 2 cartas de Energia Lightning Básica no seu baralho e ligue-as aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Grass-Energiekarten und bis zu 2 Basis-Lightning-Energiekarten und lege sie beliebig an deine Pokémon an. Mische anschließend dein Deck." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/151.ts b/data/Scarlet & Violet/Stellar Crown/151.ts new file mode 100644 index 000000000..8125875e6 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/151.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Zeraora", + fr: "Zeraora", + es: "Zeraora", + it: "Zeraora", + pt: "Zeraora", + de: "Zeraora" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Combat Thunder", + fr: "Tonnerre Combat", + es: "Trueno Combativo", + it: "Combattuono", + pt: "Trovão Combatente", + de: "Gefechtsdonner" + }, + + effect: { + en: "This attack does 20 more damage for each of your opponent's Benched Pokémon.", + fr: "Cette attaque inflige 20 dégâts supplémentaires pour chacun des Pokémon de Banc de votre adversaire.", + es: "Este ataque hace 20 puntos de daño más por cada uno de los Pokémon en Banca de tu rival.", + it: "Questo attacco infligge 20 danni in più per ogni Pokémon nella panchina del tuo avversario.", + pt: "Este ataque causa 20 pontos de dano a mais para cada Pokémon no Banco do seu oponente.", + de: "Diese Attacke fügt für jedes Pokémon auf der Bank deines Gegners 20 Schadenspunkte mehr zu." + }, + + damage: "20+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/152.ts b/data/Scarlet & Violet/Stellar Crown/152.ts new file mode 100644 index 000000000..bc28cf9ad --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/152.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Milcery", + fr: "Crèmy", + es: "Milcery", + it: "Milcery", + pt: "Milcery", + de: "Hokumil" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Mumble", + fr: "Murmure", + es: "Farfullar", + it: "Borbottio", + pt: "Resmungo", + de: "Grummeln" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/153.ts b/data/Scarlet & Violet/Stellar Crown/153.ts new file mode 100644 index 000000000..a9ff47afd --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/153.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Meditite", + fr: "Méditikka", + es: "Meditite", + it: "Meditite", + pt: "Meditite", + de: "Meditie" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Calm Mind", + fr: "Plénitude", + es: "Paz Mental", + it: "Calmamente", + pt: "Mente Calma", + de: "Gedankengut" + }, + + effect: { + en: "Heal 20 damage from this Pokémon.", + fr: "Soignez 20 dégâts de ce Pokémon.", + es: "Cura 20 puntos de daño a este Pokémon.", + it: "Cura questo Pokémon da 20 danni.", + pt: "Cure 20 pontos de dano deste Pokémon.", + de: "Heile 20 Schadenspunkte bei diesem Pokémon." + } + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Chop", + fr: "Coup Tranchant", + es: "Cortar", + it: "Ceffone", + pt: "Trincar", + de: "Hacker" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/154.ts b/data/Scarlet & Violet/Stellar Crown/154.ts new file mode 100644 index 000000000..964139892 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/154.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Gulpin", + fr: "Gloupti", + es: "Gulpin", + it: "Gulpin", + pt: "Gulpin", + de: "Schluppuck" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Drool", + fr: "Gluant", + es: "Babeo", + it: "Sbavare", + pt: "Babar", + de: "Sabbern" + }, + + damage: 10 + }, { + cost: ["Darkness", "Darkness", "Colorless"], + + name: { + en: "Super Poison Breath", + fr: "Super Haleine Empoisonnée", + es: "Aliento Supervenenoso", + it: "Super Velenospiro", + pt: "Super-hálito Venenoso", + de: "Super-Gifthauch" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", + es: "El Pokémon Activo de tu rival pasa a estar Envenenado.", + it: "Il Pokémon attivo del tuo avversario viene avvelenato.", + pt: "O Pokémon Ativo do seu oponente agora está Envenenado.", + de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet." + }, + + damage: 30 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/155.ts b/data/Scarlet & Violet/Stellar Crown/155.ts new file mode 100644 index 000000000..cdbe952ac --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/155.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Archaludon", + fr: "Pondralugon", + es: "Archaludon", + it: "Archaludon", + pt: "Archaludon", + de: "Briduradon" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 180, + types: ["Metal"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Metal Bridge", + fr: "Pont Métal", + es: "Puente Metálico", + it: "Metalponte", + pt: "Ponte Metálica", + de: "Metallbrücke" + }, + + effect: { + en: "All of your Pokémon that have Metal Energy attached have no Retreat Cost.", + fr: "Vos Pokémon auxquels de l'Énergie Metal est attachée n'ont pas de Coût de Retraite.", + es: "Ninguno de tus Pokémon que tenga alguna Energía Metal unida tiene Coste de Retirada.", + it: "Tutti i tuoi Pokémon che hanno delle Energie Metal assegnate non hanno costo di ritirata.", + pt: "Todos os seus Pokémon que têm Energia Metal ligada a eles não têm custo de Recuo.", + de: "Alle deine Pokémon, an die Metal-Energie angelegt ist, haben keine Rückzugskosten." + } + }], + + attacks: [{ + cost: ["Metal", "Metal", "Colorless"], + + name: { + en: "Iron Blaster", + fr: "Explose-Fer", + es: "Explosión Férrea", + it: "Esplodiferro", + pt: "Detonador de Ferro", + de: "Eisenblaster" + }, + + 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: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/156.ts b/data/Scarlet & Violet/Stellar Crown/156.ts new file mode 100644 index 000000000..ef9e5d7f9 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/156.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Hydrapple ex", + fr: "Pomdorochi-ex", + es: "Hydrapple ex", + it: "Hydrapple-ex", + pt: "Hydrapple ex", + de: "Hydrapfel-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Ripening Charge", + fr: "Charge Mûrissante", + es: "Carga Maduración", + it: "Maturacarica", + pt: "Investida Madura", + de: "Reifende Aufladung" + }, + + effect: { + en: "Once during your turn, you may attach a Basic Grass Energy card from your hand to 1 of your Pokémon. If you attached Energy to a Pokémon in this way, heal 30 damage from that Pokémon.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Grass de base de votre main à l'un de vos Pokémon. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, soignez 30 dégâts de ce Pokémon-là.", + es: "Una vez durante tu turno, puedes unir 1 carta de Energía Grass Básica de tu mano a uno de tus Pokémon. Si has unido Energía a un Pokémon de esta manera, cura 30 puntos de daño a ese Pokémon.", + it: "Una sola volta durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon una carta Energia base Grass dalla tua mano. Se hai assegnato dell'Energia a un Pokémon in questo modo, cura quel Pokémon da 30 danni.", + pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Grass Básica da sua mão a 1 dos seus Pokémon. Se você ligou Energia a um Pokémon desta forma, cure 30 pontos de dano daquele Pokémon.", + de: "Einmal während deines Zuges kannst du 1 Basis-Grass-Energiekarte aus deiner Hand an 1 deiner Pokémon anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, heile 30 Schadenspunkte bei jenem Pokémon." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Syrup Storm", + fr: "Tempête Nectar", + es: "Tormenta en Almíbar", + it: "Tempesta Sciroppata", + pt: "Tempestade Melada", + de: "Sirupsturm" + }, + + effect: { + en: "This attack does 30 more damage for each Grass Energy attached to all of your Pokémon.", + fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Grass attachée à tous vos Pokémon.", + es: "Este ataque hace 30 puntos de daño más por cada Energía Grass unida a cada uno de tus Pokémon.", + it: "Questo attacco infligge 30 danni in più per ogni Energia Grass assegnata ai tuoi Pokémon.", + pt: "Este ataque causa 30 pontos de dano a mais para cada Energia Grass ligada a todos os seus Pokémon.", + de: "Diese Attacke fügt für jede an alle deine Pokémon angelegte Grass-Energie 30 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/157.ts b/data/Scarlet & Violet/Stellar Crown/157.ts new file mode 100644 index 000000000..17a6dd842 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/157.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Cinderace ex", + fr: "Pyrobut-ex", + es: "Cinderace ex", + it: "Cinderace-ex", + pt: "Cinderace ex", + de: "Liberlo-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 320, + types: ["Fire"], + stage: "Stage2", + + attacks: [{ + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Flare Strike", + fr: "Attaque Flamboyante", + es: "Impacto Ígneo", + it: "Colpo Fiammante", + pt: "Golpe de Chamas", + de: "Feuergeschoss" + }, + + effect: { + en: "During your next turn, this Pokémon can't use Flare Strike.", + fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Attaque Flamboyante.", + es: "Durante tu próximo turno, este Pokémon no puede usar Impacto Ígneo.", + it: "Durante il tuo prossimo turno, questo Pokémon non può usare Colpo Fiammante.", + pt: "Durante o seu próximo turno, este Pokémon não poderá usar Golpe de Chamas.", + de: "Während deines nächsten Zuges kann dieses Pokémon Feuergeschoss nicht einsetzen." + }, + + damage: 280 + }, { + cost: ["Fire", "Fighting", "Darkness"], + + name: { + en: "Garnet Volley", + fr: "Volée de Grenats", + es: "Volea Granate", + it: "Cannonata di Granato", + pt: "Voleio de Granate", + de: "Granat-Volley" + }, + + effect: { + en: "This attack does 180 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 180 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 180 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 180 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 180 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 180 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }], + + retreat: 0, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/158.ts b/data/Scarlet & Violet/Stellar Crown/158.ts new file mode 100644 index 000000000..76a774641 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/158.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lapras ex", + fr: "Lokhlass-ex", + es: "Lapras ex", + it: "Lapras-ex", + pt: "Lapras ex", + de: "Lapras-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 220, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Power Splash", + fr: "Éclaboussure Puissante", + es: "Salpicadura Enérgica", + it: "Forzasplash", + pt: "Esguicho Poderoso", + de: "Power-Platscher" + }, + + effect: { + en: "This attack does 40 damage for each Energy attached to this Pokémon.", + fr: "Cette attaque inflige 40 dégâts pour chaque Énergie attachée à ce Pokémon.", + es: "Este ataque hace 40 puntos de daño por cada Energía unida a este Pokémon.", + it: "Questo attacco infligge 40 danni per ogni Energia assegnata a questo Pokémon.", + pt: "Este ataque causa 40 pontos de dano para cada Energia ligada a este Pokémon.", + de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Energie 40 Schadenspunkte zu." + }, + + damage: "40×" + }, { + cost: ["Water", "Psychic", "Metal"], + + name: { + en: "Larimar Rain", + fr: "Pluie Larimar", + es: "Lluvia Larimar", + it: "Pioggia di Larimar", + pt: "Chuva de Larimar", + de: "Larimar-Regen" + }, + + effect: { + en: "Look at the top 20 cards of your deck and attach any number of Energy cards you find there to your Pokémon in any way you like. Shuffle the other cards back into your deck.", + fr: "Regardez les 20 cartes du dessus de votre deck, puis attachez le nombre voulu de cartes Énergie que vous y trouvez à vos Pokémon, comme il vous plaît. Mélangez les autres cartes avec votre deck.", + es: "Mira las 20 primeras cartas de tu baraja y une cualquier cantidad de cartas de Energía que encuentres entre ellas a tus Pokémon de la manera que desees. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Guarda le prime 20 carte del tuo mazzo e assegna un numero qualsiasi di carte Energia presenti tra esse ai tuoi Pokémon nel modo che preferisci. Poi rimischia le altre carte nel tuo mazzo.", + pt: "Olhe as 20 cartas de cima do seu baralho e ligue qualquer número de cartas de Energia que encontrar lá aos seus Pokémon como desejar. Embaralhe as outras cartas de volta no seu baralho.", + de: "Schau dir die obersten 20 Karten deines Decks an und lege beliebig viele Energiekarten, die du dort findest, beliebig an deine Pokémon an. Mische die anderen Karten zurück in dein Deck." + } + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/159.ts b/data/Scarlet & Violet/Stellar Crown/159.ts new file mode 100644 index 000000000..3e50a7c64 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/159.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Galvantula ex", + fr: "Mygavolt-ex", + es: "Galvantula ex", + it: "Galvantula-ex", + pt: "Galvantula ex", + de: "Voltula-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Charged Web", + fr: "Toile Chargée", + es: "Tela Cargada", + it: "Tela Elettrificata", + pt: "Eletroteia", + de: "Geladenes Netz" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex or Pokémon V, this attack does 110 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex ou un Pokémon-V, cette attaque inflige 110 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 110 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 110 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á 110 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 110 Schadenspunkte mehr zu." + }, + + damage: "110+" + }, { + cost: ["Grass", "Lightning", "Fighting"], + + name: { + en: "Fulgurite", + fr: "Fulgurite", + es: "Fulgurita", + it: "Folgorite", + pt: "Fulgurito", + de: "Fulgurit" + }, + + effect: { + en: "Discard all Energy from this Pokémon. During your opponent's next turn, they can't play any Item cards from their hand.", + fr: "Défaussez toutes les Énergies de ce Pokémon. Pendant son prochain tour, votre adversaire ne peut pas jouer de cartes Objet de sa main.", + es: "Descarta todas las Energías de este Pokémon. Durante el próximo turno de tu rival, este no puede jugar ninguna carta de Objeto de su mano.", + it: "Scarta tutte le Energie da questo Pokémon. Durante il suo prossimo turno, il tuo avversario non può giocare le carte Strumento che ha in mano.", + pt: "Descarte todas as Energias deste Pokémon. Durante o próximo turno do seu oponente, ele não poderá jogar nenhuma carta de Item da mão dele.", + de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel. Dein Gegner kann während seines nächsten Zuges keine Itemkarten aus seiner Hand spielen." + }, + + damage: 180 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/160.ts b/data/Scarlet & Violet/Stellar Crown/160.ts new file mode 100644 index 000000000..dcd26ac74 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/160.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Dachsbun ex", + fr: "Briochien-ex", + es: "Dachsbun ex", + it: "Dachsbun-ex", + pt: "Dachsbun ex", + de: "Backel-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 250, + types: ["Psychic"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Time to Chow Down", + fr: "J'ai les Crocs", + es: "Hora de Zampar", + it: "A Pancia Piena", + pt: "Tá na Mesa, Pessoal", + de: "Zeit zum Futtern" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may heal all damage from each of your Evolution Pokémon. If you healed any damage in this way, discard all Energy from those Pokémon.", + fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez soigner tous les dégâts de chacun de vos Pokémon Évolutifs. Si vous avez soigné des dégâts de cette façon, défaussez toutes les Énergies de ces Pokémon.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes curar todos los puntos de daño a cada uno de tus Pokémon Evolución. Si has curado algún punto de daño de esta manera, descarta todas las Energías de los Pokémon que hayas curado.", + it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi curare ciascuno dei tuoi Pokémon Evoluzione da tutti i danni. Se hai curato dei danni in questo modo, scarta tutte le Energie dai Pokémon che hai curato.", + pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá curar todo o dano de cada um dos seus Pokémon de Evolução. Se você curou qualquer dano desta forma, descarte todas as Energias daqueles Pokémon.", + de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du allen Schaden bei jedem deiner Entwicklungs-Pokémon heilen. Wenn du auf diese Weise Schaden geheilt hast, lege alle Energien von jenen Pokémon auf deinen Ablagestapel." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Wonder Shine", + fr: "Éclat Merveilleux", + es: "Brillo Prodigioso", + it: "Luce Meraviglia", + pt: "Brilho Encantado", + de: "Wunderglanz" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido.", + it: "Il Pokémon attivo del tuo avversario viene confuso.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt." + }, + + damage: 130 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/161.ts b/data/Scarlet & Violet/Stellar Crown/161.ts new file mode 100644 index 000000000..be5f25f7c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/161.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Medicham ex", + fr: "Charmina-ex", + es: "Medicham ex", + it: "Medicham-ex", + pt: "Medicham ex", + de: "Meditalis-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 260, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Chi-Atsu", + fr: "Chi-Atsu", + es: "Qi-Atsu", + it: "Chi-Atsu", + pt: "Chi-Atsu", + de: "Chi-Atsu" + }, + + effect: { + en: "Put damage counters on your opponent's Active Pokémon until its remaining HP is 50.", + fr: "Placez des marqueurs de dégâts sur le Pokémon Actif de votre adversaire jusqu'à ce qu'il ne lui reste que 50 PV.", + es: "Pon contadores de daño en el Pokémon Activo de tu rival hasta que le queden 50 PS.", + it: "Metti dei segnalini danno sul Pokémon attivo del tuo avversario finché i suoi PS rimanenti diventano 50.", + pt: "Coloque contadores de dano no Pokémon Ativo do seu oponente até o PS restante dele ser 50.", + de: "Lege so lange Schadensmarken auf das Aktive Pokémon deines Gegners, bis seine verbleibenden KP gleich 50 sind." + } + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Yoga Kick", + fr: "Yoga Kick", + es: "Patada Yoga", + it: "Calcio Yoga", + pt: "Chute Ioga", + de: "Yogakick" + }, + + effect: { + en: "This attack's damage isn't affected by Weakness or Resistance.", + fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.", + es: "El daño de este ataque no se ve afectado por Debilidad o Resistencia.", + it: "I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza.", + pt: "O dano deste ataque não é afetado por Fraqueza ou Resistência.", + de: "Der Schaden dieser Attacke wird durch Schwäche oder Resistenz nicht verändert." + }, + + damage: 190 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/162.ts b/data/Scarlet & Violet/Stellar Crown/162.ts new file mode 100644 index 000000000..ac4917839 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/162.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Orthworm ex", + fr: "Ferdeter-ex", + es: "Orthworm ex", + it: "Orthworm-ex", + pt: "Orthworm ex", + de: "Schlurm-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 220, + types: ["Metal"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Pummeling Payback", + fr: "Représailles Martelage", + es: "Venganza Demoledora", + it: "Rivincita Furiosa", + pt: "Vingança Demolidora", + de: "Faustdicke Vergeltung" + }, + + effect: { + en: "If this Pokémon is damaged by an attack from your opponent's Pokémon (even if this Pokémon is Knocked Out), put 2 damage counters on the Attacking Pokémon for each Metal Energy attached to this Pokémon.", + fr: "Si ce Pokémon subit les dégâts d'une attaque de l'un des Pokémon de votre adversaire (même si ce Pokémon est mis K.O.), placez 2 marqueurs de dégâts sur le Pokémon Attaquant pour chaque Énergie Metal attachée à ce Pokémon.", + es: "Si este Pokémon resulta dañado por un ataque de los Pokémon de tu rival (incluso si este Pokémon queda Fuera de Combate), pon 2 contadores de daño en el Pokémon Atacante por cada Energía Metal unida a este Pokémon.", + it: "Se questo Pokémon viene danneggiato da un attacco di un Pokémon del tuo avversario, anche se viene messo KO, metti due segnalini danno sul Pokémon attaccante per ogni Energia Metal assegnata a questo Pokémon.", + pt: "Se este Pokémon for danificado por um ataque dos Pokémon do seu oponente (mesmo que este Pokémon seja Nocauteado), coloque 2 contadores de dano no Pokémon Atacante para cada Energia Metal ligada a este Pokémon.", + de: "Wenn dieses Pokémon durch eine Attacke von Pokémon deines Gegners Schaden erhält (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 2 Schadensmarken auf das Angreifende Pokémon für jede an dieses Pokémon angelegte Metal-Energie." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Rock Tomb", + fr: "Tomberoche", + es: "Tumba Rocas", + it: "Rocciotomba", + pt: "Tumba de Rochas", + de: "Felsgrab" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 150 + }], + + retreat: 4, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/163.ts b/data/Scarlet & Violet/Stellar Crown/163.ts new file mode 100644 index 000000000..72d462a0c --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/163.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Briar", + fr: "Bria", + es: "Brie", + it: "Rea", + pt: "Urzy", + de: "Brianna" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "You can use this card only if your opponent has exactly 2 Prize cards remaining.\n\nDuring this turn, if your opponent's Active Pokémon is Knocked Out by damage from an attack used by your Tera Pokémon, take 1 more Prize card.", + fr: "Vous ne pouvez utiliser cette carte que s'il reste exactement 2 cartes Récompense à votre adversaire.\nPendant ce tour, si le Pokémon Actif de votre adversaire est mis K.O. par les dégâts d'une attaque utilisée par vos Pokémon Téracristal, récupérez une carte Récompense supplémentaire.", + es: "Puedes usar esta carta solo si a tu rival le quedan exactamente 2 cartas de Premio.\n\nDurante este turno, si el Pokémon Activo de tu rival queda Fuera de Combate por el daño de un ataque usado por tus Pokémon Teracristal, coge 1 carta de Premio más.", + it: "Puoi usare questa carta solo se il tuo avversario ha esattamente due carte Premio rimanenti.\nDurante questo turno, se il Pokémon attivo del tuo avversario viene messo KO dai danni inflitti da un attacco\nusato da un tuo Pokémon Teracristal, prendi una carta Premio in più.", + pt: "Você só pode usar esta carta se o seu oponente tiver exatamente 2 cartas de Prêmio restantes.\nDurante este turno, se o Pokémon Ativo do seu oponente for Nocauteado pelo dano de um ataque usado pelos seus Pokémon Tera, pegue 1 carta de Prêmio a mais.", + de: "Du kannst diese Karte nur einsetzen, wenn dein Gegner genau 2 verbleibende Preiskarten hat.\nWenn das Aktive Pokémon deines Gegners während dieses Zuges durch Schaden einer von deinen Terakristall-Pokémon eingesetzten Attacke kampfunfähig wird, nimm 1 Preiskarte mehr." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/164.ts b/data/Scarlet & Violet/Stellar Crown/164.ts new file mode 100644 index 000000000..eafc8c220 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/164.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Crispin", + fr: "Rubépin", + es: "Denis", + it: "Piros", + pt: "Plínio", + de: "Matt" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Search your deck for up to 2 Basic Energy cards of different types, reveal them, and put 1 of them into your hand. Attach the other to 1 of your Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base de types différents, montrez-les, puis ajoutez l'une d'elles à votre main. Attachez l'autre à l'un de vos Pokémon. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Básica de diferentes tipos, enséñalas y pon 1 de ellas en tu mano. Une la otra a uno de tus Pokémon. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due carte Energia base di tipo diverso, mostrale e aggiungine una alle carte che hai in mano. Assegna l'altra a uno dei tuoi Pokémon. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 cartas de Energia Básica de tipos diferentes no seu baralho, revele-as e coloque 1 delas na sua mão. Ligue a outra a 1 dos seus Pokémon. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten verschiedenen Typs, zeige sie deinem Gegner und nimm 1 von ihnen auf deine Hand. Lege die andere an 1 deiner Pokémon an. Mische anschließend dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/165.ts b/data/Scarlet & Violet/Stellar Crown/165.ts new file mode 100644 index 000000000..9fdf567ec --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/165.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Kofu", + fr: "Kombu", + es: "Fuco", + it: "Algaro", + pt: "Álgaro", + de: "Kombu" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Put 2 cards from your hand on the bottom of your deck in any order. If you put 2 cards on the bottom of your deck in this way, draw 4 cards. (If you can't put 2 cards from your hand on the bottom of your deck, you can't use this card.)", + fr: "Placez 2 cartes de votre main en dessous de votre deck dans l'ordre de votre choix. Si vous avez placé 2 cartes en dessous de votre deck de cette façon, piochez 4 cartes. (Si vous ne pouvez pas placer 2 cartes de votre main en dessous de votre deck, vous ne pouvez pas utiliser cette carte.)", + es: "Pon 2 cartas de tu mano en la parte inferior de tu baraja en el orden que quieras. Si pones 2 cartas en la parte inferior de tu baraja de esta manera, roba 4 cartas. (Si no puedes poner 2 cartas de tu mano en la parte inferior de tu baraja, no puedes usar esta carta).", + it: "Prendi due carte che hai in mano e mettile in fondo al tuo mazzo nell'ordine che preferisci. Se hai messo due carte in fondo al tuo mazzo in questo modo, pesca quattro carte. Se non puoi mettere due carte che hai in mano in fondo al tuo mazzo, non puoi usare questa carta.", + pt: "Coloque 2 cartas da sua mão como as cartas de baixo do seu baralho em qualquer ordem. Se você colocou 2 cartas como as cartas de baixo do seu baralho desta forma, compre 4 cartas. (Se você não puder colocar 2 cartas da sua mão como as cartas de baixo do seu baralho, não poderá usar esta carta.)", + de: "Lege 2 Karten aus deiner Hand in beliebiger Reihenfolge unter dein Deck. Wenn du auf diese Weise 2 Karten unter dein Deck gelegt hast, ziehe 4 Karten. (Wenn du nicht 2 Karten aus deiner Hand unter dein Deck legen kannst, kannst du diese Karte nicht einsetzen.)" + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/166.ts b/data/Scarlet & Violet/Stellar Crown/166.ts new file mode 100644 index 000000000..5a53bc908 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/166.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lacey", + fr: "Taro", + es: "Aroa", + it: "Rupi", + pt: "Tarsila", + de: "Tara" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Shuffle your hand into your deck. Then, draw 4 cards. If your opponent has 3 or fewer Prize cards remaining, draw 8 cards instead.", + fr: "Mélangez votre main avec votre deck. Ensuite, piochez 4 cartes. S'il reste 3 cartes Récompense ou moins à votre adversaire, piochez 8 cartes à la place.", + es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 4 cartas. Si a tu rival le quedan 3 cartas de Premio o menos, roba 8 cartas en vez de 4.", + it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca quattro carte. Se il tuo avversario ha tre o meno carte Premio rimanenti, invece pescane otto.", + pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 4 cartas. Se o seu oponente tiver 3 ou menos cartas de Prêmio restantes, compre 8 cartas ao invés de 4.", + de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 4 Karten. Wenn dein Gegner 3 oder weniger verbleibende Preiskarten hat, ziehe stattdessen 8 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/167.ts b/data/Scarlet & Violet/Stellar Crown/167.ts new file mode 100644 index 000000000..97077b2a1 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/167.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Hydrapple ex", + fr: "Pomdorochi-ex", + es: "Hydrapple ex", + it: "Hydrapple-ex", + pt: "Hydrapple ex", + de: "Hydrapfel-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 330, + types: ["Grass"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Ripening Charge", + fr: "Charge Mûrissante", + es: "Carga Maduración", + it: "Maturacarica", + pt: "Investida Madura", + de: "Reifende Aufladung" + }, + + effect: { + en: "Once during your turn, you may attach a Basic Grass Energy card from your hand to 1 of your Pokémon. If you attached Energy to a Pokémon in this way, heal 30 damage from that Pokémon.", + fr: "Une fois pendant votre tour, vous pouvez attacher une carte Énergie Grass de base de votre main à l'un de vos Pokémon. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, soignez 30 dégâts de ce Pokémon-là.", + es: "Una vez durante tu turno, puedes unir 1 carta de Energía Grass Básica de tu mano a uno de tus Pokémon. Si has unido Energía a un Pokémon de esta manera, cura 30 puntos de daño a ese Pokémon.", + it: "Una sola volta durante il tuo turno, puoi assegnare a uno dei tuoi Pokémon una carta Energia base Grass dalla tua mano. Se hai assegnato dell'Energia a un Pokémon in questo modo, cura quel Pokémon da 30 danni.", + pt: "Uma vez durante o seu turno, você poderá ligar uma carta de Energia Grass Básica da sua mão a 1 dos seus Pokémon. Se você ligou Energia a um Pokémon desta forma, cure 30 pontos de dano daquele Pokémon.", + de: "Einmal während deines Zuges kannst du 1 Basis-Grass-Energiekarte aus deiner Hand an 1 deiner Pokémon anlegen. Wenn du auf diese Weise Energie an ein Pokémon angelegt hast, heile 30 Schadenspunkte bei jenem Pokémon." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Syrup Storm", + fr: "Tempête Nectar", + es: "Tormenta en Almíbar", + it: "Tempesta Sciroppata", + pt: "Tempestade Melada", + de: "Sirupsturm" + }, + + effect: { + en: "This attack does 30 more damage for each Grass Energy attached to all of your Pokémon.", + fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Grass attachée à tous vos Pokémon.", + es: "Este ataque hace 30 puntos de daño más por cada Energía Grass unida a cada uno de tus Pokémon.", + it: "Questo attacco infligge 30 danni in più per ogni Energia Grass assegnata ai tuoi Pokémon.", + pt: "Este ataque causa 30 pontos de dano a mais para cada Energia Grass ligada a todos os seus Pokémon.", + de: "Diese Attacke fügt für jede an alle deine Pokémon angelegte Grass-Energie 30 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/168.ts b/data/Scarlet & Violet/Stellar Crown/168.ts new file mode 100644 index 000000000..c28e3d5e7 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/168.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Galvantula ex", + fr: "Mygavolt-ex", + es: "Galvantula ex", + it: "Galvantula-ex", + pt: "Galvantula ex", + de: "Voltula-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Charged Web", + fr: "Toile Chargée", + es: "Tela Cargada", + it: "Tela Elettrificata", + pt: "Eletroteia", + de: "Geladenes Netz" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex or Pokémon V, this attack does 110 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex ou un Pokémon-V, cette attaque inflige 110 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 110 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 110 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á 110 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 110 Schadenspunkte mehr zu." + }, + + damage: "110+" + }, { + cost: ["Grass", "Lightning", "Fighting"], + + name: { + en: "Fulgurite", + fr: "Fulgurite", + es: "Fulgurita", + it: "Folgorite", + pt: "Fulgurito", + de: "Fulgurit" + }, + + effect: { + en: "Discard all Energy from this Pokémon. During your opponent's next turn, they can't play any Item cards from their hand.", + fr: "Défaussez toutes les Énergies de ce Pokémon. Pendant son prochain tour, votre adversaire ne peut pas jouer de cartes Objet de sa main.", + es: "Descarta todas las Energías de este Pokémon. Durante el próximo turno de tu rival, este no puede jugar ninguna carta de Objeto de su mano.", + it: "Scarta tutte le Energie da questo Pokémon. Durante il suo prossimo turno, il tuo avversario non può giocare le carte Strumento che ha in mano.", + pt: "Descarte todas as Energias deste Pokémon. Durante o próximo turno do seu oponente, ele não poderá jogar nenhuma carta de Item da mão dele.", + de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel. Dein Gegner kann während seines nächsten Zuges keine Itemkarten aus seiner Hand spielen." + }, + + damage: 180 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/169.ts b/data/Scarlet & Violet/Stellar Crown/169.ts new file mode 100644 index 000000000..eccceb441 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/169.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Dachsbun ex", + fr: "Briochien-ex", + es: "Dachsbun ex", + it: "Dachsbun-ex", + pt: "Dachsbun ex", + de: "Backel-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 250, + types: ["Psychic"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Time to Chow Down", + fr: "J'ai les Crocs", + es: "Hora de Zampar", + it: "A Pancia Piena", + pt: "Tá na Mesa, Pessoal", + de: "Zeit zum Futtern" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may heal all damage from each of your Evolution Pokémon. If you healed any damage in this way, discard all Energy from those Pokémon.", + fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez soigner tous les dégâts de chacun de vos Pokémon Évolutifs. Si vous avez soigné des dégâts de cette façon, défaussez toutes les Énergies de ces Pokémon.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes curar todos los puntos de daño a cada uno de tus Pokémon Evolución. Si has curado algún punto de daño de esta manera, descarta todas las Energías de los Pokémon que hayas curado.", + it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi curare ciascuno dei tuoi Pokémon Evoluzione da tutti i danni. Se hai curato dei danni in questo modo, scarta tutte le Energie dai Pokémon che hai curato.", + pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá curar todo o dano de cada um dos seus Pokémon de Evolução. Se você curou qualquer dano desta forma, descarte todas as Energias daqueles Pokémon.", + de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du allen Schaden bei jedem deiner Entwicklungs-Pokémon heilen. Wenn du auf diese Weise Schaden geheilt hast, lege alle Energien von jenen Pokémon auf deinen Ablagestapel." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Wonder Shine", + fr: "Éclat Merveilleux", + es: "Brillo Prodigioso", + it: "Luce Meraviglia", + pt: "Brilho Encantado", + de: "Wunderglanz" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido.", + it: "Il Pokémon attivo del tuo avversario viene confuso.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt." + }, + + damage: 130 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/170.ts b/data/Scarlet & Violet/Stellar Crown/170.ts new file mode 100644 index 000000000..3d00a75b1 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/170.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Terapagos ex", + fr: "Terapagos-ex", + es: "Terapagos ex", + it: "Terapagos-ex", + pt: "Terapagos ex", + de: "Terapagos-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Unified Beatdown", + fr: "Dérouillée Groupée", + es: "Golpe Unísono", + it: "Batosta all'Unisono", + pt: "Abater Unificado", + de: "Vereinter Niederprügler" + }, + + effect: { + en: "If you go second, you can't use this attack during your first turn. This attack does 30 damage for each of your Benched Pokémon.", + fr: "Si vous jouez en second, vous ne pouvez pas utiliser cette attaque pendant votre premier tour. Cette attaque inflige 30 dégâts pour chacun de vos Pokémon de Banc.", + es: "Si sales en segundo lugar, no puedes usar este ataque durante tu primer turno. Este ataque hace 30 puntos de daño por cada uno de tus Pokémon en Banca.", + it: "Se inizi per secondo, non puoi usare questo attacco durante il tuo primo turno. Questo attacco infligge 30 danni per ogni Pokémon nella tua panchina.", + pt: "Se você for o segundo a jogar, você não poderá usar este ataque durante o seu primeiro turno. Este ataque causa 30 pontos de dano para cada um dos seus Pokémon no Banco.", + de: "Wenn du als Zweiter am Zug bist, kannst du diese Attacke während deines ersten Zuges nicht einsetzen. Diese Attacke fügt für jedes Pokémon auf deiner Bank 30 Schadenspunkte zu." + }, + + damage: "30×" + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + en: "Crown Opal", + fr: "Couronne Opale", + es: "Ópalo Corona", + it: "Opale della Corona", + pt: "Coroa de Opalas", + de: "Kronen-Opal" + }, + + effect: { + en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic non-Colorless Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon non-Colorless de base.", + es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon no Colorless Básicos.", + it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base non di tipo Colorless.", + pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon Básicos que não sejam de tipo Colorless.", + de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon, die keine Colorless-Pokémon sind, zugefügt wird." + }, + + damage: 180 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/171.ts b/data/Scarlet & Violet/Stellar Crown/171.ts new file mode 100644 index 000000000..7e7f2a450 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/171.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Briar", + fr: "Bria", + es: "Brie", + it: "Rea", + pt: "Urzy", + de: "Brianna" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "You can use this card only if your opponent has exactly 2 Prize cards remaining.\n\nDuring this turn, if your opponent's Active Pokémon is Knocked Out by damage from an attack used by your Tera Pokémon, take 1 more Prize card.", + fr: "Vous ne pouvez utiliser cette carte que s'il reste exactement 2 cartes Récompense à votre adversaire.\nPendant ce tour, si le Pokémon Actif de votre adversaire est mis K.O. par les dégâts d'une attaque utilisée par vos Pokémon Téracristal, récupérez une carte Récompense supplémentaire.", + es: "Puedes usar esta carta solo si a tu rival le quedan exactamente 2 cartas de Premio.\n\nDurante este turno, si el Pokémon Activo de tu rival queda Fuera de Combate por el daño de un ataque usado por tus Pokémon Teracristal, coge 1 carta de Premio más.", + it: "Puoi usare questa carta solo se il tuo avversario ha esattamente due carte Premio rimanenti.\nDurante questo turno, se il Pokémon attivo del tuo avversario viene messo KO dai danni inflitti da un attacco\nusato da un tuo Pokémon Teracristal, prendi una carta Premio in più.", + pt: "Você só pode usar esta carta se o seu oponente tiver exatamente 2 cartas de Prêmio restantes.\nDurante este turno, se o Pokémon Ativo do seu oponente for Nocauteado pelo dano de um ataque usado pelos seus Pokémon Tera, pegue 1 carta de Prêmio a mais.", + de: "Du kannst diese Karte nur einsetzen, wenn dein Gegner genau 2 verbleibende Preiskarten hat.\nWenn das Aktive Pokémon deines Gegners während dieses Zuges durch Schaden einer von deinen Terakristall-Pokémon eingesetzten Attacke kampfunfähig wird, nimm 1 Preiskarte mehr." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/172.ts b/data/Scarlet & Violet/Stellar Crown/172.ts new file mode 100644 index 000000000..33bdd2e29 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/172.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Lacey", + fr: "Taro", + es: "Aroa", + it: "Rupi", + pt: "Tarsila", + de: "Tara" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "Shuffle your hand into your deck. Then, draw 4 cards. If your opponent has 3 or fewer Prize cards remaining, draw 8 cards instead.", + fr: "Mélangez votre main avec votre deck. Ensuite, piochez 4 cartes. S'il reste 3 cartes Récompense ou moins à votre adversaire, piochez 8 cartes à la place.", + es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 4 cartas. Si a tu rival le quedan 3 cartas de Premio o menos, roba 8 cartas en vez de 4.", + it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca quattro carte. Se il tuo avversario ha tre o meno carte Premio rimanenti, invece pescane otto.", + pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 4 cartas. Se o seu oponente tiver 3 ou menos cartas de Prêmio restantes, compre 8 cartas ao invés de 4.", + de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 4 Karten. Wenn dein Gegner 3 oder weniger verbleibende Preiskarten hat, ziehe stattdessen 8 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/173.ts b/data/Scarlet & Violet/Stellar Crown/173.ts new file mode 100644 index 000000000..26ce67f78 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/173.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Terapagos ex", + fr: "Terapagos-ex", + es: "Terapagos ex", + it: "Terapagos-ex", + pt: "Terapagos ex", + de: "Terapagos-ex" + }, + + rarity: "Hyper rare", + category: "Pokemon", + hp: 230, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Unified Beatdown", + fr: "Dérouillée Groupée", + es: "Golpe Unísono", + it: "Batosta all'Unisono", + pt: "Abater Unificado", + de: "Vereinter Niederprügler" + }, + + effect: { + en: "If you go second, you can't use this attack during your first turn. This attack does 30 damage for each of your Benched Pokémon.", + fr: "Si vous jouez en second, vous ne pouvez pas utiliser cette attaque pendant votre premier tour. Cette attaque inflige 30 dégâts pour chacun de vos Pokémon de Banc.", + es: "Si sales en segundo lugar, no puedes usar este ataque durante tu primer turno. Este ataque hace 30 puntos de daño por cada uno de tus Pokémon en Banca.", + it: "Se inizi per secondo, non puoi usare questo attacco durante il tuo primo turno. Questo attacco infligge 30 danni per ogni Pokémon nella tua panchina.", + pt: "Se você for o segundo a jogar, você não poderá usar este ataque durante o seu primeiro turno. Este ataque causa 30 pontos de dano para cada um dos seus Pokémon no Banco.", + de: "Wenn du als Zweiter am Zug bist, kannst du diese Attacke während deines ersten Zuges nicht einsetzen. Diese Attacke fügt für jedes Pokémon auf deiner Bank 30 Schadenspunkte zu." + }, + + damage: "30×" + }, { + cost: ["Grass", "Water", "Lightning"], + + name: { + en: "Crown Opal", + fr: "Couronne Opale", + es: "Ópalo Corona", + it: "Opale della Corona", + pt: "Coroa de Opalas", + de: "Kronen-Opal" + }, + + effect: { + en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic non-Colorless Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon non-Colorless de base.", + es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon no Colorless Básicos.", + it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base non di tipo Colorless.", + pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques de Pokémon Básicos que não sejam de tipo Colorless.", + de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon, die keine Colorless-Pokémon sind, zugefügt wird." + }, + + damage: 180 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/174.ts b/data/Scarlet & Violet/Stellar Crown/174.ts new file mode 100644 index 000000000..1d49500f0 --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/174.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Area Zero Underdepths", + fr: "Abîme Zéro", + es: "Caverna Abisal Cero", + it: "Grande Abisso Zero", + pt: "Abismo da Área Zero", + de: "Höhlensystem Null" + }, + + rarity: "Hyper rare", + category: "Trainer", + + effect: { + en: "Each player who has any Tera Pokémon in play can have up to 8 Pokémon on their Bench.\n\nIf a player no longer has any Tera Pokémon in play, that player discards Pokémon from their Bench until they have 5. When this card leaves play, both players discard Pokémon from their Bench until they have 5, and the player who played this card discards first.", + fr: "Chaque joueur ayant au moins un Pokémon Téracristal en jeu peut avoir jusqu'à 8 Pokémon sur son Banc.\nSi un joueur n'a plus de Pokémon Téracristal en jeu, ce joueur-là défausse ses Pokémon de Banc jusqu'à en avoir 5. Lorsque cette carte n'est plus en jeu, les deux joueurs défaussent leurs Pokémon de Banc jusqu'à en avoir 5, et le joueur qui a joué cette carte défausse en premier.", + es: "Cada jugador que tenga algún Pokémon Teracristal en juego puede tener hasta 8 Pokémon en su Banca.\n\nSi un jugador ya no tiene ningún Pokémon Teracristal en juego, ese jugador descarta Pokémon de su Banca hasta que tenga 5. Cuando esta carta ya no esté en juego, cada jugador descarta Pokémon de su Banca hasta que tenga 5, y el jugador que haya jugado esta carta descarta en primer lugar.", + it: "Ciascun giocatore che ha dei Pokémon Teracristal in gioco può avere fino a otto Pokémon in panchina.\nSe un giocatore non ha più Pokémon Teracristal in gioco, quel giocatore scarta\ndei Pokémon dalla sua panchina fino ad averne cinque. Quando questa carta viene rimossa dal gioco, entrambi i giocatori scartano dei Pokémon dalla propria panchina fino ad averne cinque e il giocatore che ha giocato questa carta scarta per primo.", + pt: "Cada jogador que tiver algum Pokémon Tera em jogo poderá ter até 8 Pokémon no próprio Banco.\nSe um jogador não tiver mais algum Pokémon Tera em jogo, aquele jogador descartará Pokémon do próprio Banco até ter 5. Quando esta carta sair de jogo, ambos os jogadores descartarão Pokémon do próprio Banco até terem 5, e o jogador que jogou esta carta descartará primeiro.", + de: "Jeder Spieler, der mindestens 1 Terakristall-Pokémon im Spiel hat, kann bis zu 8 Pokémon auf seiner Bank haben.\nWenn ein Spieler keine Terakristall-Pokémon mehr im Spiel hat, legt jener Spieler so lange Pokémon von seiner Bank auf seinen Ablagestapel, bis er 5 Pokémon auf seiner Bank hat. Wenn diese Karte das Spiel verlässt, legen beide Spieler so lange Pokémon von ihrer Bank auf ihren Ablagestapel, bis sie 5 Pokémon auf ihrer Bank haben, und der Spieler, der diese Karte gespielt hat, legt als Erster ab." + }, + + trainerType: "Stadium", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Stellar Crown/175.ts b/data/Scarlet & Violet/Stellar Crown/175.ts new file mode 100644 index 000000000..f19b0348d --- /dev/null +++ b/data/Scarlet & Violet/Stellar Crown/175.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Stellar Crown" + +const card: Card = { + set: Set, + + name: { + en: "Bravery Charm", + fr: "Amulette Bravoure", + es: "Amuleto de Bravura", + it: "Amuleto del Coraggio", + pt: "Pingente de Bravura", + de: "Amulett der Tapferkeit" + }, + + rarity: "Hyper rare", + category: "Trainer", + + effect: { + en: "The Basic Pokémon this card is attached to gets +50 HP.", + fr: "Le Pokémon de base auquel cette carte est attachée reçoit +50 PV.", + es: "El Pokémon Básico al que esté unida esta carta obtiene 50 PS más.", + it: "Il Pokémon Base a cui è assegnata questa carta ha 50 PS in più.", + pt: "O Pokémon Básico ao qual esta carta está ligada recebe 50 PS a mais.", + de: "Das Basis-Pokémon, an das diese Karte angelegt ist, erhält +50 KP." + }, + + trainerType: "Tool", + regulationMark: "G", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks.ts b/data/Scarlet & Violet/Surging Sparks.ts new file mode 100644 index 000000000..c3e233a7c --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks.ts @@ -0,0 +1,30 @@ +import { Set } from '../../interfaces' +import serie from '../Scarlet & Violet' + +const set: Set = { + id: "sv08", + + name: { + de: "Stürmische Funken", + en: "Surging Sparks", + es: "Chispas Fulgurantes", + fr: "Étincelles Déferlantes", + it: "Scintille Folgoranti", + pt: "Fagulhas Impetudsas" + }, + + serie: serie, + + cardCount: { + official: 191 + }, + + releaseDate: "2024-11-08", + + abbreviations: { + official: "SSP", + fr: "ETD" + } +} + +export default set diff --git a/data/Scarlet & Violet/Surging Sparks/001.ts b/data/Scarlet & Violet/Surging Sparks/001.ts new file mode 100644 index 000000000..210e67b64 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/001.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Exeggcute", + fr: "Noeunoeuf", + es: "Exeggcute", + it: "Exeggcute", + pt: "Exeggcute", + de: "Owei" + }, + + rarity: "Common", + category: "Pokemon", + hp: 30, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Precocious Evolution", + fr: "Évolution Précoce", + es: "Evolución Prematura", + it: "Evoluzione Precoce", + pt: "Evolução Prematura", + de: "Frühentwickler" + }, + + effect: { + en: "If you go first, you can use this attack during your first turn. Search your deck for a card that evolves from this Pokémon and put it onto this Pokémon to evolve it. Then, shuffle your deck.", + fr: "Si vous jouez en premier, vous pouvez utiliser cette attaque pendant votre premier tour. Cherchez dans votre deck une carte Évolution de ce Pokémon, puis placez-la sur ce Pokémon pour le faire évoluer. Mélangez ensuite votre deck.", + es: "Si sales en primer lugar, puedes usar este ataque durante tu primer turno. Busca en tu baraja 1 carta que evolucione de este Pokémon y ponla sobre este Pokémon para hacerlo evolucionar. Después, baraja las cartas de tu baraja.", + it: "Se inizi per primo, puoi usare questo attacco durante il tuo primo turno. Cerca nel tuo mazzo una carta che si evolve da questo Pokémon e metticela sopra per farlo evolvere. Poi rimischia le carte del tuo mazzo.", + pt: "Se você for o primeiro a jogar, poderá usar este ataque durante o seu primeiro turno. Procure por uma carta no seu baralho que evolua deste Pokémon e coloque-a sobre este Pokémon para evoluí-lo. Em seguida, embaralhe o seu baralho.", + de: "Wenn du als Erster am Zug bist, kannst du diese Attacke während deines ersten Zuges einsetzen. Durchsuche dein Deck nach 1 Karte, die sich aus diesem Pokémon entwickelt, und lege sie auf dieses Pokémon, um es zu entwickeln. Mische anschließend dein Deck." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/002.ts b/data/Scarlet & Violet/Surging Sparks/002.ts new file mode 100644 index 000000000..74023a7e8 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/002.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Exeggcute", + fr: "Noeunoeuf", + es: "Exeggcute", + it: "Exeggcute", + pt: "Exeggcute", + de: "Owei" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Absorb", + fr: "Vole-Vie", + es: "Absorber", + it: "Assorbimento", + pt: "Absorção", + de: "Absorber" + }, + + effect: { + en: "Heal 10 damage from this Pokémon.", + fr: "Soignez 10 dégâts de ce Pokémon.", + es: "Cura 10 puntos de daño a este Pokémon.", + it: "Cura questo Pokémon da 10 danni.", + pt: "Cure 10 pontos de dano deste Pokémon.", + de: "Heile 10 Schadenspunkte bei diesem Pokémon." + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/003.ts b/data/Scarlet & Violet/Surging Sparks/003.ts new file mode 100644 index 000000000..ed357f24c --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/003.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Exeggutor", + fr: "Noadkoko", + es: "Exeggutor", + it: "Exeggutor", + pt: "Exeggutor", + de: "Kokowei" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Barrage O'Clock", + fr: "Heure de Pilonnage", + es: "Las Bombardeo en Punto", + it: "Ora dell'Offensiva", + pt: "Rajada Cronometrada", + de: "Stakkato-Zeit" + }, + + effect: { + en: "Flip a coin for each Energy attached to both Active Pokémon. This attack does 60 damage for each heads.", + fr: "Lancez une pièce pour chaque Énergie attachée aux deux Pokémon Actifs. Cette attaque inflige 60 dégâts pour chaque côté face.", + es: "Lanza 1 moneda por cada Energía unida a ambos Pokémon Activos. Este ataque hace 60 puntos de daño por cada cara.", + it: "Lancia una moneta per ogni Energia assegnata a ciascuno dei Pokémon attivi. Questo attacco infligge 60 danni ogni volta che esce testa.", + pt: "Jogue uma moeda para cada Energia ligada a ambos os Pokémon Ativos. Este ataque causa 60 pontos de dano para cada cara.", + de: "Wirf 1 Münze für jede an beide Aktiven Pokémon angelegte Energie. Diese Attacke fügt 60 Schadenspunkte pro Kopf zu." + }, + + damage: "60×" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/004.ts b/data/Scarlet & Violet/Surging Sparks/004.ts new file mode 100644 index 000000000..e73edafe5 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/004.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Durant ex", + fr: "Fermite-ex", + es: "Durant ex", + it: "Durant-ex", + pt: "Durant ex", + de: "Fermicula-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 190, + types: ["Grass"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Sudden Shearing", + fr: "Tonte Soudaine", + es: "Descarte Súbito", + it: "Taglio Improvviso", + pt: "Corte Súbito", + de: "Abruptes Abscheren" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may discard the top card of your opponent's deck.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez défausser la carte du dessus du deck de votre adversaire.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes descartar la primera carta de la baraja de tu rival.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi scartare la prima carta del mazzo del tuo avversario.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá descartar a carta de cima do baralho do seu oponente.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du die oberste Karte des Decks deines Gegners auf seinen Ablagestapel legen." + } + }], + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Vengeful Crush", + fr: "Broyage Vengeur", + es: "Destrucción Vengativa", + it: "Distruzione Vendicativa", + pt: "Esmagamento Vingativo", + de: "Rächender Zermalmer" + }, + + 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: "120+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/005.ts b/data/Scarlet & Violet/Surging Sparks/005.ts new file mode 100644 index 000000000..d4b7f9e9e --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/005.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Scatterbug", + fr: "Lépidonille", + es: "Scatterbug", + it: "Scatterbug", + pt: "Scatterbug", + de: "Purmel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 40, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Call for Family", + fr: "Appel à la Famille", + es: "Llamar a la Familia", + it: "Cerca Famiglia", + pt: "Chamar a Família", + de: "Familienruf" + }, + + effect: { + en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja 1 Pokémon Básico y ponlo en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo un Pokémon Base e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por um Pokémon Básico no seu baralho e coloque-o no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach 1 Basis-Pokémon und lege es auf deine Bank. Mische anschließend dein Deck." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/006.ts b/data/Scarlet & Violet/Surging Sparks/006.ts new file mode 100644 index 000000000..4ad2b97e1 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/006.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Spewpa", + fr: "Pérégrain", + es: "Spewpa", + it: "Spewpa", + pt: "Spewpa", + de: "Puponcho" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Wander About", + fr: "Vagabondage", + es: "Deambular", + it: "Gironzolare", + pt: "Zanzar", + de: "Umherwandern" + }, + + 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." + } + }, { + cost: ["Grass"], + + name: { + en: "Tackle", + fr: "Charge", + es: "Placaje", + it: "Azione", + pt: "Investida", + de: "Tackle" + }, + + damage: 30 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/007.ts b/data/Scarlet & Violet/Surging Sparks/007.ts new file mode 100644 index 000000000..55f3debc9 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/007.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Vivillon", + fr: "Prismillon", + es: "Vivillon", + it: "Vivillon", + pt: "Vivillon", + de: "Vivillon" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Evo-Powder", + fr: "Poudre Évo", + es: "Evo-Polvo", + it: "Evopolvere", + pt: "Pó Evoluir", + de: "Entwicklungspuder" + }, + + effect: { + en: "For each of your Benched Pokémon, search your deck for a card that evolves from that Pokémon and put it onto that Pokémon to evolve it. Then, shuffle your deck.", + fr: "Pour chacun de vos Pokémon de Banc, cherchez dans votre deck une carte Évolution de ce Pokémon-là, puis placez-la sur ce dernier pour le faire évoluer. Mélangez ensuite votre deck.", + es: "Para cada uno de tus Pokémon en Banca, busca en tu baraja 1 carta que evolucione de ese Pokémon y ponla sobre ese Pokémon para hacerlo evolucionar. Después, baraja las cartas de tu baraja.", + it: "Per ogni Pokémon nella tua panchina, cerca nel tuo mazzo una carta che si evolve da quel Pokémon e metticela sopra per farlo evolvere. Poi rimischia le carte del tuo mazzo.", + pt: "Para cada um dos seus Pokémon no Banco, procure por uma carta no seu baralho que evolua daquele Pokémon e coloque-a sobre aquele Pokémon para evoluí-lo. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche für jedes Pokémon auf deiner Bank dein Deck nach 1 Karte, die sich aus jenem Pokémon entwickelt, und lege sie auf jenes Pokémon, um es zu entwickeln. Mische anschließend dein Deck." + } + }, { + cost: ["Grass"], + + name: { + en: "Cutting Wind", + fr: "Vent Glacial", + es: "Viento Helado", + it: "Vento Tagliente", + pt: "Vento Dilacerante", + de: "Schneidender Wind" + }, + + damage: 90 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/008.ts b/data/Scarlet & Violet/Surging Sparks/008.ts new file mode 100644 index 000000000..5d0cb613e --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/008.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Morelull", + fr: "Spododo", + es: "Morelull", + it: "Morelull", + pt: "Morelull", + de: "Bubungus" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Attach", + fr: "Accrochage", + es: "Pegarse", + it: "Appiccicoso", + pt: "Conectar", + de: "Festkleben" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/009.ts b/data/Scarlet & Violet/Surging Sparks/009.ts new file mode 100644 index 000000000..c8f3df243 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/009.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Shiinotic", + fr: "Lampignon", + es: "Shiinotic", + it: "Shiinotic", + pt: "Shiinotic", + de: "Lamellux" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 110, + types: ["Grass"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Calming Light", + fr: "Lumière Apaisante", + es: "Luz Calmante", + it: "Calmaluce", + pt: "Luz Tranquilizadora", + de: "Beruhigender Schein" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you may make your opponent's Active Pokémon Asleep.", + fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez laisser le Pokémon Actif de votre adversaire Endormi.", + es: "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes dejar al Pokémon Activo de tu rival Dormido.", + it: "Una sola volta durante il tuo turno, se questo Pokémon è in posizione attiva, puoi lasciare il Pokémon attivo del tuo avversario addormentato.", + pt: "Uma vez durante o seu turno, se este Pokémon estiver no Campo Ativo, você poderá deixar o Pokémon Ativo do seu oponente Adormecido.", + de: "Einmal während deines Zuges, wenn dieses Pokémon in der Aktiven Position ist, kannst du das Aktive Pokémon deines Gegners einschlafen lassen." + } + }], + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Spiral Rush", + fr: "Course en Spirale", + es: "Avalancha Espiral", + it: "Raffica a Spirale", + pt: "Arremetida Espiral", + de: "Spiralsturmangriff" + }, + + effect: { + en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.", + fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.", + es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 30 puntos de daño más por cada cara.", + it: "Lancia una moneta finché non esce croce. Questo attacco infligge 30 danni in più ogni volta che esce testa.", + pt: "Jogue uma moeda até sair coroa. Este ataque causa 30 pontos de dano a mais para cada cara.", + de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Diese Attacke fügt 30 Schadenspunkte mehr pro Kopf zu." + }, + + damage: "60+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/010.ts b/data/Scarlet & Violet/Surging Sparks/010.ts new file mode 100644 index 000000000..beb229f7a --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/010.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Dhelmise", + fr: "Sinistrail", + es: "Dhelmise", + it: "Dhelmise", + pt: "Dhelmise", + de: "Moruda" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Rescue Kedge", + fr: "Ancrage Salvateur", + es: "Áncora de Rescate", + it: "Ancorotto di Soccorso", + pt: "Resgate Atracado", + de: "Rettungsanker" + }, + + effect: { + en: "Put up to 2 Pokémon from your discard pile into your hand.", + fr: "Ajoutez jusqu'à 2 Pokémon de votre pile de défausse à votre main.", + es: "Pon hasta 2 Pokémon de tu pila de descartes en tu mano.", + it: "Prendi fino a due Pokémon dalla tua pila degli scarti e aggiungili alle carte che hai in mano.", + pt: "Coloque até 2 Pokémon da sua pilha de descarte na sua mão.", + de: "Nimm bis zu 2 Pokémon aus deinem Ablagestapel auf deine Hand." + } + }, { + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Annihilating Anchor", + fr: "Ancre Annihilante", + es: "Ancla Aniquiladora", + it: "Ancora di Distruzione", + pt: "Âncora Aniquiladora", + de: "Vernichtungsanker" + }, + + effect: { + en: "Before doing damage, discard all Pokémon Tools from your opponent's Active Pokémon.", + fr: "Avant d'infliger des dégâts, défaussez tous les Outils Pokémon du Pokémon Actif de votre adversaire.", + es: "Antes de infligir daño, descarta todas las Herramientas Pokémon del Pokémon Activo de tu rival.", + it: "Prima di infliggere danni, scarta tutte le carte Oggetto Pokémon dal Pokémon attivo del tuo avversario.", + pt: "Antes de causar dano, descarte todas as Ferramentas Pokémon do Pokémon Ativo do seu oponente.", + de: "Bevor du Schaden zufügst, lege alle Pokémon-Ausrüstungen vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 80 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/011.ts b/data/Scarlet & Violet/Surging Sparks/011.ts new file mode 100644 index 000000000..c13b1adab --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/011.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Zarude", + fr: "Zarude", + es: "Zarude", + it: "Zarude", + pt: "Zarude", + de: "Zarude" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass"], + + name: { + en: "Leaf Drain", + fr: "Feuille Sangsue", + es: "Hoja Drenante", + it: "Assorbifoglia", + pt: "Dreno Folha", + de: "Blattsauger" + }, + + effect: { + en: "Heal 20 damage from this Pokémon.", + fr: "Soignez 20 dégâts de ce Pokémon.", + es: "Cura 20 puntos de daño a este Pokémon.", + it: "Cura questo Pokémon da 20 danni.", + pt: "Cure 20 pontos de dano deste Pokémon.", + de: "Heile 20 Schadenspunkte bei diesem Pokémon." + }, + + damage: 20 + }, { + cost: ["Grass", "Grass", "Colorless"], + + name: { + en: "Jungle Whip", + fr: "Fouet Végétal", + es: "Látigo Selvático", + it: "Giunglafrusta", + pt: "Chicote da Selva", + de: "Dschungelpeitsche" + }, + + effect: { + en: "You may put all Energy attached to this Pokémon into your hand to have this attack do 80 more damage.", + fr: "Vous pouvez ajouter à votre main toutes les Énergies attachées à ce Pokémon pour que cette attaque inflige 80 dégâts supplémentaires.", + es: "Puedes poner todas las Energías unidas a este Pokémon en tu mano para que este ataque haga 80 puntos de daño más.", + it: "Puoi prendere tutte le Energie assegnate a questo Pokémon e aggiungerle alle carte che hai in mano per infliggere 80 danni in più con questo attacco.", + pt: "Você pode colocar todas as Energias ligadas a este Pokémon na sua mão para fazer este ataque causar 80 pontos de dano a mais.", + de: "Du kannst alle an dieses Pokémon angelegten Energien auf deine Hand nehmen, sodass diese Attacke 80 Schadenspunkte mehr zufügt." + }, + + damage: "80+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/012.ts b/data/Scarlet & Violet/Surging Sparks/012.ts new file mode 100644 index 000000000..fc8ad4bc7 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/012.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Capsakid", + fr: "Pimito", + es: "Capsakid", + it: "Capsakid", + pt: "Capsakid", + de: "Chilingel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Headbutt Bounce", + fr: "Culbute Surprise", + es: "Bote Cabezazo", + it: "Rimbalzo Bottintesta", + pt: "Cabeçada Ricochete", + de: "Abrupter Kopfstoß" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/013.ts b/data/Scarlet & Violet/Surging Sparks/013.ts new file mode 100644 index 000000000..4b4d4d2aa --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/013.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Rellor", + fr: "Léboulérou", + es: "Rellor", + it: "Rellor", + pt: "Rellor", + de: "Relluk" + }, + + rarity: "Common", + category: "Pokemon", + hp: 40, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + 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: ["Grass"], + + name: { + en: "Rollout", + fr: "Roulade", + es: "Rodar", + it: "Rotolamento", + pt: "Rolagem", + de: "Walzer" + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/014.ts b/data/Scarlet & Violet/Surging Sparks/014.ts new file mode 100644 index 000000000..605513571 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/014.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Rabsca", + fr: "Bérasca", + es: "Rabsca", + it: "Rabsca", + pt: "Rabsca", + de: "Skarabaks" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 70, + types: ["Grass"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Triple Draw", + fr: "Triple Pioche", + es: "Triple Robo", + it: "Pescata Tripla", + pt: "Compra Tripla", + de: "Dreifachzug" + }, + + effect: { + en: "Draw 3 cards.", + fr: "Piochez 3 cartes.", + es: "Roba 3 cartas.", + it: "Pesca tre carte.", + pt: "Compre 3 cartas.", + de: "Ziehe 3 Karten." + } + }, { + cost: ["Grass"], + + name: { + en: "Counterturn", + fr: "Contre-Tour", + es: "Giro Inesperado", + it: "Controsvolta", + pt: "Reviravolta", + de: "Gegenzug" + }, + + effect: { + en: "If there are 3 or fewer cards in your deck, this attack does 200 more damage.", + fr: "S'il y a 3 cartes ou moins dans votre deck, cette attaque inflige 200 dégâts supplémentaires.", + es: "Si hay 3 cartas o menos en tu baraja, este ataque hace 200 puntos de daño más.", + it: "Se ci sono tre o meno carte nel tuo mazzo, questo attacco infligge 200 danni in più.", + pt: "Se houver 3 ou menos cartas no seu baralho, este ataque causará 200 pontos de dano a mais.", + de: "Wenn 3 oder weniger Karten in deinem Deck sind, fügt diese Attacke 200 Schadenspunkte mehr zu." + }, + + damage: "40+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/015.ts b/data/Scarlet & Violet/Surging Sparks/015.ts new file mode 100644 index 000000000..71bbf14f1 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/015.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Wo-Chien", + fr: "Chongjian", + es: "Wo-Chien", + it: "Wo-Chien", + pt: "Wo-Chien", + de: "Chongjian" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Hazardous Greed", + fr: "Avidité Risquée", + es: "Avaricia Peligrosa", + it: "Avidità Pericolosa", + pt: "Ganância Periculosa", + de: "Gefährliche Gier" + }, + + effect: { + en: "If there are 3 or fewer cards in your deck, this attack also does 120 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "S'il y a 3 cartes ou moins dans votre deck, cette attaque inflige aussi 120 dégâts à 2 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Si hay 3 cartas o menos en tu baraja, este ataque también hace 120 puntos de daño a 2 de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Se ci sono tre o meno carte nel tuo mazzo, questo attacco infligge anche 120 danni a due dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Se houver 3 ou menos cartas no seu baralho, este ataque também causará 120 pontos de dano a 2 dos Pokémon no Banco do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Wenn 3 oder weniger Karten in deinem Deck sind, fügt diese Attacke auch 2 Pokémon auf der Bank deines Gegners 120 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 20 + }, { + cost: ["Grass", "Grass", "Colorless"], + + name: { + en: "Entangling Whip", + fr: "Fouet Emmêlant", + es: "Látigo Estrangulador", + it: "Frustata Avvolgente", + pt: "Chicote Entrelaçador", + de: "Verfängliche Peitsche" + }, + + effect: { + en: "Discard the top 3 cards of your deck.", + fr: "Défaussez les 3 cartes du dessus de votre deck.", + es: "Descarta las 3 primeras cartas de tu baraja.", + it: "Scarta le prime tre carte del tuo mazzo.", + pt: "Descarte as 3 cartas de cima do seu baralho.", + de: "Lege die obersten 3 Karten deines Decks auf deinen Ablagestapel." + }, + + damage: 130 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/016.ts b/data/Scarlet & Violet/Surging Sparks/016.ts new file mode 100644 index 000000000..6852510ae --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/016.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Vulpix", + fr: "Goupix", + es: "Vulpix", + it: "Vulpix", + pt: "Vulpix", + de: "Vulpix" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Take Down", + fr: "Bélier", + es: "Derribo", + it: "Riduttore", + pt: "Desmantelar", + de: "Bodycheck" + }, + + 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: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/017.ts b/data/Scarlet & Violet/Surging Sparks/017.ts new file mode 100644 index 000000000..bdacdce7b --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/017.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Ninetales", + fr: "Feunard", + es: "Ninetales", + it: "Ninetales", + pt: "Ninetales", + de: "Vulnona" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Fire Soul", + fr: "Âme de Feu", + es: "Alma de Fuego", + it: "Animardente", + pt: "Alma de Fogo", + de: "Feurige Seele" + }, + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 30 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 30 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 30 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 30 pontos de dano 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 auch 1 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/018.ts b/data/Scarlet & Violet/Surging Sparks/018.ts new file mode 100644 index 000000000..3c50d9417 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/018.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Tauros", + fr: "Tauros de Paldea", + es: "Tauros de Paldea", + it: "Tauros di Paldea", + pt: "Tauros de Paldea", + de: "Paldea-Tauros" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Rear Kick", + fr: "Ruade", + es: "Patada Trasera", + it: "Retrocalcio", + pt: "Chute Traseiro", + de: "Rückwärtskick" + }, + + damage: 30 + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Spirited Tackle", + fr: "Charge Impétueuse", + es: "Placaje Vigoroso", + it: "Vigorazione", + pt: "Investida Vivaz", + de: "Hitziger Tackle" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Stage 1 Pokémon, this attack does 90 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon de Niveau 1, cette attaque inflige 90 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival es un Pokémon de Fase 1, este ataque hace 90 puntos de daño más.", + it: "Se il Pokémon attivo del tuo avversario è un Pokémon di Fase 1, questo attacco infligge 90 danni in più.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon Estágio 1, este ataque causará 90 pontos de dano a mais.", + de: "Wenn das Aktive Pokémon deines Gegners ein Phase-1-Pokémon ist, fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "90+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/019.ts b/data/Scarlet & Violet/Surging Sparks/019.ts new file mode 100644 index 000000000..d249b8fa2 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/019.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Ho-Oh", + fr: "Ho-Oh", + es: "Ho-Oh", + it: "Ho-Oh", + pt: "Ho-Oh", + de: "Ho-Oh" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + en: "Flap", + fr: "Battement", + es: "Aleteo", + it: "Alabattito", + pt: "Asa", + de: "Flattern" + }, + + damage: 50 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Shining Blaze", + fr: "Brasier Brillant", + es: "Llamarada Radiante", + it: "Fiammata Luminosa", + pt: "Incêndio Brilhante", + de: "Glühender Glanz" + }, + + effect: { + en: "If you have any Tera Pokémon on your Bench, this attack does 100 more damage.", + fr: "Si vous avez au moins un Pokémon Téracristal sur votre Banc, cette attaque inflige 100 dégâts supplémentaires.", + es: "Si tienes algún Pokémon Teracristal en tu Banca, este ataque hace 100 puntos de daño más.", + it: "Se hai dei Pokémon Teracristal in panchina, questo attacco infligge 100 danni in più.", + pt: "Se você tiver algum Pokémon Tera no seu Banco, este ataque causará 100 pontos de dano a mais.", + de: "Wenn du mindestens 1 Terakristall-Pokémon auf deiner Bank hast, fügt diese Attacke 100 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/020.ts b/data/Scarlet & Violet/Surging Sparks/020.ts new file mode 100644 index 000000000..5680f6b58 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/020.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Castform Sunny Form", + fr: "Morphéo Forme Solaire", + es: "Castform Forma Sol", + it: "Castform Forma Sole", + pt: "Castform Forma Ensolarada", + de: "Formeo Sonnenform" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + 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", "Colorless"], + + name: { + en: "Sunny Assist", + fr: "Assistance Ensoleillée", + es: "Asistencia Soleada", + it: "Assistisole", + pt: "Assistência Ensolarada", + de: "Sonnige Hilfe" + }, + + effect: { + en: "Move all Energy from this Pokémon to 1 of your Benched Pokémon.", + fr: "Déplacez toutes les Énergies de ce Pokémon vers l'un de vos Pokémon de Banc.", + es: "Mueve todas las Energías de este Pokémon a uno de tus Pokémon en Banca.", + it: "Sposta tutte le Energie da questo Pokémon a uno di quelli nella tua panchina.", + pt: "Mova todas as Energias deste Pokémon para 1 dos seus Pokémon no Banco.", + de: "Verschiebe alle Energien von diesem Pokémon auf 1 Pokémon auf deiner Bank." + }, + + damage: 50 + }], + + retreat: 0, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/021.ts b/data/Scarlet & Violet/Surging Sparks/021.ts new file mode 100644 index 000000000..d4a2693a6 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/021.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Victini", + fr: "Victini", + es: "Victini", + it: "Victini", + pt: "Victini", + de: "Victini" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Victory Cheer", + fr: "Cri de Victoire", + es: "Ovación de Victoria", + it: "Incitamento Vittorioso", + pt: "Grito de Vitória", + de: "Triumphjubel" + }, + + effect: { + en: "Attacks used by your Evolution Fire Pokémon do 10 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).", + fr: "Les attaques utilisées par vos Pokémon Fire Évolutifs infligent 10 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", + es: "Los ataques usados por tus Pokémon Fire Evolución hacen 10 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).", + it: "Gli attacchi usati dai tuoi Pokémon Evoluzione Fire infliggono 10 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.", + pt: "Os ataques usados pelos seus Pokémon Fire de Evolução causam 10 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).", + de: "Die von deinen Entwicklungs-Fire-Pokémon eingesetzten Attacken fügen dem Aktiven Pokémon deines Gegners 10 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." + } + }], + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + en: "Flare", + fr: "Flamboiement", + es: "Llama", + it: "Fiammata", + pt: "Chama", + de: "Flackern" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/022.ts b/data/Scarlet & Violet/Surging Sparks/022.ts new file mode 100644 index 000000000..8a7b24a5d --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/022.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Pansear", + fr: "Flamajou", + es: "Pansear", + it: "Pansear", + pt: "Pansear", + de: "Grillmak" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Combustion", + fr: "Fournaise", + es: "Combustión", + it: "Fuoco Continuo", + pt: "Combustão", + de: "Glühen" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/023.ts b/data/Scarlet & Violet/Surging Sparks/023.ts new file mode 100644 index 000000000..5da28e4b7 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/023.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Simisear", + fr: "Flamoutan", + es: "Simisear", + it: "Simisear", + pt: "Simisear", + de: "Grillchita" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Double Smash", + fr: "Double Broiement", + es: "Golpe Doble", + it: "Colpo Duplice", + pt: "Bordoada Dupla", + de: "Doppelstoß" + }, + + effect: { + en: "Flip 2 coins. This attack does 70 damage for each heads.", + fr: "Lancez 2 pièces. Cette attaque inflige 70 dégâts pour chaque côté face.", + es: "Lanza 2 monedas. Este ataque hace 70 puntos de daño por cada cara.", + it: "Lancia due volte una moneta. Questo attacco infligge 70 danni ogni volta che esce testa.", + pt: "Jogue 2 moedas. Este ataque causa 70 pontos de dano para cada cara.", + de: "Wirf 2 Münzen. Diese Attacke fügt 70 Schadenspunkte pro Kopf zu." + }, + + damage: "70×" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/024.ts b/data/Scarlet & Violet/Surging Sparks/024.ts new file mode 100644 index 000000000..e868b6d0d --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/024.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Larvesta", + fr: "Pyronille", + es: "Larvesta", + it: "Larvesta", + pt: "Larvesta", + de: "Ignivor" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Ram", + fr: "Collision", + es: "Apisonar", + it: "Carica", + pt: "Aríete", + de: "Ramme" + }, + + damage: 10 + }, { + 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: 20 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/025.ts b/data/Scarlet & Violet/Surging Sparks/025.ts new file mode 100644 index 000000000..e3325659c --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/025.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Volcarona", + fr: "Pyrax", + es: "Volcarona", + it: "Volcarona", + pt: "Volcarona", + de: "Ramoth" + }, + + rarity: "Common", + category: "Pokemon", + hp: 140, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Leech Life", + fr: "Vampirisme", + es: "Chupavidas", + it: "Sanguisuga", + pt: "Suga-vidas", + de: "Blutsauger" + }, + + effect: { + en: "Heal from this Pokémon the same amount of damage you did to your opponent's Active Pokémon.", + fr: "Soignez ce Pokémon du nombre de dégâts que vous avez infligés au Pokémon Actif de votre adversaire.", + es: "Cura a este Pokémon la misma cantidad de puntos de daño que hayas infligido al Pokémon Activo de tu rival.", + it: "Cura questo Pokémon da una quantità di danni pari a quelli che hai inflitto al Pokémon attivo del tuo avversario.", + pt: "Cure deste Pokémon a mesma quantidade de dano que você causou ao Pokémon Ativo do seu oponente.", + de: "Heile bei diesem Pokémon genauso viel Schaden, wie du dem Aktiven Pokémon deines Gegners zugefügt hast." + }, + + damage: 30 + }, { + cost: ["Fire", "Colorless", "Colorless"], + + name: { + en: "Turbulent Wings", + fr: "Ailes Tumultueuses", + es: "Alas Turbulentas", + it: "Ali Turbolente", + pt: "Asas Turbulentas", + de: "Turbulente Flügel" + }, + + 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: 150 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/026.ts b/data/Scarlet & Violet/Surging Sparks/026.ts new file mode 100644 index 000000000..8e6741c23 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/026.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Oricorio", + fr: "Plumeline", + es: "Oricorio", + it: "Oricorio", + pt: "Oricorio", + de: "Choreogel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Energy Assist", + fr: "Assistance Énergétique", + es: "Asistencia de Energía", + it: "Assistienergia", + pt: "Socorro de Energia", + de: "Energieförderung" + }, + + effect: { + en: "Attach up to 2 Basic Energy cards from your discard pile to 1 of your Benched Pokémon.", + fr: "Attachez jusqu'à 2 cartes Énergie de base de votre pile de défausse à l'un de vos Pokémon de Banc.", + es: "Une hasta 2 cartas de Energía Básica de tu pila de descartes a uno de tus Pokémon en Banca.", + it: "Assegna a uno dei tuoi Pokémon in panchina fino a due carte Energia base dalla tua pila degli scarti.", + pt: "Ligue até 2 cartas de Energia Básica da sua pilha de descarte a 1 dos seus Pokémon no Banco.", + de: "Lege bis zu 2 Basis-Energiekarten aus deinem Ablagestapel an 1 Pokémon auf deiner Bank an." + } + }, { + cost: ["Fire"], + + name: { + en: "Fireworks", + fr: "Feu d'Artifice", + es: "Fuegos Artificiales", + it: "Fuochi d'Artificio", + pt: "Fogos de Artifício", + de: "Feuerwerk" + }, + + effect: { + en: "Discard an Energy from this Pokémon.", + fr: "Défaussez une Énergie de ce Pokémon.", + es: "Descarta 1 Energía de este Pokémon.", + it: "Scarta un'Energia da questo Pokémon.", + pt: "Descarte uma Energia deste Pokémon.", + de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/027.ts b/data/Scarlet & Violet/Surging Sparks/027.ts new file mode 100644 index 000000000..8edd03ec2 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/027.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Sizzlipede", + fr: "Grillepattes", + es: "Sizzlipede", + it: "Sizzlipede", + pt: "Sizzlipede", + de: "Thermopod" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Live Coal", + fr: "Charbon Mutant", + es: "Carbón Activado", + it: "Carboni Ardenti", + pt: "Carvão Vivo", + de: "Glühende Kohlen" + }, + + damage: 10 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Hook", + fr: "Crochet", + es: "Garfio", + it: "Uncino", + pt: "Gancho", + de: "Haken" + }, + + damage: 30 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/028.ts b/data/Scarlet & Violet/Surging Sparks/028.ts new file mode 100644 index 000000000..d797eb4c5 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/028.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Centiskorch", + fr: "Scolocendre", + es: "Centiskorch", + it: "Centiskorch", + pt: "Centiskorch", + de: "Infernopod" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Billowing Heat Wave", + fr: "Volutes Canicule", + es: "Onda Ígnea Sinuosa", + it: "Ondacalda Fluttuante", + pt: "Mormaço Envolvente", + de: "Wabernde Hitzewelle" + }, + + effect: { + en: "This attack also does 30 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 30 dégâts à chacun de vos Pokémon de Banc. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 30 puntos de daño a cada uno de tus Pokémon en Banca. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 30 danni a ciascuno dei Pokémon nella tua panchina. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 30 pontos de dano a cada um dos seus Pokémon no Banco. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt auch jedem Pokémon auf deiner Bank 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 130 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Heat Blast", + fr: "Explosion de Chaleur", + es: "Explosión de Calor", + it: "Caldobomba", + pt: "Raio de Calor", + de: "Hitzestoß" + }, + + damage: 80 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/029.ts b/data/Scarlet & Violet/Surging Sparks/029.ts new file mode 100644 index 000000000..1eba06ee5 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/029.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Fuecoco", + fr: "Chochodile", + es: "Fuecoco", + it: "Fuecoco", + pt: "Fuecoco", + de: "Krokel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + en: "Heat Burn", + fr: "Chaleur Brûlante", + es: "Quemazón", + it: "Brucia Calore", + pt: "Queimadura por Calor", + de: "Brandwunde" + }, + + 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: 20 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/030.ts b/data/Scarlet & Violet/Surging Sparks/030.ts new file mode 100644 index 000000000..6726f9720 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/030.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Crocalor", + fr: "Crocogril", + es: "Crocalor", + it: "Crocalor", + pt: "Crocalor", + de: "Lokroko" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire", "Colorless"], + + name: { + en: "Heat Breath", + fr: "Souffle Ardent", + es: "Aliento Ardiente", + it: "Alitorovente", + pt: "Bafo de Calor", + de: "Heißer Atem" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 50 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 50 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 50 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 50 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 50 Schadenspunkte mehr zu." + }, + + damage: "30+" + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/031.ts b/data/Scarlet & Violet/Surging Sparks/031.ts new file mode 100644 index 000000000..d70072216 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/031.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Skeledirge", + fr: "Flâmigator", + es: "Skeledirge", + it: "Skeledirge", + pt: "Skeledirge", + de: "Skelokrok" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 180, + types: ["Fire"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Unaware", + fr: "Inconscient", + es: "Ignorante", + it: "Imprudenza", + pt: "Ignorante", + de: "Unkenntnis" + }, + + 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", "Colorless"], + + name: { + en: "Torcherto", + fr: "Torcherto", + es: "Serenata Incendiaria", + it: "Concerto Infuocato", + pt: "Repertocha", + de: "Schmorchester" + }, + + effect: { + en: "This attack does 20 more damage for each Benched Pokémon (both yours and your opponent's).", + fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Pokémon de Banc (les vôtres et ceux de votre adversaire).", + es: "Este ataque hace 20 puntos de daño más por cada Pokémon en Banca (tanto tuyos como de tu rival).", + it: "Questo attacco infligge 20 danni in più per ogni Pokémon in panchina, sia tuo che del tuo avversario.", + pt: "Este ataque causa 20 pontos de dano a mais para cada Pokémon no Banco (seus e do seu oponente).", + de: "Diese Attacke fügt für jedes Pokémon auf der Bank (deiner und der deines Gegners) 20 Schadenspunkte mehr zu." + }, + + damage: "60+" + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/032.ts b/data/Scarlet & Violet/Surging Sparks/032.ts new file mode 100644 index 000000000..1f61402ef --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/032.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +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"], + + name: { + en: "Will-O-Wisp", + fr: "Feu Follet", + es: "Fuego Fatuo", + it: "Fuocofatuo", + pt: "Fogo Fátuo", + de: "Irrlicht" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/033.ts b/data/Scarlet & Violet/Surging Sparks/033.ts new file mode 100644 index 000000000..f6838bd3e --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/033.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Charcadet", + fr: "Charbambin", + es: "Charcadet", + it: "Charcadet", + pt: "Charcadet", + de: "Knarbon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Light Punch", + fr: "Poing Léger", + es: "Puño Ligero", + it: "Pugnetto", + pt: "Soco de Luz", + de: "Leichter Hieb" + }, + + damage: 10 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Flamethrower", + fr: "Lance-Flammes", + es: "Lanzallamas", + it: "Lanciafiamme", + pt: "Lança-chamas", + de: "Flammenwurf" + }, + + effect: { + en: "Discard an Energy from this Pokémon.", + fr: "Défaussez une Énergie de ce Pokémon.", + es: "Descarta 1 Energía de este Pokémon.", + it: "Scarta un'Energia da questo Pokémon.", + pt: "Descarte uma Energia deste Pokémon.", + de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 70 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/034.ts b/data/Scarlet & Violet/Surging Sparks/034.ts new file mode 100644 index 000000000..7e36d549a --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/034.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Armarouge", + fr: "Carmadura", + es: "Armarouge", + it: "Armarouge", + pt: "Armarouge", + de: "Crimanzo" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 140, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Combustion", + fr: "Fournaise", + es: "Combustión", + it: "Fuoco Continuo", + pt: "Combustão", + de: "Glühen" + }, + + damage: 50 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Crimson Blaster", + fr: "Explosion Carmin", + es: "Explosión Carmesí", + it: "Esplosione Vermiglia", + pt: "Detonador Carmim", + de: "Feuerroter Blaster" + }, + + effect: { + en: "Discard all Fire Energy from this Pokémon, and this attack does 180 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Défaussez toutes les Énergies Fire de ce Pokémon. Cette attaque inflige 180 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Descarta todas las Energías Fire de este Pokémon, y este ataque hace 180 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Scarta tutte le Energie Fire da questo Pokémon e questo attacco infligge 180 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Descarte todas as Energias Fire deste Pokémon, e este ataque causa 180 pontos de dano a 1 dos Pokémon no Banco do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Lege alle Fire-Energien von diesem Pokémon auf deinen Ablagestapel, und diese Attacke fügt 1 Pokémon auf der Bank deines Gegners 180 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/035.ts b/data/Scarlet & Violet/Surging Sparks/035.ts new file mode 100644 index 000000000..bddd6354c --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/035.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Ceruledge", + fr: "Malvalame", + es: "Ceruledge", + it: "Ceruledge", + pt: "Ceruledge", + de: "Azugladis" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 140, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Cursed Edge", + fr: "Lame Maudite", + es: "Filo Maldito", + it: "Lama Maledetta", + pt: "Gume Amaldiçoado", + de: "Fluchklinge" + }, + + effect: { + en: "Discard all Special Energy from all of your opponent's Pokémon.", + fr: "Défaussez toutes les Énergies spéciales de tous les Pokémon de votre adversaire.", + es: "Descarta todas las Energías Especiales de todos los Pokémon de tu rival.", + it: "Scarta tutte le Energie speciali dai Pokémon del tuo avversario.", + pt: "Descarte todas as Energias Especiais de todos os Pokémon do seu oponente.", + de: "Lege alle Spezial-Energien von allen Pokémon deines Gegners auf seinen Ablagestapel." + } + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Black Blaze Slash", + fr: "Tranche Brasier Sombre", + es: "Tajo Ígneo Oscuro", + it: "Lacerafiamma Nera", + pt: "Talho de Chamas Negras", + de: "Schwarzfeuerstich" + }, + + 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: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/036.ts b/data/Scarlet & Violet/Surging Sparks/036.ts new file mode 100644 index 000000000..c602e7c7d --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/036.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Ceruledge ex", + fr: "Malvalame-ex", + es: "Ceruledge ex", + it: "Ceruledge-ex", + pt: "Ceruledge ex", + de: "Azugladis-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Abyssal Flames", + fr: "Flammes Abyssales", + es: "Llamas Abismales", + it: "Fiamme Abissali", + pt: "Chamas Abissais", + de: "Flammen des Abgrunds" + }, + + effect: { + en: "This attack does 20 more damage for each Energy card in your discard pile.", + fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque carte Énergie dans votre pile de défausse.", + es: "Este ataque hace 20 puntos de daño más por cada carta de Energía en tu pila de descartes.", + it: "Questo attacco infligge 20 danni in più per ogni carta Energia nella tua pila degli scarti.", + pt: "Este ataque causa 20 pontos de dano a mais para cada carta de Energia na sua pilha de descarte.", + de: "Diese Attacke fügt für jede Energiekarte in deinem Ablagestapel 20 Schadenspunkte mehr zu." + }, + + damage: "30+" + }, { + cost: ["Fire", "Psychic", "Metal"], + + name: { + en: "Raging Amethyst", + fr: "Améthyste Enragée", + es: "Amatista Iracunda", + it: "Furia di Ametista", + pt: "Ametista Feroz", + de: "Furioser Amethyst" + }, + + effect: { + en: "Discard all Energy from this Pokémon.", + fr: "Défaussez toutes les Énergies de ce Pokémon.", + es: "Descarta todas las Energías de este Pokémon.", + it: "Scarta tutte le Energie da questo Pokémon.", + pt: "Descarte todas as Energias deste Pokémon.", + de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 280 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/037.ts b/data/Scarlet & Violet/Surging Sparks/037.ts new file mode 100644 index 000000000..698575478 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/037.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Scovillain ex", + fr: "Scovilain-ex", + es: "Scovillain ex", + it: "Scovillain-ex", + pt: "Scovillain ex", + de: "Halupenjo-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Fire"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Double Type", + fr: "Type Double", + es: "Doble Tipo", + it: "Doppio Tipo", + pt: "Tipo Duplo", + de: "Doppeltyp" + }, + + effect: { + en: "As long as this Pokémon is in play, it is Grass and Fire type.", + fr: "Tant que ce Pokémon est en jeu, il est de type Grass et Fire.", + es: "Mientras este Pokémon esté en juego, es de tipo Grass y Fire.", + it: "Fintanto che questo Pokémon è in gioco, è di tipo Grass e Fire.", + pt: "Enquanto este Pokémon estiver em jogo, será um Pokémon de tipo Grass e Fire.", + de: "Solange dieses Pokémon im Spiel ist, ist es vom Typ Grass und Fire." + } + }], + + attacks: [{ + cost: ["Fire", "Fire"], + + name: { + en: "Spicy Rage", + fr: "Frénésie Pimentée", + es: "Furia Picante", + it: "Ira Piccante", + pt: "Ira Apimentada", + de: "Scharfer Zorn" + }, + + effect: { + en: "This attack does 70 more damage for each damage counter on this Pokémon.", + fr: "Cette attaque inflige 70 dégâts supplémentaires pour chaque marqueur de dégâts sur ce Pokémon.", + es: "Este ataque hace 70 puntos de daño más por cada contador de daño en este Pokémon.", + it: "Questo attacco infligge 70 danni in più per ogni segnalino danno presente su questo Pokémon.", + pt: "Este ataque causa 70 pontos de dano a mais para cada contador de dano neste Pokémon.", + de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 70 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/038.ts b/data/Scarlet & Violet/Surging Sparks/038.ts new file mode 100644 index 000000000..419f4d619 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/038.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Gouging Fire", + fr: "Feu-Perçant", + es: "Flamariete", + it: "Vampeaguzze", + pt: "Fogo Corrosão", + de: "Keilflamme" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Lunge Out", + fr: "Allonger", + es: "Arremeter", + it: "Affondo Lungo", + pt: "Bote", + de: "Sprungangriff" + }, + + damage: 30 + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Blazing Charge", + fr: "Charge Enflammée", + es: "Carga Calcinadora", + it: "Carica Ardente", + pt: "Avanço Flamejante", + de: "Lodernder Ansturm" + }, + + effect: { + en: "If your opponent has 4 or fewer Prize cards remaining, this attack does 70 more damage.", + fr: "S'il reste 4 cartes Récompense ou moins à votre adversaire, cette attaque inflige 70 dégâts supplémentaires.", + es: "Si a tu rival le quedan 4 cartas de Premio o menos, este ataque hace 70 puntos de daño más.", + it: "Se il tuo avversario ha quattro o meno carte Premio rimanenti, questo attacco infligge 70 danni in più.", + pt: "Se o seu oponente tiver 4 ou menos cartas de Prêmio restantes, este ataque causará 70 pontos de dano a mais.", + de: "Wenn dein Gegner 4 oder weniger verbleibende Preiskarten hat, fügt diese Attacke 70 Schadenspunkte mehr zu." + }, + + damage: "100+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/039.ts b/data/Scarlet & Violet/Surging Sparks/039.ts new file mode 100644 index 000000000..5ee551191 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/039.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Tauros", + fr: "Tauros de Paldea", + es: "Tauros de Paldea", + it: "Tauros di Paldea", + pt: "Tauros de Paldea", + de: "Paldea-Tauros" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Upthrusting Horns", + fr: "Cornes Renversantes", + es: "Cornada Ascendente", + it: "Sollevacorna", + pt: "Chifrada", + de: "Hörnerstoß" + }, + + effect: { + en: "You may put 2 Energy attached to your opponent's Active Stage 2 Pokémon into their hand.", + fr: "Vous pouvez ajouter à la main de votre adversaire 2 Énergies attachées à son Pokémon Actif de Niveau 2.", + es: "Puedes poner 2 Energías unidas al Pokémon de Fase 2 Activo de tu rival en su mano.", + it: "Puoi prendere due Energie assegnate al Pokémon di Fase 2 attivo del tuo avversario e aggiungerle alle carte che ha in mano.", + pt: "Você pode colocar 2 Energias ligadas ao Pokémon Estágio 2 Ativo do seu oponente na mão dele.", + de: "Du kannst deinem Gegner 2 an sein Aktives Phase-2-Pokémon angelegte Energien auf seine Hand geben." + }, + + damage: 30 + }, { + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Jet Headbutt", + fr: "Bélier Volant", + es: "Turbocabezazo", + it: "Zuccata Jet", + pt: "Cabeçada a Jato", + de: "Flinke Kopfnuss" + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/040.ts b/data/Scarlet & Violet/Surging Sparks/040.ts new file mode 100644 index 000000000..93d023026 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/040.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Mantine", + fr: "Démanta", + es: "Mantine", + it: "Mantine", + pt: "Mantine", + de: "Mantax" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Wave Splash", + fr: "Grosse Vague", + es: "Chapoteo Ondulante", + it: "Schizzi d'Onda", + pt: "Onda Borrifante", + de: "Wellenplatscher" + }, + + damage: 30 + }, { + cost: ["Water", "Colorless"], + + name: { + en: "Aqua Dive", + fr: "Plongée Aquatique", + es: "Embestida Aqua", + it: "Tuffo Acquatico", + pt: "Mergulho Aquático", + de: "Flutentaucher" + }, + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 50 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 50 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 50 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 50 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 50 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/041.ts b/data/Scarlet & Violet/Surging Sparks/041.ts new file mode 100644 index 000000000..413871741 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/041.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Feebas", + fr: "Barpau", + es: "Feebas", + it: "Feebas", + pt: "Feebas", + de: "Barschwa" + }, + + rarity: "Common", + category: "Pokemon", + hp: 30, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Leap Out", + fr: "Bondir", + es: "Saltar del Agua", + it: "Sguizzata", + pt: "Pular Fora", + de: "Herausspringen" + }, + + 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." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/042.ts b/data/Scarlet & Violet/Surging Sparks/042.ts new file mode 100644 index 000000000..76d7965d6 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/042.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Milotic ex", + fr: "Milobellus-ex", + es: "Milotic ex", + it: "Milotic-ex", + pt: "Milotic ex", + de: "Milotic-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Sparkling Scales", + fr: "Écailles Étincelantes", + es: "Escamas Centelleantes", + it: "Scaglie Scintillanti", + pt: "Escamas Cintilantes", + de: "Funkelnde Schuppen" + }, + + effect: { + en: "Prevent all damage from and effects of attacks from your opponent's Tera Pokémon done to this Pokémon.", + fr: "Évitez tous les dégâts et les effets d'attaques infligés à ce Pokémon par les Pokémon Téracristal de votre adversaire.", + es: "Se evitan todo el daño y todos los efectos de los ataques de los Pokémon Teracristal de tu rival infligidos a este Pokémon.", + it: "Previeni sia i danni che gli effetti degli attacchi dei Pokémon Teracristal del tuo avversario inflitti a questo Pokémon.", + pt: "Previna todo o dano e os efeitos de ataques dos Pokémon Tera do seu oponente causados a este Pokémon.", + de: "Verhindere allen Schaden durch und alle Effekte von Attacken von Terakristall-Pokémon deines Gegners, die diesem Pokémon zugefügt werden." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Hypno Splash", + fr: "Hypnoplouf", + es: "Salpicadura Hipnótica", + it: "Ipnospruzzo", + pt: "Explosão Hipnótica", + de: "Hypnospritzer" + }, + + 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: 160 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/043.ts b/data/Scarlet & Violet/Surging Sparks/043.ts new file mode 100644 index 000000000..b4a509fe5 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/043.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Spheal", + fr: "Obalie", + es: "Spheal", + it: "Spheal", + pt: "Spheal", + de: "Seemops" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Powder Snow", + fr: "Poudreuse", + es: "Nieve Polvo", + it: "Polneve", + pt: "Neve em Pó", + de: "Pulverschnee" + }, + + 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: 10 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/044.ts b/data/Scarlet & Violet/Surging Sparks/044.ts new file mode 100644 index 000000000..a8240af8b --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/044.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Sealeo", + fr: "Phogleur", + es: "Sealeo", + it: "Sealeo", + pt: "Sealeo", + de: "Seejong" + }, + + rarity: "Common", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Lunge Out", + fr: "Allonger", + es: "Arremeter", + it: "Affondo Lungo", + pt: "Bote", + de: "Sprungangriff" + }, + + damage: 30 + }, { + cost: ["Water", "Water"], + + name: { + en: "Ice Ball", + fr: "Ball'Glace", + es: "Bola Hielo", + it: "Palla Gelo", + pt: "Bola de Gelo", + de: "Frostbeule" + }, + + damage: 60 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/045.ts b/data/Scarlet & Violet/Surging Sparks/045.ts new file mode 100644 index 000000000..ecd8e3f05 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/045.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Walrein", + fr: "Kaimorse", + es: "Walrein", + it: "Walrein", + pt: "Walrein", + de: "Walraisa" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 170, + types: ["Water"], + stage: "Stage2", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Frigid Fangs", + fr: "Crocs Glacés", + es: "Colmillos Glaciales", + it: "Zanne Glaciali", + pt: "Presas Gélidas", + de: "Frostige Fänge" + }, + + effect: { + en: "During your opponent's next turn, Pokémon that have 2 or less Energy attached can't attack. (This includes new Pokémon that come into play.)", + fr: "Pendant le prochain tour de votre adversaire, les Pokémon auxquels 2 Énergies ou moins sont attachées ne peuvent pas attaquer. (Cela comprend les nouveaux Pokémon qui sont mis en jeu.)", + es: "Durante el próximo turno de tu rival, los Pokémon que tengan 2 Energías o menos unidas no pueden atacar. (Esto incluye los nuevos Pokémon que entren en juego).", + it: "Durante il prossimo turno del tuo avversario, i Pokémon che hanno due o meno Energie assegnate non possono attaccare. Questo include i nuovi Pokémon entrati in gioco.", + pt: "Durante o próximo turno do seu oponente, os Pokémon que tiverem 2 ou menos Energias ligadas a eles não poderão atacar. (Isto inclui novos Pokémon que entrarem em jogo.)", + de: "Während des nächsten Zuges deines Gegners können Pokémon, an die 2 oder weniger Energien angelegt sind, nicht angreifen. (Dies schließt neue Pokémon ein, die ins Spiel gebracht werden.)" + }, + + damage: 60 + }, { + cost: ["Water", "Water"], + + name: { + en: "Megaton Fall", + fr: "Chute Mégatonne", + es: "Caída Megatón", + it: "Caduta Megatonica", + pt: "Queda do Megaton", + de: "Megatonnenfall" + }, + + 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: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/046.ts b/data/Scarlet & Violet/Surging Sparks/046.ts new file mode 100644 index 000000000..9c3099029 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/046.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Shellos", + fr: "Sancoki", + es: "Shellos", + it: "Shellos", + pt: "Shellos", + de: "Schalellos" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Sprinkle Water", + fr: "Eau Aspergeante", + es: "Esparcir Agua", + it: "Goccioline", + pt: "Aspergir Água", + de: "Wassersprüher" + }, + + damage: 30 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/047.ts b/data/Scarlet & Violet/Surging Sparks/047.ts new file mode 100644 index 000000000..f69f32896 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/047.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Cryogonal", + fr: "Hexagel", + es: "Cryogonal", + it: "Cryogonal", + pt: "Cryogonal", + de: "Frigometri" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Call Sign", + fr: "Signe d'Appel", + es: "Señal de Llamada", + it: "Chiamata", + pt: "Sinal de Chamada", + de: "Rufzeichen" + }, + + effect: { + en: "Search your deck for a Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.", + fr: "Cherchez dans votre deck un Pokémon, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.", + es: "Busca en tu baraja 1 Pokémon, enséñalo y ponlo en tu mano. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo un Pokémon, mostralo e aggiungilo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por um Pokémon no seu baralho, revele-o e coloque-o na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach 1 Pokémon, zeige es deinem Gegner und nimm es auf deine Hand. Mische anschließend dein Deck." + } + }, { + cost: ["Water"], + + name: { + en: "Ice Beam", + fr: "Laser Glace", + es: "Rayo Hielo", + it: "Geloraggio", + pt: "Raio Congelante", + de: "Eisstrahl" + }, + + 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: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/048.ts b/data/Scarlet & Violet/Surging Sparks/048.ts new file mode 100644 index 000000000..b9693b6cb --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/048.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Black Kyurem ex", + fr: "Kyurem Noir-ex", + es: "Kyurem Negro ex", + it: "Kyurem Nero-ex", + pt: "Kyurem Preto ex", + de: "Schwarzes Kyurem-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 230, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Ice Age", + fr: "Période Glaciaire", + es: "Era de Hielo", + it: "Era Glaciale", + pt: "Era do Gelo", + de: "Eiszeitalter" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Dragon Pokémon, it is now Paralyzed.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Dragon, il est maintenant Paralysé.", + es: "Si el Pokémon Activo de tu rival es un Pokémon Dragon, pasa a estar Paralizado.", + it: "Se il Pokémon attivo del tuo avversario è di tipo Dragon, viene paralizzato.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon Dragon, ele agora estará Paralisado.", + de: "Wenn das Aktive Pokémon deines Gegners ein Dragon-Pokémon ist, ist es jetzt paralysiert." + }, + + damage: 90 + }, { + cost: ["Water", "Water", "Colorless", "Colorless"], + + name: { + en: "Black Frost", + fr: "Givre Noir", + es: "Escarcha Negra", + it: "Nerogelo", + pt: "Geada Negra", + de: "Schwarzer Frost" + }, + + effect: { + en: "This Pokémon also does 30 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 30 dégâts.", + es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.", + it: "Questo Pokémon infligge anche 30 danni a se stesso.", + pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.", + de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu." + }, + + damage: 250 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/049.ts b/data/Scarlet & Violet/Surging Sparks/049.ts new file mode 100644 index 000000000..4741162f4 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/049.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Bruxish", + fr: "Denticrisse", + es: "Bruxish", + it: "Bruxish", + pt: "Bruxish", + de: "Knirfish" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 110, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Counterattack", + fr: "Contre-Attaque", + es: "Contragolpe", + it: "Respinta", + pt: "Contra-ataque", + de: "Gegenangriff" + }, + + effect: { + en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent's Pokémon (even if this Pokémon is Knocked Out), put 3 damage counters on the Attacking Pokémon.", + fr: "Si ce Pokémon est sur le Poste Actif et qu'il subit les dégâts d'une attaque d'un Pokémon de votre adversaire (même si ce Pokémon est mis K.O.), placez 3 marqueurs de dégâts sur le Pokémon Attaquant.", + es: "Si este Pokémon está en el Puesto Activo y resulta dañado por un ataque de los Pokémon de tu rival (incluso si este Pokémon queda Fuera de Combate), pon 3 contadores de daño en el Pokémon Atacante.", + it: "Se questo Pokémon è in posizione attiva e viene danneggiato da un attacco di un Pokémon del tuo avversario, anche se viene messo KO, metti tre segnalini danno sul Pokémon attaccante.", + pt: "Se este Pokémon estiver no Campo Ativo e for danificado por um ataque dos Pokémon do seu oponente (mesmo que este Pokémon seja Nocauteado), coloque 3 contadores de dano no Pokémon Atacante.", + de: "Wenn dieses Pokémon in der Aktiven Position ist und durch eine Attacke von Pokémon deines Gegners Schaden erhält (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 3 Schadensmarken auf das Angreifende Pokémon." + } + }], + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Big Bite", + fr: "Grosse Morsure", + es: "Gran Mordisco", + it: "Grande Morso", + pt: "Mordidona", + de: "Mächtiger Biss" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/050.ts b/data/Scarlet & Violet/Surging Sparks/050.ts new file mode 100644 index 000000000..e3ec4fd56 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/050.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Quaxly", + fr: "Coiffeton", + es: "Quaxly", + it: "Quaxly", + pt: "Quaxly", + de: "Kwaks" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Aerial Ace", + fr: "Aéropique", + es: "Golpe Aéreo", + it: "Aeroassalto", + pt: "Ás dos Ares", + de: "Aero-Ass" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 20 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/051.ts b/data/Scarlet & Violet/Surging Sparks/051.ts new file mode 100644 index 000000000..76395f042 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/051.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Quaxwell", + fr: "Canarbello", + es: "Quaxwell", + it: "Quaxwell", + pt: "Quaxwell", + de: "Fuentente" + }, + + rarity: "Common", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Aqua Edge", + fr: "Aqua-Dague", + es: "Filo Agua", + it: "Acquataglio", + pt: "Aqua Gume", + de: "Aquaschneide" + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/052.ts b/data/Scarlet & Violet/Surging Sparks/052.ts new file mode 100644 index 000000000..43655f2a1 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/052.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Quaquaval", + fr: "Palmaval", + es: "Quaquaval", + it: "Quaquaval", + pt: "Quaquaval", + de: "Bailonda" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 170, + types: ["Water"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Up-Tempo", + fr: "Tempo Enlevé", + es: "Presto", + it: "Ritmo Veloce", + pt: "Velocidade Cinco", + de: "Flottes Tempo" + }, + + effect: { + en: "You must put a card from your hand on the bottom of your deck in order to use this Ability. Once during your turn, you may draw cards until you have 5 cards in your hand.", + fr: "Vous devez placer une carte de votre main en dessous de votre deck pour pouvoir utiliser ce talent. Une fois pendant votre tour, vous pouvez piocher des cartes jusqu'à en avoir 5 en main.", + es: "Debes poner 1 carta de tu mano en la parte inferior de tu baraja para poder usar esta habilidad. Una vez durante tu turno, puedes robar cartas hasta que tengas 5 cartas en tu mano.", + it: "Devi prendere una carta che hai in mano e metterla in fondo al tuo mazzo per usare questa abilità. Una sola volta durante il tuo turno, puoi pescare fino ad avere cinque carte in mano.", + pt: "Você deve colocar uma carta da sua mão como a carta de baixo do seu baralho para usar esta Habilidade. Uma vez durante o seu turno, você poderá comprar cartas até ter 5 cartas na sua mão.", + de: "Du musst 1 Karte aus deiner Hand unter dein Deck legen, um diese Fähigkeit einzusetzen. Einmal während deines Zuges kannst du so lange Karten ziehen, bis du 5 Karten auf deiner Hand hast." + } + }], + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Hydro Splash", + fr: "Hydro-Éclaboussure", + es: "Hidroestallido", + it: "Idrosplash", + pt: "Hidroborrifada", + de: "Hydroplatscher" + }, + + damage: 120 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/053.ts b/data/Scarlet & Violet/Surging Sparks/053.ts new file mode 100644 index 000000000..d7bbb0a73 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/053.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Cetoddle", + fr: "Piétacé", + es: "Cetoddle", + it: "Cetoddle", + pt: "Cetoddle", + de: "Flaniwal" + }, + + rarity: "Common", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Draining Fin", + fr: "Aileron Siphon", + es: "Aleta Drenaje", + it: "Assorbipinna", + pt: "Barbatana Drenante", + de: "Diebesflosse" + }, + + effect: { + en: "Heal 20 damage from this Pokémon.", + fr: "Soignez 20 dégâts de ce Pokémon.", + es: "Cura 20 puntos de daño a este Pokémon.", + it: "Cura questo Pokémon da 20 danni.", + pt: "Cure 20 pontos de dano deste Pokémon.", + de: "Heile 20 Schadenspunkte bei diesem Pokémon." + }, + + damage: 20 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/054.ts b/data/Scarlet & Violet/Surging Sparks/054.ts new file mode 100644 index 000000000..f6da02cab --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/054.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Cetitan", + fr: "Balbalèze", + es: "Cetitan", + it: "Cetitan", + pt: "Cetitan", + de: "Kolowal" + }, + + rarity: "Common", + category: "Pokemon", + hp: 180, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Solid Body", + fr: "Corps Résistant", + es: "Cuerpo Sólido", + it: "Corpo Solido", + pt: "Corpo Robusto", + de: "Solider Körper" + }, + + effect: { + en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).", + fr: "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: "Los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).", + it: "Questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Este Pokémon recebe 30 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).", + de: "Diesem Pokémon werden durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Dangerous Mouth", + fr: "Bouche Dangereuse", + es: "Boca Peligrosa", + it: "Fauci Pericolose", + pt: "Boca Perigosa", + de: "Gefährliches Maul" + }, + + damage: 150 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/055.ts b/data/Scarlet & Violet/Surging Sparks/055.ts new file mode 100644 index 000000000..5c4feb7cd --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/055.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Iron Bundle", + fr: "Hotte-de-Fer", + es: "Ferrosaco", + it: "Saccoferreo", + pt: "Pacote Férreo", + de: "Eisenbündel" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 100, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Gusting Collision", + fr: "Collision Rafale", + es: "Colisión Racheada", + it: "Schiantoraffica", + pt: "Colisão de Vento", + de: "Stürmische Kollision" + }, + + effect: { + en: "This attack does 50 less damage for each Colorless in your opponent's Active Pokémon's Retreat Cost.", + fr: "Cette attaque inflige 50 dégâts de moins pour chaque Colorless dans le Coût de Retraite du Pokémon Actif de votre adversaire.", + es: "Este ataque hace 50 puntos de daño menos por cada Colorless en el Coste de Retirada del Pokémon Activo de tu rival.", + it: "Questo attacco infligge 50 danni in meno per ogni Colorless nel costo di ritirata del Pokémon attivo del tuo avversario.", + pt: "Este ataque causa 50 pontos de dano a menos para cada Colorless no custo de Recuo do Pokémon Ativo do seu oponente.", + de: "Diese Attacke fügt für jedes Colorless in den Rückzugskosten des Aktiven Pokémon deines Gegners 50 Schadenspunkte weniger zu." + }, + + damage: "200-" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/056.ts b/data/Scarlet & Violet/Surging Sparks/056.ts new file mode 100644 index 000000000..dfefcf106 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/056.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Chien-Pao", + fr: "Baojian", + es: "Chien-Pao", + it: "Chien-Pao", + pt: "Chien-Pao", + de: "Baojian" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 120, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Snow Sink", + fr: "Enlisement Neigeux", + es: "Hundimiento Nieve", + it: "Neveaffondo", + pt: "Afundar na Neve", + de: "Schneesenke" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may discard a Stadium in play.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez défausser un Stade en jeu.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes descartar un Estadio en juego.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi scartare una carta Stadio in gioco.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá descartar um Estádio em jogo.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du 1 Stadionkarte im Spiel auf den Ablagestapel legen." + } + }], + + attacks: [{ + cost: ["Water", "Water", "Colorless"], + + name: { + en: "Icicle Loop", + fr: "Boucle Stalactite", + es: "Bucle Témpano", + it: "Gelocircuito", + pt: "Loop Geladinho", + de: "Eiszapfenschleife" + }, + + effect: { + en: "Put an Energy attached to this Pokémon into your hand.", + fr: "Ajoutez à votre main une Énergie attachée à ce Pokémon.", + es: "Pon 1 Energía unida a este Pokémon en tu mano.", + it: "Prendi un'Energia assegnata a questo Pokémon e aggiungila alle carte che hai in mano.", + pt: "Coloque uma Energia ligada a este Pokémon na sua mão.", + de: "Nimm 1 an dieses Pokémon angelegte Energie auf deine Hand." + }, + + damage: 120 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/057.ts b/data/Scarlet & Violet/Surging Sparks/057.ts new file mode 100644 index 000000000..ddbe7e5f8 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/057.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex", + fr: "Pikachu-ex", + es: "Pikachu ex", + it: "Pikachu-ex", + pt: "Pikachu ex", + de: "Pikachu-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Resolute Heart", + fr: "Cœur Résolu", + es: "Corazón Resuelto", + it: "Cuore Risoluto", + pt: "Coração Obstinado", + de: "Resolutes Herz" + }, + + effect: { + en: "If this Pokémon has full HP and would be Knocked Out by damage from an attack, it is not Knocked Out, and its remaining HP becomes 10.", + fr: "Si ce Pokémon a tous ses PV et doit être mis K.O. par les dégâts d'une attaque, il n'est pas mis K.O. et il lui reste 10 PV.", + es: "Si este Pokémon tiene todos sus PS y fuese a quedar Fuera de Combate por el daño de un ataque, no queda Fuera de Combate y sus PS restantes pasan a ser 10.", + it: "Se questo Pokémon ha tutti i PS e sta per essere messo KO dai danni inflitti da un attacco, non viene messo KO e i suoi PS rimanenti diventano 10.", + pt: "Se este Pokémon tiver PS cheio e estiver prestes a ser Nocauteado pelo dano de um ataque, ele não será Nocauteado e o PS restante dele será 10.", + de: "Wenn dieses Pokémon volle KP hat und durch Schaden einer Attacke kampfunfähig würde, wird es nicht kampfunfähig und seine verbleibenden KP sind gleich 10." + } + }], + + attacks: [{ + cost: ["Grass", "Lightning", "Metal"], + + name: { + en: "Topaz Bolt", + fr: "Éclair Topaze", + es: "Rayo Topacio", + it: "Fulmine di Topazio", + pt: "Raio Topázio", + de: "Topas-Blitz" + }, + + effect: { + en: "Discard 3 Energy from this Pokémon.", + fr: "Défaussez 3 Énergies de ce Pokémon.", + es: "Descarta 3 Energías de este Pokémon.", + it: "Scarta tre Energie da questo Pokémon.", + pt: "Descarte 3 Energias deste Pokémon.", + de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 300 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/058.ts b/data/Scarlet & Violet/Surging Sparks/058.ts new file mode 100644 index 000000000..425b91ae8 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/058.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Magnemite", + fr: "Magnéti", + es: "Magnemite", + it: "Magnemite", + pt: "Magnemite", + de: "Magnetilo" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Lightning Ball", + fr: "Boule Éclair", + es: "Bola Relámpago", + it: "Fulminpalla", + pt: "Bola de Raios", + de: "Kugelblitz" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/059.ts b/data/Scarlet & Violet/Surging Sparks/059.ts new file mode 100644 index 000000000..489a17039 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/059.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Magneton", + fr: "Magnéton", + es: "Magneton", + it: "Magneton", + pt: "Magneton", + de: "Magneton" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 100, + types: ["Lightning"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Overvolt Discharge", + fr: "Décharge Survoltée", + es: "Descarga Sobretensión", + it: "Scarica di Sovratensione", + pt: "Descarga Supervoltaica", + de: "Hochspannungsentladung" + }, + + effect: { + en: "Once during your turn, you may attach up to 3 Basic Energy cards from your discard pile to your Lightning Pokémon in any way you like. If you use this Ability, this Pokémon is Knocked Out.", + fr: "Une fois pendant votre tour, vous pouvez attacher jusqu'à 3 cartes Énergie de base de votre pile de défausse à vos Pokémon Lightning, comme il vous plaît. Si vous utilisez ce talent, ce Pokémon est mis K.O.", + es: "Una vez durante tu turno, puedes unir hasta 3 cartas de Energía Básica de tu pila de descartes a tus Pokémon Lightning de la manera que desees. Si usas esta habilidad, este Pokémon queda Fuera de Combate.", + it: "Una sola volta durante il tuo turno, puoi assegnare ai tuoi Pokémon Lightning fino a tre carte Energia base dalla tua pila degli scarti nel modo che preferisci. Se usi questa abilità, questo Pokémon viene messo KO.", + pt: "Uma vez durante o seu turno, você poderá ligar até 3 cartas de Energia Básica da sua pilha de descarte aos seus Pokémon Lightning como desejar. Se você usar esta Habilidade, este Pokémon será Nocauteado.", + de: "Einmal während deines Zuges kannst du bis zu 3 Basis-Energiekarten aus deinem Ablagestapel beliebig an deine Lightning-Pokémon anlegen. Wenn du diese Fähigkeit einsetzt, ist dieses Pokémon kampfunfähig." + } + }], + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Electric Ball", + fr: "Boule de Foudre", + es: "Bola Eléctrica", + it: "Lamposfera", + pt: "Bola de Eletricidade", + de: "Stromball" + }, + + damage: 40 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/060.ts b/data/Scarlet & Violet/Surging Sparks/060.ts new file mode 100644 index 000000000..77787e77b --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/060.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Magnezone", + fr: "Magnézone", + es: "Magnezone", + it: "Magnezone", + pt: "Magnezone", + de: "Magnezone" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 170, + types: ["Lightning"], + stage: "Stage2", + + attacks: [{ + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + en: "Mighty Magnetism", + fr: "Magnétisme Puissant", + es: "Magnetismo Poderoso", + it: "Magnetismo Poderoso", + pt: "Magnetismo Magnífico", + de: "Mächtiger Magnetismus" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused. During your opponent's next turn, that Pokémon can't retreat.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus. Pendant le prochain tour de votre adversaire, ce Pokémon-là ne peut pas battre en retraite.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido. Durante el próximo turno de tu rival, ese Pokémon no puede retirarse.", + it: "Il Pokémon attivo del tuo avversario viene confuso. Durante il prossimo turno del tuo avversario, quel Pokémon non può ritirarsi.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso. Durante o próximo turno do seu oponente, aquele Pokémon não poderá recuar.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt. Während des nächsten Zuges deines Gegners kann sich jenes Pokémon nicht zurückziehen." + }, + + damage: 80 + }, { + cost: ["Lightning", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Zap Cannon", + fr: "Élecanon", + es: "Electrocañón", + it: "Elettrocannone", + pt: "Canhão Zap", + de: "Blitzkanone" + }, + + effect: { + en: "During your next turn, this Pokémon can't use Zap Cannon.", + fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Élecanon.", + es: "Durante tu próximo turno, este Pokémon no puede usar Electrocañón.", + it: "Durante il tuo prossimo turno, questo Pokémon non può usare Elettrocannone.", + pt: "Durante o seu próximo turno, este Pokémon não poderá usar Canhão Zap.", + de: "Während deines nächsten Zuges kann dieses Pokémon Blitzkanone nicht einsetzen." + }, + + damage: 180 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/061.ts b/data/Scarlet & Violet/Surging Sparks/061.ts new file mode 100644 index 000000000..a96e58847 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/061.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Rotom", + fr: "Motisma", + es: "Rotom", + it: "Rotom", + pt: "Rotom", + de: "Rotom" + }, + + rarity: "Common", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Crushing Pulse", + fr: "Pulsation Écrasante", + es: "Pulso Demoledor", + it: "Impulso Dirompente", + pt: "Pulso Esmagador", + de: "Zerschmetternder Puls" + }, + + effect: { + en: "Your opponent reveals their hand. Discard all Item cards and Pokémon Tool cards you find there.", + fr: "Votre adversaire montre sa main. Défaussez toutes les cartes Objet et cartes Outil Pokémon que vous y trouvez.", + es: "Tu rival enseña las cartas de su mano. Descarta todas las cartas de Objeto y de Herramienta Pokémon que encuentres entre ellas.", + it: "Il tuo avversario mostra le carte che ha in mano. Scarta tutte le carte Strumento e le carte Oggetto Pokémon presenti tra esse.", + pt: "Seu oponente revela a mão dele. Descarte todas as cartas de Item e cartas de Ferramenta Pokémon que encontrar lá.", + de: "Dein Gegner zeigt dir seine Handkarten. Lege alle Itemkarten und Pokémon-Ausrüstungen, die du dort findest, auf seinen Ablagestapel." + } + }, { + cost: ["Lightning"], + + name: { + en: "Energy Short", + fr: "Énergie Dérivée", + es: "Cortocircuito de Energía", + it: "Crisi Energetica", + pt: "Colapso de Energia", + de: "Umkehrenergie" + }, + + effect: { + en: "This attack does 20 damage for each Energy attached to your opponent's Active Pokémon.", + fr: "Cette attaque inflige 20 dégâts pour chaque Énergie attachée au Pokémon Actif de votre adversaire.", + es: "Este ataque hace 20 puntos de daño por cada Energía unida al Pokémon Activo de tu rival.", + it: "Questo attacco infligge 20 danni per ogni Energia assegnata al Pokémon attivo del tuo avversario.", + pt: "Este ataque causa 20 pontos de dano 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 zu." + }, + + damage: "20×" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/062.ts b/data/Scarlet & Violet/Surging Sparks/062.ts new file mode 100644 index 000000000..a7af10864 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/062.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Blitzle", + fr: "Zébibron", + es: "Blitzle", + it: "Blitzle", + pt: "Blitzle", + de: "Elezeba" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Add On", + fr: "Ajout", + es: "Sumar", + it: "Supplemento", + pt: "Adicionar", + de: "Hinzufügen" + }, + + 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: ["Lightning", "Colorless"], + + name: { + en: "Static Shock", + fr: "Choc Statique", + es: "Impacto Estático", + it: "Shock Statico", + pt: "Choque de Estática", + de: "Statischer Schock" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/063.ts b/data/Scarlet & Violet/Surging Sparks/063.ts new file mode 100644 index 000000000..3af8dc04b --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/063.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Zebstrika", + fr: "Zéblitz", + es: "Zebstrika", + it: "Zebstrika", + pt: "Zebstrika", + de: "Zebritz" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Kick", + fr: "Koud'Pied", + es: "Patada", + it: "Calcio", + pt: "Chute", + de: "Tritt" + }, + + damage: 30 + }, { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Mach Bolt", + fr: "Éclair Fulgurant", + es: "Rayo Mach", + it: "Fulmine Mach", + pt: "Raio Supersônico", + de: "Flotter Sprung" + }, + + damage: 120 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/064.ts b/data/Scarlet & Violet/Surging Sparks/064.ts new file mode 100644 index 000000000..bfeb162a6 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/064.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Stunfisk", + fr: "Limonde", + es: "Stunfisk", + it: "Stunfisk", + pt: "Stunfisk", + de: "Flunschlik" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Paralyzing Crackle", + fr: "Crépitement Paralysant", + es: "Chasquido Paralizante", + it: "Crepitio Paralizzante", + pt: "Estalo Paralisante", + de: "Paralysierendes Knistern" + }, + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed, and discard an Energy from that Pokémon.", + fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé, et vous défaussez une Énergie de ce Pokémon-là.", + es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado, y descartas 1 Energía de ese Pokémon.", + it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato e tu scarti un'Energia da quel Pokémon.", + pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente agora estará Paralisado, e descarte uma Energia daquele Pokémon.", + de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert, und du legst 1 Energie von jenem Pokémon auf seinen Ablagestapel." + }, + + damage: 50 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/065.ts b/data/Scarlet & Violet/Surging Sparks/065.ts new file mode 100644 index 000000000..bdd9d98f3 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/065.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Tapu Koko", + fr: "Tokorico", + es: "Tapu Koko", + it: "Tapu Koko", + pt: "Tapu Koko", + de: "Kapu-Riki" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Summon Lightning", + fr: "Invocation d'Éclairs", + es: "Invocar Rayos", + it: "Lampo Evocativo", + pt: "Invocar Relâmpagos", + de: "Blitzbeschwörung" + }, + + effect: { + en: "Search your deck for up to 2 Lightning Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 Pokémon Lightning, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 Pokémon Lightning, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due Pokémon Lightning, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 Pokémon Lightning no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Lightning-Pokémon, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + } + }, { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Prize Count", + fr: "Compteur de Récompense", + es: "Cuenta de Premios", + it: "Contapremi", + pt: "Contagem de Prêmios", + de: "Preiszähler" + }, + + effect: { + en: "If you have more Prize cards remaining than your opponent, this attack does 90 more damage.", + fr: "S'il vous reste plus de cartes Récompense qu'à votre adversaire, cette attaque inflige 90 dégâts supplémentaires.", + es: "Si te quedan más cartas de Premio que a tu rival, este ataque hace 90 puntos de daño más.", + it: "Se hai più carte Premio rimanenti del tuo avversario, questo attacco infligge 90 danni in più.", + pt: "Se você tiver mais cartas de Prêmio restantes do que seu oponente, este ataque causará 90 pontos de dano a mais.", + de: "Wenn du mehr verbleibende Preiskarten hast als dein Gegner, fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "90+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/066.ts b/data/Scarlet & Violet/Surging Sparks/066.ts new file mode 100644 index 000000000..60a19cc31 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/066.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Wattrel", + fr: "Zapétrel", + es: "Wattrel", + it: "Wattrel", + pt: "Wattrel", + de: "Voltrel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Aerial Ace", + fr: "Aéropique", + es: "Golpe Aéreo", + it: "Aeroassalto", + pt: "Ás dos Ares", + de: "Aero-Ass" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 20 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/067.ts b/data/Scarlet & Violet/Surging Sparks/067.ts new file mode 100644 index 000000000..24f4715d9 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/067.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +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", "Colorless"], + + name: { + en: "Glide", + fr: "Glissement", + es: "Planeo", + it: "Aliante", + pt: "Planeio", + de: "Gleiten" + }, + + damage: 50 + }, { + cost: ["Lightning", "Lightning", "Colorless"], + + name: { + en: "Storm Bolt", + fr: "Éclair Tempête", + es: "Rayo Tormentoso", + it: "Fulmine Tempestoso", + pt: "Temporal de Raios", + de: "Unwetterblitz" + }, + + effect: { + en: "Move all Energy from this Pokémon to your Benched Pokémon in any way you like.", + fr: "Déplacez toutes les Énergies de ce Pokémon vers vos Pokémon de Banc comme il vous plaît.", + es: "Mueve todas las Energías de este Pokémon a tus Pokémon en Banca de la manera que desees.", + it: "Sposta tutte le Energie da questo Pokémon a quelli nella tua panchina nel modo che preferisci.", + pt: "Mova todas as Energias deste Pokémon para os seus Pokémon no Banco como desejar.", + de: "Verschiebe alle Energien von diesem Pokémon beliebig auf die Pokémon auf deiner Bank." + }, + + damage: 160 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/068.ts b/data/Scarlet & Violet/Surging Sparks/068.ts new file mode 100644 index 000000000..c22ba529f --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/068.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Kilowattrel ex", + fr: "Fulgulairo-ex", + es: "Kilowattrel ex", + it: "Kilowattrel-ex", + pt: "Kilowattrel ex", + de: "Voltrean-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 260, + types: ["Lightning"], + stage: "Stage1", + + attacks: [{ + cost: ["Lightning"], + + name: { + en: "Return Charge", + fr: "Charge Retour", + es: "Carga de Retorno", + it: "Carica di Ritorno", + pt: "Carga de Retorno", + de: "Rückkehrladung" + }, + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon. If you do, attach up to 2 Basic Lightning Energy cards from your hand to this Pokémon.", + fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc. Dans ce cas, attachez jusqu'à 2 cartes Énergie Lightning de base de votre main à ce Pokémon.", + es: "Cambia este Pokémon por uno de tus Pokémon en Banca. Si lo haces, une hasta 2 cartas de Energía Lightning Básica de tu mano a este Pokémon.", + it: "Scambia questo Pokémon con uno della tua panchina. Se lo fai, assegna a questo Pokémon fino a due carte Energia base Lightning dalla tua mano.", + pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco. Se fizer isto, ligue até 2 cartas de Energia Lightning Básica da sua mão a este Pokémon.", + de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus. Wenn du das machst, lege bis zu 2 Basis-Lightning-Energiekarten aus deiner Hand an dieses Pokémon an." + } + }, { + cost: ["Colorless", "Colorless"], + + name: { + en: "Thunder Lance", + fr: "Lance Foudre", + es: "Asta Trueno", + it: "Lanciabolide", + pt: "Estaca do Trovão", + de: "Donnerlanze" + }, + + effect: { + en: "This attack does 40 more damage for each Lightning Energy attached to this Pokémon.", + fr: "Cette attaque inflige 40 dégâts supplémentaires pour chaque Énergie Lightning attachée à ce Pokémon.", + es: "Este ataque hace 40 puntos de daño más por cada Energía Lightning unida a este Pokémon.", + it: "Questo attacco infligge 40 danni in più per ogni Energia Lightning assegnata a questo Pokémon.", + pt: "Este ataque causa 40 pontos de dano a mais para cada Energia Lightning ligada a este Pokémon.", + de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Lightning-Energie 40 Schadenspunkte mehr zu." + }, + + damage: "40+" + }], + + retreat: 0, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/069.ts b/data/Scarlet & Violet/Surging Sparks/069.ts new file mode 100644 index 000000000..8048c0441 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/069.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Miraidon", + fr: "Miraidon", + es: "Miraidon", + it: "Miraidon", + pt: "Miraidon", + de: "Miraidon" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "C.O.D.E.: Protect", + fr: "C.O.D.E. : Protection", + es: "C.Ó.D.I.G.O.: Protección", + it: "Protocollo di Protezione", + pt: "C.O.D.E.: Proteção", + de: "C.O.D.E.: Beschützen" + }, + + effect: { + en: "During your opponent's next turn, prevent all damage done to each of your Future Pokémon by attacks from Pokémon ex. If this Pokémon is no longer your Active Pokémon, this effect ends.", + fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à chacun de vos Pokémon Temps futur par les attaques de Pokémon-ex. Si ce Pokémon n'est plus votre Pokémon Actif, cet effet prend fin.", + es: "Durante el próximo turno de tu rival, se evita todo el daño infligido a cada uno de tus Pokémon del futuro por ataques de Pokémon ex. Si este Pokémon ya no es tu Pokémon Activo, este efecto termina.", + it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a ciascuno dei tuoi Pokémon Tempo Futuro dagli attacchi dei Pokémon-ex. Se questo Pokémon non è più il tuo Pokémon attivo, questo effetto finisce.", + pt: "Durante o próximo turno do seu oponente, previna todo o dano causado a cada um dos seus Pokémon Futuristas por ataques de Pokémon ex. Se este Pokémon não for mais o seu Pokémon Ativo, este efeito terminará.", + de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der jedem deiner Pokémon aus der Zukunft durch Attacken von Pokémon-ex zugefügt wird. Wenn dieses Pokémon nicht mehr dein Aktives Pokémon ist, wird dieser Effekt aufgehoben." + }, + + damage: 40 + }, { + cost: ["Lightning", "Colorless", "Colorless"], + + name: { + en: "Thunder Claws", + fr: "Griffes Tonnerre", + es: "Garras Trueno", + it: "Artigli Tonanti", + pt: "Garras Trovejantes", + de: "Donnerkrallen" + }, + + damage: 100 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/070.ts b/data/Scarlet & Violet/Surging Sparks/070.ts new file mode 100644 index 000000000..2d732d02b --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/070.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Togepi", + fr: "Togepi", + es: "Togepi", + it: "Togepi", + pt: "Togepi", + de: "Togepi" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Pound", + fr: "Écras'Face", + es: "Destructor", + it: "Botta", + pt: "Pancada", + de: "Klaps" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/071.ts b/data/Scarlet & Violet/Surging Sparks/071.ts new file mode 100644 index 000000000..bca98618c --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/071.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Togetic", + fr: "Togetic", + es: "Togetic", + it: "Togetic", + pt: "Togetic", + de: "Togetic" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Draining Kiss", + fr: "Vampibaiser", + es: "Beso Drenaje", + it: "Assorbibacio", + pt: "Beijo Drenante", + de: "Diebeskuss" + }, + + 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: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/072.ts b/data/Scarlet & Violet/Surging Sparks/072.ts new file mode 100644 index 000000000..b9d919305 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/072.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Togekiss", + fr: "Togekiss", + es: "Togekiss", + it: "Togekiss", + pt: "Togekiss", + de: "Togekiss" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Wonder Kiss", + fr: "Bisou Merveilleux", + es: "Beso Asombroso", + it: "Bacio Meraviglia", + pt: "Kiss Surpresa", + de: "Wunderkuss" + }, + + effect: { + en: "When your opponent's Active Pokémon is Knocked Out, flip a coin. If heads, take 1 more Prize card. The effect of Wonder Kiss doesn't stack.", + fr: "Lorsque le Pokémon Actif de votre adversaire est mis K.O., lancez une pièce. Si c'est face, récupérez une carte Récompense supplémentaire. L'effet de Bisou Merveilleux n'est pas cumulable.", + es: "Cuando el Pokémon Activo de tu rival queda Fuera de Combate, lanza 1 moneda. Si sale cara, coge 1 carta de Premio más. El efecto de Beso Asombroso no se acumula.", + it: "Quando il Pokémon attivo del tuo avversario viene messo KO, lancia una moneta. Se esce testa, prendi una carta Premio in più. L'effetto di Bacio Meraviglia non è cumulabile.", + pt: "Quando o Pokémon Ativo do seu oponente for Nocauteado, jogue uma moeda. Se sair cara, pegue 1 carta de Prêmio a mais. O efeito de Kiss Surpresa não acumula.", + de: "Wenn das Aktive Pokémon deines Gegners kampfunfähig wird, wirf 1 Münze. Nimm bei Kopf 1 Preiskarte mehr. Der Effekt von Wunderkuss stapelt sich nicht." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Speed Wing", + fr: "Ailes Vives", + es: "Ala Veloz", + it: "Alaveloce", + pt: "Asa da Velocidade", + de: "Turboschwinge" + }, + + damage: 140 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/073.ts b/data/Scarlet & Violet/Surging Sparks/073.ts new file mode 100644 index 000000000..68694d17c --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/073.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Marill", + fr: "Marill", + es: "Marill", + it: "Marill", + pt: "Marill", + de: "Marill" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Rolling Tackle", + fr: "Roulé-Boulé", + es: "Placaje Giro", + it: "Rollazione", + pt: "Golpe de Colisão Rolante", + de: "Rolltackle" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/074.ts b/data/Scarlet & Violet/Surging Sparks/074.ts new file mode 100644 index 000000000..959fa2b6e --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/074.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Azumarill", + fr: "Azumarill", + es: "Azumarill", + it: "Azumarill", + pt: "Azumarill", + de: "Azumarill" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Glistening Bubbles", + fr: "Bulles Chatoyantes", + es: "Burbujas Brillantes", + it: "Bolle Scintillanti", + pt: "Bolhas Cintilantes", + de: "Glitzernde Bläschen" + }, + + effect: { + en: "If you have any Tera Pokémon in play, this Pokémon can use the Double-Edge attack for Psychic.", + fr: "Si vous avez au moins un Pokémon Téracristal en jeu, ce Pokémon peut utiliser l'attaque Damoclès pour Psychic.", + es: "Si tienes algún Pokémon Teracristal en juego, este Pokémon puede usar el ataque Doble Filo por Psychic.", + it: "Se hai dei Pokémon Teracristal in gioco, questo Pokémon può usare l'attacco Sdoppiatore al costo di Psychic.", + pt: "Se você tiver algum Pokémon Tera em jogo, este Pokémon poderá usar o ataque Faca de Dois Gumes por Psychic.", + de: "Wenn du mindestens 1 Terakristall-Pokémon im Spiel hast, kann dieses Pokémon die Attacke Risikotackle für Psychic einsetzen." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Psychic", "Psychic"], + + name: { + en: "Double-Edge", + fr: "Damoclès", + es: "Doble Filo", + it: "Sdoppiatore", + pt: "Faca de Dois Gumes", + de: "Risikotackle" + }, + + 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: 230 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/075.ts b/data/Scarlet & Violet/Surging Sparks/075.ts new file mode 100644 index 000000000..b5e2eae99 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/075.ts @@ -0,0 +1,50 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Smoochum", + fr: "Lippouti", + es: "Smoochum", + it: "Smoochum", + pt: "Smoochum", + de: "Kussilla" + }, + + rarity: "Common", + category: "Pokemon", + hp: 30, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + name: { + en: "Delightful Kiss", + fr: "Bisou Délicieux", + es: "Beso Encantador", + it: "Bacio Incantevole", + pt: "Beijinho Doce", + de: "Bezaubernder Kuss" + }, + + effect: { + en: "Search your deck for up to 2 Basic Psychic Energy cards and attach them to 1 of your Benched Pokémon. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Psychic de base, puis attachez-les à l'un de vos Pokémon de Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Psychic Básica y únelas a uno de tus Pokémon en Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due carte Energia base Psychic e assegnale a uno dei tuoi Pokémon in panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 cartas de Energia Psychic Básica no seu baralho e ligue-as a 1 dos seus Pokémon no Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Psychic-Energiekarten und lege sie an 1 Pokémon auf deiner Bank an. Mische anschließend dein Deck." + } + }], + + retreat: 0, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/076.ts b/data/Scarlet & Violet/Surging Sparks/076.ts new file mode 100644 index 000000000..4339aa582 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/076.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Latias ex", + fr: "Latias-ex", + es: "Latias ex", + it: "Latias-ex", + pt: "Latias ex", + de: "Latias-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Skyliner", + fr: "Taxi Aérien", + es: "Estela", + it: "Aviolinea", + pt: "Carona Aérea", + de: "Luftlinie" + }, + + effect: { + en: "Your Basic Pokémon in play have no Retreat Cost.", + fr: "Vos Pokémon de base en jeu n'ont pas de Coût de Retraite.", + es: "Tus Pokémon Básicos en juego no tienen ningún Coste de Retirada.", + it: "I tuoi Pokémon Base in gioco non hanno costo di ritirata.", + pt: "Seus Pokémon Básicos em jogo não têm custo de Recuo.", + de: "Deine Basis-Pokémon im Spiel haben keine Rückzugskosten." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Eon Blade", + fr: "Lame Éon", + es: "Tajo Eón", + it: "Lama Eone", + pt: "Lâmina da Eternidade", + de: "Äonenklinge" + }, + + 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: 200 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/077.ts b/data/Scarlet & Violet/Surging Sparks/077.ts new file mode 100644 index 000000000..0b79125e1 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/077.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Latios", + fr: "Latios", + es: "Latios", + it: "Latios", + pt: "Latios", + de: "Latios" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Skill Dive", + fr: "Plongeon Contrôlé", + es: "Técnica de Buceo", + it: "Agiltuffo", + pt: "Mergulho Habilidoso", + de: "Geübter Sturzflug" + }, + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 50 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 50 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 50 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 50 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 50 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }, { + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Jet Headbutt", + fr: "Bélier Volant", + es: "Turbocabezazo", + it: "Zuccata Jet", + pt: "Cabeçada a Jato", + de: "Flinke Kopfnuss" + }, + + damage: 110 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/078.ts b/data/Scarlet & Violet/Surging Sparks/078.ts new file mode 100644 index 000000000..bc3eae395 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/078.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Uxie", + fr: "Créhelf", + es: "Uxie", + it: "Uxie", + pt: "Uxie", + de: "Selfe" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Painful Memories", + fr: "Souvenirs Douloureux", + es: "Recuerdos Dolorosos", + it: "Brutti Ricordi", + pt: "Lembranças Dolorosas", + de: "Schmerzhafte Erinnerungen" + }, + + effect: { + en: "Put 2 damage counters on each of your opponent's Pokémon.", + fr: "Placez 2 marqueurs de dégâts sur chacun des Pokémon de votre adversaire.", + es: "Pon 2 contadores de daño en cada uno de los Pokémon de tu rival.", + it: "Metti due segnalini danno su ciascuno dei Pokémon del tuo avversario.", + pt: "Coloque 2 contadores de dano em cada um dos Pokémon do seu oponente.", + de: "Lege 2 Schadensmarken auf jedes Pokémon deines Gegners." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/079.ts b/data/Scarlet & Violet/Surging Sparks/079.ts new file mode 100644 index 000000000..68f9d623a --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/079.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Mesprit", + fr: "Créfollet", + es: "Mesprit", + it: "Mesprit", + pt: "Mesprit", + de: "Vesprit" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Full Heart", + fr: "Cœur Plein", + es: "Todo Corazón", + it: "Riempicuore", + pt: "Coração Carregado", + de: "Erfülltes Herz" + }, + + effect: { + en: "Attach up to 2 Basic Psychic Energy cards from your hand to your Pokémon in any way you like.", + fr: "Attachez jusqu'à 2 cartes Énergie Psychic de base de votre main à vos Pokémon comme il vous plaît.", + es: "Une hasta 2 cartas de Energía Psychic Básica de tu mano a tus Pokémon de la manera que desees.", + it: "Assegna ai tuoi Pokémon fino a due carte Energia base Psychic dalla tua mano nel modo che preferisci.", + pt: "Ligue até 2 cartas de Energia Psychic Básica da sua mão aos seus Pokémon como desejar.", + de: "Lege bis zu 2 Basis-Psychic-Energiekarten aus deiner Hand beliebig an deine Pokémon an." + } + }, { + cost: ["Psychic", "Psychic"], + + name: { + en: "Guardian Burst", + fr: "Explosion Gardienne", + es: "Explosión del Guardián", + it: "Raffica dei Guardiani", + pt: "Explosão dos Guardiões", + de: "Wächter-Eruption" + }, + + effect: { + en: "If you don't have Uxie and Azelf on your Bench, this attack does nothing.", + fr: "Si vous n'avez pas Créhelf et Créfadet sur votre Banc, cette attaque ne fait rien.", + es: "Si no tienes a Uxie y Azelf en tu Banca, este ataque no hace nada.", + it: "Se non hai Uxie e Azelf nella tua panchina, questo attacco non ha effetto.", + pt: "Se você não tiver Uxie e Azelf no seu Banco, este ataque não fará nada.", + de: "Wenn sich Selfe und Tobutz nicht auf deiner Bank befinden, hat diese Attacke keine Auswirkungen." + }, + + damage: 160 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/080.ts b/data/Scarlet & Violet/Surging Sparks/080.ts new file mode 100644 index 000000000..ec0ea836b --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/080.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Azelf", + fr: "Créfadet", + es: "Azelf", + it: "Azelf", + pt: "Azelf", + de: "Tobutz" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Neurokinesis", + fr: "Neurokinésie", + es: "Neuroquinesis", + it: "Neurocinèsi", + pt: "Neurocinese", + de: "Neurokinese" + }, + + effect: { + en: "This attack does 10 more damage for each damage counter on all of your opponent's Pokémon.", + fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts sur tous les Pokémon de votre adversaire.", + es: "Este ataque hace 10 puntos de daño más por cada contador de daño en cada uno de los Pokémon de tu rival.", + it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente sui Pokémon del tuo avversario.", + pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano em todos os Pokémon do seu oponente.", + de: "Diese Attacke fügt für jede Schadensmarke auf allen Pokémon deines Gegners 10 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/081.ts b/data/Scarlet & Violet/Surging Sparks/081.ts new file mode 100644 index 000000000..d7c545a1c --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/081.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Sigilyph", + fr: "Cryptéro", + es: "Sigilyph", + it: "Sigilyph", + pt: "Sigilyph", + de: "Symvolara" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + 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: ["Psychic", "Colorless", "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: 60 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/082.ts b/data/Scarlet & Violet/Surging Sparks/082.ts new file mode 100644 index 000000000..b52a8d020 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/082.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Yamask", + fr: "Tutafeh", + es: "Yamask", + it: "Yamask", + pt: "Yamask", + de: "Makabaja" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Mumble", + fr: "Murmure", + es: "Farfullar", + it: "Borbottio", + pt: "Resmungo", + de: "Grummeln" + }, + + damage: 10 + }, { + cost: ["Psychic", "Colorless"], + + name: { + en: "Petty Grudge", + fr: "Rancune Mesquine", + es: "Rencor Ruin", + it: "Rancormeschino", + pt: "Rancinho", + de: "Mini-Groll" + }, + + damage: 20 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/083.ts b/data/Scarlet & Violet/Surging Sparks/083.ts new file mode 100644 index 000000000..6231d914d --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/083.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Cofagrigus", + fr: "Tutankafer", + es: "Cofagrigus", + it: "Cofagrigus", + pt: "Cofagrigus", + de: "Echnatoll" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Law of the Underworld", + fr: "Loi de l'Outre-Monde", + es: "Ley del Inframundo", + it: "Legge del Sottomondo", + pt: "Lei do Submundo", + de: "Gebot der Unterwelt" + }, + + effect: { + en: "Put 6 damage counters on each Pokémon that has an Ability (both yours and your opponent's).", + fr: "Placez 6 marqueurs de dégâts sur chacun des Pokémon ayant un talent (les vôtres et ceux de votre adversaire).", + es: "Pon 6 contadores de daño en cada Pokémon que tenga una habilidad (tanto tuyos como de tu rival).", + it: "Metti sei segnalini danno su ciascun Pokémon che ha un'abilità, sia tuo che del tuo avversario.", + pt: "Coloque 6 contadores de dano em cada Pokémon que tem uma Habilidade (seus e do seu oponente).", + de: "Lege 6 Schadensmarken auf jedes Pokémon (deine und die deines Gegners), das eine Fähigkeit hat." + } + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Spooky Shot", + fr: "Tir Effrayant", + es: "Disparo Embrujado", + it: "Colpomistero", + pt: "Tiro Assustador", + de: "Spukschuss" + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/084.ts b/data/Scarlet & Violet/Surging Sparks/084.ts new file mode 100644 index 000000000..3ddbe4f17 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/084.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Espurr", + fr: "Psystigri", + es: "Espurr", + it: "Espurr", + pt: "Espurr", + de: "Psiau" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "See Through", + fr: "Main Transparente", + es: "Transparencia", + it: "Sbirciatina", + pt: "Transparência", + de: "Durchblick" + }, + + effect: { + en: "Your opponent reveals their hand.", + fr: "Votre adversaire montre sa main.", + es: "Tu rival enseña las cartas de su mano.", + it: "Il tuo avversario mostra le carte che ha in mano.", + pt: "Seu oponente revela a mão dele.", + de: "Dein Gegner zeigt dir seine Handkarten." + } + }, { + cost: ["Psychic", "Colorless"], + + name: { + en: "Psyshot", + fr: "Piqûre Psy", + es: "Disparo Psi", + it: "Psicosparo", + pt: "Tiro Psíquico", + de: "Psychoschuss" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/085.ts b/data/Scarlet & Violet/Surging Sparks/085.ts new file mode 100644 index 000000000..4177a5764 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/085.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Meowstic", + fr: "Mistigrix", + es: "Meowstic", + it: "Meowstic", + pt: "Meowstic", + de: "Psiaugon" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Beckoning Tail", + fr: "Queue Invitante", + es: "Cola Señuelo", + it: "Coda Invitante", + pt: "Cauda Fascinante", + de: "Wedelnder Schweif" + }, + + effect: { + en: "You must discard a Chill Teaser Toy card from your hand in order to use this Ability. Once during your turn, you may switch in 1 of your opponent's Benched Pokémon to the Active Spot.", + fr: "Vous devez défausser une carte Jouet Plumeau de votre main pour pouvoir utiliser ce talent. Une fois pendant votre tour, vous pouvez envoyer l'un des Pokémon de Banc de votre adversaire sur le Poste Actif.", + es: "Debes descartar 1 carta de Plumero Señuelo de tu mano para poder usar esta habilidad. Una vez durante tu turno, puedes cambiar 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo.", + it: "Devi scartare una carta Bacchetta Gioco Rilassante che hai in mano per usare questa abilità. Una sola volta durante il tuo turno, puoi sostituire uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon in posizione attiva.", + pt: "Você deve descartar uma carta Varinha Relaxante da sua mão para usar esta Habilidade. Uma vez durante o seu turno, você poderá mandar 1 dos Pokémon no Banco do seu oponente para o Campo Ativo.", + de: "Du musst 1 Lockwedel-Karte aus deiner Hand auf deinen Ablagestapel legen, um diese Fähigkeit einzusetzen. Einmal während deines Zuges kannst du 1 Pokémon von der Bank deines Gegners in die Aktive Position einwechseln." + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Psyshot", + fr: "Piqûre Psy", + es: "Disparo Psi", + it: "Psicosparo", + pt: "Tiro Psíquico", + de: "Psychoschuss" + }, + + damage: 80 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/086.ts b/data/Scarlet & Violet/Surging Sparks/086.ts new file mode 100644 index 000000000..8bdbdffcb --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/086.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Sylveon ex", + fr: "Nymphali-ex", + es: "Sylveon ex", + it: "Sylveon-ex", + pt: "Sylveon ex", + de: "Feelinara-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 270, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Magical Charm", + fr: "Fascination Magique", + es: "Encanto Mágico", + it: "Fascino Magico", + pt: "Encanto Mágico", + de: "Magischer Charme" + }, + + effect: { + en: "During your opponent's next turn, attacks used by the Defending Pokémon do 100 less damage (before applying Weakness and Resistance).", + fr: "Pendant le prochain tour de votre adversaire, les attaques utilisées par le Pokémon Défenseur infligent 100 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 usados por el Pokémon Defensor hacen 100 puntos de daño menos (antes de aplicar Debilidad y Resistencia).", + it: "Durante il prossimo turno del tuo avversario, gli attacchi usati dal Pokémon difensore infliggono 100 danni in meno, prima di aver applicato debolezza e resistenza.", + pt: "Durante o próximo turno do seu oponente, os ataques usados pelo Pokémon Defensor causarão 100 pontos de dano a menos (antes de aplicar Fraqueza e Resistência).", + de: "Während des nächsten Zuges deines Gegners fügen die vom Verteidigenden Pokémon eingesetzten Attacken 100 Schadenspunkte weniger zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + damage: 160 + }, { + cost: ["Water", "Lightning", "Psychic"], + + name: { + en: "Angelite", + fr: "Angélite", + es: "Angelita", + it: "Angelite", + pt: "Angelita", + de: "Angelit" + }, + + effect: { + en: "Choose 2 of your opponent's Benched Pokémon. Shuffle those Pokémon and all attached cards into your opponent's deck. If 1 of your Pokémon used Angelite during your last turn, this attack can't be used.", + fr: "Choisissez 2 des Pokémon de Banc de votre adversaire. Mélangez avec son deck ces Pokémon-là et toutes les cartes qui leur sont attachées. Si l'un de vos Pokémon a utilisé Angélite pendant votre dernier tour, cette attaque ne peut pas être utilisée.", + es: "Elige 2 de los Pokémon en Banca de tu rival. Pon esos Pokémon y todas las cartas unidas a ellos en la baraja de tu rival y barájalas todas. Si uno de tus Pokémon usó Angelita durante tu último turno, este ataque no se puede usar.", + it: "Scegli due dei Pokémon nella panchina del tuo avversario. Rimischia quei Pokémon e tutte le carte a essi assegnate nel suo mazzo. Se uno dei tuoi Pokémon ha usato Angelite durante il tuo ultimo turno, questo attacco non può essere usato.", + pt: "Escolha 2 dos Pokémon no Banco do seu oponente. Embaralhe aqueles Pokémon e todas as cartas ligadas a eles no baralho do seu oponente. Se 1 dos seus Pokémon usou Angelita durante o seu último turno, este ataque não poderá ser usado.", + de: "Wähle 2 Pokémon auf der Bank deines Gegners. Mische jene Pokémon und alle angelegten Karten in das Deck deines Gegners. Wenn 1 deiner Pokémon während deines letzten Zuges Angelit eingesetzt hat, kann diese Attacke nicht eingesetzt werden." + } + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/087.ts b/data/Scarlet & Violet/Surging Sparks/087.ts new file mode 100644 index 000000000..d615d7640 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/087.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +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: ["Colorless"], + + name: { + en: "Electromagnetic Sonar", + fr: "Sonar Électromagnétique", + es: "Sonar Electromagnético", + it: "Sonar Elettromagnetico", + pt: "Sonar Eletromagnético", + de: "Elektromagnetisches Sonar" + }, + + effect: { + en: "Put a Trainer card from your discard pile into your hand.", + fr: "Ajoutez une carte Dresseur de votre pile de défausse à votre main.", + es: "Pon 1 carta de Entrenador de tu pila de descartes en tu mano.", + it: "Prendi una carta Allenatore dalla tua pila degli scarti e aggiungila alle carte che hai in mano.", + pt: "Coloque uma carta de Treinador da sua pilha de descarte na sua mão.", + de: "Nimm 1 Trainerkarte aus deinem Ablagestapel auf deine Hand." + } + }, { + cost: ["Psychic"], + + name: { + en: "Gnaw", + fr: "Ronge", + es: "Roer", + it: "Rosicchiamento", + pt: "Roída", + de: "Nagen" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/088.ts b/data/Scarlet & Violet/Surging Sparks/088.ts new file mode 100644 index 000000000..77f56dc5c --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/088.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Xerneas", + fr: "Xerneas", + es: "Xerneas", + it: "Xerneas", + pt: "Xerneas", + de: "Xerneas" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Aurora Gain", + fr: "Puissance Boréale", + es: "Ganar Aurora", + it: "Prendiaurora", + pt: "Aurora", + de: "Aurora-Verstärkung" + }, + + 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: 30 + }, { + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Giga Impact", + fr: "Giga Impact", + es: "Gigaimpacto", + it: "Gigaimpatto", + pt: "Gigaimpacto", + de: "Gigastoß" + }, + + 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: 130 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/089.ts b/data/Scarlet & Violet/Surging Sparks/089.ts new file mode 100644 index 000000000..2d192d05b --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/089.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Oricorio", + fr: "Plumeline", + es: "Oricorio", + it: "Oricorio", + pt: "Oricorio", + de: "Choreogel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic"], + + name: { + en: "Energy Assist", + fr: "Assistance Énergétique", + es: "Asistencia de Energía", + it: "Assistienergia", + pt: "Socorro de Energia", + de: "Energieförderung" + }, + + effect: { + en: "Attach up to 2 Basic Energy cards from your discard pile to 1 of your Benched Pokémon.", + fr: "Attachez jusqu'à 2 cartes Énergie de base de votre pile de défausse à l'un de vos Pokémon de Banc.", + es: "Une hasta 2 cartas de Energía Básica de tu pila de descartes a uno de tus Pokémon en Banca.", + it: "Assegna a uno dei tuoi Pokémon in panchina fino a due carte Energia base dalla tua pila degli scarti.", + pt: "Ligue até 2 cartas de Energia Básica da sua pilha de descarte a 1 dos seus Pokémon no Banco.", + de: "Lege bis zu 2 Basis-Energiekarten aus deinem Ablagestapel an 1 Pokémon auf deiner Bank an." + } + }, { + cost: ["Psychic", "Colorless"], + + name: { + en: "Dazzle Dance", + fr: "Danse Éblouissante", + es: "Danza Deslumbrante", + it: "Accecadanza", + pt: "Dança Fascinante", + de: "Verwirrender Tanz" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido.", + it: "Il Pokémon attivo del tuo avversario viene confuso.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt." + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/090.ts b/data/Scarlet & Violet/Surging Sparks/090.ts new file mode 100644 index 000000000..051962584 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/090.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Sandygast", + fr: "Bacabouh", + es: "Sandygast", + it: "Sandygast", + pt: "Sandygast", + de: "Sankabuh" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Sand Spray", + fr: "Jet Sableux", + es: "Rociado de Arena", + it: "Silicospruzzo", + pt: "Spray de Areia", + de: "Sandspray" + }, + + damage: 50 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/091.ts b/data/Scarlet & Violet/Surging Sparks/091.ts new file mode 100644 index 000000000..e4fadbee2 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/091.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Palossand ex", + fr: "Trépassable-ex", + es: "Palossand ex", + it: "Palossand-ex", + pt: "Palossand ex", + de: "Colossand-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 280, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Sand Tomb", + fr: "Tourbi-Sable", + es: "Bucle Arena", + it: "Sabbiotomba", + pt: "Fosso de Areia", + de: "Sandgrab" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 160 + }, { + cost: ["Water", "Psychic", "Fighting"], + + name: { + en: "Barite Jail", + fr: "Prison de Barytine", + es: "Prisión Barita", + it: "Sbarre di Barite", + pt: "Prisão de Barita", + de: "Baryt-Gefängnis" + }, + + effect: { + en: "Put damage counters on each of your opponent's Benched Pokémon until its remaining HP is 100.", + fr: "Placez des marqueurs de dégâts sur chacun des Pokémon de Banc de votre adversaire jusqu'à ce qu'il ne lui reste que 100 PV.", + es: "Pon contadores de daño en cada uno de los Pokémon en Banca de tu rival hasta que le queden 100 PS a cada uno de ellos.", + it: "Metti dei segnalini danno su ciascuno dei Pokémon nella panchina del tuo avversario finché i suoi PS rimanenti diventano 100.", + pt: "Coloque contadores de dano em cada um dos Pokémon no Banco do seu oponente até o PS restante dele ser 100.", + de: "Lege so lange Schadensmarken auf jedes Pokémon auf der Bank deines Gegners, bis seine verbleibenden KP gleich 100 sind." + } + }], + + retreat: 4, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/092.ts b/data/Scarlet & Violet/Surging Sparks/092.ts new file mode 100644 index 000000000..fa3191654 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/092.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Tapu Lele", + fr: "Tokopiyon", + es: "Tapu Lele", + it: "Tapu Lele", + pt: "Tapu Lele", + de: "Kapu-Fala" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Perplex", + fr: "Affolement", + es: "Desconcierto", + it: "Sconcerto", + pt: "Perplexo", + de: "Perplex" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido.", + it: "Il Pokémon attivo del tuo avversario viene confuso.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt." + }, + + damage: 20 + }, { + cost: ["Psychic", "Colorless", "Colorless"], + + name: { + en: "Mental Crush", + fr: "Écrasement Mental", + es: "Aplastamiento Mental", + it: "Sbriciolamente", + pt: "Esmagamento Mental", + de: "Mentaler Zermalmer" + }, + + effect: { + en: "If your opponent's Active Pokémon is Confused, this attack does 90 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est Confus, cette attaque inflige 90 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival está Confundido, este ataque hace 90 puntos de daño más.", + it: "Se il Pokémon attivo del tuo avversario è confuso, questo attacco infligge 90 danni in più.", + pt: "Se o Pokémon Ativo do seu oponente estiver Confuso, este ataque causará 90 pontos de dano a mais.", + de: "Wenn das Aktive Pokémon deines Gegners verwirrt ist, fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "90+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/093.ts b/data/Scarlet & Violet/Surging Sparks/093.ts new file mode 100644 index 000000000..3bc735225 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/093.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Indeedee", + fr: "Wimessir", + es: "Indeedee", + it: "Indeedee", + pt: "Indeedee", + de: "Servol" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 100, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Obliging Heal", + fr: "Soin Serviable", + es: "Curación Servicial", + it: "Cure Premurose", + pt: "Cura Prestativa", + de: "Höfliche Heilung" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may heal 30 damage from your Active Pokémon and have it recover from a Special Condition.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez soigner 30 dégâts de votre Pokémon Actif et le guérir d'un État Spécial.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes curar 30 puntos de daño a tu Pokémon Activo y hacer que se recupere de una Condición Especial.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi curare il tuo Pokémon attivo da 30 danni e farlo guarire da una condizione speciale.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá curar 30 pontos de dano do seu Pokémon Ativo e fazer com que ele se recupere de uma Condição Especial.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du 30 Schadenspunkte bei deinem Aktiven Pokémon heilen, und es erholt sich von 1 Speziellen Zustand." + } + }], + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Super Psy Bolt", + fr: "Super Psy", + es: "Superrayo Psi", + it: "Superpsico", + pt: "Super-raio Psíquico", + de: "Super-Psischlag" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/094.ts b/data/Scarlet & Violet/Surging Sparks/094.ts new file mode 100644 index 000000000..a6cc0f9a8 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/094.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Flittle", + fr: "Flotillon", + es: "Flittle", + it: "Flittle", + pt: "Flittle", + de: "Flattutu" + }, + + rarity: "Common", + category: "Pokemon", + hp: 40, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Splashing Dodge", + fr: "Esquive Éclaboussante", + es: "Esquivo Chapoteo", + it: "Schivata Splash", + pt: "Evasão de Borrifada", + de: "Ausweichplatscher" + }, + + 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." + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/095.ts b/data/Scarlet & Violet/Surging Sparks/095.ts new file mode 100644 index 000000000..a306c7f58 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/095.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Espathra", + fr: "Cléopsytra", + es: "Espathra", + it: "Espathra", + pt: "Espathra", + de: "Psiopatra" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Mystical Eyes", + fr: "Yeux Mystiques", + es: "Ojos Místicos", + it: "Occhi Mistici", + pt: "Olhos Místicos", + de: "Mystische Augen" + }, + + effect: { + en: "Devolve 1 of your opponent's evolved Pokémon by putting the highest Stage Evolution card on it into your opponent's hand.", + fr: "Faites dés-évoluer l'un des Pokémon évolués de votre adversaire en plaçant dans la main de votre adversaire la carte Évolution la plus élevée placée sur celui-ci.", + es: "Haz involucionar a 1 de los Pokémon evolucionados de tu rival poniendo la carta de Evolución de fase más alta que tenga sobre él en la mano de tu rival.", + it: "Annulla l'evoluzione di uno dei Pokémon evoluti del tuo avversario prendendo la carta Evoluzione di fase più alta presente su di esso e aggiungendola alle carte nella mano del tuo avversario.", + pt: "Reverta a evolução de 1 dos Pokémon evoluídos do seu oponente colocando a carta de Evolução de Estágio mais alto sobre ele na mão do seu oponente.", + de: "Rückentwickle 1 entwickeltes Pokémon deines Gegners, indem du deinem Gegner die Karte mit der höchsten Entwicklungsphase auf die Hand gibst." + } + }, { + cost: ["Psychic", "Colorless"], + + name: { + en: "Spiral Drain", + fr: "Spirale Épuisante", + es: "Drenaje Espiral", + it: "Assorbimento Spirale", + pt: "Dreno Espiral", + de: "Spiralsauger" + }, + + 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: 60 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/096.ts b/data/Scarlet & Violet/Surging Sparks/096.ts new file mode 100644 index 000000000..61552da8d --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/096.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Flutter Mane", + fr: "Flotte-Mèche", + es: "Melenaleteo", + it: "Crinealato", + pt: "Juba Sopro", + de: "Flatterhaar" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Perplexing Transfer", + fr: "Transfert Déroutant", + es: "Traspaso Desconcertante", + it: "Transfer Sconcertante", + pt: "Transferência Marota", + de: "Verblüffender Transfer" + }, + + effect: { + en: "Move all damage counters from 1 of your Benched Ancient Pokémon to your opponent's Active Pokémon.", + fr: "Déplacez tous les marqueurs de dégâts de l'un de vos Pokémon Temps passé de Banc vers le Pokémon Actif de votre adversaire.", + es: "Mueve todos los contadores de daño de uno de tus Pokémon del pasado en Banca al Pokémon Activo de tu rival.", + it: "Sposta tutti i segnalini danno da uno dei tuoi Pokémon Tempo Passato in panchina al Pokémon attivo del tuo avversario.", + pt: "Mova todos os contadores de dano de 1 dos seus Pokémon Ancestrais no Banco para o Pokémon Ativo do seu oponente.", + de: "Verschiebe alle Schadensmarken von 1 Pokémon aus der Vergangenheit auf deiner Bank auf das Aktive Pokémon deines Gegners." + } + }, { + cost: ["Psychic", "Psychic"], + + name: { + en: "Moonblast", + fr: "Pouvoir Lunaire", + es: "Fuerza Lunar", + it: "Forza Lunare", + pt: "Explosão Lunar", + de: "Mondgewalt" + }, + + effect: { + en: "During your opponent's next turn, attacks used by the Defending Pokémon do 30 less damage (before applying Weakness and Resistance).", + fr: "Pendant le prochain tour de votre adversaire, les attaques utilisées par le Pokémon Défenseur infligent 30 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 usados por el Pokémon Defensor hacen 30 puntos de daño menos (antes de aplicar Debilidad y Resistencia).", + it: "Durante il prossimo turno del tuo avversario, gli attacchi usati dal Pokémon difensore infliggono 30 danni in meno, prima di aver applicato debolezza e resistenza.", + pt: "Durante o próximo turno do seu oponente, os ataques usados pelo Pokémon Defensor causarão 30 pontos de dano a menos (antes de aplicar Fraqueza e Resistência).", + de: "Während des nächsten Zuges deines Gegners fügen die vom Verteidigenden Pokémon eingesetzten Attacken 30 Schadenspunkte weniger zu (bevor Schwäche und Resistenz verrechnet werden)." + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/097.ts b/data/Scarlet & Violet/Surging Sparks/097.ts new file mode 100644 index 000000000..6a8e1e017 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/097.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Gimmighoul", + fr: "Mordudor", + es: "Gimmighoul", + it: "Gimmighoul", + pt: "Gimmighoul", + de: "Gierspenst" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + 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: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Tackle", + fr: "Charge", + es: "Placaje", + it: "Azione", + pt: "Investida", + de: "Tackle" + }, + + damage: 50 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/098.ts b/data/Scarlet & Violet/Surging Sparks/098.ts new file mode 100644 index 000000000..cf98411b6 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/098.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +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: ["Colorless"], + + name: { + en: "Dual Chop", + fr: "Double Baffe", + es: "Golpe Bis", + it: "Doppiocolpo", + pt: "Pancada Dupla", + de: "Doppelhieb" + }, + + effect: { + en: "Flip 2 coins. This attack does 10 damage for each heads.", + fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts pour chaque côté face.", + es: "Lanza 2 monedas. Este ataque hace 10 puntos de daño por cada cara.", + it: "Lancia due volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.", + pt: "Jogue 2 moedas. Este ataque causa 10 pontos de dano para cada cara.", + de: "Wirf 2 Münzen. Diese Attacke fügt 10 Schadenspunkte pro Kopf zu." + }, + + damage: "10×" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/099.ts b/data/Scarlet & Violet/Surging Sparks/099.ts new file mode 100644 index 000000000..c874e0197 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/099.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Primeape", + fr: "Colossinge", + es: "Primeape", + it: "Primeape", + pt: "Primeape", + de: "Rasaff" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Sweep the Leg", + fr: "Balayage Jambier", + es: "Poner la Zancadilla", + it: "Spazzata", + pt: "Pernada", + de: "Fußfeger" + }, + + effect: { + en: "Flip a coin. If heads, discard an Energy from your opponent's Active Pokémon.", + fr: "Lancez une pièce. Si c'est face, défaussez une Énergie du Pokémon Actif de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.", + it: "Lancia una moneta. Se esce testa, scarta un'Energia dal Pokémon attivo del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, descarte uma Energia do Pokémon Ativo do seu oponente.", + de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." + }, + + damage: 30 + }, { + cost: ["Fighting", "Colorless"], + + name: { + en: "Mega Punch", + fr: "Ultimapoing", + es: "Megapuño", + it: "Megapugno", + pt: "Megassoco", + de: "Megahieb" + }, + + damage: 70 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/100.ts b/data/Scarlet & Violet/Surging Sparks/100.ts new file mode 100644 index 000000000..2e793ac0d --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/100.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Annihilape", + fr: "Courrousinge", + es: "Annihilape", + it: "Annihilape", + pt: "Annihilape", + de: "Epitaff" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Stage2", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Tantrum", + fr: "Mauvaise Humeur", + es: "Rabieta", + it: "Collera", + pt: "Petulância", + de: "Rappel" + }, + + effect: { + en: "This Pokémon is now Confused.", + fr: "Ce Pokémon est maintenant Confus.", + es: "Este Pokémon pasa a estar Confundido.", + it: "Questo Pokémon viene confuso.", + pt: "Este Pokémon agora está Confuso.", + de: "Dieses Pokémon ist jetzt verwirrt." + }, + + damage: 130 + }, { + cost: ["Fighting", "Colorless"], + + name: { + en: "Destined Fight", + fr: "Combat du Destin", + es: "Lucha Predestinada", + it: "Lotta Predestinata", + pt: "Luta Predestinada", + de: "Abgangsgefecht" + }, + + effect: { + en: "Both Active Pokémon are Knocked Out.", + fr: "Les deux Pokémon Actifs sont mis K.O.", + es: "Ambos Pokémon Activos quedan Fuera de Combate.", + it: "Entrambi i Pokémon attivi vengono messi KO.", + pt: "Ambos os Pokémon Ativos são Nocauteados.", + de: "Beide Aktiven Pokémon werden kampfunfähig." + } + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/101.ts b/data/Scarlet & Violet/Surging Sparks/101.ts new file mode 100644 index 000000000..7dda126b9 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/101.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Tauros", + fr: "Tauros de Paldea", + es: "Tauros de Paldea", + it: "Tauros di Paldea", + pt: "Tauros de Paldea", + de: "Paldea-Tauros" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + en: "Smash Kick", + fr: "Coud'Pattes", + es: "Patada Destrucción", + it: "Calcio Esplosivo", + pt: "Chute Poderoso", + de: "Schmetterkick" + }, + + damage: 40 + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Blocking Stomp", + fr: "Piétinement Bloquant", + es: "Pisotón Bloqueo", + it: "Pestonblocco", + pt: "Pisoteada Bloqueadora", + de: "Blockierstampfer" + }, + + 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: 90 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/102.ts b/data/Scarlet & Violet/Surging Sparks/102.ts new file mode 100644 index 000000000..e79e2cfe0 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/102.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +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: ["Fighting"], + + name: { + en: "Headbutt", + fr: "Coup d'Boule", + es: "Golpe Cabeza", + it: "Bottintesta", + pt: "Cabeçada", + de: "Kopfnuss" + }, + + damage: 20 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/103.ts b/data/Scarlet & Violet/Surging Sparks/103.ts new file mode 100644 index 000000000..47aeec508 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/103.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Donphan", + fr: "Donphan", + es: "Donphan", + it: "Donphan", + pt: "Donphan", + de: "Donphan" + }, + + rarity: "Common", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Knock Flat", + fr: "Terrasser", + es: "Noquear", + it: "Stendere", + pt: "Dar uma Sova", + de: "Plattklopfen" + }, + + 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: 40 + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Guarded Rolling", + fr: "Roulade Prudente", + es: "Defensa Rodante", + it: "Rotolamento Difensivo", + pt: "Proteção Rolante", + de: "Schutzrolle" + }, + + effect: { + en: "Discard 2 Energy from this Pokémon. During your opponent's next turn, this Pokémon takes 100 less damage from attacks (after applying Weakness and Resistance).", + fr: "Défaussez 2 Énergies de ce Pokémon. Pendant le prochain tour de votre adversaire, ce Pokémon subit 100 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).", + es: "Descarta 2 Energías de este Pokémon. Durante el próximo turno de tu rival, los ataques hacen 100 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).", + it: "Scarta due Energie da questo Pokémon. Durante il prossimo turno del tuo avversario, questo Pokémon subisce 100 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Descarte 2 Energias deste Pokémon. Durante o próximo turno do seu oponente, este Pokémon receberá 100 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).", + de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel. Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken 100 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + }, + + damage: 120 + }], + + retreat: 4, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/104.ts b/data/Scarlet & Violet/Surging Sparks/104.ts new file mode 100644 index 000000000..69141101f --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/104.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Trapinch", + fr: "Kraknoix", + es: "Trapinch", + it: "Trapinch", + pt: "Trapinch", + de: "Knacklion" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Call for Family", + fr: "Appel à la Famille", + es: "Llamar a la Familia", + it: "Cerca Famiglia", + pt: "Chamar a Família", + de: "Familienruf" + }, + + effect: { + en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 Pokémon Básicos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck." + } + }, { + cost: ["Fighting", "Colorless"], + + name: { + en: "Bite", + fr: "Morsure", + es: "Mordisco", + it: "Morso", + pt: "Mordida", + de: "Biss" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/105.ts b/data/Scarlet & Violet/Surging Sparks/105.ts new file mode 100644 index 000000000..ed079385c --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/105.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Vibrava", + fr: "Vibraninf", + es: "Vibrava", + it: "Vibrava", + pt: "Vibrava", + de: "Vibrava" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Screech", + fr: "Grincement", + es: "Chirrido", + it: "Stridio", + pt: "Agudo", + de: "Kreideschrei" + }, + + effect: { + en: "During your next turn, the Defending Pokémon takes 50 more damage from attacks (after applying Weakness and Resistance).", + fr: "Pendant votre prochain tour, le Pokémon Défenseur subit 50 dégâts supplémentaires provenant des attaques (après application de la Faiblesse et de la Résistance).", + es: "Durante tu próximo turno, los ataques hacen 50 puntos de daño más al Pokémon Defensor (después de aplicar Debilidad y Resistencia).", + it: "Durante il tuo prossimo turno, il Pokémon difensore subisce 50 danni in più dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Durante o seu próximo turno, o Pokémon Defensor receberá 50 pontos de dano a mais de ataques (depois de aplicar Fraqueza e Resistência).", + de: "Während deines nächsten Zuges werden dem Verteidigenden Pokémon durch Attacken 50 Schadenspunkte mehr zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + } + }, { + cost: ["Fighting", "Colorless"], + + name: { + en: "Cutting Wind", + fr: "Vent Glacial", + es: "Viento Helado", + it: "Vento Tagliente", + pt: "Vento Dilacerante", + de: "Schneidender Wind" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/106.ts b/data/Scarlet & Violet/Surging Sparks/106.ts new file mode 100644 index 000000000..73f8f86f4 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/106.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Flygon ex", + fr: "Libégon-ex", + es: "Flygon ex", + it: "Flygon-ex", + pt: "Flygon ex", + de: "Libelldra-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 310, + types: ["Fighting"], + stage: "Stage2", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Reversing Storm", + fr: "Tempête Inversion", + es: "Tormenta Inversión", + it: "Tempesta d'Inversione", + pt: "Tempestade Reversa", + de: "Umkehrsturm" + }, + + effect: { + en: "You may switch this Pokémon with 1 of your Benched Pokémon.", + fr: "Vous pouvez échanger ce Pokémon contre l'un de vos Pokémon de Banc.", + es: "Puedes cambiar este Pokémon por uno de tus Pokémon en Banca.", + it: "Puoi scambiare questo Pokémon con uno della tua panchina.", + pt: "Você pode trocar este Pokémon por 1 dos seus Pokémon no Banco.", + de: "Du kannst dieses Pokémon gegen 1 Pokémon auf deiner Bank austauschen." + }, + + damage: 130 + }, { + cost: ["Water", "Fighting", "Metal"], + + name: { + en: "Sonic Peridot", + fr: "Péridot Sonique", + es: "Peridoto Sónico", + it: "Peridoto Sonico", + pt: "Peridoto Sônico", + de: "Schall-Peridot" + }, + + effect: { + en: "This attack does 100 damage to each of your opponent's Pokémon ex and Pokémon V. This attack's damage isn't affected by Weakness or Resistance.", + fr: "Cette attaque inflige 100 dégâts à chacun des Pokémon-ex et Pokémon-V de votre adversaire. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.", + es: "Este ataque hace 100 puntos de daño a cada uno de los Pokémon ex y Pokémon V de tu rival. El daño de este ataque no se ve afectado por Debilidad o Resistencia.", + it: "Questo attacco infligge 100 danni a ciascuno dei Pokémon-ex e dei Pokémon-V del tuo avversario. I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza.", + pt: "Este ataque causa 100 pontos de dano a cada um dos Pokémon ex e Pokémon V do seu oponente. O dano deste ataque não é afetado por Fraqueza ou Resistência.", + de: "Diese Attacke fügt jedem Pokémon-ex und Pokémon-V deines Gegners 100 Schadenspunkte zu. Der Schaden dieser Attacke wird durch Schwäche oder Resistenz nicht verändert." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false, + holo: true, + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/107.ts b/data/Scarlet & Violet/Surging Sparks/107.ts new file mode 100644 index 000000000..c775fb6db --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/107.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Gastrodon", + fr: "Tritosor", + es: "Gastrodon", + it: "Gastrodon", + pt: "Gastrodon", + de: "Gastrodon" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Sticky Bind", + fr: "Entrave Collante", + es: "Sujeción Pegajosa", + it: "Legame Viscoso", + pt: "Aprisionamento Pegajoso", + de: "Klebrige Fessel" + }, + + effect: { + en: "As long as this Pokémon is on your Bench, Benched Stage 2 Pokémon (both yours and your opponent's) have no Abilities.", + fr: "Tant que ce Pokémon est sur votre Banc, les Pokémon de Banc de Niveau 2 (les vôtres et ceux de votre adversaire) n'ont pas de talent.", + es: "Mientras este Pokémon esté en tu Banca, los Pokémon de Fase 2 en Banca (tanto tuyos como de tu rival) no tienen ninguna habilidad.", + it: "Fintanto che questo Pokémon è nella tua panchina, i Pokémon di Fase 2 in panchina, sia tuoi che del tuo avversario, non hanno abilità.", + pt: "Enquanto este Pokémon estiver no seu Banco, os Pokémon Estágio 2 no Banco (seus e do seu oponente) não terão Habilidades.", + de: "Solange sich dieses Pokémon auf deiner Bank befindet, haben Phase-2-Pokémon auf der Bank (deiner und der deines Gegners) keine Fähigkeiten." + } + }], + + attacks: [{ + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Mud Shot", + fr: "Tir de Boue", + es: "Disparo Lodo", + it: "Colpodifango", + pt: "Tiro de Lama", + de: "Lehmschuss" + }, + + damage: 80 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/108.ts b/data/Scarlet & Violet/Surging Sparks/108.ts new file mode 100644 index 000000000..623615487 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/108.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Drilbur", + fr: "Rototaupe", + es: "Drilbur", + it: "Drilbur", + pt: "Drilbur", + de: "Rotomurf" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Burrow", + fr: "Terrier", + es: "Escarbar", + it: "Buca", + pt: "Toca", + de: "Verbuddeln" + }, + + effect: { + en: "Discard the top card of your opponent's deck.", + fr: "Défaussez la carte du dessus du deck de votre adversaire.", + es: "Descarta la primera carta de la baraja de tu rival.", + it: "Scarta la prima carta del mazzo del tuo avversario.", + pt: "Descarte a carta de cima do baralho do seu oponente.", + de: "Lege die oberste Karte des Decks deines Gegners auf seinen Ablagestapel." + } + }, { + cost: ["Fighting"], + + name: { + en: "Mud-Slap", + fr: "Coud'Boue", + es: "Bofetón Lodo", + it: "Fangosberla", + pt: "Tapa de Lama", + de: "Lehmschelle" + }, + + damage: 10 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/109.ts b/data/Scarlet & Violet/Surging Sparks/109.ts new file mode 100644 index 000000000..d29d21236 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/109.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Excadrill", + fr: "Minotaupe", + es: "Excadrill", + it: "Excadrill", + pt: "Excadrill", + de: "Stalobor" + }, + + rarity: "Common", + category: "Pokemon", + hp: 120, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Digging Claw", + fr: "Griffe Excavatrice", + es: "Garra Excavadora", + it: "Scavartiglio", + pt: "Garras de Escavação", + de: "Buddelklaue" + }, + + effect: { + en: "Discard the top card of your opponent's deck.", + fr: "Défaussez la carte du dessus du deck de votre adversaire.", + es: "Descarta la primera carta de la baraja de tu rival.", + it: "Scarta la prima carta del mazzo del tuo avversario.", + pt: "Descarte a carta de cima do baralho do seu oponente.", + de: "Lege die oberste Karte des Decks deines Gegners auf seinen Ablagestapel." + }, + + damage: 20 + }, { + cost: ["Fighting", "Colorless"], + + name: { + en: "Drill Smash", + fr: "Broiement Perceuse", + es: "Golpe Taladro", + it: "Avvitacolpo", + pt: "Pancada Perfurante", + de: "Schmetterbohrer" + }, + + effect: { + en: "If you have any Metal Pokémon on your Bench, this attack does 80 more damage.", + fr: "Si vous avez au moins un Pokémon Metal sur votre Banc, cette attaque inflige 80 dégâts supplémentaires.", + es: "Si tienes algún Pokémon Metal en tu Banca, este ataque hace 80 puntos de daño más.", + it: "Se hai dei Pokémon Metal in panchina, questo attacco infligge 80 danni in più.", + pt: "Se você tiver algum Pokémon Metal no seu Banco, este ataque causará 80 pontos de dano a mais.", + de: "Wenn du mindestens 1 Metal-Pokémon auf deiner Bank hast, fügt diese Attacke 80 Schadenspunkte mehr zu." + }, + + damage: "60+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/110.ts b/data/Scarlet & Violet/Surging Sparks/110.ts new file mode 100644 index 000000000..c6e2f8b75 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/110.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Landorus", + fr: "Démétéros", + es: "Landorus", + it: "Landorus", + pt: "Landorus", + de: "Demeteros" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Fist of Focus", + fr: "Poing Déterminé", + es: "Puño Fulminante", + it: "Focalpugno", + pt: "Punho do Foco", + de: "Fokus-Faust" + }, + + effect: { + en: "Attach an Energy card from your discard pile to this Pokémon.", + fr: "Attachez une carte Énergie de votre pile de défausse à ce Pokémon.", + es: "Une 1 carta de Energía de tu pila de descartes a este Pokémon.", + it: "Assegna a questo Pokémon una carta Energia dalla tua pila degli scarti.", + pt: "Ligue uma carta de Energia da sua pilha de descarte a este Pokémon.", + de: "Lege 1 Energiekarte aus deinem Ablagestapel an dieses Pokémon an." + }, + + damage: 30 + }, { + cost: ["Fighting", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Buster Swing", + fr: "Repoussoir", + es: "Golpe Destructor", + it: "Colpaccio", + pt: "Gingado", + de: "Widerstandsbrecher" + }, + + 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: 130 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/111.ts b/data/Scarlet & Violet/Surging Sparks/111.ts new file mode 100644 index 000000000..d407e1b61 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/111.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Passimian", + fr: "Quartermac", + es: "Passimian", + it: "Passimian", + pt: "Passimian", + de: "Quartermak" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 110, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting", "Colorless"], + + name: { + en: "Coordinated Throwing", + fr: "Lancer Coopération", + es: "Lanzamiento Coordinado", + it: "Tiro di Squadra", + pt: "Arremesso Coordenado", + de: "Koordiniertes Werfen" + }, + + effect: { + en: "This attack does 20 damage for each of your Basic Pokémon in play.", + fr: "Cette attaque inflige 20 dégâts pour chacun de vos Pokémon de base en jeu.", + es: "Este ataque hace 20 puntos de daño por cada uno de tus Pokémon Básicos en juego.", + it: "Questo attacco infligge 20 danni per ogni tuo Pokémon Base in gioco.", + pt: "Este ataque causa 20 pontos de dano para cada um dos seus Pokémon Básicos em jogo.", + de: "Diese Attacke fügt für jedes deiner Basis-Pokémon im Spiel 20 Schadenspunkte zu." + }, + + damage: "20×" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/112.ts b/data/Scarlet & Violet/Surging Sparks/112.ts new file mode 100644 index 000000000..38ba0b0fc --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/112.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +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: "Slight Intrusion", + fr: "Légère Intrusion", + es: "Ligera Intromisión", + it: "Coinvolgimento", + pt: "Leve Invasão", + de: "Vorwagen" + }, + + 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: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/113.ts b/data/Scarlet & Violet/Surging Sparks/113.ts new file mode 100644 index 000000000..2e2c8a1a5 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/113.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Grapploct", + fr: "Krakos", + es: "Grapploct", + it: "Grapploct", + pt: "Grapploct", + de: "Kaocto" + }, + + rarity: "Common", + category: "Pokemon", + hp: 140, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Chop", + fr: "Coup Tranchant", + es: "Cortar", + it: "Ceffone", + pt: "Trincar", + de: "Hacker" + }, + + damage: 40 + }, { + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Raging Tentacles", + fr: "Tentacules Furieux", + es: "Tentáculos Iracundos", + it: "Tentacoli Furiosi", + pt: "Tentáculos Violentos", + de: "Wütende Tentakel" + }, + + effect: { + en: "If this Pokémon has any damage counters on it, this attack can be used for Fighting.", + fr: "Si au moins un marqueur de dégâts est placé sur ce Pokémon, cette attaque peut être utilisée pour Fighting.", + es: "Si este Pokémon tiene algún contador de daño sobre él, este ataque se puede usar por Fighting.", + it: "Se questo Pokémon ha dei segnalini danno, il costo di questo attacco è Fighting.", + pt: "Se este Pokémon tiver algum contador de dano nele, este ataque poderá ser usado por Fighting.", + de: "Wenn auf diesem Pokémon mindestens 1 Schadensmarke liegt, kann diese Attacke für Fighting eingesetzt werden." + }, + + damage: 130 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/114.ts b/data/Scarlet & Violet/Surging Sparks/114.ts new file mode 100644 index 000000000..002fe0a81 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/114.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Glimmet", + fr: "Germéclat", + es: "Glimmet", + it: "Glimmet", + pt: "Glimmet", + de: "Lumispross" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Rock Hurl", + fr: "Lance-Pierre", + es: "Lanzamiento de Rocas", + it: "Scaglia Pietre", + pt: "Lançamento de Pedras", + de: "Steinschleuderer" + }, + + 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: 10 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/115.ts b/data/Scarlet & Violet/Surging Sparks/115.ts new file mode 100644 index 000000000..6be35c075 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/115.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Glimmora", + fr: "Floréclat", + es: "Glimmora", + it: "Glimmora", + pt: "Glimmora", + de: "Lumiflora" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Corrosive Shards", + fr: "Éclats Corrosifs", + es: "Esquirlas Corrosivas", + it: "Schegge Corrosive", + pt: "Estilhaços Corrosivos", + de: "Korrosionssplitter" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned. During your opponent's next turn, Energy cards can't be attached from your opponent's hand to that Pokémon.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Pendant le prochain tour de votre adversaire, aucune carte Énergie ne peut être attachée de la main de votre adversaire à ce Pokémon-là.", + es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Durante el próximo turno de tu rival, no se pueden unir cartas de Energía de la mano de tu rival a ese Pokémon.", + it: "Il Pokémon attivo del tuo avversario viene avvelenato. Durante il prossimo turno del tuo avversario, nessuna carta Energia può essere assegnata dalla mano del tuo avversario a quel Pokémon.", + pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Durante o próximo turno do seu oponente, cartas de Energia não poderão ser ligadas da mão do seu oponente àquele Pokémon.", + de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Während des nächsten Zuges deines Gegners können keine Energiekarten aus der Hand deines Gegners an jenes Pokémon angelegt werden." + }, + + damage: 20 + }, { + cost: ["Fighting", "Colorless"], + + name: { + en: "Rock Throw", + fr: "Jet-Pierres", + es: "Lanzarrocas", + it: "Sassata", + pt: "Lançamento de Rocha", + de: "Steinwurf" + }, + + damage: 60 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/116.ts b/data/Scarlet & Violet/Surging Sparks/116.ts new file mode 100644 index 000000000..dbbca852f --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/116.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Koraidon", + fr: "Koraidon", + es: "Koraidon", + it: "Koraidon", + pt: "Koraidon", + de: "Koraidon" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Unrelenting Onslaught", + fr: "Assauts Incessants", + es: "Arremetida Incesante", + it: "Offensiva Incessante", + pt: "Arrancada Implacável", + de: "Unerbittlicher Ansturm" + }, + + effect: { + en: "If 1 of your other Ancient Pokémon used an attack during your last turn, this attack does 150 more damage.", + fr: "Si l'un de vos autres Pokémon Temps passé a utilisé une attaque pendant votre dernier tour, cette attaque inflige 150 dégâts supplémentaires.", + es: "Si uno de tus otros Pokémon del pasado usó un ataque durante tu último turno, este ataque hace 150 puntos de daño más.", + it: "Se uno dei tuoi altri Pokémon Tempo Passato ha usato un attacco durante il tuo ultimo turno, questo attacco infligge 150 danni in più.", + pt: "Se 1 dos seus outros Pokémon Ancestrais usou um ataque durante o seu último turno, este ataque causará 150 pontos de dano a mais.", + de: "Wenn 1 deiner anderen Pokémon aus der Vergangenheit während deines letzten Zuges eine Attacke eingesetzt hat, fügt diese Attacke 150 Schadenspunkte mehr zu." + }, + + damage: "30+" + }, { + cost: ["Fighting", "Fighting", "Colorless"], + + name: { + en: "Hammer In", + fr: "Enfoncement", + es: "Martillear", + it: "Martello", + pt: "Martelada", + de: "Einhämmern" + }, + + damage: 110 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/117.ts b/data/Scarlet & Violet/Surging Sparks/117.ts new file mode 100644 index 000000000..63c7190a0 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/117.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Deino", + fr: "Solochi", + es: "Deino", + it: "Deino", + pt: "Deino", + de: "Kapuno" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Stomp Off", + fr: "Tohu-Bohu", + es: "Pisotear", + it: "Pestatura", + pt: "Sair Irritado", + de: "Davonstapfen" + }, + + effect: { + en: "Discard the top card of your opponent's deck.", + fr: "Défaussez la carte du dessus du deck de votre adversaire.", + es: "Descarta la primera carta de la baraja de tu rival.", + it: "Scarta la prima carta del mazzo del tuo avversario.", + pt: "Descarte a carta de cima do baralho do seu oponente.", + de: "Lege die oberste Karte des Decks deines Gegners auf seinen Ablagestapel." + } + }, { + cost: ["Darkness", "Colorless"], + + name: { + en: "Bite", + fr: "Morsure", + es: "Mordisco", + it: "Morso", + pt: "Mordida", + de: "Biss" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/118.ts b/data/Scarlet & Violet/Surging Sparks/118.ts new file mode 100644 index 000000000..db28537a9 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/118.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Zweilous", + fr: "Diamat", + es: "Zweilous", + it: "Zweilous", + pt: "Zweilous", + de: "Duodino" + }, + + rarity: "Common", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Stomp Off", + fr: "Tohu-Bohu", + es: "Pisotear", + it: "Pestatura", + pt: "Sair Irritado", + de: "Davonstapfen" + }, + + 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." + } + }, { + cost: ["Darkness", "Colorless", "Colorless"], + + name: { + en: "Darkness Fang", + fr: "Croc Obscur", + es: "Colmillo de Oscuridad", + it: "Oscurizanna", + pt: "Presa Sombria", + de: "Fänge der Dunkelheit" + }, + + damage: 60 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/119.ts b/data/Scarlet & Violet/Surging Sparks/119.ts new file mode 100644 index 000000000..3f889562a --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/119.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Hydreigon ex", + fr: "Trioxhydre-ex", + es: "Hydreigon ex", + it: "Hydreigon-ex", + pt: "Hydreigon ex", + de: "Trikephalo-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 330, + types: ["Darkness"], + stage: "Stage2", + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + en: "Crashing Headbutt", + fr: "Coup d'Boule Percutant", + es: "Cabezazo Demoledor", + it: "Bottintesta Schiacciante", + pt: "Cabeçada Estrondosa", + de: "Krachender Kopfstoß" + }, + + effect: { + en: "Discard the top 3 cards of your opponent's deck.", + fr: "Défaussez les 3 cartes du dessus du deck de votre adversaire.", + es: "Descarta las 3 primeras cartas de la baraja de tu rival.", + it: "Scarta le prime tre carte del mazzo del tuo avversario.", + pt: "Descarte as 3 cartas de cima do baralho do seu oponente.", + de: "Lege die obersten 3 Karten des Decks deines Gegners auf seinen Ablagestapel." + }, + + damage: 200 + }, { + cost: ["Psychic", "Darkness", "Metal", "Colorless"], + + name: { + en: "Obsidian", + fr: "Obsidienne", + es: "Obsidiana", + it: "Ossidiana", + pt: "Obsidiana", + de: "Obsidian" + }, + + effect: { + en: "This attack also does 130 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 130 dégâts à 2 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 130 puntos de daño a 2 de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 130 danni a due dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 130 pontos de dano a 2 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 auch 2 Pokémon auf der Bank deines Gegners 130 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 130 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/120.ts b/data/Scarlet & Violet/Surging Sparks/120.ts new file mode 100644 index 000000000..176e70996 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/120.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Shroodle", + fr: "Gribouraigne", + es: "Shroodle", + it: "Shroodle", + pt: "Shroodle", + de: "Sproxi" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Spray Fluid", + fr: "Fluide Éclaboussant", + es: "Fluido Rociado", + it: "Fluidospray", + pt: "Fluido Spray", + de: "Sprühwasser" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/121.ts b/data/Scarlet & Violet/Surging Sparks/121.ts new file mode 100644 index 000000000..59e16f254 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/121.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Grafaiai", + fr: "Tag-Tag", + es: "Grafaiai", + it: "Grafaiai", + pt: "Grafaiai", + de: "Affiti" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Mischievous Painting", + fr: "Toile Malicieuse", + es: "Pinturas Traviesas", + it: "Disegni Birichini", + pt: "Pintura Maliciosa", + de: "Freche Malerei" + }, + + effect: { + en: "Attach up to 3 Energy cards from your opponent's discard pile to their Pokémon in any way you like.", + fr: "Attachez jusqu'à 3 cartes Énergie de la pile de défausse de votre adversaire à ses Pokémon comme il vous plaît.", + es: "Une hasta 3 cartas de Energía de la pila de descartes de tu rival a sus Pokémon de la manera que desees.", + it: "Assegna ai Pokémon del tuo avversario fino a tre carte Energia dalla sua pila degli scarti nel modo che preferisci.", + pt: "Ligue até 3 cartas de Energia da pilha de descarte do seu oponente aos Pokémon dele como desejar.", + de: "Lege bis zu 3 Energiekarten aus dem Ablagestapel deines Gegners beliebig an seine Pokémon an." + } + }, { + cost: ["Darkness", "Darkness"], + + name: { + en: "Energized Graffiti", + fr: "Graffiti Énergisé", + es: "Grafiti Energético", + it: "Graffiti Energizzati", + pt: "Grafite Energizado", + de: "Energiegeladenes Graffiti" + }, + + effect: { + en: "This attack does 40 damage for each Energy attached to all of your opponent's Pokémon.", + fr: "Cette attaque inflige 40 dégâts pour chaque Énergie attachée à tous les Pokémon de votre adversaire.", + es: "Este ataque hace 40 puntos de daño por cada Energía unida a cada uno de los Pokémon de tu rival.", + it: "Questo attacco infligge 40 danni per ogni Energia assegnata ai Pokémon del tuo avversario.", + pt: "Este ataque causa 40 pontos de dano para cada Energia ligada a todos os Pokémon do seu oponente.", + de: "Diese Attacke fügt für jede an alle Pokémon deines Gegners angelegte Energie 40 Schadenspunkte zu." + }, + + damage: "40×" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/122.ts b/data/Scarlet & Violet/Surging Sparks/122.ts new file mode 100644 index 000000000..d699afd45 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/122.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Diglett", + fr: "Taupiqueur d'Alola", + es: "Diglett de Alola", + it: "Diglett di Alola", + pt: "Diglett de Alola", + de: "Alola-Digda" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + name: { + en: "Surprise Attack", + fr: "Attaque Surprise", + es: "Ataque Sorpresa", + it: "Attacco a Sorpresa", + pt: "Ataque Surpresa", + de: "Überraschungsangriff" + }, + + 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: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/123.ts b/data/Scarlet & Violet/Surging Sparks/123.ts new file mode 100644 index 000000000..722eeb234 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/123.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Dugtrio", + fr: "Triopikeur d'Alola", + es: "Dugtrio de Alola", + it: "Dugtrio di Alola", + pt: "Dugtrio de Alola", + de: "Alola-Digdri" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 110, + types: ["Metal"], + stage: "Stage1", + + attacks: [{ + name: { + en: "Trio-Cheehoo", + fr: "Trio-Cheehoo", + es: "Trío Olé", + it: "Triurrà", + pt: "Trilegal", + de: "Dreistes Glück" + }, + + effect: { + en: "If you don't have exactly 3 cards in your hand, this attack does nothing.", + fr: "Si vous n'avez pas exactement 3 cartes dans votre main, cette attaque ne fait rien.", + es: "Si no tienes exactamente 3 cartas en tu mano, este ataque no hace nada.", + it: "Se non hai esattamente tre carte in mano, questo attacco non ha effetto.", + pt: "Se você não tiver exatamente 3 cartas na sua mão, este ataque não fará nada.", + de: "Wenn du nicht genau 3 Karten auf deiner Hand hast, hat diese Attacke keine Auswirkungen." + }, + + damage: 120 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/124.ts b/data/Scarlet & Violet/Surging Sparks/124.ts new file mode 100644 index 000000000..963676b33 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/124.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Skarmory", + fr: "Airmure", + es: "Skarmory", + it: "Skarmory", + pt: "Skarmory", + de: "Panzaeron" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + en: "Steel Wing", + fr: "Ailes d'Acier", + es: "Ala de Acero", + it: "Alacciaio", + pt: "Asa de Aço", + de: "Stahlflügel" + }, + + 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: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/125.ts b/data/Scarlet & Violet/Surging Sparks/125.ts new file mode 100644 index 000000000..e62d3ca6b --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/125.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Registeel", + fr: "Registeel", + es: "Registeel", + it: "Registeel", + pt: "Registeel", + de: "Registeel" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + en: "Raging Hammer", + fr: "Marteau Rageur", + es: "Martillo Furioso", + it: "Martelfuria", + pt: "Martelo Feroz", + de: "Wuthammer" + }, + + effect: { + en: "This attack does 10 more damage for each damage counter on this Pokémon.", + fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts sur ce Pokémon.", + es: "Este ataque hace 10 puntos de daño más por cada contador de daño en este Pokémon.", + it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente su questo Pokémon.", + pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano neste Pokémon.", + de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte mehr zu." + }, + + damage: "60+" + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/126.ts b/data/Scarlet & Violet/Surging Sparks/126.ts new file mode 100644 index 000000000..c9043d224 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/126.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Bronzor", + fr: "Archéomire", + es: "Bronzor", + it: "Bronzor", + pt: "Bronzor", + de: "Bronzel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + en: "Shield Attack", + fr: "Attaque de Bouclier", + es: "Ataque Escudo", + it: "Scudoattacco", + pt: "Ataque Escudo", + de: "Schildattacke" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 20 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu." + }, + + damage: "20+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/127.ts b/data/Scarlet & Violet/Surging Sparks/127.ts new file mode 100644 index 000000000..305f808c9 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/127.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Bronzong", + fr: "Archéodong", + es: "Bronzong", + it: "Bronzong", + pt: "Bronzong", + de: "Bronzong" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Metal"], + stage: "Stage1", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + en: "Spinning Attack", + fr: "Attaque Tournante", + es: "Ataque Giratorio", + it: "Attacco Rotante", + pt: "Ataque Giratório", + de: "Rundumangriff" + }, + + damage: 50 + }, { + cost: ["Metal", "Colorless", "Colorless"], + + name: { + en: "Double Impact", + fr: "Double Impact", + es: "Impacto Doble", + it: "Doppio Impatto", + pt: "Impacto Duplo", + de: "Doppelter Einschlag" + }, + + effect: { + en: "Flip 2 coins. This attack does 100 damage for each heads.", + fr: "Lancez 2 pièces. Cette attaque inflige 100 dégâts pour chaque côté face.", + es: "Lanza 2 monedas. Este ataque hace 100 puntos de daño por cada cara.", + it: "Lancia due volte una moneta. Questo attacco infligge 100 danni ogni volta che esce testa.", + pt: "Jogue 2 moedas. Este ataque causa 100 pontos de dano para cada cara.", + de: "Wirf 2 Münzen. Diese Attacke fügt 100 Schadenspunkte pro Kopf zu." + }, + + damage: "100×" + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/128.ts b/data/Scarlet & Violet/Surging Sparks/128.ts new file mode 100644 index 000000000..c433092ca --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/128.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Klefki", + fr: "Trousselin", + es: "Klefki", + it: "Klefki", + pt: "Klefki", + de: "Clavion" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Stick 'n' Draw", + fr: "Inséré-Pioché", + es: "Abrir y Robar", + it: "Metti e Pesca", + pt: "Virada de Chave", + de: "Abwerfen und Ziehen" + }, + + effect: { + en: "Discard a card from your hand. If you do, draw 2 cards.", + fr: "Défaussez une carte de votre main. Dans ce cas, piochez 2 cartes.", + es: "Descarta 1 carta de tu mano. Si lo haces, roba 2 cartas.", + it: "Scarta una delle carte che hai in mano. Se lo fai, pesca due carte.", + pt: "Descarte uma carta da sua mão. Se fizer isto, compre 2 cartas.", + de: "Lege 1 Karte aus deiner Hand auf deinen Ablagestapel. Wenn du das machst, ziehe 2 Karten." + } + }, { + cost: ["Colorless"], + + name: { + en: "Hook", + fr: "Crochet", + es: "Garfio", + it: "Uncino", + pt: "Gancho", + de: "Haken" + }, + + damage: 20 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/129.ts b/data/Scarlet & Violet/Surging Sparks/129.ts new file mode 100644 index 000000000..ec2ce3883 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/129.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Duraludon", + fr: "Duralugon", + es: "Duraludon", + it: "Duraludon", + pt: "Duraludon", + de: "Duraludon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Metal"], + + name: { + en: "Confront", + fr: "Confrontation", + es: "Confrontar", + it: "Confronto", + pt: "Confrontar", + de: "Konfrontieren" + }, + + damage: 50 + }, { + cost: ["Metal", "Metal", "Metal"], + + name: { + en: "Duralubeam", + fr: "Duralurayon", + es: "Rayoludon", + it: "Duraluraggio", + pt: "Duralurraio", + de: "Duralustrahl" + }, + + effect: { + en: "Discard 2 Energy from this Pokémon.", + fr: "Défaussez 2 Énergies de ce Pokémon.", + es: "Descarta 2 Energías de este Pokémon.", + it: "Scarta due Energie da questo Pokémon.", + pt: "Descarte 2 Energias deste Pokémon.", + de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 130 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/130.ts b/data/Scarlet & Violet/Surging Sparks/130.ts new file mode 100644 index 000000000..f5d52bf54 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/130.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Archaludon ex", + fr: "Pondralugon-ex", + es: "Archaludon ex", + it: "Archaludon-ex", + pt: "Archaludon ex", + de: "Briduradon-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 300, + types: ["Metal"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Assemble Alloy", + fr: "Assemblage d'Alliage", + es: "Montaje Aleación", + it: "Assemblametallo", + pt: "Montagem de Liga Metálica", + de: "Legieren" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may attach up to 2 Basic Metal Energy cards from your discard pile to your Metal Pokémon in any way you like.", + fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez attacher jusqu'à 2 cartes Énergie Metal de base de votre pile de défausse à vos Pokémon Metal, comme il vous plaît.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes unir hasta 2 cartas de Energía Metal Básica de tu pila de descartes a tus Pokémon Metal de la manera que desees.", + it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi assegnare ai tuoi Pokémon Metal fino a due carte Energia base Metal dalla tua pila degli scarti nel modo che preferisci.", + pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá ligar até 2 cartas de Energia Metal Básica da sua pilha de descarte aos seus Pokémon Metal como desejar.", + de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du bis zu 2 Basis-Metal-Energiekarten aus deinem Ablagestapel beliebig an deine Metal-Pokémon anlegen." + } + }], + + attacks: [{ + cost: ["Metal", "Metal", "Metal"], + + name: { + en: "Metal Defender", + fr: "Défense Métallique", + es: "Defensor Metálico", + it: "Metalloscudo", + pt: "Defensor Metálico", + de: "Metallverteidiger" + }, + + effect: { + en: "During your opponent's next turn, this Pokémon has no Weakness.", + fr: "Pendant le prochain tour de votre adversaire, ce Pokémon n'a pas de Faiblesse.", + es: "Durante el próximo turno de tu rival, este Pokémon no tiene ninguna Debilidad.", + it: "Durante il prossimo turno del tuo avversario, questo Pokémon non ha debolezza.", + pt: "Durante o próximo turno do seu oponente, este Pokémon não terá Fraqueza.", + de: "Während des nächsten Zuges deines Gegners hat dieses Pokémon keine Schwäche." + }, + + damage: 220 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/131.ts b/data/Scarlet & Violet/Surging Sparks/131.ts new file mode 100644 index 000000000..81b937f15 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/131.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Gholdengo", + fr: "Gromago", + es: "Gholdengo", + it: "Gholdengo", + pt: "Gholdengo", + de: "Monetigo" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Metal"], + stage: "Stage1", + + attacks: [{ + cost: ["Metal"], + + name: { + en: "Strike It Rich", + fr: "Frappe Fortune", + es: "Enriquecerse", + it: "Colpo Ricco", + pt: "Ganhar uma Bolada", + de: "Goldene Gelegenheit" + }, + + effect: { + en: "If this Pokémon evolved from Gimmighoul during this turn, this attack does 90 more damage.", + fr: "Si ce Pokémon a évolué de Mordudor pendant ce tour, cette attaque inflige 90 dégâts supplémentaires.", + es: "Si este Pokémon ha evolucionado de Gimmighoul durante este turno, este ataque hace 90 puntos de daño más.", + it: "Se questo Pokémon si è evoluto da Gimmighoul durante questo turno, questo attacco infligge 90 danni in più.", + pt: "Se este Pokémon evoluiu de Gimmighoul durante este turno, este ataque causará 90 pontos de dano a mais.", + de: "Wenn sich dieses Pokémon während dieses Zuges aus Gierspenst entwickelt hat, fügt diese Attacke 90 Schadenspunkte mehr zu." + }, + + damage: "30+" + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Surf Back", + fr: "Surf Retour", + es: "Surfeo Regreso", + it: "Retrosurf", + pt: "Surfar de Volta", + de: "Zurücksurfen" + }, + + effect: { + en: "You may shuffle this Pokémon and all attached cards into your deck.", + fr: "Vous pouvez mélanger avec votre deck ce Pokémon et toutes les cartes qui lui sont attachées.", + es: "Puedes poner este Pokémon y todas las cartas unidas a él en tu baraja y barajarlas todas.", + it: "Puoi rimischiare questo Pokémon e tutte le carte a esso assegnate nel tuo mazzo.", + pt: "Você pode embaralhar este Pokémon e todas as cartas ligadas a ele no seu baralho.", + de: "Du kannst dieses Pokémon und alle angelegten Karten in dein Deck mischen." + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/132.ts b/data/Scarlet & Violet/Surging Sparks/132.ts new file mode 100644 index 000000000..6b3a12e52 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/132.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Iron Crown", + fr: "Chef-de-Fer", + es: "Ferrotesta", + it: "Capoferreo", + pt: "Chifres Férreos", + de: "Eisenhaupt" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + en: "Deleting Slash", + fr: "Tranche Suppression", + es: "Tajo Formateo", + it: "Lacerosgombro", + pt: "Talho Apagador", + de: "Destruktorschnitt" + }, + + effect: { + en: "If your opponent has 3 or more Benched Pokémon, this attack does 80 more damage.", + fr: "Si votre adversaire a 3 Pokémon de Banc ou plus, cette attaque inflige 80 dégâts supplémentaires.", + es: "Si tu rival tiene 3 Pokémon en Banca o más, este ataque hace 80 puntos de daño más.", + it: "Se il tuo avversario ha tre o più Pokémon in panchina, questo attacco infligge 80 danni in più.", + pt: "Se o seu oponente tiver 3 ou mais Pokémon no Banco, este ataque causará 80 pontos de dano a mais.", + de: "Wenn dein Gegner 3 oder mehr Pokémon auf seiner Bank hat, fügt diese Attacke 80 Schadenspunkte mehr zu." + }, + + damage: "40+" + }, { + cost: ["Metal", "Colorless", "Colorless"], + + name: { + en: "Slicing Blade", + fr: "Lame Tranchante", + es: "Cuchilla Cortante", + it: "Affettalama", + pt: "Lâmina Fatiante", + de: "Schwertschneide" + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/133.ts b/data/Scarlet & Violet/Surging Sparks/133.ts new file mode 100644 index 000000000..7b8f99c18 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/133.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Exeggutor ex", + fr: "Noadkoko d'Alola-ex", + es: "Exeggutor de Alola ex", + it: "Exeggutor di Alola-ex", + pt: "Exeggutor de Alola ex", + de: "Alola-Kokowei-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass", "Water"], + + name: { + en: "Tropical Frenzy", + fr: "Frénésie Tropicale", + es: "Frenesí Tropical", + it: "Frenesia Tropicale", + pt: "Delírio Tropical", + de: "Tropenwahn" + }, + + effect: { + en: "You may attach any number of Basic Energy cards from your hand to your Pokémon in any way you like.", + fr: "Vous pouvez attacher le nombre voulu de cartes Énergie de base de votre main à vos Pokémon comme il vous plaît.", + es: "Puedes unir cualquier cantidad de cartas de Energía Básica de tu mano a tus Pokémon de la manera que desees.", + it: "Puoi assegnare ai tuoi Pokémon un numero qualsiasi di carte Energia base dalla tua mano nel modo che preferisci.", + pt: "Você pode ligar qualquer número de cartas de Energia Básica da sua mão aos seus Pokémon como desejar.", + de: "Du kannst beliebig viele Basis-Energiekarten aus deiner Hand beliebig an deine Pokémon anlegen." + }, + + damage: 150 + }, { + cost: ["Grass", "Water", "Fighting"], + + name: { + en: "Swinging Sphene", + fr: "Sphène Oscillant", + es: "Esfena Oscilante", + it: "Sfene Oscillante", + pt: "Esfênio Oscilante", + de: "Sphen-Schwung" + }, + + effect: { + en: "Flip a coin. If heads, Knock Out your opponent's Active Basic Pokémon. If tails, Knock Out 1 of your opponent's Benched Basic Pokémon.", + fr: "Lancez une pièce. Si c'est face, mettez K.O. le Pokémon Actif de base de votre adversaire. Si c'est pile, mettez K.O. l'un des Pokémon de Banc de base de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, deja Fuera de Combate al Pokémon Básico Activo de tu rival. Si sale cruz, deja Fuera de Combate a uno de los Pokémon Básicos en Banca de tu rival.", + it: "Lancia una moneta. Se esce testa, metti KO il Pokémon Base attivo del tuo avversario. Se esce croce, metti KO uno dei Pokémon Base nella panchina del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, Nocauteie o Pokémon Básico Ativo do seu oponente. Se sair coroa, Nocauteie 1 dos Pokémon Básicos no Banco do seu oponente.", + de: "Wirf 1 Münze. Mache bei Kopf das Aktive Basis-Pokémon deines Gegners kampfunfähig. Mache bei Zahl 1 Basis-Pokémon auf der Bank deines Gegners kampfunfähig." + } + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/134.ts b/data/Scarlet & Violet/Surging Sparks/134.ts new file mode 100644 index 000000000..82802df42 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/134.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Altaria", + fr: "Altaria", + es: "Altaria", + it: "Altaria", + pt: "Altaria", + de: "Altaria" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Dragon"], + stage: "Stage1", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Humming Charge", + fr: "Charge Virevolte", + es: "Carga Cantarina", + it: "Carica Canterina", + pt: "Canto Abastecedor", + de: "Aufladendes Gesumme" + }, + + effect: { + en: "Search your deck for up to 2 Basic Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base, puis attachez-les à vos Pokémon comme il vous plaît. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 2 cartas de Energía Básica y únelas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due carte Energia base e assegnale ai tuoi Pokémon nel modo che preferisci. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 cartas de Energia Básica no seu baralho e ligue-as aos seus Pokémon como desejar. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 2 Basis-Energiekarten und lege sie beliebig an deine Pokémon an. Mische anschließend dein Deck." + } + }, { + cost: ["Water", "Metal"], + + name: { + en: "Cotton Wings", + fr: "Ailes de Coton", + es: "Alas Algodonadas", + it: "Ali di Cotone", + pt: "Asas de Algodão", + de: "Watteschwingen" + }, + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage done to this Pokémon by attacks.", + fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques.", + es: "Lanza 1 moneda. Si sale cara, durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques.", + it: "Lancia una moneta. Se esce testa, durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon da qualsiasi attacco.", + pt: "Jogue uma moeda. Se sair cara, durante o próximo turno do seu oponente, previna todo o dano causado a este Pokémon por ataques.", + de: "Wirf 1 Münze. Verhindere bei Kopf während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken zugefügt wird." + }, + + damage: 100 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/135.ts b/data/Scarlet & Violet/Surging Sparks/135.ts new file mode 100644 index 000000000..250313285 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/135.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Dialga", + fr: "Dialga", + es: "Dialga", + it: "Dialga", + pt: "Dialga", + de: "Dialga" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Time Manipulation", + fr: "Manipulation Temporelle", + es: "Manipulación Temporal", + it: "Manipolazione Temporale", + pt: "Manipulação do Tempo", + de: "Zeitmanipulation" + }, + + effect: { + en: "Search your deck for 2 cards, shuffle your deck, then put those cards on top of it in any order.", + fr: "Cherchez 2 cartes dans votre deck. Mélangez votre deck, puis placez ces cartes sur le dessus de votre deck dans l'ordre de votre choix.", + es: "Busca en tu baraja 2 cartas, baraja las cartas de tu baraja y, luego, pon esas cartas en la parte superior de tu baraja en el orden que quieras.", + it: "Cerca nel tuo mazzo due carte, rimischia le carte del tuo mazzo, poi metti quelle carte in cima al mazzo nell'ordine che preferisci.", + pt: "Procure por 2 cartas no seu baralho, embaralhe o seu baralho e, em seguida, coloque aquelas cartas como as cartas de cima do seu baralho em qualquer ordem.", + de: "Durchsuche dein Deck nach 2 Karten, mische dein Deck und lege jene Karten anschließend in beliebiger Reihenfolge auf dein Deck." + } + }, { + cost: ["Psychic", "Metal", "Colorless"], + + name: { + en: "Buster Tail", + fr: "Queue Destructrice", + es: "Cola Destructora", + it: "Coda Distruttrice", + pt: "Cauda Aniquiladora", + de: "Zertrümmernder Schweif" + }, + + damage: 160 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/136.ts b/data/Scarlet & Violet/Surging Sparks/136.ts new file mode 100644 index 000000000..bb7103986 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/136.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Palkia", + fr: "Palkia", + es: "Palkia", + it: "Palkia", + pt: "Palkia", + de: "Palkia" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 130, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Grass", "Water"], + + name: { + en: "Space Crash", + fr: "Écrasement Spatial", + es: "Colisión Espacial", + it: "Schianto Spaziale", + pt: "Colisão do Espaço", + de: "Raumbruch" + }, + + effect: { + en: "This attack does 40 damage for each Basic Energy attached to this Pokémon.", + fr: "Cette attaque inflige 40 dégâts pour chaque Énergie de base attachée à ce Pokémon.", + es: "Este ataque hace 40 puntos de daño por cada Energía Básica unida a este Pokémon.", + it: "Questo attacco infligge 40 danni per ogni Energia base assegnata a questo Pokémon.", + pt: "Este ataque causa 40 pontos de dano para cada Energia Básica ligada a este Pokémon.", + de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Basis-Energie 40 Schadenspunkte zu." + }, + + damage: "40×" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/137.ts b/data/Scarlet & Violet/Surging Sparks/137.ts new file mode 100644 index 000000000..018a748a0 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/137.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Turtonator", + fr: "Boumata", + es: "Turtonator", + it: "Turtonator", + pt: "Turtonator", + de: "Tortunator" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 120, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Fire"], + + name: { + en: "Fully Singe", + fr: "Complètement Roussi", + es: "Quemadura Total", + it: "Scottata Totale", + pt: "Chamuscada Total", + de: "Vollversengung" + }, + + effect: { + en: "Discard an Energy from your opponent's Active Pokémon ex.", + fr: "Défaussez une Énergie du Pokémon-ex Actif de votre adversaire.", + es: "Descarta 1 Energía del Pokémon ex Activo de tu rival.", + it: "Scarta un'Energia dal Pokémon-ex attivo del tuo avversario.", + pt: "Descarte uma Energia do Pokémon ex Ativo do seu oponente.", + de: "Lege 1 Energie vom Aktiven Pokémon-ex deines Gegners auf seinen Ablagestapel." + } + }, { + cost: ["Fighting", "Colorless", "Colorless"], + + name: { + en: "Steaming Stomp", + fr: "Piétinement Fumant", + es: "Pisotón Humeante", + it: "Pestata Incandescente", + pt: "Pisoteada Fumegante", + de: "Dampfstampfer" + }, + + damage: 100 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/138.ts b/data/Scarlet & Violet/Surging Sparks/138.ts new file mode 100644 index 000000000..69bbb8844 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/138.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Applin", + fr: "Verpom", + es: "Applin", + it: "Applin", + pt: "Applin", + de: "Knapfel" + }, + + rarity: "Common", + category: "Pokemon", + hp: 40, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Nutrients", + fr: "Nutriments", + es: "Nutrientes", + it: "Nutrienti", + pt: "Nutrientes", + de: "Nährstoffe" + }, + + effect: { + en: "Heal 30 damage from 1 of your Pokémon.", + fr: "Soignez 30 dégâts de l'un de vos Pokémon.", + es: "Cura 30 puntos de daño a uno de tus Pokémon.", + it: "Cura uno dei tuoi Pokémon da 30 danni.", + pt: "Cure 30 pontos de dano de 1 dos seus Pokémon.", + de: "Heile 30 Schadenspunkte bei 1 deiner Pokémon." + } + }, { + cost: ["Grass", "Fire"], + + name: { + en: "Trip Over", + fr: "Croche-Pied", + es: "Tropezón", + it: "Inciampare", + pt: "Tropeção", + de: "Stolperer" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 30 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 30 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 30 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 30 Schadenspunkte mehr zu." + }, + + damage: "20+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/139.ts b/data/Scarlet & Violet/Surging Sparks/139.ts new file mode 100644 index 000000000..9976e292f --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/139.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Flapple", + fr: "Pomdrapi", + es: "Flapple", + it: "Flapple", + pt: "Flapple", + de: "Drapfel" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 80, + types: ["Dragon"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Acidic Spit", + fr: "Crache-Acide", + es: "Salivazo Ácido", + it: "Acidosputo", + pt: "Cusparada Ácida", + de: "Säuresabber" + }, + + effect: { + en: "This attack does 20 damage for each damage counter on your opponent's Active Pokémon.", + fr: "Cette attaque inflige 20 dégâts pour chaque marqueur de dégâts sur le Pokémon Actif de votre adversaire.", + es: "Este ataque hace 20 puntos de daño por cada contador de daño en el Pokémon Activo de tu rival.", + it: "Questo attacco infligge 20 danni per ogni segnalino danno presente sul Pokémon attivo del tuo avversario.", + pt: "Este ataque causa 20 pontos de dano para cada contador de dano no Pokémon Ativo do seu oponente.", + de: "Diese Attacke fügt für jede Schadensmarke auf dem Aktiven Pokémon deines Gegners 20 Schadenspunkte zu." + }, + + damage: "20×" + }, { + cost: ["Grass", "Fire"], + + name: { + en: "Speed Dive", + fr: "Plongée Rapide", + es: "Picado Rápido", + it: "Immersione Rapida", + pt: "Mergulho Veloz", + de: "Tempohechtsprung" + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/140.ts b/data/Scarlet & Violet/Surging Sparks/140.ts new file mode 100644 index 000000000..96dc7e565 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/140.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Appletun", + fr: "Dratatin", + es: "Appletun", + it: "Appletun", + pt: "Appletun", + de: "Schlapfel" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 90, + types: ["Dragon"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Melting Sweetness", + fr: "Nectar Liquéfiant", + es: "Dulzor Fundido", + it: "Dolcezza Disarmante", + pt: "Derretida Doce", + de: "Schmelzende Süße" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't attack.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas attaquer.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede atacar.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá atacar.", + de: "Während des nächsten Zuges deines Gegners kann das Verteidigende Pokémon nicht angreifen." + }, + + damage: 50 + }, { + cost: ["Grass", "Fire"], + + name: { + en: "Wild Tackle", + fr: "Tacle Brutal", + es: "Placaje Salvaje", + it: "Azionferoce", + pt: "Investida Feroz", + de: "Wilder Tackle" + }, + + 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: 130 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/141.ts b/data/Scarlet & Violet/Surging Sparks/141.ts new file mode 100644 index 000000000..0eded196f --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/141.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Eternatus", + fr: "Éthernatos", + es: "Eternatus", + it: "Eternatus", + pt: "Eternatus", + de: "Endynalos" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 150, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Darkness"], + + name: { + en: "Dyna-Blast", + fr: "Dyna-Explosion", + es: "Dinaexplosión", + it: "Esplosione Max", + pt: "Dinaexplosão", + de: "Dynamische Detonation" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 80 more damage.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-ex, cette attaque inflige 80 dégâts supplémentaires.", + es: "Si el Pokémon Activo de tu rival es un Pokémon ex, este ataque hace 80 puntos de daño más.", + it: "Se il Pokémon attivo del tuo avversario è un Pokémon-ex, questo attacco infligge 80 danni in più.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon ex, este ataque causará 80 pontos de dano a mais.", + de: "Wenn das Aktive Pokémon deines Gegners ein Pokémon-ex ist, fügt diese Attacke 80 Schadenspunkte mehr zu." + }, + + damage: "10+" + }, { + cost: ["Fire", "Darkness", "Darkness"], + + name: { + en: "World Ender", + fr: "Fin du Monde", + es: "Fin del Mundo", + it: "Finiscimondo", + pt: "Emissário do Apocalipse", + de: "Weltenzerstörer" + }, + + effect: { + en: "Discard a Stadium in play. If you can't, this attack does nothing.", + fr: "Défaussez un Stade en jeu. Si vous ne le pouvez pas, cette attaque ne fait rien.", + es: "Descarta 1 Estadio en juego. Si no puedes, este ataque no hace nada.", + it: "Scarta una carta Stadio in gioco. Se non puoi, questo attacco non ha effetto.", + pt: "Descarte um Estádio em jogo. Se não puder fazer isto, este ataque não fará nada.", + de: "Lege 1 Stadionkarte im Spiel auf den Ablagestapel. Wenn du das nicht machen kannst, hat diese Attacke keine Auswirkungen." + }, + + damage: 230 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/142.ts b/data/Scarlet & Violet/Surging Sparks/142.ts new file mode 100644 index 000000000..c34607dd6 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/142.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Tatsugiri ex", + fr: "Nigirigon-ex", + es: "Tatsugiri ex", + it: "Tatsugiri-ex", + pt: "Tatsugiri ex", + de: "Nigiragi-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 160, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Water"], + + name: { + en: "Surprise Pump", + fr: "Pompe Surprise", + es: "Bomba Sorpresa", + it: "Pompa a Sorpresa", + pt: "Jato Surpresa", + de: "Überraschungspumpe" + }, + + 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: 100 + }, { + cost: ["Fire", "Water", "Darkness"], + + name: { + en: "Cinnabar Lure", + fr: "Leurre Cinabre", + es: "Cebo Cinabrio", + it: "Esca di Cinabro", + pt: "Cinabre Sedutor", + de: "Zinnober-Köder" + }, + + effect: { + en: "Look at the top 10 cards of your deck. You may put any number of Pokémon you find there onto your Bench. Shuffle the other cards back into your deck.", + fr: "Regardez les 10 cartes du dessus de votre deck. Vous pouvez placer sur votre Banc le nombre voulu de Pokémon que vous y trouvez. Mélangez les autres cartes avec votre deck.", + es: "Mira las 10 primeras cartas de tu baraja. Puedes poner cualquier cantidad de Pokémon que encuentres entre ellas en tu Banca. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Guarda le prime 10 carte del tuo mazzo. Puoi mettere un numero qualsiasi di Pokémon presenti tra esse nella tua panchina. Rimischia le altre carte nel tuo mazzo.", + pt: "Olhe as 10 cartas de cima do seu baralho. Você pode colocar qualquer número de Pokémon que encontrar lá no seu Banco. Embaralhe as outras cartas de volta no seu baralho.", + de: "Schau dir die obersten 10 Karten deines Decks an. Du kannst beliebig viele Pokémon, die du dort findest, auf deine Bank legen. Mische die anderen Karten zurück in dein Deck." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/143.ts b/data/Scarlet & Violet/Surging Sparks/143.ts new file mode 100644 index 000000000..bfc728278 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/143.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Eevee", + fr: "Évoli", + es: "Eevee", + it: "Eevee", + pt: "Eevee", + de: "Evoli" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Boosted Evolution", + fr: "Évolution Boostée", + es: "Evolución Potenciada", + it: "Evoluzione Potenziata", + pt: "Impulso da Evolução", + de: "Evolutionsschub" + }, + + effect: { + en: "As long as this Pokémon is in the Active Spot, it can evolve during your first turn or the turn you play it.", + fr: "Tant que ce Pokémon est sur le Poste Actif, il peut évoluer pendant votre premier tour ou pendant le tour où vous le jouez.", + es: "Mientras este Pokémon esté en el Puesto Activo, puede evolucionar durante tu primer turno o durante el turno en que lo pongas en juego.", + it: "Fintanto che questo Pokémon è in posizione attiva, può evolversi durante il tuo primo turno o il turno in cui lo giochi.", + pt: "Enquanto este Pokémon estiver no Campo Ativo, ele poderá evoluir durante o seu primeiro turno ou durante o turno em que for colocado em jogo.", + de: "Solange dieses Pokémon in der Aktiven Position ist, kann es sich während deines ersten Zuges oder während des Zuges, in dem du es spielst, entwickeln." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + 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: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/144.ts b/data/Scarlet & Violet/Surging Sparks/144.ts new file mode 100644 index 000000000..28e203c87 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/144.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Snorlax", + fr: "Ronflex", + es: "Snorlax", + it: "Snorlax", + pt: "Snorlax", + de: "Relaxo" + }, + + rarity: "Common", + category: "Pokemon", + hp: 150, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Spike Draw", + fr: "Pique-Pioche", + es: "Robo Pico", + it: "Battipesca", + pt: "Comprada Espinhosa", + de: "Stachelzug" + }, + + 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." + }, + + damage: 20 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Mega Punch", + fr: "Ultimapoing", + es: "Megapuño", + it: "Megapugno", + pt: "Megassoco", + de: "Megahieb" + }, + + damage: 100 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/145.ts b/data/Scarlet & Violet/Surging Sparks/145.ts new file mode 100644 index 000000000..a5e92066a --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/145.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Slakoth", + fr: "Parecool", + es: "Slakoth", + it: "Slakoth", + pt: "Slakoth", + de: "Bummelz" + }, + + rarity: "Common", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Take It Easy", + fr: "Relax", + es: "Tranqui", + it: "Prenditela Comoda", + pt: "De Boaça", + de: "Eile mit Weile" + }, + + effect: { + en: "Heal 60 damage from this Pokémon. During your next turn, this Pokémon can't retreat.", + fr: "Soignez 60 dégâts de ce Pokémon. Pendant votre prochain tour, ce Pokémon ne peut pas battre en retraite.", + es: "Cura 60 puntos de daño a este Pokémon. Durante tu próximo turno, este Pokémon no puede retirarse.", + it: "Cura questo Pokémon da 60 danni. Durante il tuo prossimo turno, questo Pokémon non può ritirarsi.", + pt: "Cure 60 pontos de dano deste Pokémon. Durante o seu próximo turno, este Pokémon não poderá recuar.", + de: "Heile 60 Schadenspunkte bei diesem Pokémon. Während deines nächsten Zuges kann sich dieses Pokémon nicht zurückziehen." + } + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/146.ts b/data/Scarlet & Violet/Surging Sparks/146.ts new file mode 100644 index 000000000..4c8fb03d0 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/146.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Vigoroth", + fr: "Vigoroth", + es: "Vigoroth", + it: "Vigoroth", + pt: "Vigoroth", + de: "Muntier" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Slashing Claw", + fr: "Griffe Taillante", + es: "Garra Cuchillazo", + it: "Artigli Laceranti", + pt: "Garra Cortadora", + de: "Schlitzende Klaue" + }, + + damage: 50 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/147.ts b/data/Scarlet & Violet/Surging Sparks/147.ts new file mode 100644 index 000000000..517692f63 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/147.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Slaking ex", + fr: "Monaflèmit-ex", + es: "Slaking ex", + it: "Slaking-ex", + pt: "Slaking ex", + de: "Letarking-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 340, + types: ["Colorless"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Born to Slack", + fr: "Procrastinateur-Né", + es: "Holgazán Nato", + it: "Pigrizia Innata", + pt: "Preguiça de Nascença", + de: "Meister der Lethargie" + }, + + effect: { + en: "If your opponent has no Pokémon ex or Pokémon V in play, this Pokémon can't attack.", + fr: "Si votre adversaire n'a aucun Pokémon-ex ni Pokémon-V en jeu, ce Pokémon ne peut pas attaquer.", + es: "Si tu rival no tiene ningún Pokémon ex o Pokémon V en juego, este Pokémon no puede atacar.", + it: "Se il tuo avversario non ha Pokémon-ex o Pokémon-V in gioco, questo Pokémon non può attaccare.", + pt: "Se o seu oponente não tiver Pokémon ex ou Pokémon V em jogo, este Pokémon não poderá atacar.", + de: "Wenn dein Gegner kein Pokémon-ex oder Pokémon-V im Spiel hat, kann dieses Pokémon nicht angreifen." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Great Swing", + fr: "Grande Frappe", + es: "Golpe Excelente", + it: "Colpo Immane", + pt: "Murrão", + de: "Riesiger Rundschlag" + }, + + effect: { + en: "Discard an Energy from this Pokémon.", + fr: "Défaussez une Énergie de ce Pokémon.", + es: "Descarta 1 Energía de este Pokémon.", + it: "Scarta un'Energia da questo Pokémon.", + pt: "Descarte uma Energia deste Pokémon.", + de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 280 + }], + + retreat: 4, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/148.ts b/data/Scarlet & Violet/Surging Sparks/148.ts new file mode 100644 index 000000000..3db98b256 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/148.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Swablu", + fr: "Tylton", + es: "Swablu", + it: "Swablu", + pt: "Swablu", + de: "Wablu" + }, + + rarity: "Common", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Disarming Voice", + fr: "Voix Enjôleuse", + es: "Voz Cautivadora", + it: "Incantavoce", + pt: "Voz Desarmante", + de: "Säuselstimme" + }, + + effect: { + en: "Your opponent's Active Pokémon is now Confused.", + fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", + es: "El Pokémon Activo de tu rival pasa a estar Confundido.", + it: "Il Pokémon attivo del tuo avversario viene confuso.", + pt: "O Pokémon Ativo do seu oponente agora está Confuso.", + de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt." + }, + + damage: 10 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/149.ts b/data/Scarlet & Violet/Surging Sparks/149.ts new file mode 100644 index 000000000..7d04ccb2e --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/149.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Zangoose", + fr: "Mangriff", + es: "Zangoose", + it: "Zangoose", + pt: "Zangoose", + de: "Sengo" + }, + + rarity: "Common", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Fury Cutter", + fr: "Taillade", + es: "Corte Furia", + it: "Tagliofuria", + pt: "Cortador de Fúria", + de: "Zornklinge" + }, + + effect: { + en: "Flip 3 coins. If 1 of them is heads, this attack does 20 more damage. If 2 of them are heads, this attack does 50 more damage. If all of them are heads, this attack does 80 more damage.", + fr: "Lancez 3 pièces. S'il n'y a qu'un côté face, cette attaque inflige 20 dégâts supplémentaires. S'il y a 2 côtés face, cette attaque inflige 50 dégâts supplémentaires. S'il y a 3 côtés face, cette attaque inflige 80 dégâts supplémentaires.", + es: "Lanza 3 monedas. Si sale cara en una de ellas, este ataque hace 20 puntos de daño más. Si sale cara en 2, este ataque hace 50 puntos de daño más. Si sale cara en las 3, este ataque hace 80 puntos de daño más.", + it: "Lancia tre volte una moneta. Se esce testa una sola volta, questo attacco infligge 20 danni in più. Se esce testa due volte, ne infligge 50 in più, e se esce testa tutte e tre le volte, 80 in più.", + pt: "Jogue 3 moedas. Se 1 delas sair cara, este ataque causará 20 pontos de dano a mais. Se 2 delas saírem cara, este ataque causará 50 pontos de dano a mais. Se todas saírem cara, este ataque causará 80 pontos de dano a mais.", + de: "Wirf 3 Münzen. Zeigt 1 davon Kopf, fügt diese Attacke 20 Schadenspunkte mehr zu. Zeigen 2 davon Kopf, fügt diese Attacke 50 Schadenspunkte mehr zu. Zeigen alle Münzen Kopf, fügt diese Attacke 80 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/150.ts b/data/Scarlet & Violet/Surging Sparks/150.ts new file mode 100644 index 000000000..f6c9326be --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/150.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Kecleon", + fr: "Kecleon", + es: "Kecleon", + it: "Kecleon", + pt: "Kecleon", + de: "Kecleon" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Expert Hider", + fr: "Expert en Camouflage", + es: "As del Camuflaje", + it: "Specialista di Nascondigli", + pt: "Mestre da Camuflagem", + de: "Verbergungskünstler" + }, + + effect: { + en: "If any damage is done to this Pokémon by attacks, flip a coin. If heads, prevent that damage.", + fr: "Si des dégâts sont infligés à ce Pokémon par des attaques, lancez une pièce. Si c'est face, évitez ces dégâts.", + es: "Si se inflige cualquier daño a este Pokémon por ataques, lanza 1 moneda. Si sale cara, se evita ese daño.", + it: "Se questo Pokémon subisce danni da qualsiasi attacco, lancia una moneta. Se esce testa, previeni quei danni.", + pt: "Se qualquer dano for causado a este Pokémon por ataques, jogue uma moeda. Se sair cara, previna aquele dano.", + de: "Wenn diesem Pokémon durch Attacken Schaden zugefügt wird, wirf 1 Münze. Verhindere bei Kopf jenen Schaden." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Lick Whip", + fr: "Fouet Léchouille", + es: "Latigazo Lingual", + it: "Leccafrusta", + pt: "Chicote de Língua", + de: "Schleckerpeitsche" + }, + + effect: { + en: "This attack does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 30 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 30 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 30 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 30 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/151.ts b/data/Scarlet & Violet/Surging Sparks/151.ts new file mode 100644 index 000000000..22cbc85bd --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/151.ts @@ -0,0 +1,76 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Bouffalant", + fr: "Frison", + es: "Bouffalant", + it: "Bouffalant", + pt: "Bouffalant", + de: "Bisofank" + }, + + rarity: "Common", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Ready to Ram", + fr: "Prêt à Charger", + es: "Espera y Embiste", + it: "Pronto alla Carica", + pt: "Pronto pra Trombada", + de: "Rammbereit" + }, + + effect: { + en: "During your opponent's next turn, if this Pokémon is damaged by an attack (even if this Pokémon is Knocked Out), put 6 damage counters on the Attacking Pokémon.", + fr: "Pendant le prochain tour de votre adversaire, si ce Pokémon subit les dégâts d'une attaque (même si ce Pokémon est mis K.O.), placez 6 marqueurs de dégâts sur le Pokémon Attaquant.", + es: "Durante el próximo turno de tu rival, si este Pokémon resulta dañado por un ataque (incluso si este Pokémon queda Fuera de Combate), pon 6 contadores de daño en el Pokémon Atacante.", + it: "Durante il prossimo turno del tuo avversario, se questo Pokémon viene danneggiato da un attacco, anche se viene messo KO, metti sei segnalini danno sul Pokémon attaccante.", + pt: "Durante o próximo turno do seu oponente, se este Pokémon for danificado por um ataque (mesmo que este Pokémon seja Nocauteado), coloque 6 contadores de dano no Pokémon Atacante.", + de: "Wenn diesem Pokémon während des nächsten Zuges deines Gegners durch eine Attacke Schaden zugefügt wird (auch wenn es dadurch kampfunfähig wird), lege 6 Schadensmarken auf das Angreifende Pokémon." + }, + + damage: 40 + }, { + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Smashing Headbutt", + fr: "Coup d'Boule Fracassant", + es: "Cabezazo Destructor", + it: "Bottintesta Distruttivo", + pt: "Cabeçada Destruidora", + de: "Schmetternde Kopfnuss" + }, + + effect: { + en: "Discard 2 Energy from this Pokémon.", + fr: "Défaussez 2 Énergies de ce Pokémon.", + es: "Descarta 2 Energías de este Pokémon.", + it: "Scarta due Energie da questo Pokémon.", + pt: "Descarte 2 Energias deste Pokémon.", + de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 150 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/152.ts b/data/Scarlet & Violet/Surging Sparks/152.ts new file mode 100644 index 000000000..83a4a7400 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/152.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Rufflet", + fr: "Furaiglon", + es: "Rufflet", + it: "Rufflet", + pt: "Rufflet", + de: "Geronimatz" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Flap", + fr: "Battement", + es: "Aleteo", + it: "Alabattito", + pt: "Asa", + de: "Flattern" + }, + + damage: 30 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/153.ts b/data/Scarlet & Violet/Surging Sparks/153.ts new file mode 100644 index 000000000..d102b337e --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/153.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Braviary", + fr: "Gueriaigle", + es: "Braviary", + it: "Braviary", + pt: "Braviary", + de: "Washakwil" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Drag Off", + fr: "Traîne", + es: "Jalón", + it: "Trascinato Via", + pt: "Arrastar para Fora", + de: "Wegzerren" + }, + + effect: { + en: "Switch in 1 of your opponent's Benched Pokémon to the Active Spot. This attack does 40 damage to the new Active Pokémon.", + fr: "Envoyez l'un des Pokémon de Banc de votre adversaire sur le Poste Actif. Cette attaque inflige 40 dégâts au nouveau Pokémon Actif.", + es: "Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo. Este ataque hace 40 puntos de daño al nuevo Pokémon Activo.", + it: "Sostituisci uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon in posizione attiva. Questo attacco infligge 40 danni al nuovo Pokémon attivo.", + pt: "Mande 1 dos Pokémon no Banco do seu oponente para o Campo Ativo. Este ataque causa 40 pontos de dano ao novo Pokémon Ativo.", + de: "Wechsle 1 Pokémon von der Bank deines Gegners in die Aktive Position ein. Diese Attacke fügt dem neuen Aktiven Pokémon 40 Schadenspunkte zu." + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Blasting Wind", + fr: "Vent Impitoyable", + es: "Vientos Explosivos", + it: "Vento Distruttivo", + pt: "Vendaval Avassalador", + de: "Peitschender Wind" + }, + + damage: 120 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/154.ts b/data/Scarlet & Violet/Surging Sparks/154.ts new file mode 100644 index 000000000..0909a1092 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/154.ts @@ -0,0 +1,67 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Helioptile", + fr: "Galvaran", + es: "Helioptile", + it: "Helioptile", + pt: "Helioptile", + de: "Eguana" + }, + + rarity: "Common", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Tiny Bolt", + fr: "Foudre Minuscule", + es: "Relampaguito", + it: "Minifulmine", + pt: "Corisquinho", + de: "Mini-Blitz" + }, + + damage: 10 + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + 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: 40 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/155.ts b/data/Scarlet & Violet/Surging Sparks/155.ts new file mode 100644 index 000000000..501a829e2 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/155.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Heliolisk", + fr: "Iguolta", + es: "Heliolisk", + it: "Heliolisk", + pt: "Heliolisk", + de: "Elezard" + }, + + rarity: "Common", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Parabolic Charge", + fr: "Parabocharge", + es: "Carga Parábola", + it: "Caricaparabola", + pt: "Ataque Parabólico", + de: "Parabolladung" + }, + + effect: { + en: "Search your deck for up to 4 Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 4 cartes Énergie, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 4 cartas de Energía, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a quattro carte Energia, mostrale e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 4 cartas de Energia 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 4 Energiekarten, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Electroslug", + fr: "Électro Frappe", + es: "Electropuñetazo", + it: "Elettropugno", + pt: "Soco Elétrico", + de: "Elektroschuss" + }, + + damage: 80 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/156.ts b/data/Scarlet & Violet/Surging Sparks/156.ts new file mode 100644 index 000000000..2847845f9 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/156.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Oranguru", + fr: "Gouroutan", + es: "Oranguru", + it: "Oranguru", + pt: "Oranguru", + de: "Kommandutan" + }, + + rarity: "Common", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Now You're in My Power", + fr: "À ma Merci", + es: "Ya te Tengo", + it: "In Mio Potere", + pt: "Na Palma da Minha Mão", + de: "Machtbefugnis" + }, + + effect: { + en: "Until the end of your next turn, the Defending Pokémon's Weakness is now Colorless. (The amount of Weakness doesn't change.)", + fr: "Jusqu'à la fin de votre prochain tour, la Faiblesse du Pokémon Défenseur est maintenant de type Colorless. (La valeur de la Faiblesse ne change pas.)", + es: "Hasta el final de tu próximo turno, la Debilidad del Pokémon Defensor pasa a ser Colorless. (La cantidad de Debilidad no cambia).", + it: "Fino alla fine del tuo prossimo turno, la debolezza del Pokémon difensore diventa Colorless. Quanto è debole non cambia.", + pt: "Até o final do seu próximo turno, a Fraqueza do Pokémon Defensor será Colorless. (A quantidade de Fraqueza não muda.)", + de: "Bis zum Ende deines nächsten Zuges ist die Schwäche des Verteidigenden Pokémon jetzt Colorless. (Die Höhe der Schwäche ändert sich nicht.)" + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Smack", + fr: "Claque", + es: "Palmetazo", + it: "Schiaffo", + pt: "Estalo", + de: "Klatscher" + }, + + damage: 80 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/157.ts b/data/Scarlet & Violet/Surging Sparks/157.ts new file mode 100644 index 000000000..83d415597 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/157.ts @@ -0,0 +1,54 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Tandemaus", + fr: "Compagnol", + es: "Tandemaus", + it: "Tandemaus", + pt: "Tandemaus", + de: "Zwieps" + }, + + rarity: "Common", + category: "Pokemon", + hp: 40, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Play Rough", + fr: "Câlinerie", + es: "Carantoña", + it: "Carineria", + pt: "Jogo Duro", + de: "Knuddler" + }, + + effect: { + en: "Flip a coin. If heads, this attack does 10 more damage.", + fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.", + es: "Lanza 1 moneda. Si sale cara, este ataque hace 10 puntos de daño más.", + it: "Lancia una moneta. Se esce testa, questo attacco infligge 10 danni in più.", + pt: "Jogue uma moeda. Se sair cara, este ataque causará 10 pontos de dano a mais.", + de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 10 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/158.ts b/data/Scarlet & Violet/Surging Sparks/158.ts new file mode 100644 index 000000000..61070c415 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/158.ts @@ -0,0 +1,74 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Maushold", + fr: "Famignol", + es: "Maushold", + it: "Maushold", + pt: "Maushold", + de: "Famieps" + }, + + rarity: "Uncommon", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Familial March", + fr: "Marche Familiale", + es: "Marcha Familiar", + it: "Marcia Familiare", + pt: "Marcha em Família", + de: "Familienmarsch" + }, + + effect: { + en: "Search your deck for up to 2 in any combination of Maushold and Maushold ex and put them onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck une combinaison d'un maximum de 2 Famignol et Famignol-ex, puis placez-les sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja, en cualquier combinación, hasta 2 Maushold y Maushold ex y ponlos en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a due Maushold e Maushold-ex in qualsiasi combinazione e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 2 Maushold e Maushold ex no seu baralho em qualquer combinação e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach einer beliebigen Kombination aus bis zu 2 Famieps und Famieps-ex und lege sie auf deine Bank. Mische anschließend dein Deck." + } + }, { + cost: ["Colorless"], + + name: { + en: "Incessant Incisors", + fr: "Incisives Incessantes", + es: "Incisivos Incesantes", + it: "Incisivi Incessanti", + pt: "Incisivos Incessantes", + de: "Viererlei Nagerei" + }, + + 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: 1, + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/159.ts b/data/Scarlet & Violet/Surging Sparks/159.ts new file mode 100644 index 000000000..22b40c986 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/159.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Cyclizar ex", + fr: "Motorizard-ex", + es: "Cyclizar ex", + it: "Cyclizar-ex", + pt: "Cyclizar ex", + de: "Mopex-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 210, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Break Through", + fr: "Percée", + es: "Abrir Paso", + it: "Irruzione", + pt: "Atravessar", + de: "Eine Bresche schlagen" + }, + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 30 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 30 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 30 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 30 pontos de dano 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 auch 1 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 130 + }, { + cost: ["Grass", "Fire", "Psychic"], + + name: { + en: "Zircon Road", + fr: "Route Zircon", + es: "Camino de Zircones", + it: "Strada di Zircone", + pt: "Via de Zircão", + de: "Zirkon-Strecke" + }, + + effect: { + en: "You may draw 5 cards.", + fr: "Vous pouvez piocher 5 cartes.", + es: "Puedes robar 5 cartas.", + it: "Puoi pescare cinque carte.", + pt: "Você pode comprar 5 cartas.", + de: "Du kannst 5 Karten ziehen." + }, + + damage: 180 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/160.ts b/data/Scarlet & Violet/Surging Sparks/160.ts new file mode 100644 index 000000000..ed00d8600 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/160.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Flamigo ex", + fr: "Flamenroule-ex", + es: "Flamigo ex", + it: "Flamigo-ex", + pt: "Flamigo ex", + de: "Flaminkno-ex" + }, + + rarity: "Double rare", + category: "Pokemon", + hp: 200, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Precise Beak", + fr: "Bec Précis", + es: "Pico Preciso", + it: "Becco Preciso", + pt: "Bico de Precisão", + de: "Präziser Schnabel" + }, + + effect: { + en: "If this Pokémon and your opponent's Active Pokémon have the same amount of Energy attached, this attack does 100 more damage.", + fr: "Si ce Pokémon et le Pokémon Actif de votre adversaire ont autant d'Énergies attachées, cette attaque inflige 100 dégâts supplémentaires.", + es: "Si este Pokémon y el Pokémon Activo de tu rival tienen la misma cantidad de Energías unidas, este ataque hace 100 puntos de daño más.", + it: "Se questo Pokémon e il Pokémon attivo del tuo avversario hanno la stessa quantità di Energie assegnate, questo attacco infligge 100 danni in più.", + pt: "Se este Pokémon e o Pokémon Ativo do seu oponente tiverem a mesma quantidade de Energia ligada a eles, este ataque causará 100 pontos de dano a mais.", + de: "Wenn an dieses Pokémon genauso viel Energie angelegt ist wie an das Aktive Pokémon deines Gegners, fügt diese Attacke 100 Schadenspunkte mehr zu." + }, + + damage: "30+" + }, { + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Brave Bird", + fr: "Rapace", + es: "Pájaro Osado", + it: "Baldeali", + pt: "Pássaro Bravo", + de: "Sturzflug" + }, + + effect: { + en: "This Pokémon also does 30 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 30 dégâts.", + es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.", + it: "Questo Pokémon infligge anche 30 danni a se stesso.", + pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.", + de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu." + }, + + damage: 200 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/161.ts b/data/Scarlet & Violet/Surging Sparks/161.ts new file mode 100644 index 000000000..10659ab10 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/161.ts @@ -0,0 +1,65 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Terapagos", + fr: "Terapagos", + es: "Terapagos", + it: "Terapagos", + pt: "Terapagos", + de: "Terapagos" + }, + + rarity: "Rare", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Prism Charge", + fr: "Charge Prisme", + es: "Carga Prisma", + it: "Carica Prisma", + pt: "Carga Prisma", + de: "Prismaladung" + }, + + effect: { + en: "Search your deck for up to 3 Basic Energy cards of different types and attach them to your Tera Pokémon in any way you like. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 3 cartes Énergie de base de types différents, puis attachez-les à vos Pokémon Téracristal comme il vous plaît. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 3 cartas de Energía Básica de diferentes tipos y únelas a tus Pokémon Teracristal de la manera que desees. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a tre carte Energia base di tipo diverso e assegnale ai tuoi Pokémon Teracristal nel modo che preferisci. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 3 cartas de Energia Básica de tipos diferentes no seu baralho e ligue-as aos seus Pokémon Tera como desejar. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 3 Basis-Energiekarten verschiedenen Typs und lege sie beliebig an deine Terakristall-Pokémon an. Mische anschließend dein Deck." + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Hard Tackle", + fr: "Tacle Violent", + es: "Bloqueo Contundente", + it: "Azione Dura", + pt: "Investida Resistente", + de: "Harter Tackle" + }, + + damage: 100 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/162.ts b/data/Scarlet & Violet/Surging Sparks/162.ts new file mode 100644 index 000000000..4d004105a --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/162.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Amulet of Hope", + fr: "Amulette de l'Espoir", + es: "Amuleto Esperanza", + it: "Amuleto della Speranza", + pt: "Amuleto da Esperança", + de: "Amulett der Hoffnung" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is Knocked Out by damage from an attack from your opponent's Pokémon, search your deck for up to 3 cards and put them into your hand. Then, shuffle your deck.", + fr: "Si le Pokémon auquel cette carte est attachée est mis K.O. par les dégâts d'une attaque de l'un des Pokémon de votre adversaire, cherchez dans votre deck jusqu'à 3 cartes, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Si el Pokémon al que está unida esta carta queda Fuera de Combate por el daño de un ataque de los Pokémon de tu rival, busca en tu baraja hasta 3 cartas y ponlas en tu mano. Después, baraja las cartas de tu baraja.", + it: "Se il Pokémon a cui è assegnata questa carta viene messo KO dai danni inflitti da un attacco di un Pokémon del tuo avversario, cerca nel tuo mazzo fino a tre carte e aggiungile a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Se o Pokémon ao qual esta carta está ligada for Nocauteado pelo dano de um ataque dos Pokémon do seu oponente, procure por até 3 cartas no seu baralho e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Wenn das Pokémon, an das diese Karte angelegt ist, durch Schaden einer Attacke von Pokémon deines Gegners kampfunfähig wird, durchsuche dein Deck nach bis zu 3 Karten und nimm sie auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/163.ts b/data/Scarlet & Violet/Surging Sparks/163.ts new file mode 100644 index 000000000..ba3721637 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/163.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Babiri Berry", + fr: "Baie Babiri", + es: "Baya Baribá", + it: "Baccababiri", + pt: "Fruta Babiri", + de: "Babiribeere" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is damaged by an attack from your opponent's Metal Pokémon, it takes 60 less damage (after applying Weakness and Resistance), and discard this card.", + fr: "Si le Pokémon auquel cette carte est attachée subit les dégâts d'une attaque de l'un des Pokémon Metal de votre adversaire, il subit 60 dégâts de moins (après application de la Faiblesse et de la Résistance), et vous défaussez cette carte.", + es: "Si el Pokémon al que está unida esta carta resulta dañado por un ataque de los Pokémon Metal de tu rival, ese ataque le hace 60 puntos de daño menos (después de aplicar Debilidad y Resistencia), y descartas esta carta.", + it: "Se il Pokémon a cui è assegnata questa carta viene danneggiato da un attacco di un Pokémon Metal del tuo avversario, subisce 60 danni in meno, dopo aver applicato debolezza e resistenza, e tu scarti questa carta.", + pt: "Se o Pokémon ao qual esta carta está ligada for danificado por um ataque dos Pokémon Metal do seu oponente, ele receberá 60 pontos de dano a menos (depois de aplicar Fraqueza e Resistência), e descarte esta carta.", + de: "Wenn das Pokémon, an das diese Karte angelegt ist, durch eine Attacke von Metal-Pokémon deines Gegners Schaden erhält, werden ihm 60 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden), und du legst diese Karte auf deinen Ablagestapel." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/164.ts b/data/Scarlet & Violet/Surging Sparks/164.ts new file mode 100644 index 000000000..bf92f20ce --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/164.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Brilliant Blender", + fr: "Mixeur Brillant", + es: "Batidora Espléndida", + it: "Mixer Meraviglioso", + pt: "Liquidificador Perfeito", + de: "Prächtiger Mixer" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Search your deck for up to 5 cards and discard them. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 5 cartes, puis défaussez-les. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 5 cartas y descártalas. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a cinque carte e scartale. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 5 cartas no seu baralho e descarte-as. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 5 Karten und lege sie auf deinen Ablagestapel. Mische anschließend dein Deck." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/165.ts b/data/Scarlet & Violet/Surging Sparks/165.ts new file mode 100644 index 000000000..505e4ab29 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/165.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Call Bell", + fr: "Sonnette d'Appel", + es: "Timbre de Mesa", + it: "Campanello di Servizio", + pt: "Sininho de Mesa", + de: "Rufklingel" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "You can use this card only if you go second, and only during your first turn.\n\nSearch your deck for a Supporter card, reveal it, and put it into your hand. Then, shuffle your deck.", + fr: "Vous ne pouvez utiliser cette carte que si vous jouez en second et uniquement pendant votre premier tour.\n\nCherchez dans votre deck une carte Supporter, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.", + es: "Puedes usar esta carta solo si sales en segundo lugar, y solo durante tu primer turno.\n\nBusca en tu baraja 1 carta de Partidario, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.", + it: "Puoi usare questa carta solo se inizi per secondo e solo durante il tuo primo turno.\n\nCerca nel tuo mazzo una carta Aiuto, mostrala e aggiungila alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Você só pode usar esta carta se for o segundo a jogar e somente durante o seu primeiro turno.\n\nProcure por uma carta de Apoiador no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Du kannst diese Karte nur einsetzen, wenn du als Zweiter am Zug bist, und nur während deines ersten Zuges.\n\nDurchsuche dein Deck nach 1 Unterstützerkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/166.ts b/data/Scarlet & Violet/Surging Sparks/166.ts new file mode 100644 index 000000000..be5c64a0d --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/166.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Chill Teaser Toy", + fr: "Jouet Plumeau", + es: "Plumero Señuelo", + it: "Bacchetta Gioco Rilassante", + pt: "Varinha Relaxante", + de: "Lockwedel" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "You can use this card only if you go second, and only during your first turn.\n\nPut an Energy attached to 1 of your opponent's Pokémon into their hand.", + fr: "Vous ne pouvez utiliser cette carte que si vous jouez en second et uniquement pendant votre premier tour.\n\nAjoutez à la main de votre adversaire une Énergie attachée à l'un de ses Pokémon.", + es: "Puedes usar esta carta solo si sales en segundo lugar, y solo durante tu primer turno.\n\nPon 1 Energía unida a uno de los Pokémon de tu rival en su mano.", + it: "Puoi usare questa carta solo se inizi per secondo e solo durante il tuo primo turno.\n\nPrendi un'Energia assegnata a uno dei Pokémon del tuo avversario e aggiungila alle carte che ha in mano.", + pt: "Você só pode usar esta carta se for o segundo a jogar e somente durante o seu primeiro turno.\n\nColoque uma Energia ligada a 1 dos Pokémon do seu oponente na mão dele.", + de: "Du kannst diese Karte nur einsetzen, wenn du als Zweiter am Zug bist, und nur während deines ersten Zuges.\n\nGib deinem Gegner 1 an eines seiner Pokémon angelegte Energie auf seine Hand." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/167.ts b/data/Scarlet & Violet/Surging Sparks/167.ts new file mode 100644 index 000000000..245e30f69 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/167.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Clemont's Quick Wit", + fr: "Esprit Vif de Lem", + es: "Agudeza de Lem", + it: "Arguzia di Lem", + pt: "Sagacidade do Clemont", + de: "Citros Scharfsinn" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Heal 60 damage from each of your Lightning Pokémon.", + fr: "Soignez 60 dégâts de chacun de vos Pokémon Lightning.", + es: "Cura 60 puntos de daño a cada uno de tus Pokémon Lightning.", + it: "Cura ciascuno dei tuoi Pokémon Lightning da 60 danni.", + pt: "Cure 60 pontos de dano de cada um dos seus Pokémon Lightning.", + de: "Heile 60 Schadenspunkte bei jedem deiner Lightning-Pokémon." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/168.ts b/data/Scarlet & Violet/Surging Sparks/168.ts new file mode 100644 index 000000000..ad7ddb717 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/168.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Colbur Berry", + fr: "Baie Lampou", + es: "Baya Dillo", + it: "Baccaxan", + pt: "Fruta Capicho", + de: "Burleobeere" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is damaged by an attack from your opponent's Darkness Pokémon, it takes 60 less damage (after applying Weakness and Resistance), and discard this card.", + fr: "Si le Pokémon auquel cette carte est attachée subit les dégâts d'une attaque de l'un des Pokémon Darkness de votre adversaire, il subit 60 dégâts de moins (après application de la Faiblesse et de la Résistance), et vous défaussez cette carte.", + es: "Si el Pokémon al que está unida esta carta resulta dañado por un ataque de los Pokémon Darkness de tu rival, ese ataque le hace 60 puntos de daño menos (después de aplicar Debilidad y Resistencia), y descartas esta carta.", + it: "Se il Pokémon a cui è assegnata questa carta viene danneggiato da un attacco di un Pokémon Darkness del tuo avversario, subisce 60 danni in meno, dopo aver applicato debolezza e resistenza, e tu scarti questa carta.", + pt: "Se o Pokémon ao qual esta carta está ligada for danificado por um ataque dos Pokémon Darkness do seu oponente, ele receberá 60 pontos de dano a menos (depois de aplicar Fraqueza e Resistência), e descarte esta carta.", + de: "Wenn das Pokémon, an das diese Karte angelegt ist, durch eine Attacke von Darkness-Pokémon deines Gegners Schaden erhält, werden ihm 60 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden), und du legst diese Karte auf deinen Ablagestapel." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/169.ts b/data/Scarlet & Violet/Surging Sparks/169.ts new file mode 100644 index 000000000..a4076098e --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/169.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Counter Gain", + fr: "Rattrape-Riposte", + es: "Alcance Contraataque", + it: "Contrappeso", + pt: "Contra-ataque de Alcance", + de: "Kontergewinn" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "If you have more Prize cards remaining than your opponent, attacks used by the Pokémon this card is attached to cost Colorless less.", + fr: "S'il vous reste plus de cartes Récompense qu'à votre adversaire, les attaques utilisées par le Pokémon auquel cette carte est attachée coûtent Colorless de moins.", + es: "Si te quedan más cartas de Premio que a tu rival, los ataques usados por el Pokémon al que esté unida esta carta cuestan Colorless menos.", + it: "Se hai più carte Premio rimanenti del tuo avversario, il costo degli attacchi usati dal Pokémon a cui è assegnata questa carta è ridotto di Colorless.", + pt: "Se você tiver mais cartas de Prêmio restantes do que seu oponente, os ataques usados pelo Pokémon ao qual esta carta está ligada custarão Colorless a menos.", + de: "Wenn du mehr verbleibende Preiskarten hast als dein Gegner, verringern sich die Kosten der eingesetzten Attacken von dem Pokémon, an das diese Karte angelegt ist, um Colorless." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/170.ts b/data/Scarlet & Violet/Surging Sparks/170.ts new file mode 100644 index 000000000..aaa6cc925 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/170.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Cyrano", + fr: "Cyano", + es: "Mirtilo", + it: "Bluebert", + pt: "Cyrano", + de: "Cyano" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Search your deck for up to 3 Pokémon ex, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 3 Pokémon-ex, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 3 Pokémon ex, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a tre Pokémon-ex, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 3 Pokémon ex no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 3 Pokémon-ex, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/171.ts b/data/Scarlet & Violet/Surging Sparks/171.ts new file mode 100644 index 000000000..1de935793 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/171.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Deduction Kit", + fr: "Kit de Déduction", + es: "Kit de Investigación", + it: "Kit Deduttivo", + pt: "Kit de Investigação", + de: "Ermittlerset" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Look at the top 3 cards of your deck and put them back in any order, or shuffle them and put them on the bottom of your deck.", + fr: "Regardez les 3 cartes du dessus de votre deck, puis replacez-les dans l'ordre de votre choix, ou mélangez-les puis placez-les en dessous de votre deck.", + es: "Mira las 3 primeras cartas de tu baraja y vuelve a ponerlas en la parte superior de tu baraja en el orden que quieras, o barájalas y ponlas en la parte inferior de tu baraja.", + it: "Guarda le prime tre carte del tuo mazzo e rimettile a posto nell'ordine che preferisci o rimischiale e mettile in fondo al tuo mazzo.", + pt: "Olhe as 3 cartas de cima do seu baralho e coloque-as de volta em qualquer ordem, ou embaralhe-as e coloque-as como as cartas de baixo do seu baralho.", + de: "Schau dir die obersten 3 Karten deines Decks an und lege sie in beliebiger Reihenfolge zurück auf dein Deck oder mische sie und lege sie unter dein Deck." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/172.ts b/data/Scarlet & Violet/Surging Sparks/172.ts new file mode 100644 index 000000000..edb8967ec --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/172.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Dragon Elixir", + fr: "Élixir de Dragon", + es: "Elixir Dragón", + it: "Elisir del Drago", + pt: "Elixir do Dragão", + de: "Drachenelixier" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Heal 60 damage from your Active Dragon Pokémon.", + fr: "Soignez 60 dégâts de votre Pokémon Dragon Actif.", + es: "Cura 60 puntos de daño a tu Pokémon Dragon Activo.", + it: "Cura il tuo Pokémon attivo Dragon da 60 danni.", + pt: "Cure 60 pontos de dano do seu Pokémon Dragon Ativo.", + de: "Heile 60 Schadenspunkte bei deinem Aktiven Dragon-Pokémon." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/173.ts b/data/Scarlet & Violet/Surging Sparks/173.ts new file mode 100644 index 000000000..79034ebd5 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/173.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Drasna", + fr: "Dracéna", + es: "Drácena", + it: "Lilia", + pt: "Drasna", + de: "Dracena" + }, + + rarity: "Common", + category: "Trainer", + + effect: { + en: "Shuffle your hand into your deck. Then, flip a coin. If heads, draw 8 cards. If tails, draw 3 cards.", + fr: "Mélangez votre main avec votre deck. Ensuite, lancez une pièce. Si c'est face, piochez 8 cartes. Si c'est pile, piochez 3 cartes.", + es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, lanza 1 moneda. Si sale cara, roba 8 cartas. Si sale cruz, roba 3 cartas.", + it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi lancia una moneta. Se esce testa, pesca otto carte. Se esce croce, pescane tre.", + pt: "Embaralhe a sua mão no seu baralho. Em seguida, jogue uma moeda. Se sair cara, compre 8 cartas. Se sair coroa, compre 3 cartas.", + de: "Mische deine Handkarten in dein Deck. Wirf anschließend 1 Münze. Ziehe bei Kopf 8 Karten. Ziehe bei Zahl 3 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/174.ts b/data/Scarlet & Violet/Surging Sparks/174.ts new file mode 100644 index 000000000..897b43b73 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/174.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Drayton", + fr: "Irido", + es: "Levi", + it: "Aris", + pt: "Drayton", + de: "Levy" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Look at the top 7 cards of your deck. You may reveal a Pokémon and a Trainer card you find there and put them into your hand. Shuffle the other cards back into your deck.", + fr: "Regardez les 7 cartes du dessus de votre deck. Vous pouvez montrer un Pokémon et une carte Dresseur que vous y trouvez, puis les ajouter à votre main. Mélangez les autres cartes avec votre deck.", + es: "Mira las 7 primeras cartas de tu baraja. Puedes enseñar 1 Pokémon y 1 carta de Entrenador que encuentres entre ellas y ponerlas en tu mano. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Guarda le prime sette carte del tuo mazzo. Puoi mostrare un Pokémon e una carta Allenatore presenti tra esse e aggiungerli alle carte che hai in mano. Poi rimischia le altre carte nel tuo mazzo.", + pt: "Olhe as 7 cartas de cima do seu baralho. Você pode revelar um Pokémon e uma carta de Treinador que encontrar lá e colocá-los na sua mão. Embaralhe as outras cartas de volta no seu baralho.", + de: "Schau dir die obersten 7 Karten deines Decks an. Du kannst 1 Pokémon und 1 Trainerkarte, die du dort findest, deinem Gegner zeigen und auf deine Hand nehmen. Mische die anderen Karten zurück in dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/175.ts b/data/Scarlet & Violet/Surging Sparks/175.ts new file mode 100644 index 000000000..c1bcbe7c9 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/175.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Dusk Ball", + fr: "Sombre Ball", + es: "Ocaso Ball", + it: "Scuro Ball", + pt: "Bola de Penumbra", + de: "Finsterball" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Look at the bottom 7 cards of your deck. You may reveal a Pokémon you find there and put it into your hand. Shuffle the other cards back into your deck.", + fr: "Regardez les 7 cartes du dessous de votre deck. Vous pouvez montrer un Pokémon que vous y trouvez, puis l'ajouter à votre main. Mélangez les autres cartes avec votre deck.", + es: "Mira las 7 últimas cartas de tu baraja. Puedes enseñar 1 Pokémon que encuentres entre ellas y ponerlo en tu mano. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Guarda le ultime sette carte del tuo mazzo. Puoi mostrare un Pokémon presente tra esse e aggiungerlo alle carte che hai in mano. Poi rimischia le altre carte nel tuo mazzo.", + pt: "Olhe as 7 cartas de baixo do seu baralho. Você pode revelar um Pokémon que encontrar lá e colocá-lo na sua mão. Embaralhe as outras cartas de volta no seu baralho.", + de: "Schau dir die untersten 7 Karten deines Decks an. Du kannst 1 Pokémon, das du dort findest, deinem Gegner zeigen und auf deine Hand nehmen. Mische die anderen Karten zurück in dein Deck." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/176.ts b/data/Scarlet & Violet/Surging Sparks/176.ts new file mode 100644 index 000000000..8816bb279 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/176.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Energy Search Pro", + fr: "Recherche d'Énergie Pro", + es: "Búsqueda de Energía Pro", + it: "Ricerca di Energia Pro", + pt: "Busca de Energia Profissional", + de: "Profi-Energiesuche" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Search your deck for any number of Basic Energy cards of different types, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Cherchez dans votre deck le nombre voulu de cartes Énergie de base de types différents, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Busca en tu baraja cualquier cantidad de cartas de Energía Básica de diferentes tipos, enséñalas y ponlas en tu mano. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo un numero qualsiasi di carte Energia base di tipo diverso, mostrale e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por qualquer número de cartas de Energia Básica de tipos diferentes no seu baralho, revele-as e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach beliebig vielen Basis-Energiekarten verschiedenen Typs, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/177.ts b/data/Scarlet & Violet/Surging Sparks/177.ts new file mode 100644 index 000000000..d803cd268 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/177.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Gravity Mountain", + fr: "Montagne Gravité", + es: "Montaña Gravedad", + it: "Monte Gravità", + pt: "Montanha da Gravidade", + de: "Erdanziehungsberg" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Each Stage 2 Pokémon in play (both yours and your opponent's) gets -30 HP.", + fr: "Chaque Pokémon de Niveau 2 en jeu (les vôtres et ceux de votre adversaire) perd -30 PV.", + es: "Cada Pokémon de Fase 2 en juego (tanto tuyos como de tu rival) tiene 30 PS menos.", + it: "Ciascun Pokémon di Fase 2 in gioco, sia tuo che del tuo avversario, ha 30 PS in meno.", + pt: "Cada Pokémon Estágio 2 em jogo (seus e do seu oponente) recebe 30 PS a menos.", + de: "Jedes Phase-2-Pokémon im Spiel (deine und die deines Gegners) erhält -30 KP." + }, + + trainerType: "Stadium", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/178.ts b/data/Scarlet & Violet/Surging Sparks/178.ts new file mode 100644 index 000000000..9f4b09fbb --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/178.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Jasmine's Gaze", + fr: "Regard de Jasmine", + es: "Mirada de Yasmina", + it: "Sguardo di Jasmine", + pt: "Olhar da Jasmine", + de: "Jasmins Blick" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "During your opponent's next turn, all of your Pokémon take 30 less damage from attacks from your opponent's Pokémon (after applying Weakness and Resistance). (This includes new Pokémon that come into play.)", + fr: "Pendant le prochain tour de votre adversaire, tous vos Pokémon subissent 30 dégâts de moins provenant des attaques des Pokémon de votre adversaire (après application de la Faiblesse et de la Résistance). (Cela comprend les nouveaux Pokémon qui sont mis en jeu.)", + es: "Durante el próximo turno de tu rival, los ataques de los Pokémon de tu rival hacen 30 puntos de daño menos a todos tus Pokémon (después de aplicar Debilidad y Resistencia). (Esto incluye los nuevos Pokémon que entren en juego).", + it: "Durante il prossimo turno del tuo avversario, i tuoi Pokémon subiscono 30 danni in meno dagli attacchi dei Pokémon del tuo avversario, dopo aver applicato debolezza e resistenza. Questo include i nuovi Pokémon entrati in gioco.", + pt: "Durante o próximo turno do seu oponente, todos os seus Pokémon receberão 30 pontos de dano a menos de ataques dos Pokémon do seu oponente (depois de aplicar Fraqueza e Resistência). (Isto inclui novos Pokémon que entrarem em jogo.)", + de: "Während des nächsten Zuges deines Gegners werden allen deinen Pokémon durch Attacken von Pokémon deines Gegners 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden). (Dies schließt neue Pokémon ein, die ins Spiel gebracht werden.)" + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/179.ts b/data/Scarlet & Violet/Surging Sparks/179.ts new file mode 100644 index 000000000..26745ddcd --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/179.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Lisia's Appeal", + fr: "Charme d'Atalante", + es: "Atracción de Ariana", + it: "Fascino di Orthilla", + pt: "Apelo da Elisia", + de: "Xenias Aufruf" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Switch in 1 of your opponent's Benched Basic Pokémon to the Active Spot. If you do, the new Active Pokémon is now Confused.", + fr: "Envoyez l'un des Pokémon de Banc de base de votre adversaire sur le Poste Actif. Dans ce cas, le nouveau Pokémon Actif est maintenant Confus.", + es: "Cambia 1 de los Pokémon Básicos en Banca de tu rival por el Pokémon que esté en el Puesto Activo. Si lo haces, el nuevo Pokémon Activo pasa a estar Confundido.", + it: "Sostituisci uno dei Pokémon Base nella panchina del tuo avversario con il suo Pokémon in posizione attiva. Se lo fai, il nuovo Pokémon attivo viene confuso.", + pt: "Mande 1 dos Pokémon Básicos no Banco do seu oponente para o Campo Ativo. Se fizer isto, o novo Pokémon Ativo agora estará Confuso.", + de: "Wechsle 1 Basis-Pokémon von der Bank deines Gegners in die Aktive Position ein. Wenn du das machst, ist das neue Aktive Pokémon jetzt verwirrt." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/180.ts b/data/Scarlet & Violet/Surging Sparks/180.ts new file mode 100644 index 000000000..71dad6045 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/180.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Lively Stadium", + fr: "Stade en Liesse", + es: "Estadio Animado", + it: "Stadio Gremito", + pt: "Estádio Animado", + de: "Belebtes Stadion" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Each Basic Pokémon in play (both yours and your opponent's) gets +30 HP.", + fr: "Chaque Pokémon de base en jeu (les vôtres et ceux de votre adversaire) reçoit +30 PV.", + es: "Cada Pokémon Básico en juego (tanto tuyos como de tu rival) obtiene 30 PS más.", + it: "Ciascun Pokémon Base in gioco, sia tuo che del tuo avversario, ha 30 PS in più.", + pt: "Cada Pokémon Básico em jogo (seus e do seu oponente) recebe 30 PS a mais.", + de: "Jedes Basis-Pokémon im Spiel (deine und die deines Gegners) erhält +30 KP." + }, + + trainerType: "Stadium", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/181.ts b/data/Scarlet & Violet/Surging Sparks/181.ts new file mode 100644 index 000000000..95b428f6f --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/181.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Meddling Memo", + fr: "Note d'Ingérence", + es: "Nota de Intromisión", + it: "Nota di Intromissione", + pt: "Memorando Intrometido", + de: "Einmischende Notiz" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Your opponent counts the cards in their hand, shuffles those cards, and puts them on the bottom of their deck. If they do, they draw that many cards.", + fr: "Votre adversaire compte les cartes dans sa main, les mélange, puis les place en dessous de son deck. Dans ce cas, il pioche ce même nombre de cartes.", + es: "Tu rival cuenta las cartas de su mano, baraja esas cartas y las pone en la parte inferior de su baraja. Si lo hace, tu rival roba esa misma cantidad de cartas.", + it: "Il tuo avversario conta le carte che ha in mano, rimischia quelle carte e le mette in fondo al suo mazzo. Se lo fa, il tuo avversario pesca lo stesso numero di carte.", + pt: "Seu oponente conta as cartas na mão dele, embaralha aquelas cartas e as coloca como as cartas de baixo do baralho dele. Se ele fizer isto, ele comprará aquele mesmo número de cartas.", + de: "Dein Gegner zählt die Karten auf seiner Hand, mischt jene Karten und legt sie unter sein Deck. Wenn er das macht, zieht er genauso viele Karten." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/182.ts b/data/Scarlet & Violet/Surging Sparks/182.ts new file mode 100644 index 000000000..0449b63f7 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/182.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Megaton Blower", + fr: "Souffleur Titanesque", + es: "Ventilador Megatón", + it: "Ventilatore Megatonico", + pt: "Ventilador Megaton", + de: "Megatonnengebläse" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Discard all Pokémon Tools and Special Energy from all of your opponent's Pokémon, and discard a Stadium in play.", + fr: "Défaussez tous les Outils Pokémon et toutes les Énergies spéciales de tous les Pokémon de votre adversaire, puis défaussez un Stade en jeu.", + es: "Descarta todas las Herramientas Pokémon y Energías Especiales de todos los Pokémon de tu rival, y descarta 1 Estadio en juego.", + it: "Scarta tutte le carte Oggetto Pokémon e le Energie speciali dai Pokémon del tuo avversario e una carta Stadio in gioco.", + pt: "Descarte todas as Ferramentas Pokémon e Energias Especiais de todos os Pokémon do seu oponente, e descarte um Estádio em jogo.", + de: "Lege alle Pokémon-Ausrüstungen und Spezial-Energien von allen Pokémon deines Gegners auf seinen Ablagestapel und lege 1 Stadionkarte im Spiel auf den Ablagestapel." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/183.ts b/data/Scarlet & Violet/Surging Sparks/183.ts new file mode 100644 index 000000000..70f9f3d81 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/183.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Miracle Headset", + fr: "Casque Miracle", + es: "Auriculares Milagrosos", + it: "Cuffie Prodigiose", + pt: "Fone de Ouvido Milagroso", + de: "Wunder-Headset" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Put up to 2 Supporter cards from your discard pile into your hand.", + fr: "Ajoutez jusqu'à 2 cartes Supporter de votre pile de défausse à votre main.", + es: "Pon hasta 2 cartas de Partidario de tu pila de descartes en tu mano.", + it: "Prendi fino a due carte Aiuto dalla tua pila degli scarti e aggiungile alle carte che hai in mano.", + pt: "Coloque até 2 cartas de Apoiador da sua pilha de descarte na sua mão.", + de: "Nimm bis zu 2 Unterstützerkarten aus deinem Ablagestapel auf deine Hand." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/184.ts b/data/Scarlet & Violet/Surging Sparks/184.ts new file mode 100644 index 000000000..9ea6951cb --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/184.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Passho Berry", + fr: "Baie Pocpoc", + es: "Baya Pasio", + it: "Baccapasflo", + pt: "Fruta Passho", + de: "Foepasbeere" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is damaged by an attack from your opponent's Water Pokémon, it takes 60 less damage (after applying Weakness and Resistance), and discard this card.", + fr: "Si le Pokémon auquel cette carte est attachée subit les dégâts d'une attaque de l'un des Pokémon Water de votre adversaire, il subit 60 dégâts de moins (après application de la Faiblesse et de la Résistance), et vous défaussez cette carte.", + es: "Si el Pokémon al que está unida esta carta resulta dañado por un ataque de los Pokémon Water de tu rival, ese ataque le hace 60 puntos de daño menos (después de aplicar Debilidad y Resistencia), y descartas esta carta.", + it: "Se il Pokémon a cui è assegnata questa carta viene danneggiato da un attacco di un Pokémon Water del tuo avversario, subisce 60 danni in meno, dopo aver applicato debolezza e resistenza, e tu scarti questa carta.", + pt: "Se o Pokémon ao qual esta carta está ligada for danificado por um ataque dos Pokémon Water do seu oponente, ele receberá 60 pontos de dano a menos (depois de aplicar Fraqueza e Resistência), e descarte esta carta.", + de: "Wenn das Pokémon, an das diese Karte angelegt ist, durch eine Attacke von Water-Pokémon deines Gegners Schaden erhält, werden ihm 60 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden), und du legst diese Karte auf deinen Ablagestapel." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/185.ts b/data/Scarlet & Violet/Surging Sparks/185.ts new file mode 100644 index 000000000..1dba9f2ca --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/185.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Precious Trolley", + fr: "Chariot Précieux", + es: "Carrito Valioso", + it: "Carrello Pregiato", + pt: "Carrinho Precioso", + de: "Edler Rollwagen" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Search your deck for any number of Basic Pokémon and put them onto your Bench. Then, shuffle your deck.", + fr: "Cherchez dans votre deck le nombre voulu de Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.", + es: "Busca en tu baraja cualquier cantidad de Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo un numero qualsiasi di Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por qualquer número de Pokémon Básicos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach beliebig vielen Basis-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/186.ts b/data/Scarlet & Violet/Surging Sparks/186.ts new file mode 100644 index 000000000..c6efb3ef6 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/186.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Scramble Switch", + fr: "Échange Combiné", + es: "Cambio en Desbandada", + it: "Scambio Pazzo", + pt: "Chave de Embaralhamento", + de: "Wechselschalter" + }, + + rarity: "ACE SPEC Rare", + category: "Trainer", + + effect: { + en: "Switch your Active Pokémon with 1 of your Benched Pokémon. If you do, you may move any amount of Energy from the Pokémon you moved to your Bench to the new Active Pokémon.", + fr: "Échangez votre Pokémon Actif contre l'un de vos Pokémon de Banc. Dans ce cas, vous pouvez déplacer autant d'Énergies que vous le voulez du Pokémon que vous avez envoyé sur le Banc vers le nouveau Pokémon Actif.", + es: "Cambia tu Pokémon Activo por uno de tus Pokémon en Banca. Si lo haces, puedes mover cualquier cantidad de Energías del Pokémon que has movido a la Banca al nuevo Pokémon Activo.", + it: "Scambia il tuo Pokémon attivo con uno della tua panchina. Se lo fai, puoi spostare un numero qualsiasi di Energie dal Pokémon che hai spostato in panchina al nuovo Pokémon attivo.", + pt: "Troque o seu Pokémon Ativo por 1 dos seus Pokémon no Banco. Se fizer isto, você poderá mover qualquer quantidade de Energia do Pokémon que você moveu para o seu Banco para o novo Pokémon Ativo.", + de: "Tausche dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank aus. Wenn du das machst, kannst du beliebig viele Energien vom Pokémon, das du auf deine Bank verschoben hast, auf das neue Aktive Pokémon verschieben." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/187.ts b/data/Scarlet & Violet/Surging Sparks/187.ts new file mode 100644 index 000000000..130938cda --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/187.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Surfer", + fr: "Surfeur", + es: "Surfista", + it: "Surfista", + pt: "Surfista", + de: "Surfer" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Switch your Active Pokémon with 1 of your Benched Pokémon. If you do, draw cards until you have 5 cards in your hand.", + fr: "Échangez votre Pokémon Actif contre l'un de vos Pokémon de Banc. Dans ce cas, piochez des cartes jusqu'à en avoir 5 en main.", + es: "Cambia tu Pokémon Activo por uno de tus Pokémon en Banca. Si lo haces, roba cartas hasta que tengas 5 cartas en tu mano.", + it: "Scambia il tuo Pokémon attivo con uno della tua panchina. Se lo fai, pesca fino ad avere cinque carte in mano.", + pt: "Troque o seu Pokémon Ativo por 1 dos seus Pokémon no Banco. Se fizer isto, compre cartas até ter 5 cartas na sua mão.", + de: "Tausche dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank aus. Wenn du das machst, ziehe so lange Karten, bis du 5 Karten auf deiner Hand hast." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/188.ts b/data/Scarlet & Violet/Surging Sparks/188.ts new file mode 100644 index 000000000..01e25c723 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/188.ts @@ -0,0 +1,58 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Technical Machine: Fluorite", + fr: "Capsule Technique : Fluorine", + es: "Máquina Técnica: Fluorita", + it: "Macchinario Tecnico: Fluorite", + pt: "Máquina Técnica: Fluorita", + de: "Technische Maschine: Fluorit" + }, + + rarity: "Uncommon", + category: "Trainer", + + attacks: [{ + cost: ["Grass", "Water", "Psychic"], + + name: { + en: "Fluorite", + fr: "Fluorine", + es: "Fluorita", + it: "Fluorite", + pt: "Fluorita", + de: "Fluorit" + }, + + effect: { + en: "Discard all Energy from this Pokémon, and heal all damage from each of your Tera Pokémon.", + fr: "Défaussez toutes les Énergies attachées à ce Pokémon, puis soignez tous les dégâts de chacun de vos Pokémon Téracristal.", + es: "Descarta todas las Energías de este Pokémon y cura todos los puntos de daño a cada uno de tus Pokémon Teracristal.", + it: "Scarta tutte le Energie da questo Pokémon e cura ciascuno dei tuoi Pokémon Teracristal da tutti i danni.", + pt: "Descarte todas as Energias deste Pokémon e cure todo o dano de cada um dos seus Pokémon Tera.", + de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel und heile allen Schaden bei jedem deiner Terakristall-Pokémon." + } + }], + + effect: { + en: "The Pokémon this card is attached to can use the attack on this card. (You still need the necessary Energy to use this attack.) If this card is attached to 1 of your Pokémon, discard it at the end of your turn.", + fr: "Le Pokémon auquel cette carte est attachée peut utiliser l'attaque sur cette carte. (Vous avez toujours besoin des Énergies nécessaires pour utiliser cette attaque.) Si cette carte est attachée à l'un de vos Pokémon, défaussez-la à la fin de votre tour.", + es: "El Pokémon al que esté unida esta carta puede usar el ataque de esta carta. (Sigues necesitando las Energías necesarias para usar este ataque). Si esta carta está unida a uno de tus Pokémon, descártala al final de tu turno.", + it: "Il Pokémon a cui è assegnata questa carta può usare l'attacco di questa carta. Devi comunque avere l'Energia necessaria per usare questo attacco. Se questa carta è assegnata a uno dei tuoi Pokémon, scartala alla fine del tuo turno.", + pt: "O Pokémon ao qual esta carta está ligada pode usar o ataque desta carta. (Você ainda precisa da Energia necessária para usar este ataque.) Se esta carta estiver ligada a 1 dos seus Pokémon, descarte-a no final do seu turno.", + de: "Das Pokémon, an das diese Karte angelegt ist, kann die Attacke auf dieser Karte einsetzen. (Du benötigst jedoch die für diese Attacke notwendige Energie.) Wenn diese Karte an 1 deiner Pokémon angelegt ist, lege sie am Ende deines Zuges auf deinen Ablagestapel." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/189.ts b/data/Scarlet & Violet/Surging Sparks/189.ts new file mode 100644 index 000000000..fea8ebfc9 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/189.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Tera Orb", + fr: "Orbe Téracristal", + es: "Orbe Teracristal", + it: "Terasfera", + pt: "Orbe Tera", + de: "Terakristall-Orb" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Search your deck for a Tera Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.", + fr: "Cherchez dans votre deck un Pokémon Téracristal, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.", + es: "Busca en tu baraja 1 Pokémon Teracristal, enséñalo y ponlo en tu mano. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo un Pokémon Teracristal, mostralo e aggiungilo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por um Pokémon Tera no seu baralho, revele-o e coloque-o na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach 1 Terakristall-Pokémon, zeige es deinem Gegner und nimm es auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/190.ts b/data/Scarlet & Violet/Surging Sparks/190.ts new file mode 100644 index 000000000..9ea1f5c66 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/190.ts @@ -0,0 +1,36 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Tyme", + fr: "Thaïm", + es: "Mila", + it: "Thyma", + pt: "Tomila", + de: "Quendella" + }, + + rarity: "Uncommon", + category: "Trainer", + + effect: { + en: "Tell your opponent the name of a Pokémon in your hand and put that Pokémon face down in front of you. Your opponent guesses that Pokémon's HP, and then you reveal it. If your opponent guessed right, they draw 4 cards. If they guessed wrong, you draw 4 cards. Then, return the Pokémon to your hand.", + fr: "Dites à votre adversaire le nom de l'un des Pokémon de votre main, puis placez ce Pokémon face cachée devant vous. Votre adversaire devine le montant des PV de ce Pokémon, puis vous le montrez. Si votre adversaire a bien deviné, il pioche 4 cartes. S'il a mal deviné, vous piochez 4 cartes. Ensuite, remettez ce Pokémon dans votre main.", + es: "Dile a tu rival el nombre de un Pokémon de tu mano y pon ese Pokémon boca abajo delante de ti. Tu rival intenta adivinar los PS de ese Pokémon y, después, tú lo enseñas. Si lo ha adivinado correctamente, tu rival roba 4 cartas. Si no lo ha adivinado correctamente, tú robas 4 cartas. Después, devuelve el Pokémon a tu mano.", + it: "Comunica al tuo avversario il nome di un Pokémon che hai in mano e metti quel Pokémon a faccia in giù davanti a te. Il tuo avversario deve indovinare i PS di quel Pokémon e poi glielo mostri. Se ha indovinato, il tuo avversario pesca quattro carte. Se non ha indovinato, ne peschi quattro tu. Poi riprendi in mano il Pokémon.", + pt: "Diga ao seu oponente o nome de um Pokémon na sua mão e coloque aquele Pokémon virado para baixo na sua frente. Seu oponente tenta adivinhar o PS daquele Pokémon e, em seguida, você o revela. Se o seu oponente acertar, ele comprará 4 cartas. Se ele errar, você comprará 4 cartas. Em seguida, devolva o Pokémon à sua mão.", + de: "Nenne deinem Gegner den Namen eines Pokémon auf deiner Hand und lege jenes Pokémon verdeckt vor dir ab. Dein Gegner rät die KP jenes Pokémon und anschließend deckst du es auf. Wenn dein Gegner richtig geraten hat, zieht er 4 Karten. Wenn er falsch geraten hat, ziehst du 4 Karten. Nimm anschließend das Pokémon zurück auf deine Hand." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + holo: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/191.ts b/data/Scarlet & Violet/Surging Sparks/191.ts new file mode 100644 index 000000000..4be74ce91 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/191.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Enriching Energy", + fr: "Énergie Enrichissante", + es: "Energía Enriquecedora", + it: "Energia Ricchezza", + pt: "Energia Enriquecedora", + de: "Gewinn-Energie" + }, + + rarity: "ACE SPEC Rare", + category: "Energy", + + effect: { + en: "As long as this card is attached to a Pokémon, it provides Colorless Energy.\n\nWhen you attach this card from your hand to a Pokémon, draw 4 cards.", + fr: "Tant que cette carte est attachée à un Pokémon, elle fournit une Énergie Colorless.\n\nLorsque vous attachez cette carte de votre main à un Pokémon, piochez 4 cartes.", + es: "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía Colorless.\n\nCuando unas esta carta de tu mano a un Pokémon, roba 4 cartas.", + it: "Fintanto che questa carta è assegnata a un Pokémon, fornisce Energia Colorless.\n\nQuando assegni questa carta dalla tua mano a un Pokémon, pesca quattro carte.", + pt: "Enquanto esta carta estiver ligada a um Pokémon, ela fornecerá Energia Colorless.\n\nQuando você ligar esta carta da sua mão a um Pokémon, compre 4 cartas.", + de: "Solange diese Karte an ein Pokémon angelegt ist, liefert sie Colorless-Energie.\n\nWenn du diese Karte aus deiner Hand an ein Pokémon anlegst, ziehe 4 Karten." + }, + + energyType: "Normal", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/192.ts b/data/Scarlet & Violet/Surging Sparks/192.ts new file mode 100644 index 000000000..0742f3be2 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/192.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Exeggcute", + fr: "Noeunoeuf", + es: "Exeggcute", + it: "Exeggcute", + pt: "Exeggcute", + de: "Owei" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 30, + types: ["Grass"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Precocious Evolution", + fr: "Évolution Précoce", + es: "Evolución Prematura", + it: "Evoluzione Precoce", + pt: "Evolução Prematura", + de: "Frühentwickler" + }, + + effect: { + en: "If you go first, you can use this attack during your first turn. Search your deck for a card that evolves from this Pokémon and put it onto this Pokémon to evolve it. Then, shuffle your deck.", + fr: "Si vous jouez en premier, vous pouvez utiliser cette attaque pendant votre premier tour. Cherchez dans votre deck une carte Évolution de ce Pokémon, puis placez-la sur ce Pokémon pour le faire évoluer. Mélangez ensuite votre deck.", + es: "Si sales en primer lugar, puedes usar este ataque durante tu primer turno. Busca en tu baraja 1 carta que evolucione de este Pokémon y ponla sobre este Pokémon para hacerlo evolucionar. Después, baraja las cartas de tu baraja.", + it: "Se inizi per primo, puoi usare questo attacco durante il tuo primo turno. Cerca nel tuo mazzo una carta che si evolve da questo Pokémon e metticela sopra per farlo evolvere. Poi rimischia le carte del tuo mazzo.", + pt: "Se você for o primeiro a jogar, poderá usar este ataque durante o seu primeiro turno. Procure por uma carta no seu baralho que evolua deste Pokémon e coloque-a sobre este Pokémon para evoluí-lo. Em seguida, embaralhe o seu baralho.", + de: "Wenn du als Erster am Zug bist, kannst du diese Attacke während deines ersten Zuges einsetzen. Durchsuche dein Deck nach 1 Karte, die sich aus diesem Pokémon entwickelt, und lege sie auf dieses Pokémon, um es zu entwickeln. Mische anschließend dein Deck." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/193.ts b/data/Scarlet & Violet/Surging Sparks/193.ts new file mode 100644 index 000000000..39d1fce06 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/193.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Vivillon", + fr: "Prismillon", + es: "Vivillon", + it: "Vivillon", + pt: "Vivillon", + de: "Vivillon" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Stage2", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Evo-Powder", + fr: "Poudre Évo", + es: "Evo-Polvo", + it: "Evopolvere", + pt: "Pó Evoluir", + de: "Entwicklungspuder" + }, + + effect: { + en: "For each of your Benched Pokémon, search your deck for a card that evolves from that Pokémon and put it onto that Pokémon to evolve it. Then, shuffle your deck.", + fr: "Pour chacun de vos Pokémon de Banc, cherchez dans votre deck une carte Évolution de ce Pokémon-là, puis placez-la sur ce dernier pour le faire évoluer. Mélangez ensuite votre deck.", + es: "Para cada uno de tus Pokémon en Banca, busca en tu baraja 1 carta que evolucione de ese Pokémon y ponla sobre ese Pokémon para hacerlo evolucionar. Después, baraja las cartas de tu baraja.", + it: "Per ogni Pokémon nella tua panchina, cerca nel tuo mazzo una carta che si evolve da quel Pokémon e metticela sopra per farlo evolvere. Poi rimischia le carte del tuo mazzo.", + pt: "Para cada um dos seus Pokémon no Banco, procure por uma carta no seu baralho que evolua daquele Pokémon e coloque-a sobre aquele Pokémon para evoluí-lo. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche für jedes Pokémon auf deiner Bank dein Deck nach 1 Karte, die sich aus jenem Pokémon entwickelt, und lege sie auf jenes Pokémon, um es zu entwickeln. Mische anschließend dein Deck." + } + }, { + cost: ["Grass"], + + name: { + en: "Cutting Wind", + fr: "Vent Glacial", + es: "Viento Helado", + it: "Vento Tagliente", + pt: "Vento Dilacerante", + de: "Schneidender Wind" + }, + + damage: 90 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/194.ts b/data/Scarlet & Violet/Surging Sparks/194.ts new file mode 100644 index 000000000..823340b69 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/194.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Shiinotic", + fr: "Lampignon", + es: "Shiinotic", + it: "Shiinotic", + pt: "Shiinotic", + de: "Lamellux" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 110, + types: ["Grass"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Calming Light", + fr: "Lumière Apaisante", + es: "Luz Calmante", + it: "Calmaluce", + pt: "Luz Tranquilizadora", + de: "Beruhigender Schein" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you may make your opponent's Active Pokémon Asleep.", + fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez laisser le Pokémon Actif de votre adversaire Endormi.", + es: "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes dejar al Pokémon Activo de tu rival Dormido.", + it: "Una sola volta durante il tuo turno, se questo Pokémon è in posizione attiva, puoi lasciare il Pokémon attivo del tuo avversario addormentato.", + pt: "Uma vez durante o seu turno, se este Pokémon estiver no Campo Ativo, você poderá deixar o Pokémon Ativo do seu oponente Adormecido.", + de: "Einmal während deines Zuges, wenn dieses Pokémon in der Aktiven Position ist, kannst du das Aktive Pokémon deines Gegners einschlafen lassen." + } + }], + + attacks: [{ + cost: ["Grass", "Colorless"], + + name: { + en: "Spiral Rush", + fr: "Course en Spirale", + es: "Avalancha Espiral", + it: "Raffica a Spirale", + pt: "Arremetida Espiral", + de: "Spiralsturmangriff" + }, + + effect: { + en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.", + fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.", + es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 30 puntos de daño más por cada cara.", + it: "Lancia una moneta finché non esce croce. Questo attacco infligge 30 danni in più ogni volta che esce testa.", + pt: "Jogue uma moeda até sair coroa. Este ataque causa 30 pontos de dano a mais para cada cara.", + de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Diese Attacke fügt 30 Schadenspunkte mehr pro Kopf zu." + }, + + damage: "60+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/195.ts b/data/Scarlet & Violet/Surging Sparks/195.ts new file mode 100644 index 000000000..be62f33d7 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/195.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Castform Sunny Form", + fr: "Morphéo Forme Solaire", + es: "Castform Forma Sol", + it: "Castform Forma Sole", + pt: "Castform Forma Ensolarada", + de: "Formeo Sonnenform" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 70, + 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", "Colorless"], + + name: { + en: "Sunny Assist", + fr: "Assistance Ensoleillée", + es: "Asistencia Soleada", + it: "Assistisole", + pt: "Assistência Ensolarada", + de: "Sonnige Hilfe" + }, + + effect: { + en: "Move all Energy from this Pokémon to 1 of your Benched Pokémon.", + fr: "Déplacez toutes les Énergies de ce Pokémon vers l'un de vos Pokémon de Banc.", + es: "Mueve todas las Energías de este Pokémon a uno de tus Pokémon en Banca.", + it: "Sposta tutte le Energie da questo Pokémon a uno di quelli nella tua panchina.", + pt: "Mova todas as Energias deste Pokémon para 1 dos seus Pokémon no Banco.", + de: "Verschiebe alle Energien von diesem Pokémon auf 1 Pokémon auf deiner Bank." + }, + + damage: 50 + }], + + retreat: 0, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/196.ts b/data/Scarlet & Violet/Surging Sparks/196.ts new file mode 100644 index 000000000..214dc235a --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/196.ts @@ -0,0 +1,59 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Larvesta", + fr: "Pyronille", + es: "Larvesta", + it: "Larvesta", + pt: "Larvesta", + de: "Ignivor" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 70, + types: ["Fire"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Ram", + fr: "Collision", + es: "Apisonar", + it: "Carica", + pt: "Aríete", + de: "Ramme" + }, + + damage: 10 + }, { + 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: 20 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/197.ts b/data/Scarlet & Violet/Surging Sparks/197.ts new file mode 100644 index 000000000..4fe7d8e16 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/197.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Ceruledge", + fr: "Malvalame", + es: "Ceruledge", + it: "Ceruledge", + pt: "Ceruledge", + de: "Azugladis" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 140, + types: ["Fire"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Cursed Edge", + fr: "Lame Maudite", + es: "Filo Maldito", + it: "Lama Maledetta", + pt: "Gume Amaldiçoado", + de: "Fluchklinge" + }, + + effect: { + en: "Discard all Special Energy from all of your opponent's Pokémon.", + fr: "Défaussez toutes les Énergies spéciales de tous les Pokémon de votre adversaire.", + es: "Descarta todas las Energías Especiales de todos los Pokémon de tu rival.", + it: "Scarta tutte le Energie speciali dai Pokémon del tuo avversario.", + pt: "Descarte todas as Energias Especiais de todos os Pokémon do seu oponente.", + de: "Lege alle Spezial-Energien von allen Pokémon deines Gegners auf seinen Ablagestapel." + } + }, { + cost: ["Fire", "Fire", "Colorless"], + + name: { + en: "Black Blaze Slash", + fr: "Tranche Brasier Sombre", + es: "Tajo Ígneo Oscuro", + it: "Lacerafiamma Nera", + pt: "Talho de Chamas Negras", + de: "Schwarzfeuerstich" + }, + + 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: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/198.ts b/data/Scarlet & Violet/Surging Sparks/198.ts new file mode 100644 index 000000000..768c91f8a --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/198.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Feebas", + fr: "Barpau", + es: "Feebas", + it: "Feebas", + pt: "Feebas", + de: "Barschwa" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 30, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Leap Out", + fr: "Bondir", + es: "Saltar del Agua", + it: "Sguizzata", + pt: "Pular Fora", + de: "Herausspringen" + }, + + 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." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/199.ts b/data/Scarlet & Violet/Surging Sparks/199.ts new file mode 100644 index 000000000..c21f09e97 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/199.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Spheal", + fr: "Obalie", + es: "Spheal", + it: "Spheal", + pt: "Spheal", + de: "Seemops" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 70, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Water"], + + name: { + en: "Powder Snow", + fr: "Poudreuse", + es: "Nieve Polvo", + it: "Polneve", + pt: "Neve em Pó", + de: "Pulverschnee" + }, + + 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: 10 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/200.ts b/data/Scarlet & Violet/Surging Sparks/200.ts new file mode 100644 index 000000000..491e028ad --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/200.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Bruxish", + fr: "Denticrisse", + es: "Bruxish", + it: "Bruxish", + pt: "Bruxish", + de: "Knirfish" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 110, + types: ["Water"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Counterattack", + fr: "Contre-Attaque", + es: "Contragolpe", + it: "Respinta", + pt: "Contra-ataque", + de: "Gegenangriff" + }, + + effect: { + en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent's Pokémon (even if this Pokémon is Knocked Out), put 3 damage counters on the Attacking Pokémon.", + fr: "Si ce Pokémon est sur le Poste Actif et qu'il subit les dégâts d'une attaque d'un Pokémon de votre adversaire (même si ce Pokémon est mis K.O.), placez 3 marqueurs de dégâts sur le Pokémon Attaquant.", + es: "Si este Pokémon está en el Puesto Activo y resulta dañado por un ataque de los Pokémon de tu rival (incluso si este Pokémon queda Fuera de Combate), pon 3 contadores de daño en el Pokémon Atacante.", + it: "Se questo Pokémon è in posizione attiva e viene danneggiato da un attacco di un Pokémon del tuo avversario, anche se viene messo KO, metti tre segnalini danno sul Pokémon attaccante.", + pt: "Se este Pokémon estiver no Campo Ativo e for danificado por um ataque dos Pokémon do seu oponente (mesmo que este Pokémon seja Nocauteado), coloque 3 contadores de dano no Pokémon Atacante.", + de: "Wenn dieses Pokémon in der Aktiven Position ist und durch eine Attacke von Pokémon deines Gegners Schaden erhält (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 3 Schadensmarken auf das Angreifende Pokémon." + } + }], + + attacks: [{ + cost: ["Water", "Colorless"], + + name: { + en: "Big Bite", + fr: "Grosse Morsure", + es: "Gran Mordisco", + it: "Grande Morso", + pt: "Mordidona", + de: "Mächtiger Biss" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/201.ts b/data/Scarlet & Violet/Surging Sparks/201.ts new file mode 100644 index 000000000..607ce48f1 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/201.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Cetitan", + fr: "Balbalèze", + es: "Cetitan", + it: "Cetitan", + pt: "Cetitan", + de: "Kolowal" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 180, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Solid Body", + fr: "Corps Résistant", + es: "Cuerpo Sólido", + it: "Corpo Solido", + pt: "Corpo Robusto", + de: "Solider Körper" + }, + + effect: { + en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).", + fr: "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: "Los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).", + it: "Questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Este Pokémon recebe 30 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).", + de: "Diesem Pokémon werden durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless", "Colorless"], + + name: { + en: "Dangerous Mouth", + fr: "Bouche Dangereuse", + es: "Boca Peligrosa", + it: "Fauci Pericolose", + pt: "Boca Perigosa", + de: "Gefährliches Maul" + }, + + damage: 150 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/202.ts b/data/Scarlet & Violet/Surging Sparks/202.ts new file mode 100644 index 000000000..ea3388716 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/202.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Stunfisk", + fr: "Limonde", + es: "Stunfisk", + it: "Stunfisk", + pt: "Stunfisk", + de: "Flunschlik" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 110, + types: ["Lightning"], + stage: "Basic", + + attacks: [{ + cost: ["Lightning", "Colorless"], + + name: { + en: "Paralyzing Crackle", + fr: "Crépitement Paralysant", + es: "Chasquido Paralizante", + it: "Crepitio Paralizzante", + pt: "Estalo Paralisante", + de: "Paralysierendes Knistern" + }, + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed, and discard an Energy from that Pokémon.", + fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé, et vous défaussez une Énergie de ce Pokémon-là.", + es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado, y descartas 1 Energía de ese Pokémon.", + it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato e tu scarti un'Energia da quel Pokémon.", + pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente agora estará Paralisado, e descarte uma Energia daquele Pokémon.", + de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert, und du legst 1 Energie von jenem Pokémon auf seinen Ablagestapel." + }, + + damage: 50 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/203.ts b/data/Scarlet & Violet/Surging Sparks/203.ts new file mode 100644 index 000000000..e7f17ab21 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/203.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Latios", + fr: "Latios", + es: "Latios", + it: "Latios", + pt: "Latios", + de: "Latios" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Psychic", "Colorless"], + + name: { + en: "Skill Dive", + fr: "Plongeon Contrôlé", + es: "Técnica de Buceo", + it: "Agiltuffo", + pt: "Mergulho Habilidoso", + de: "Geübter Sturzflug" + }, + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 50 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 50 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 50 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 50 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 50 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }, { + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Jet Headbutt", + fr: "Bélier Volant", + es: "Turbocabezazo", + it: "Zuccata Jet", + pt: "Cabeçada a Jato", + de: "Flinke Kopfnuss" + }, + + damage: 110 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/204.ts b/data/Scarlet & Violet/Surging Sparks/204.ts new file mode 100644 index 000000000..771a779e5 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/204.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Mesprit", + fr: "Créfollet", + es: "Mesprit", + it: "Mesprit", + pt: "Mesprit", + de: "Vesprit" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Full Heart", + fr: "Cœur Plein", + es: "Todo Corazón", + it: "Riempicuore", + pt: "Coração Carregado", + de: "Erfülltes Herz" + }, + + effect: { + en: "Attach up to 2 Basic Psychic Energy cards from your hand to your Pokémon in any way you like.", + fr: "Attachez jusqu'à 2 cartes Énergie Psychic de base de votre main à vos Pokémon comme il vous plaît.", + es: "Une hasta 2 cartas de Energía Psychic Básica de tu mano a tus Pokémon de la manera que desees.", + it: "Assegna ai tuoi Pokémon fino a due carte Energia base Psychic dalla tua mano nel modo che preferisci.", + pt: "Ligue até 2 cartas de Energia Psychic Básica da sua mão aos seus Pokémon como desejar.", + de: "Lege bis zu 2 Basis-Psychic-Energiekarten aus deiner Hand beliebig an deine Pokémon an." + } + }, { + cost: ["Psychic", "Psychic"], + + name: { + en: "Guardian Burst", + fr: "Explosion Gardienne", + es: "Explosión del Guardián", + it: "Raffica dei Guardiani", + pt: "Explosão dos Guardiões", + de: "Wächter-Eruption" + }, + + effect: { + en: "If you don't have Uxie and Azelf on your Bench, this attack does nothing.", + fr: "Si vous n'avez pas Créhelf et Créfadet sur votre Banc, cette attaque ne fait rien.", + es: "Si no tienes a Uxie y Azelf en tu Banca, este ataque no hace nada.", + it: "Se non hai Uxie e Azelf nella tua panchina, questo attacco non ha effetto.", + pt: "Se você não tiver Uxie e Azelf no seu Banco, este ataque não fará nada.", + de: "Wenn sich Selfe und Tobutz nicht auf deiner Bank befinden, hat diese Attacke keine Auswirkungen." + }, + + damage: 160 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/205.ts b/data/Scarlet & Violet/Surging Sparks/205.ts new file mode 100644 index 000000000..edfa22543 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/205.ts @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Phanpy", + fr: "Phanpy", + es: "Phanpy", + it: "Phanpy", + pt: "Phanpy", + de: "Phanpy" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Headbutt", + fr: "Coup d'Boule", + es: "Golpe Cabeza", + it: "Bottintesta", + pt: "Cabeçada", + de: "Kopfnuss" + }, + + damage: 20 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/206.ts b/data/Scarlet & Violet/Surging Sparks/206.ts new file mode 100644 index 000000000..adc533469 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/206.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Vibrava", + fr: "Vibraninf", + es: "Vibrava", + it: "Vibrava", + pt: "Vibrava", + de: "Vibrava" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Screech", + fr: "Grincement", + es: "Chirrido", + it: "Stridio", + pt: "Agudo", + de: "Kreideschrei" + }, + + effect: { + en: "During your next turn, the Defending Pokémon takes 50 more damage from attacks (after applying Weakness and Resistance).", + fr: "Pendant votre prochain tour, le Pokémon Défenseur subit 50 dégâts supplémentaires provenant des attaques (après application de la Faiblesse et de la Résistance).", + es: "Durante tu próximo turno, los ataques hacen 50 puntos de daño más al Pokémon Defensor (después de aplicar Debilidad y Resistencia).", + it: "Durante il tuo prossimo turno, il Pokémon difensore subisce 50 danni in più dagli attacchi, dopo aver applicato debolezza e resistenza.", + pt: "Durante o seu próximo turno, o Pokémon Defensor receberá 50 pontos de dano a mais de ataques (depois de aplicar Fraqueza e Resistência).", + de: "Während deines nächsten Zuges werden dem Verteidigenden Pokémon durch Attacken 50 Schadenspunkte mehr zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." + } + }, { + cost: ["Fighting", "Colorless"], + + name: { + en: "Cutting Wind", + fr: "Vent Glacial", + es: "Viento Helado", + it: "Vento Tagliente", + pt: "Vento Dilacerante", + de: "Schneidender Wind" + }, + + damage: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/207.ts b/data/Scarlet & Violet/Surging Sparks/207.ts new file mode 100644 index 000000000..13e449593 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/207.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Clobbopus", + fr: "Poulpaf", + es: "Clobbopus", + it: "Clobbopus", + pt: "Clobbopus", + de: "Klopptopus" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + stage: "Basic", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Slight Intrusion", + fr: "Légère Intrusion", + es: "Ligera Intromisión", + it: "Coinvolgimento", + pt: "Leve Invasão", + de: "Vorwagen" + }, + + 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: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/208.ts b/data/Scarlet & Violet/Surging Sparks/208.ts new file mode 100644 index 000000000..506a073f0 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/208.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Dugtrio", + fr: "Triopikeur d'Alola", + es: "Dugtrio de Alola", + it: "Dugtrio di Alola", + pt: "Dugtrio de Alola", + de: "Alola-Digdri" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 110, + types: ["Metal"], + stage: "Stage1", + + attacks: [{ + name: { + en: "Trio-Cheehoo", + fr: "Trio-Cheehoo", + es: "Trío Olé", + it: "Triurrà", + pt: "Trilegal", + de: "Dreistes Glück" + }, + + effect: { + en: "If you don't have exactly 3 cards in your hand, this attack does nothing.", + fr: "Si vous n'avez pas exactement 3 cartes dans votre main, cette attaque ne fait rien.", + es: "Si no tienes exactamente 3 cartas en tu mano, este ataque no hace nada.", + it: "Se non hai esattamente tre carte in mano, questo attacco non ha effetto.", + pt: "Se você não tiver exatamente 3 cartas na sua mão, este ataque não fará nada.", + de: "Wenn du nicht genau 3 Karten auf deiner Hand hast, hat diese Attacke keine Auswirkungen." + }, + + damage: 120 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/209.ts b/data/Scarlet & Violet/Surging Sparks/209.ts new file mode 100644 index 000000000..3b5bfcfc3 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/209.ts @@ -0,0 +1,55 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Skarmory", + fr: "Airmure", + es: "Skarmory", + it: "Skarmory", + pt: "Skarmory", + de: "Panzaeron" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 110, + types: ["Metal"], + stage: "Basic", + + attacks: [{ + cost: ["Metal", "Colorless"], + + name: { + en: "Steel Wing", + fr: "Ailes d'Acier", + es: "Ala de Acero", + it: "Alacciaio", + pt: "Asa de Aço", + de: "Stahlflügel" + }, + + 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: 50 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/210.ts b/data/Scarlet & Violet/Surging Sparks/210.ts new file mode 100644 index 000000000..90085fd21 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/210.ts @@ -0,0 +1,68 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Flapple", + fr: "Pomdrapi", + es: "Flapple", + it: "Flapple", + pt: "Flapple", + de: "Drapfel" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 80, + types: ["Dragon"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Acidic Spit", + fr: "Crache-Acide", + es: "Salivazo Ácido", + it: "Acidosputo", + pt: "Cusparada Ácida", + de: "Säuresabber" + }, + + effect: { + en: "This attack does 20 damage for each damage counter on your opponent's Active Pokémon.", + fr: "Cette attaque inflige 20 dégâts pour chaque marqueur de dégâts sur le Pokémon Actif de votre adversaire.", + es: "Este ataque hace 20 puntos de daño por cada contador de daño en el Pokémon Activo de tu rival.", + it: "Questo attacco infligge 20 danni per ogni segnalino danno presente sul Pokémon attivo del tuo avversario.", + pt: "Este ataque causa 20 pontos de dano para cada contador de dano no Pokémon Ativo do seu oponente.", + de: "Diese Attacke fügt für jede Schadensmarke auf dem Aktiven Pokémon deines Gegners 20 Schadenspunkte zu." + }, + + damage: "20×" + }, { + cost: ["Grass", "Fire"], + + name: { + en: "Speed Dive", + fr: "Plongée Rapide", + es: "Picado Rápido", + it: "Immersione Rapida", + pt: "Mergulho Veloz", + de: "Tempohechtsprung" + }, + + damage: 70 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/211.ts b/data/Scarlet & Violet/Surging Sparks/211.ts new file mode 100644 index 000000000..f57f033b5 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/211.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Appletun", + fr: "Dratatin", + es: "Appletun", + it: "Appletun", + pt: "Appletun", + de: "Schlapfel" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 90, + types: ["Dragon"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Melting Sweetness", + fr: "Nectar Liquéfiant", + es: "Dulzor Fundido", + it: "Dolcezza Disarmante", + pt: "Derretida Doce", + de: "Schmelzende Süße" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't attack.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas attaquer.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede atacar.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá atacar.", + de: "Während des nächsten Zuges deines Gegners kann das Verteidigende Pokémon nicht angreifen." + }, + + damage: 50 + }, { + cost: ["Grass", "Fire"], + + name: { + en: "Wild Tackle", + fr: "Tacle Brutal", + es: "Placaje Salvaje", + it: "Azionferoce", + pt: "Investida Feroz", + de: "Wilder Tackle" + }, + + 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: 130 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/212.ts b/data/Scarlet & Violet/Surging Sparks/212.ts new file mode 100644 index 000000000..e4f226076 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/212.ts @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Slakoth", + fr: "Parecool", + es: "Slakoth", + it: "Slakoth", + pt: "Slakoth", + de: "Bummelz" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless"], + + name: { + en: "Take It Easy", + fr: "Relax", + es: "Tranqui", + it: "Prenditela Comoda", + pt: "De Boaça", + de: "Eile mit Weile" + }, + + effect: { + en: "Heal 60 damage from this Pokémon. During your next turn, this Pokémon can't retreat.", + fr: "Soignez 60 dégâts de ce Pokémon. Pendant votre prochain tour, ce Pokémon ne peut pas battre en retraite.", + es: "Cura 60 puntos de daño a este Pokémon. Durante tu próximo turno, este Pokémon no puede retirarse.", + it: "Cura questo Pokémon da 60 danni. Durante il tuo prossimo turno, questo Pokémon non può ritirarsi.", + pt: "Cure 60 pontos de dano deste Pokémon. Durante o seu próximo turno, este Pokémon não poderá recuar.", + de: "Heile 60 Schadenspunkte bei diesem Pokémon. Während deines nächsten Zuges kann sich dieses Pokémon nicht zurückziehen." + } + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/213.ts b/data/Scarlet & Violet/Surging Sparks/213.ts new file mode 100644 index 000000000..dc009e2df --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/213.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Kecleon", + fr: "Kecleon", + es: "Kecleon", + it: "Kecleon", + pt: "Kecleon", + de: "Kecleon" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Expert Hider", + fr: "Expert en Camouflage", + es: "As del Camuflaje", + it: "Specialista di Nascondigli", + pt: "Mestre da Camuflagem", + de: "Verbergungskünstler" + }, + + effect: { + en: "If any damage is done to this Pokémon by attacks, flip a coin. If heads, prevent that damage.", + fr: "Si des dégâts sont infligés à ce Pokémon par des attaques, lancez une pièce. Si c'est face, évitez ces dégâts.", + es: "Si se inflige cualquier daño a este Pokémon por ataques, lanza 1 moneda. Si sale cara, se evita ese daño.", + it: "Se questo Pokémon subisce danni da qualsiasi attacco, lancia una moneta. Se esce testa, previeni quei danni.", + pt: "Se qualquer dano for causado a este Pokémon por ataques, jogue uma moeda. Se sair cara, previna aquele dano.", + de: "Wenn diesem Pokémon durch Attacken Schaden zugefügt wird, wirf 1 Münze. Verhindere bei Kopf jenen Schaden." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Lick Whip", + fr: "Fouet Léchouille", + es: "Latigazo Lingual", + it: "Leccafrusta", + pt: "Chicote de Língua", + de: "Schleckerpeitsche" + }, + + effect: { + en: "This attack does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige 30 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque hace 30 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge 30 danni a uno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque causa 30 pontos de dano a 1 dos Pokémon do seu oponente. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)", + de: "Diese Attacke fügt 1 Pokémon deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/214.ts b/data/Scarlet & Violet/Surging Sparks/214.ts new file mode 100644 index 000000000..8fd5893c6 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/214.ts @@ -0,0 +1,66 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Braviary", + fr: "Gueriaigle", + es: "Braviary", + it: "Braviary", + pt: "Braviary", + de: "Washakwil" + }, + + rarity: "Illustration rare", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Drag Off", + fr: "Traîne", + es: "Jalón", + it: "Trascinato Via", + pt: "Arrastar para Fora", + de: "Wegzerren" + }, + + effect: { + en: "Switch in 1 of your opponent's Benched Pokémon to the Active Spot. This attack does 40 damage to the new Active Pokémon.", + fr: "Envoyez l'un des Pokémon de Banc de votre adversaire sur le Poste Actif. Cette attaque inflige 40 dégâts au nouveau Pokémon Actif.", + es: "Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo. Este ataque hace 40 puntos de daño al nuevo Pokémon Activo.", + it: "Sostituisci uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon in posizione attiva. Questo attacco infligge 40 danni al nuovo Pokémon attivo.", + pt: "Mande 1 dos Pokémon no Banco do seu oponente para o Campo Ativo. Este ataque causa 40 pontos de dano ao novo Pokémon Ativo.", + de: "Wechsle 1 Pokémon von der Bank deines Gegners in die Aktive Position ein. Diese Attacke fügt dem neuen Aktiven Pokémon 40 Schadenspunkte zu." + } + }, { + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Blasting Wind", + fr: "Vent Impitoyable", + es: "Vientos Explosivos", + it: "Vento Distruttivo", + pt: "Vendaval Avassalador", + de: "Peitschender Wind" + }, + + damage: 120 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/215.ts b/data/Scarlet & Violet/Surging Sparks/215.ts new file mode 100644 index 000000000..c26ad8e6f --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/215.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Durant ex", + fr: "Fermite-ex", + es: "Durant ex", + it: "Durant-ex", + pt: "Durant ex", + de: "Fermicula-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 190, + types: ["Grass"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Sudden Shearing", + fr: "Tonte Soudaine", + es: "Descarte Súbito", + it: "Taglio Improvviso", + pt: "Corte Súbito", + de: "Abruptes Abscheren" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may discard the top card of your opponent's deck.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez défausser la carte du dessus du deck de votre adversaire.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes descartar la primera carta de la baraja de tu rival.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi scartare la prima carta del mazzo del tuo avversario.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá descartar a carta de cima do baralho do seu oponente.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du die oberste Karte des Decks deines Gegners auf seinen Ablagestapel legen." + } + }], + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Vengeful Crush", + fr: "Broyage Vengeur", + es: "Destrucción Vengativa", + it: "Distruzione Vendicativa", + pt: "Esmagamento Vingativo", + de: "Rächender Zermalmer" + }, + + 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: "120+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/216.ts b/data/Scarlet & Violet/Surging Sparks/216.ts new file mode 100644 index 000000000..1e1934573 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/216.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Scovillain ex", + fr: "Scovilain-ex", + es: "Scovillain ex", + it: "Scovillain-ex", + pt: "Scovillain ex", + de: "Halupenjo-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 260, + types: ["Fire"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Double Type", + fr: "Type Double", + es: "Doble Tipo", + it: "Doppio Tipo", + pt: "Tipo Duplo", + de: "Doppeltyp" + }, + + effect: { + en: "As long as this Pokémon is in play, it is Grass and Fire type.", + fr: "Tant que ce Pokémon est en jeu, il est de type Grass et Fire.", + es: "Mientras este Pokémon esté en juego, es de tipo Grass y Fire.", + it: "Fintanto che questo Pokémon è in gioco, è di tipo Grass e Fire.", + pt: "Enquanto este Pokémon estiver em jogo, será um Pokémon de tipo Grass e Fire.", + de: "Solange dieses Pokémon im Spiel ist, ist es vom Typ Grass und Fire." + } + }], + + attacks: [{ + cost: ["Fire", "Fire"], + + name: { + en: "Spicy Rage", + fr: "Frénésie Pimentée", + es: "Furia Picante", + it: "Ira Piccante", + pt: "Ira Apimentada", + de: "Scharfer Zorn" + }, + + effect: { + en: "This attack does 70 more damage for each damage counter on this Pokémon.", + fr: "Cette attaque inflige 70 dégâts supplémentaires pour chaque marqueur de dégâts sur ce Pokémon.", + es: "Este ataque hace 70 puntos de daño más por cada contador de daño en este Pokémon.", + it: "Questo attacco infligge 70 danni in più per ogni segnalino danno presente su questo Pokémon.", + pt: "Este ataque causa 70 pontos de dano a mais para cada contador de dano neste Pokémon.", + de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 70 Schadenspunkte mehr zu." + }, + + damage: "10+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/217.ts b/data/Scarlet & Violet/Surging Sparks/217.ts new file mode 100644 index 000000000..821fb4695 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/217.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Milotic ex", + fr: "Milobellus-ex", + es: "Milotic ex", + it: "Milotic-ex", + pt: "Milotic ex", + de: "Milotic-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Sparkling Scales", + fr: "Écailles Étincelantes", + es: "Escamas Centelleantes", + it: "Scaglie Scintillanti", + pt: "Escamas Cintilantes", + de: "Funkelnde Schuppen" + }, + + effect: { + en: "Prevent all damage from and effects of attacks from your opponent's Tera Pokémon done to this Pokémon.", + fr: "Évitez tous les dégâts et les effets d'attaques infligés à ce Pokémon par les Pokémon Téracristal de votre adversaire.", + es: "Se evitan todo el daño y todos los efectos de los ataques de los Pokémon Teracristal de tu rival infligidos a este Pokémon.", + it: "Previeni sia i danni che gli effetti degli attacchi dei Pokémon Teracristal del tuo avversario inflitti a questo Pokémon.", + pt: "Previna todo o dano e os efeitos de ataques dos Pokémon Tera do seu oponente causados a este Pokémon.", + de: "Verhindere allen Schaden durch und alle Effekte von Attacken von Terakristall-Pokémon deines Gegners, die diesem Pokémon zugefügt werden." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Hypno Splash", + fr: "Hypnoplouf", + es: "Salpicadura Hipnótica", + it: "Ipnospruzzo", + pt: "Explosão Hipnótica", + de: "Hypnospritzer" + }, + + 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: 160 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/218.ts b/data/Scarlet & Violet/Surging Sparks/218.ts new file mode 100644 index 000000000..78c16e668 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/218.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Black Kyurem ex", + fr: "Kyurem Noir-ex", + es: "Kyurem Negro ex", + it: "Kyurem Nero-ex", + pt: "Kyurem Preto ex", + de: "Schwarzes Kyurem-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 230, + types: ["Water"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Ice Age", + fr: "Période Glaciaire", + es: "Era de Hielo", + it: "Era Glaciale", + pt: "Era do Gelo", + de: "Eiszeitalter" + }, + + effect: { + en: "If your opponent's Active Pokémon is a Dragon Pokémon, it is now Paralyzed.", + fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Dragon, il est maintenant Paralysé.", + es: "Si el Pokémon Activo de tu rival es un Pokémon Dragon, pasa a estar Paralizado.", + it: "Se il Pokémon attivo del tuo avversario è di tipo Dragon, viene paralizzato.", + pt: "Se o Pokémon Ativo do seu oponente for um Pokémon Dragon, ele agora estará Paralisado.", + de: "Wenn das Aktive Pokémon deines Gegners ein Dragon-Pokémon ist, ist es jetzt paralysiert." + }, + + damage: 90 + }, { + cost: ["Water", "Water", "Colorless", "Colorless"], + + name: { + en: "Black Frost", + fr: "Givre Noir", + es: "Escarcha Negra", + it: "Nerogelo", + pt: "Geada Negra", + de: "Schwarzer Frost" + }, + + effect: { + en: "This Pokémon also does 30 damage to itself.", + fr: "Ce Pokémon s'inflige aussi 30 dégâts.", + es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.", + it: "Questo Pokémon infligge anche 30 danni a se stesso.", + pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.", + de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu." + }, + + damage: 250 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/219.ts b/data/Scarlet & Violet/Surging Sparks/219.ts new file mode 100644 index 000000000..c3b1b8f77 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/219.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex", + fr: "Pikachu-ex", + es: "Pikachu ex", + it: "Pikachu-ex", + pt: "Pikachu ex", + de: "Pikachu-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Resolute Heart", + fr: "Cœur Résolu", + es: "Corazón Resuelto", + it: "Cuore Risoluto", + pt: "Coração Obstinado", + de: "Resolutes Herz" + }, + + effect: { + en: "If this Pokémon has full HP and would be Knocked Out by damage from an attack, it is not Knocked Out, and its remaining HP becomes 10.", + fr: "Si ce Pokémon a tous ses PV et doit être mis K.O. par les dégâts d'une attaque, il n'est pas mis K.O. et il lui reste 10 PV.", + es: "Si este Pokémon tiene todos sus PS y fuese a quedar Fuera de Combate por el daño de un ataque, no queda Fuera de Combate y sus PS restantes pasan a ser 10.", + it: "Se questo Pokémon ha tutti i PS e sta per essere messo KO dai danni inflitti da un attacco, non viene messo KO e i suoi PS rimanenti diventano 10.", + pt: "Se este Pokémon tiver PS cheio e estiver prestes a ser Nocauteado pelo dano de um ataque, ele não será Nocauteado e o PS restante dele será 10.", + de: "Wenn dieses Pokémon volle KP hat und durch Schaden einer Attacke kampfunfähig würde, wird es nicht kampfunfähig und seine verbleibenden KP sind gleich 10." + } + }], + + attacks: [{ + cost: ["Grass", "Lightning", "Metal"], + + name: { + en: "Topaz Bolt", + fr: "Éclair Topaze", + es: "Rayo Topacio", + it: "Fulmine di Topazio", + pt: "Raio Topázio", + de: "Topas-Blitz" + }, + + effect: { + en: "Discard 3 Energy from this Pokémon.", + fr: "Défaussez 3 Énergies de ce Pokémon.", + es: "Descarta 3 Energías de este Pokémon.", + it: "Scarta tre Energie da questo Pokémon.", + pt: "Descarte 3 Energias deste Pokémon.", + de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 300 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/220.ts b/data/Scarlet & Violet/Surging Sparks/220.ts new file mode 100644 index 000000000..780322d28 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/220.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Latias ex", + fr: "Latias-ex", + es: "Latias ex", + it: "Latias-ex", + pt: "Latias ex", + de: "Latias-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 210, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Skyliner", + fr: "Taxi Aérien", + es: "Estela", + it: "Aviolinea", + pt: "Carona Aérea", + de: "Luftlinie" + }, + + effect: { + en: "Your Basic Pokémon in play have no Retreat Cost.", + fr: "Vos Pokémon de base en jeu n'ont pas de Coût de Retraite.", + es: "Tus Pokémon Básicos en juego no tienen ningún Coste de Retirada.", + it: "I tuoi Pokémon Base in gioco non hanno costo di ritirata.", + pt: "Seus Pokémon Básicos em jogo não têm custo de Recuo.", + de: "Deine Basis-Pokémon im Spiel haben keine Rückzugskosten." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Eon Blade", + fr: "Lame Éon", + es: "Tajo Eón", + it: "Lama Eone", + pt: "Lâmina da Eternidade", + de: "Äonenklinge" + }, + + 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: 200 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/221.ts b/data/Scarlet & Violet/Surging Sparks/221.ts new file mode 100644 index 000000000..f13dcb75a --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/221.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Palossand ex", + fr: "Trépassable-ex", + es: "Palossand ex", + it: "Palossand-ex", + pt: "Palossand ex", + de: "Colossand-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 280, + types: ["Psychic"], + stage: "Stage1", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Sand Tomb", + fr: "Tourbi-Sable", + es: "Bucle Arena", + it: "Sabbiotomba", + pt: "Fosso de Areia", + de: "Sandgrab" + }, + + effect: { + en: "During your opponent's next turn, the Defending Pokémon can't retreat.", + fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.", + es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.", + it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.", + pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.", + de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen." + }, + + damage: 160 + }, { + cost: ["Water", "Psychic", "Fighting"], + + name: { + en: "Barite Jail", + fr: "Prison de Barytine", + es: "Prisión Barita", + it: "Sbarre di Barite", + pt: "Prisão de Barita", + de: "Baryt-Gefängnis" + }, + + effect: { + en: "Put damage counters on each of your opponent's Benched Pokémon until its remaining HP is 100.", + fr: "Placez des marqueurs de dégâts sur chacun des Pokémon de Banc de votre adversaire jusqu'à ce qu'il ne lui reste que 100 PV.", + es: "Pon contadores de daño en cada uno de los Pokémon en Banca de tu rival hasta que le queden 100 PS a cada uno de ellos.", + it: "Metti dei segnalini danno su ciascuno dei Pokémon nella panchina del tuo avversario finché i suoi PS rimanenti diventano 100.", + pt: "Coloque contadores de dano em cada um dos Pokémon no Banco do seu oponente até o PS restante dele ser 100.", + de: "Lege so lange Schadensmarken auf jedes Pokémon auf der Bank deines Gegners, bis seine verbleibenden KP gleich 100 sind." + } + }], + + retreat: 4, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/222.ts b/data/Scarlet & Violet/Surging Sparks/222.ts new file mode 100644 index 000000000..50eedc67b --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/222.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Flygon ex", + fr: "Libégon-ex", + es: "Flygon ex", + it: "Flygon-ex", + pt: "Flygon ex", + de: "Libelldra-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 310, + types: ["Fighting"], + stage: "Stage2", + + attacks: [{ + cost: ["Fighting"], + + name: { + en: "Reversing Storm", + fr: "Tempête Inversion", + es: "Tormenta Inversión", + it: "Tempesta d'Inversione", + pt: "Tempestade Reversa", + de: "Umkehrsturm" + }, + + effect: { + en: "You may switch this Pokémon with 1 of your Benched Pokémon.", + fr: "Vous pouvez échanger ce Pokémon contre l'un de vos Pokémon de Banc.", + es: "Puedes cambiar este Pokémon por uno de tus Pokémon en Banca.", + it: "Puoi scambiare questo Pokémon con uno della tua panchina.", + pt: "Você pode trocar este Pokémon por 1 dos seus Pokémon no Banco.", + de: "Du kannst dieses Pokémon gegen 1 Pokémon auf deiner Bank austauschen." + }, + + damage: 130 + }, { + cost: ["Water", "Fighting", "Metal"], + + name: { + en: "Sonic Peridot", + fr: "Péridot Sonique", + es: "Peridoto Sónico", + it: "Peridoto Sonico", + pt: "Peridoto Sônico", + de: "Schall-Peridot" + }, + + effect: { + en: "This attack does 100 damage to each of your opponent's Pokémon ex and Pokémon V. This attack's damage isn't affected by Weakness or Resistance.", + fr: "Cette attaque inflige 100 dégâts à chacun des Pokémon-ex et Pokémon-V de votre adversaire. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.", + es: "Este ataque hace 100 puntos de daño a cada uno de los Pokémon ex y Pokémon V de tu rival. El daño de este ataque no se ve afectado por Debilidad o Resistencia.", + it: "Questo attacco infligge 100 danni a ciascuno dei Pokémon-ex e dei Pokémon-V del tuo avversario. I danni di questo attacco non sono influenzati dalla debolezza o dalla resistenza.", + pt: "Este ataque causa 100 pontos de dano a cada um dos Pokémon ex e Pokémon V do seu oponente. O dano deste ataque não é afetado por Fraqueza ou Resistência.", + de: "Diese Attacke fügt jedem Pokémon-ex und Pokémon-V deines Gegners 100 Schadenspunkte zu. Der Schaden dieser Attacke wird durch Schwäche oder Resistenz nicht verändert." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/223.ts b/data/Scarlet & Violet/Surging Sparks/223.ts new file mode 100644 index 000000000..05405b386 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/223.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Hydreigon ex", + fr: "Trioxhydre-ex", + es: "Hydreigon ex", + it: "Hydreigon-ex", + pt: "Hydreigon ex", + de: "Trikephalo-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 330, + types: ["Darkness"], + stage: "Stage2", + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + en: "Crashing Headbutt", + fr: "Coup d'Boule Percutant", + es: "Cabezazo Demoledor", + it: "Bottintesta Schiacciante", + pt: "Cabeçada Estrondosa", + de: "Krachender Kopfstoß" + }, + + effect: { + en: "Discard the top 3 cards of your opponent's deck.", + fr: "Défaussez les 3 cartes du dessus du deck de votre adversaire.", + es: "Descarta las 3 primeras cartas de la baraja de tu rival.", + it: "Scarta le prime tre carte del mazzo del tuo avversario.", + pt: "Descarte as 3 cartas de cima do baralho do seu oponente.", + de: "Lege die obersten 3 Karten des Decks deines Gegners auf seinen Ablagestapel." + }, + + damage: 200 + }, { + cost: ["Psychic", "Darkness", "Metal", "Colorless"], + + name: { + en: "Obsidian", + fr: "Obsidienne", + es: "Obsidiana", + it: "Ossidiana", + pt: "Obsidiana", + de: "Obsidian" + }, + + effect: { + en: "This attack also does 130 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 130 dégâts à 2 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 130 puntos de daño a 2 de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 130 danni a due dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 130 pontos de dano a 2 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 auch 2 Pokémon auf der Bank deines Gegners 130 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 130 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/224.ts b/data/Scarlet & Violet/Surging Sparks/224.ts new file mode 100644 index 000000000..cf5841455 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/224.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Archaludon ex", + fr: "Pondralugon-ex", + es: "Archaludon ex", + it: "Archaludon-ex", + pt: "Archaludon ex", + de: "Briduradon-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 300, + types: ["Metal"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Assemble Alloy", + fr: "Assemblage d'Alliage", + es: "Montaje Aleación", + it: "Assemblametallo", + pt: "Montagem de Liga Metálica", + de: "Legieren" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may attach up to 2 Basic Metal Energy cards from your discard pile to your Metal Pokémon in any way you like.", + fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez attacher jusqu'à 2 cartes Énergie Metal de base de votre pile de défausse à vos Pokémon Metal, comme il vous plaît.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes unir hasta 2 cartas de Energía Metal Básica de tu pila de descartes a tus Pokémon Metal de la manera que desees.", + it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi assegnare ai tuoi Pokémon Metal fino a due carte Energia base Metal dalla tua pila degli scarti nel modo che preferisci.", + pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá ligar até 2 cartas de Energia Metal Básica da sua pilha de descarte aos seus Pokémon Metal como desejar.", + de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du bis zu 2 Basis-Metal-Energiekarten aus deinem Ablagestapel beliebig an deine Metal-Pokémon anlegen." + } + }], + + attacks: [{ + cost: ["Metal", "Metal", "Metal"], + + name: { + en: "Metal Defender", + fr: "Défense Métallique", + es: "Defensor Metálico", + it: "Metalloscudo", + pt: "Defensor Metálico", + de: "Metallverteidiger" + }, + + effect: { + en: "During your opponent's next turn, this Pokémon has no Weakness.", + fr: "Pendant le prochain tour de votre adversaire, ce Pokémon n'a pas de Faiblesse.", + es: "Durante el próximo turno de tu rival, este Pokémon no tiene ninguna Debilidad.", + it: "Durante il prossimo turno del tuo avversario, questo Pokémon non ha debolezza.", + pt: "Durante o próximo turno do seu oponente, este Pokémon não terá Fraqueza.", + de: "Während des nächsten Zuges deines Gegners hat dieses Pokémon keine Schwäche." + }, + + damage: 220 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/225.ts b/data/Scarlet & Violet/Surging Sparks/225.ts new file mode 100644 index 000000000..af7d678d2 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/225.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Exeggutor ex", + fr: "Noadkoko d'Alola-ex", + es: "Exeggutor de Alola ex", + it: "Exeggutor di Alola-ex", + pt: "Exeggutor de Alola ex", + de: "Alola-Kokowei-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass", "Water"], + + name: { + en: "Tropical Frenzy", + fr: "Frénésie Tropicale", + es: "Frenesí Tropical", + it: "Frenesia Tropicale", + pt: "Delírio Tropical", + de: "Tropenwahn" + }, + + effect: { + en: "You may attach any number of Basic Energy cards from your hand to your Pokémon in any way you like.", + fr: "Vous pouvez attacher le nombre voulu de cartes Énergie de base de votre main à vos Pokémon comme il vous plaît.", + es: "Puedes unir cualquier cantidad de cartas de Energía Básica de tu mano a tus Pokémon de la manera que desees.", + it: "Puoi assegnare ai tuoi Pokémon un numero qualsiasi di carte Energia base dalla tua mano nel modo che preferisci.", + pt: "Você pode ligar qualquer número de cartas de Energia Básica da sua mão aos seus Pokémon como desejar.", + de: "Du kannst beliebig viele Basis-Energiekarten aus deiner Hand beliebig an deine Pokémon anlegen." + }, + + damage: 150 + }, { + cost: ["Grass", "Water", "Fighting"], + + name: { + en: "Swinging Sphene", + fr: "Sphène Oscillant", + es: "Esfena Oscilante", + it: "Sfene Oscillante", + pt: "Esfênio Oscilante", + de: "Sphen-Schwung" + }, + + effect: { + en: "Flip a coin. If heads, Knock Out your opponent's Active Basic Pokémon. If tails, Knock Out 1 of your opponent's Benched Basic Pokémon.", + fr: "Lancez une pièce. Si c'est face, mettez K.O. le Pokémon Actif de base de votre adversaire. Si c'est pile, mettez K.O. l'un des Pokémon de Banc de base de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, deja Fuera de Combate al Pokémon Básico Activo de tu rival. Si sale cruz, deja Fuera de Combate a uno de los Pokémon Básicos en Banca de tu rival.", + it: "Lancia una moneta. Se esce testa, metti KO il Pokémon Base attivo del tuo avversario. Se esce croce, metti KO uno dei Pokémon Base nella panchina del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, Nocauteie o Pokémon Básico Ativo do seu oponente. Se sair coroa, Nocauteie 1 dos Pokémon Básicos no Banco do seu oponente.", + de: "Wirf 1 Münze. Mache bei Kopf das Aktive Basis-Pokémon deines Gegners kampfunfähig. Mache bei Zahl 1 Basis-Pokémon auf der Bank deines Gegners kampfunfähig." + } + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/226.ts b/data/Scarlet & Violet/Surging Sparks/226.ts new file mode 100644 index 000000000..a92cc88f4 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/226.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Tatsugiri ex", + fr: "Nigirigon-ex", + es: "Tatsugiri ex", + it: "Tatsugiri-ex", + pt: "Tatsugiri ex", + de: "Nigiragi-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 160, + types: ["Dragon"], + stage: "Basic", + + attacks: [{ + cost: ["Fire", "Water"], + + name: { + en: "Surprise Pump", + fr: "Pompe Surprise", + es: "Bomba Sorpresa", + it: "Pompa a Sorpresa", + pt: "Jato Surpresa", + de: "Überraschungspumpe" + }, + + 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: 100 + }, { + cost: ["Fire", "Water", "Darkness"], + + name: { + en: "Cinnabar Lure", + fr: "Leurre Cinabre", + es: "Cebo Cinabrio", + it: "Esca di Cinabro", + pt: "Cinabre Sedutor", + de: "Zinnober-Köder" + }, + + effect: { + en: "Look at the top 10 cards of your deck. You may put any number of Pokémon you find there onto your Bench. Shuffle the other cards back into your deck.", + fr: "Regardez les 10 cartes du dessus de votre deck. Vous pouvez placer sur votre Banc le nombre voulu de Pokémon que vous y trouvez. Mélangez les autres cartes avec votre deck.", + es: "Mira las 10 primeras cartas de tu baraja. Puedes poner cualquier cantidad de Pokémon que encuentres entre ellas en tu Banca. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Guarda le prime 10 carte del tuo mazzo. Puoi mettere un numero qualsiasi di Pokémon presenti tra esse nella tua panchina. Rimischia le altre carte nel tuo mazzo.", + pt: "Olhe as 10 cartas de cima do seu baralho. Você pode colocar qualquer número de Pokémon que encontrar lá no seu Banco. Embaralhe as outras cartas de volta no seu baralho.", + de: "Schau dir die obersten 10 Karten deines Decks an. Du kannst beliebig viele Pokémon, die du dort findest, auf deine Bank legen. Mische die anderen Karten zurück in dein Deck." + } + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/227.ts b/data/Scarlet & Violet/Surging Sparks/227.ts new file mode 100644 index 000000000..2aff828ce --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/227.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Slaking ex", + fr: "Monaflèmit-ex", + es: "Slaking ex", + it: "Slaking-ex", + pt: "Slaking ex", + de: "Letarking-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 340, + types: ["Colorless"], + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Born to Slack", + fr: "Procrastinateur-Né", + es: "Holgazán Nato", + it: "Pigrizia Innata", + pt: "Preguiça de Nascença", + de: "Meister der Lethargie" + }, + + effect: { + en: "If your opponent has no Pokémon ex or Pokémon V in play, this Pokémon can't attack.", + fr: "Si votre adversaire n'a aucun Pokémon-ex ni Pokémon-V en jeu, ce Pokémon ne peut pas attaquer.", + es: "Si tu rival no tiene ningún Pokémon ex o Pokémon V en juego, este Pokémon no puede atacar.", + it: "Se il tuo avversario non ha Pokémon-ex o Pokémon-V in gioco, questo Pokémon non può attaccare.", + pt: "Se o seu oponente não tiver Pokémon ex ou Pokémon V em jogo, este Pokémon não poderá atacar.", + de: "Wenn dein Gegner kein Pokémon-ex oder Pokémon-V im Spiel hat, kann dieses Pokémon nicht angreifen." + } + }], + + attacks: [{ + cost: ["Colorless", "Colorless"], + + name: { + en: "Great Swing", + fr: "Grande Frappe", + es: "Golpe Excelente", + it: "Colpo Immane", + pt: "Murrão", + de: "Riesiger Rundschlag" + }, + + effect: { + en: "Discard an Energy from this Pokémon.", + fr: "Défaussez une Énergie de ce Pokémon.", + es: "Descarta 1 Energía de este Pokémon.", + it: "Scarta un'Energia da questo Pokémon.", + pt: "Descarte uma Energia deste Pokémon.", + de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 280 + }], + + retreat: 4, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/228.ts b/data/Scarlet & Violet/Surging Sparks/228.ts new file mode 100644 index 000000000..6c4f37911 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/228.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Cyclizar ex", + fr: "Motorizard-ex", + es: "Cyclizar ex", + it: "Cyclizar-ex", + pt: "Cyclizar ex", + de: "Mopex-ex" + }, + + rarity: "Ultra Rare", + category: "Pokemon", + hp: 210, + types: ["Colorless"], + stage: "Basic", + + attacks: [{ + cost: ["Colorless", "Colorless", "Colorless"], + + name: { + en: "Break Through", + fr: "Percée", + es: "Abrir Paso", + it: "Irruzione", + pt: "Atravessar", + de: "Eine Bresche schlagen" + }, + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 30 dégâts à l'un des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 30 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 30 danni a uno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 30 pontos de dano 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 auch 1 Pokémon auf der Bank deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 130 + }, { + cost: ["Grass", "Fire", "Psychic"], + + name: { + en: "Zircon Road", + fr: "Route Zircon", + es: "Camino de Zircones", + it: "Strada di Zircone", + pt: "Via de Zircão", + de: "Zirkon-Strecke" + }, + + effect: { + en: "You may draw 5 cards.", + fr: "Vous pouvez piocher 5 cartes.", + es: "Puedes robar 5 cartas.", + it: "Puoi pescare cinque carte.", + pt: "Você pode comprar 5 cartas.", + de: "Du kannst 5 Karten ziehen." + }, + + damage: 180 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/229.ts b/data/Scarlet & Violet/Surging Sparks/229.ts new file mode 100644 index 000000000..0ff897805 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/229.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Clemont's Quick Wit", + fr: "Esprit Vif de Lem", + es: "Agudeza de Lem", + it: "Arguzia di Lem", + pt: "Sagacidade do Clemont", + de: "Citros Scharfsinn" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Heal 60 damage from each of your Lightning Pokémon.", + fr: "Soignez 60 dégâts de chacun de vos Pokémon Lightning.", + es: "Cura 60 puntos de daño a cada uno de tus Pokémon Lightning.", + it: "Cura ciascuno dei tuoi Pokémon Lightning da 60 danni.", + pt: "Cure 60 pontos de dano de cada um dos seus Pokémon Lightning.", + de: "Heile 60 Schadenspunkte bei jedem deiner Lightning-Pokémon." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/230.ts b/data/Scarlet & Violet/Surging Sparks/230.ts new file mode 100644 index 000000000..0969685c1 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/230.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Cyrano", + fr: "Cyano", + es: "Mirtilo", + it: "Bluebert", + pt: "Cyrano", + de: "Cyano" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Search your deck for up to 3 Pokémon ex, reveal them, and put them into your hand. Then, shuffle your deck.", + fr: "Cherchez dans votre deck jusqu'à 3 Pokémon-ex, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", + es: "Busca en tu baraja hasta 3 Pokémon ex, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja.", + it: "Cerca nel tuo mazzo fino a tre Pokémon-ex, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.", + pt: "Procure por até 3 Pokémon ex no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.", + de: "Durchsuche dein Deck nach bis zu 3 Pokémon-ex, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/231.ts b/data/Scarlet & Violet/Surging Sparks/231.ts new file mode 100644 index 000000000..d15e23765 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/231.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Drasna", + fr: "Dracéna", + es: "Drácena", + it: "Lilia", + pt: "Drasna", + de: "Dracena" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Shuffle your hand into your deck. Then, flip a coin. If heads, draw 8 cards. If tails, draw 3 cards.", + fr: "Mélangez votre main avec votre deck. Ensuite, lancez une pièce. Si c'est face, piochez 8 cartes. Si c'est pile, piochez 3 cartes.", + es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, lanza 1 moneda. Si sale cara, roba 8 cartas. Si sale cruz, roba 3 cartas.", + it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi lancia una moneta. Se esce testa, pesca otto carte. Se esce croce, pescane tre.", + pt: "Embaralhe a sua mão no seu baralho. Em seguida, jogue uma moeda. Se sair cara, compre 8 cartas. Se sair coroa, compre 3 cartas.", + de: "Mische deine Handkarten in dein Deck. Wirf anschließend 1 Münze. Ziehe bei Kopf 8 Karten. Ziehe bei Zahl 3 Karten." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/232.ts b/data/Scarlet & Violet/Surging Sparks/232.ts new file mode 100644 index 000000000..666b3b386 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/232.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Drayton", + fr: "Irido", + es: "Levi", + it: "Aris", + pt: "Drayton", + de: "Levy" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Look at the top 7 cards of your deck. You may reveal a Pokémon and a Trainer card you find there and put them into your hand. Shuffle the other cards back into your deck.", + fr: "Regardez les 7 cartes du dessus de votre deck. Vous pouvez montrer un Pokémon et une carte Dresseur que vous y trouvez, puis les ajouter à votre main. Mélangez les autres cartes avec votre deck.", + es: "Mira las 7 primeras cartas de tu baraja. Puedes enseñar 1 Pokémon y 1 carta de Entrenador que encuentres entre ellas y ponerlas en tu mano. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Guarda le prime sette carte del tuo mazzo. Puoi mostrare un Pokémon e una carta Allenatore presenti tra esse e aggiungerli alle carte che hai in mano. Poi rimischia le altre carte nel tuo mazzo.", + pt: "Olhe as 7 cartas de cima do seu baralho. Você pode revelar um Pokémon e uma carta de Treinador que encontrar lá e colocá-los na sua mão. Embaralhe as outras cartas de volta no seu baralho.", + de: "Schau dir die obersten 7 Karten deines Decks an. Du kannst 1 Pokémon und 1 Trainerkarte, die du dort findest, deinem Gegner zeigen und auf deine Hand nehmen. Mische die anderen Karten zurück in dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/233.ts b/data/Scarlet & Violet/Surging Sparks/233.ts new file mode 100644 index 000000000..9132cfb79 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/233.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Jasmine's Gaze", + fr: "Regard de Jasmine", + es: "Mirada de Yasmina", + it: "Sguardo di Jasmine", + pt: "Olhar da Jasmine", + de: "Jasmins Blick" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "During your opponent's next turn, all of your Pokémon take 30 less damage from attacks from your opponent's Pokémon (after applying Weakness and Resistance). (This includes new Pokémon that come into play.)", + fr: "Pendant le prochain tour de votre adversaire, tous vos Pokémon subissent 30 dégâts de moins provenant des attaques des Pokémon de votre adversaire (après application de la Faiblesse et de la Résistance). (Cela comprend les nouveaux Pokémon qui sont mis en jeu.)", + es: "Durante el próximo turno de tu rival, los ataques de los Pokémon de tu rival hacen 30 puntos de daño menos a todos tus Pokémon (después de aplicar Debilidad y Resistencia). (Esto incluye los nuevos Pokémon que entren en juego).", + it: "Durante il prossimo turno del tuo avversario, i tuoi Pokémon subiscono 30 danni in meno dagli attacchi dei Pokémon del tuo avversario, dopo aver applicato debolezza e resistenza. Questo include i nuovi Pokémon entrati in gioco.", + pt: "Durante o próximo turno do seu oponente, todos os seus Pokémon receberão 30 pontos de dano a menos de ataques dos Pokémon do seu oponente (depois de aplicar Fraqueza e Resistência). (Isto inclui novos Pokémon que entrarem em jogo.)", + de: "Während des nächsten Zuges deines Gegners werden allen deinen Pokémon durch Attacken von Pokémon deines Gegners 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden). (Dies schließt neue Pokémon ein, die ins Spiel gebracht werden.)" + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/234.ts b/data/Scarlet & Violet/Surging Sparks/234.ts new file mode 100644 index 000000000..409774ae3 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/234.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Lisia's Appeal", + fr: "Charme d'Atalante", + es: "Atracción de Ariana", + it: "Fascino di Orthilla", + pt: "Apelo da Elisia", + de: "Xenias Aufruf" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Switch in 1 of your opponent's Benched Basic Pokémon to the Active Spot. If you do, the new Active Pokémon is now Confused.", + fr: "Envoyez l'un des Pokémon de Banc de base de votre adversaire sur le Poste Actif. Dans ce cas, le nouveau Pokémon Actif est maintenant Confus.", + es: "Cambia 1 de los Pokémon Básicos en Banca de tu rival por el Pokémon que esté en el Puesto Activo. Si lo haces, el nuevo Pokémon Activo pasa a estar Confundido.", + it: "Sostituisci uno dei Pokémon Base nella panchina del tuo avversario con il suo Pokémon in posizione attiva. Se lo fai, il nuovo Pokémon attivo viene confuso.", + pt: "Mande 1 dos Pokémon Básicos no Banco do seu oponente para o Campo Ativo. Se fizer isto, o novo Pokémon Ativo agora estará Confuso.", + de: "Wechsle 1 Basis-Pokémon von der Bank deines Gegners in die Aktive Position ein. Wenn du das machst, ist das neue Aktive Pokémon jetzt verwirrt." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/235.ts b/data/Scarlet & Violet/Surging Sparks/235.ts new file mode 100644 index 000000000..17247e76e --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/235.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Surfer", + fr: "Surfeur", + es: "Surfista", + it: "Surfista", + pt: "Surfista", + de: "Surfer" + }, + + rarity: "Ultra Rare", + category: "Trainer", + + effect: { + en: "Switch your Active Pokémon with 1 of your Benched Pokémon. If you do, draw cards until you have 5 cards in your hand.", + fr: "Échangez votre Pokémon Actif contre l'un de vos Pokémon de Banc. Dans ce cas, piochez des cartes jusqu'à en avoir 5 en main.", + es: "Cambia tu Pokémon Activo por uno de tus Pokémon en Banca. Si lo haces, roba cartas hasta que tengas 5 cartas en tu mano.", + it: "Scambia il tuo Pokémon attivo con uno della tua panchina. Se lo fai, pesca fino ad avere cinque carte in mano.", + pt: "Troque o seu Pokémon Ativo por 1 dos seus Pokémon no Banco. Se fizer isto, compre cartas até ter 5 cartas na sua mão.", + de: "Tausche dein Aktives Pokémon gegen 1 Pokémon auf deiner Bank aus. Wenn du das machst, ziehe so lange Karten, bis du 5 Karten auf deiner Hand hast." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/236.ts b/data/Scarlet & Violet/Surging Sparks/236.ts new file mode 100644 index 000000000..adb4253ec --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/236.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Durant ex", + fr: "Fermite-ex", + es: "Durant ex", + it: "Durant-ex", + pt: "Durant ex", + de: "Fermicula-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 190, + types: ["Grass"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Sudden Shearing", + fr: "Tonte Soudaine", + es: "Descarte Súbito", + it: "Taglio Improvviso", + pt: "Corte Súbito", + de: "Abruptes Abscheren" + }, + + effect: { + en: "When you play this Pokémon from your hand onto your Bench during your turn, you may discard the top card of your opponent's deck.", + fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez défausser la carte du dessus du deck de votre adversaire.", + es: "Cuando juegas este Pokémon de tu mano a tu Banca durante tu turno, puedes descartar la primera carta de la baraja de tu rival.", + it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi scartare la prima carta del mazzo del tuo avversario.", + pt: "Quando você jogar este Pokémon da sua mão para o seu Banco durante o seu turno, você poderá descartar a carta de cima do baralho do seu oponente.", + de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du die oberste Karte des Decks deines Gegners auf seinen Ablagestapel legen." + } + }], + + attacks: [{ + cost: ["Grass", "Colorless", "Colorless"], + + name: { + en: "Vengeful Crush", + fr: "Broyage Vengeur", + es: "Destrucción Vengativa", + it: "Distruzione Vendicativa", + pt: "Esmagamento Vingativo", + de: "Rächender Zermalmer" + }, + + 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: "120+" + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/237.ts b/data/Scarlet & Violet/Surging Sparks/237.ts new file mode 100644 index 000000000..63d4f01a1 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/237.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Milotic ex", + fr: "Milobellus-ex", + es: "Milotic ex", + it: "Milotic-ex", + pt: "Milotic ex", + de: "Milotic-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 270, + types: ["Water"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Sparkling Scales", + fr: "Écailles Étincelantes", + es: "Escamas Centelleantes", + it: "Scaglie Scintillanti", + pt: "Escamas Cintilantes", + de: "Funkelnde Schuppen" + }, + + effect: { + en: "Prevent all damage from and effects of attacks from your opponent's Tera Pokémon done to this Pokémon.", + fr: "Évitez tous les dégâts et les effets d'attaques infligés à ce Pokémon par les Pokémon Téracristal de votre adversaire.", + es: "Se evitan todo el daño y todos los efectos de los ataques de los Pokémon Teracristal de tu rival infligidos a este Pokémon.", + it: "Previeni sia i danni che gli effetti degli attacchi dei Pokémon Teracristal del tuo avversario inflitti a questo Pokémon.", + pt: "Previna todo o dano e os efeitos de ataques dos Pokémon Tera do seu oponente causados a este Pokémon.", + de: "Verhindere allen Schaden durch und alle Effekte von Attacken von Terakristall-Pokémon deines Gegners, die diesem Pokémon zugefügt werden." + } + }], + + attacks: [{ + cost: ["Water", "Colorless", "Colorless"], + + name: { + en: "Hypno Splash", + fr: "Hypnoplouf", + es: "Salpicadura Hipnótica", + it: "Ipnospruzzo", + pt: "Explosão Hipnótica", + de: "Hypnospritzer" + }, + + 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: 160 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/238.ts b/data/Scarlet & Violet/Surging Sparks/238.ts new file mode 100644 index 000000000..89488b393 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/238.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex", + fr: "Pikachu-ex", + es: "Pikachu ex", + it: "Pikachu-ex", + pt: "Pikachu ex", + de: "Pikachu-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Resolute Heart", + fr: "Cœur Résolu", + es: "Corazón Resuelto", + it: "Cuore Risoluto", + pt: "Coração Obstinado", + de: "Resolutes Herz" + }, + + effect: { + en: "If this Pokémon has full HP and would be Knocked Out by damage from an attack, it is not Knocked Out, and its remaining HP becomes 10.", + fr: "Si ce Pokémon a tous ses PV et doit être mis K.O. par les dégâts d'une attaque, il n'est pas mis K.O. et il lui reste 10 PV.", + es: "Si este Pokémon tiene todos sus PS y fuese a quedar Fuera de Combate por el daño de un ataque, no queda Fuera de Combate y sus PS restantes pasan a ser 10.", + it: "Se questo Pokémon ha tutti i PS e sta per essere messo KO dai danni inflitti da un attacco, non viene messo KO e i suoi PS rimanenti diventano 10.", + pt: "Se este Pokémon tiver PS cheio e estiver prestes a ser Nocauteado pelo dano de um ataque, ele não será Nocauteado e o PS restante dele será 10.", + de: "Wenn dieses Pokémon volle KP hat und durch Schaden einer Attacke kampfunfähig würde, wird es nicht kampfunfähig und seine verbleibenden KP sind gleich 10." + } + }], + + attacks: [{ + cost: ["Grass", "Lightning", "Metal"], + + name: { + en: "Topaz Bolt", + fr: "Éclair Topaze", + es: "Rayo Topacio", + it: "Fulmine di Topazio", + pt: "Raio Topázio", + de: "Topas-Blitz" + }, + + effect: { + en: "Discard 3 Energy from this Pokémon.", + fr: "Défaussez 3 Énergies de ce Pokémon.", + es: "Descarta 3 Energías de este Pokémon.", + it: "Scarta tre Energie da questo Pokémon.", + pt: "Descarte 3 Energias deste Pokémon.", + de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 300 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/239.ts b/data/Scarlet & Violet/Surging Sparks/239.ts new file mode 100644 index 000000000..2ae7d259c --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/239.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Latias ex", + fr: "Latias-ex", + es: "Latias ex", + it: "Latias-ex", + pt: "Latias ex", + de: "Latias-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 210, + types: ["Psychic"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Skyliner", + fr: "Taxi Aérien", + es: "Estela", + it: "Aviolinea", + pt: "Carona Aérea", + de: "Luftlinie" + }, + + effect: { + en: "Your Basic Pokémon in play have no Retreat Cost.", + fr: "Vos Pokémon de base en jeu n'ont pas de Coût de Retraite.", + es: "Tus Pokémon Básicos en juego no tienen ningún Coste de Retirada.", + it: "I tuoi Pokémon Base in gioco non hanno costo di ritirata.", + pt: "Seus Pokémon Básicos em jogo não têm custo de Recuo.", + de: "Deine Basis-Pokémon im Spiel haben keine Rückzugskosten." + } + }], + + attacks: [{ + cost: ["Psychic", "Psychic", "Colorless"], + + name: { + en: "Eon Blade", + fr: "Lame Éon", + es: "Tajo Eón", + it: "Lama Eone", + pt: "Lâmina da Eternidade", + de: "Äonenklinge" + }, + + 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: 200 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/240.ts b/data/Scarlet & Violet/Surging Sparks/240.ts new file mode 100644 index 000000000..42be31cc7 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/240.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Hydreigon ex", + fr: "Trioxhydre-ex", + es: "Hydreigon ex", + it: "Hydreigon-ex", + pt: "Hydreigon ex", + de: "Trikephalo-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 330, + types: ["Darkness"], + stage: "Stage2", + + attacks: [{ + cost: ["Darkness", "Colorless"], + + name: { + en: "Crashing Headbutt", + fr: "Coup d'Boule Percutant", + es: "Cabezazo Demoledor", + it: "Bottintesta Schiacciante", + pt: "Cabeçada Estrondosa", + de: "Krachender Kopfstoß" + }, + + effect: { + en: "Discard the top 3 cards of your opponent's deck.", + fr: "Défaussez les 3 cartes du dessus du deck de votre adversaire.", + es: "Descarta las 3 primeras cartas de la baraja de tu rival.", + it: "Scarta le prime tre carte del mazzo del tuo avversario.", + pt: "Descarte as 3 cartas de cima do baralho do seu oponente.", + de: "Lege die obersten 3 Karten des Decks deines Gegners auf seinen Ablagestapel." + }, + + damage: 200 + }, { + cost: ["Psychic", "Darkness", "Metal", "Colorless"], + + name: { + en: "Obsidian", + fr: "Obsidienne", + es: "Obsidiana", + it: "Ossidiana", + pt: "Obsidiana", + de: "Obsidian" + }, + + effect: { + en: "This attack also does 130 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", + fr: "Cette attaque inflige aussi 130 dégâts à 2 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", + es: "Este ataque también hace 130 puntos de daño a 2 de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).", + it: "Questo attacco infligge anche 130 danni a due dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.", + pt: "Este ataque também causa 130 pontos de dano a 2 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 auch 2 Pokémon auf der Bank deines Gegners 130 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" + }, + + damage: 130 + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/241.ts b/data/Scarlet & Violet/Surging Sparks/241.ts new file mode 100644 index 000000000..986b9e2b8 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/241.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Archaludon ex", + fr: "Pondralugon-ex", + es: "Archaludon ex", + it: "Archaludon-ex", + pt: "Archaludon ex", + de: "Briduradon-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 300, + types: ["Metal"], + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Assemble Alloy", + fr: "Assemblage d'Alliage", + es: "Montaje Aleación", + it: "Assemblametallo", + pt: "Montagem de Liga Metálica", + de: "Legieren" + }, + + effect: { + en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may attach up to 2 Basic Metal Energy cards from your discard pile to your Metal Pokémon in any way you like.", + fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez attacher jusqu'à 2 cartes Énergie Metal de base de votre pile de défausse à vos Pokémon Metal, comme il vous plaît.", + es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes unir hasta 2 cartas de Energía Metal Básica de tu pila de descartes a tus Pokémon Metal de la manera que desees.", + it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi assegnare ai tuoi Pokémon Metal fino a due carte Energia base Metal dalla tua pila degli scarti nel modo che preferisci.", + pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá ligar até 2 cartas de Energia Metal Básica da sua pilha de descarte aos seus Pokémon Metal como desejar.", + de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du bis zu 2 Basis-Metal-Energiekarten aus deinem Ablagestapel beliebig an deine Metal-Pokémon anlegen." + } + }], + + attacks: [{ + cost: ["Metal", "Metal", "Metal"], + + name: { + en: "Metal Defender", + fr: "Défense Métallique", + es: "Defensor Metálico", + it: "Metalloscudo", + pt: "Defensor Metálico", + de: "Metallverteidiger" + }, + + effect: { + en: "During your opponent's next turn, this Pokémon has no Weakness.", + fr: "Pendant le prochain tour de votre adversaire, ce Pokémon n'a pas de Faiblesse.", + es: "Durante el próximo turno de tu rival, este Pokémon no tiene ninguna Debilidad.", + it: "Durante il prossimo turno del tuo avversario, questo Pokémon non ha debolezza.", + pt: "Durante o próximo turno do seu oponente, este Pokémon não terá Fraqueza.", + de: "Während des nächsten Zuges deines Gegners hat dieses Pokémon keine Schwäche." + }, + + damage: 220 + }], + + retreat: 2, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/242.ts b/data/Scarlet & Violet/Surging Sparks/242.ts new file mode 100644 index 000000000..4517db753 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/242.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Exeggutor ex", + fr: "Noadkoko d'Alola-ex", + es: "Exeggutor de Alola ex", + it: "Exeggutor di Alola-ex", + pt: "Exeggutor de Alola ex", + de: "Alola-Kokowei-ex" + }, + + rarity: "Special illustration rare", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass", "Water"], + + name: { + en: "Tropical Frenzy", + fr: "Frénésie Tropicale", + es: "Frenesí Tropical", + it: "Frenesia Tropicale", + pt: "Delírio Tropical", + de: "Tropenwahn" + }, + + effect: { + en: "You may attach any number of Basic Energy cards from your hand to your Pokémon in any way you like.", + fr: "Vous pouvez attacher le nombre voulu de cartes Énergie de base de votre main à vos Pokémon comme il vous plaît.", + es: "Puedes unir cualquier cantidad de cartas de Energía Básica de tu mano a tus Pokémon de la manera que desees.", + it: "Puoi assegnare ai tuoi Pokémon un numero qualsiasi di carte Energia base dalla tua mano nel modo che preferisci.", + pt: "Você pode ligar qualquer número de cartas de Energia Básica da sua mão aos seus Pokémon como desejar.", + de: "Du kannst beliebig viele Basis-Energiekarten aus deiner Hand beliebig an deine Pokémon anlegen." + }, + + damage: 150 + }, { + cost: ["Grass", "Water", "Fighting"], + + name: { + en: "Swinging Sphene", + fr: "Sphène Oscillant", + es: "Esfena Oscilante", + it: "Sfene Oscillante", + pt: "Esfênio Oscilante", + de: "Sphen-Schwung" + }, + + effect: { + en: "Flip a coin. If heads, Knock Out your opponent's Active Basic Pokémon. If tails, Knock Out 1 of your opponent's Benched Basic Pokémon.", + fr: "Lancez une pièce. Si c'est face, mettez K.O. le Pokémon Actif de base de votre adversaire. Si c'est pile, mettez K.O. l'un des Pokémon de Banc de base de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, deja Fuera de Combate al Pokémon Básico Activo de tu rival. Si sale cruz, deja Fuera de Combate a uno de los Pokémon Básicos en Banca de tu rival.", + it: "Lancia una moneta. Se esce testa, metti KO il Pokémon Base attivo del tuo avversario. Se esce croce, metti KO uno dei Pokémon Base nella panchina del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, Nocauteie o Pokémon Básico Ativo do seu oponente. Se sair coroa, Nocauteie 1 dos Pokémon Básicos no Banco do seu oponente.", + de: "Wirf 1 Münze. Mache bei Kopf das Aktive Basis-Pokémon deines Gegners kampfunfähig. Mache bei Zahl 1 Basis-Pokémon auf der Bank deines Gegners kampfunfähig." + } + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/243.ts b/data/Scarlet & Violet/Surging Sparks/243.ts new file mode 100644 index 000000000..3d0b798bf --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/243.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Clemont's Quick Wit", + fr: "Esprit Vif de Lem", + es: "Agudeza de Lem", + it: "Arguzia di Lem", + pt: "Sagacidade do Clemont", + de: "Citros Scharfsinn" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "Heal 60 damage from each of your Lightning Pokémon.", + fr: "Soignez 60 dégâts de chacun de vos Pokémon Lightning.", + es: "Cura 60 puntos de daño a cada uno de tus Pokémon Lightning.", + it: "Cura ciascuno dei tuoi Pokémon Lightning da 60 danni.", + pt: "Cure 60 pontos de dano de cada um dos seus Pokémon Lightning.", + de: "Heile 60 Schadenspunkte bei jedem deiner Lightning-Pokémon." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/244.ts b/data/Scarlet & Violet/Surging Sparks/244.ts new file mode 100644 index 000000000..899aaab6f --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/244.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Drayton", + fr: "Irido", + es: "Levi", + it: "Aris", + pt: "Drayton", + de: "Levy" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "Look at the top 7 cards of your deck. You may reveal a Pokémon and a Trainer card you find there and put them into your hand. Shuffle the other cards back into your deck.", + fr: "Regardez les 7 cartes du dessus de votre deck. Vous pouvez montrer un Pokémon et une carte Dresseur que vous y trouvez, puis les ajouter à votre main. Mélangez les autres cartes avec votre deck.", + es: "Mira las 7 primeras cartas de tu baraja. Puedes enseñar 1 Pokémon y 1 carta de Entrenador que encuentres entre ellas y ponerlas en tu mano. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas.", + it: "Guarda le prime sette carte del tuo mazzo. Puoi mostrare un Pokémon e una carta Allenatore presenti tra esse e aggiungerli alle carte che hai in mano. Poi rimischia le altre carte nel tuo mazzo.", + pt: "Olhe as 7 cartas de cima do seu baralho. Você pode revelar um Pokémon e uma carta de Treinador que encontrar lá e colocá-los na sua mão. Embaralhe as outras cartas de volta no seu baralho.", + de: "Schau dir die obersten 7 Karten deines Decks an. Du kannst 1 Pokémon und 1 Trainerkarte, die du dort findest, deinem Gegner zeigen und auf deine Hand nehmen. Mische die anderen Karten zurück in dein Deck." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/245.ts b/data/Scarlet & Violet/Surging Sparks/245.ts new file mode 100644 index 000000000..8b001cfaf --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/245.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Jasmine's Gaze", + fr: "Regard de Jasmine", + es: "Mirada de Yasmina", + it: "Sguardo di Jasmine", + pt: "Olhar da Jasmine", + de: "Jasmins Blick" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "During your opponent's next turn, all of your Pokémon take 30 less damage from attacks from your opponent's Pokémon (after applying Weakness and Resistance). (This includes new Pokémon that come into play.)", + fr: "Pendant le prochain tour de votre adversaire, tous vos Pokémon subissent 30 dégâts de moins provenant des attaques des Pokémon de votre adversaire (après application de la Faiblesse et de la Résistance). (Cela comprend les nouveaux Pokémon qui sont mis en jeu.)", + es: "Durante el próximo turno de tu rival, los ataques de los Pokémon de tu rival hacen 30 puntos de daño menos a todos tus Pokémon (después de aplicar Debilidad y Resistencia). (Esto incluye los nuevos Pokémon que entren en juego).", + it: "Durante il prossimo turno del tuo avversario, i tuoi Pokémon subiscono 30 danni in meno dagli attacchi dei Pokémon del tuo avversario, dopo aver applicato debolezza e resistenza. Questo include i nuovi Pokémon entrati in gioco.", + pt: "Durante o próximo turno do seu oponente, todos os seus Pokémon receberão 30 pontos de dano a menos de ataques dos Pokémon do seu oponente (depois de aplicar Fraqueza e Resistência). (Isto inclui novos Pokémon que entrarem em jogo.)", + de: "Während des nächsten Zuges deines Gegners werden allen deinen Pokémon durch Attacken von Pokémon deines Gegners 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden). (Dies schließt neue Pokémon ein, die ins Spiel gebracht werden.)" + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/246.ts b/data/Scarlet & Violet/Surging Sparks/246.ts new file mode 100644 index 000000000..d264b9c55 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/246.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Lisia's Appeal", + fr: "Charme d'Atalante", + es: "Atracción de Ariana", + it: "Fascino di Orthilla", + pt: "Apelo da Elisia", + de: "Xenias Aufruf" + }, + + rarity: "Special illustration rare", + category: "Trainer", + + effect: { + en: "Switch in 1 of your opponent's Benched Basic Pokémon to the Active Spot. If you do, the new Active Pokémon is now Confused.", + fr: "Envoyez l'un des Pokémon de Banc de base de votre adversaire sur le Poste Actif. Dans ce cas, le nouveau Pokémon Actif est maintenant Confus.", + es: "Cambia 1 de los Pokémon Básicos en Banca de tu rival por el Pokémon que esté en el Puesto Activo. Si lo haces, el nuevo Pokémon Activo pasa a estar Confundido.", + it: "Sostituisci uno dei Pokémon Base nella panchina del tuo avversario con il suo Pokémon in posizione attiva. Se lo fai, il nuovo Pokémon attivo viene confuso.", + pt: "Mande 1 dos Pokémon Básicos no Banco do seu oponente para o Campo Ativo. Se fizer isto, o novo Pokémon Ativo agora estará Confuso.", + de: "Wechsle 1 Basis-Pokémon von der Bank deines Gegners in die Aktive Position ein. Wenn du das machst, ist das neue Aktive Pokémon jetzt verwirrt." + }, + + trainerType: "Supporter", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/247.ts b/data/Scarlet & Violet/Surging Sparks/247.ts new file mode 100644 index 000000000..c6f6ddbb4 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/247.ts @@ -0,0 +1,77 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex", + fr: "Pikachu-ex", + es: "Pikachu ex", + it: "Pikachu-ex", + pt: "Pikachu ex", + de: "Pikachu-ex" + }, + + rarity: "Hyper rare", + category: "Pokemon", + hp: 200, + types: ["Lightning"], + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Resolute Heart", + fr: "Cœur Résolu", + es: "Corazón Resuelto", + it: "Cuore Risoluto", + pt: "Coração Obstinado", + de: "Resolutes Herz" + }, + + effect: { + en: "If this Pokémon has full HP and would be Knocked Out by damage from an attack, it is not Knocked Out, and its remaining HP becomes 10.", + fr: "Si ce Pokémon a tous ses PV et doit être mis K.O. par les dégâts d'une attaque, il n'est pas mis K.O. et il lui reste 10 PV.", + es: "Si este Pokémon tiene todos sus PS y fuese a quedar Fuera de Combate por el daño de un ataque, no queda Fuera de Combate y sus PS restantes pasan a ser 10.", + it: "Se questo Pokémon ha tutti i PS e sta per essere messo KO dai danni inflitti da un attacco, non viene messo KO e i suoi PS rimanenti diventano 10.", + pt: "Se este Pokémon tiver PS cheio e estiver prestes a ser Nocauteado pelo dano de um ataque, ele não será Nocauteado e o PS restante dele será 10.", + de: "Wenn dieses Pokémon volle KP hat und durch Schaden einer Attacke kampfunfähig würde, wird es nicht kampfunfähig und seine verbleibenden KP sind gleich 10." + } + }], + + attacks: [{ + cost: ["Grass", "Lightning", "Metal"], + + name: { + en: "Topaz Bolt", + fr: "Éclair Topaze", + es: "Rayo Topacio", + it: "Fulmine di Topazio", + pt: "Raio Topázio", + de: "Topas-Blitz" + }, + + effect: { + en: "Discard 3 Energy from this Pokémon.", + fr: "Défaussez 3 Énergies de ce Pokémon.", + es: "Descarta 3 Energías de este Pokémon.", + it: "Scarta tre Energie da questo Pokémon.", + pt: "Descarte 3 Energias deste Pokémon.", + de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel." + }, + + damage: 300 + }], + + retreat: 1, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/248.ts b/data/Scarlet & Violet/Surging Sparks/248.ts new file mode 100644 index 000000000..23743fdad --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/248.ts @@ -0,0 +1,75 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Exeggutor ex", + fr: "Noadkoko d'Alola-ex", + es: "Exeggutor de Alola ex", + it: "Exeggutor di Alola-ex", + pt: "Exeggutor de Alola ex", + de: "Alola-Kokowei-ex" + }, + + rarity: "Hyper rare", + category: "Pokemon", + hp: 300, + types: ["Dragon"], + stage: "Stage1", + + attacks: [{ + cost: ["Grass", "Water"], + + name: { + en: "Tropical Frenzy", + fr: "Frénésie Tropicale", + es: "Frenesí Tropical", + it: "Frenesia Tropicale", + pt: "Delírio Tropical", + de: "Tropenwahn" + }, + + effect: { + en: "You may attach any number of Basic Energy cards from your hand to your Pokémon in any way you like.", + fr: "Vous pouvez attacher le nombre voulu de cartes Énergie de base de votre main à vos Pokémon comme il vous plaît.", + es: "Puedes unir cualquier cantidad de cartas de Energía Básica de tu mano a tus Pokémon de la manera que desees.", + it: "Puoi assegnare ai tuoi Pokémon un numero qualsiasi di carte Energia base dalla tua mano nel modo che preferisci.", + pt: "Você pode ligar qualquer número de cartas de Energia Básica da sua mão aos seus Pokémon como desejar.", + de: "Du kannst beliebig viele Basis-Energiekarten aus deiner Hand beliebig an deine Pokémon anlegen." + }, + + damage: 150 + }, { + cost: ["Grass", "Water", "Fighting"], + + name: { + en: "Swinging Sphene", + fr: "Sphène Oscillant", + es: "Esfena Oscilante", + it: "Sfene Oscillante", + pt: "Esfênio Oscilante", + de: "Sphen-Schwung" + }, + + effect: { + en: "Flip a coin. If heads, Knock Out your opponent's Active Basic Pokémon. If tails, Knock Out 1 of your opponent's Benched Basic Pokémon.", + fr: "Lancez une pièce. Si c'est face, mettez K.O. le Pokémon Actif de base de votre adversaire. Si c'est pile, mettez K.O. l'un des Pokémon de Banc de base de votre adversaire.", + es: "Lanza 1 moneda. Si sale cara, deja Fuera de Combate al Pokémon Básico Activo de tu rival. Si sale cruz, deja Fuera de Combate a uno de los Pokémon Básicos en Banca de tu rival.", + it: "Lancia una moneta. Se esce testa, metti KO il Pokémon Base attivo del tuo avversario. Se esce croce, metti KO uno dei Pokémon Base nella panchina del tuo avversario.", + pt: "Jogue uma moeda. Se sair cara, Nocauteie o Pokémon Básico Ativo do seu oponente. Se sair coroa, Nocauteie 1 dos Pokémon Básicos no Banco do seu oponente.", + de: "Wirf 1 Münze. Mache bei Kopf das Aktive Basis-Pokémon deines Gegners kampfunfähig. Mache bei Zahl 1 Basis-Pokémon auf der Bank deines Gegners kampfunfähig." + } + }], + + retreat: 3, + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/249.ts b/data/Scarlet & Violet/Surging Sparks/249.ts new file mode 100644 index 000000000..fd0002dbd --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/249.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Counter Gain", + fr: "Rattrape-Riposte", + es: "Alcance Contraataque", + it: "Contrappeso", + pt: "Contra-ataque de Alcance", + de: "Kontergewinn" + }, + + rarity: "Hyper rare", + category: "Trainer", + + effect: { + en: "If you have more Prize cards remaining than your opponent, attacks used by the Pokémon this card is attached to cost Colorless less.", + fr: "S'il vous reste plus de cartes Récompense qu'à votre adversaire, les attaques utilisées par le Pokémon auquel cette carte est attachée coûtent Colorless de moins.", + es: "Si te quedan más cartas de Premio que a tu rival, los ataques usados por el Pokémon al que esté unida esta carta cuestan Colorless menos.", + it: "Se hai più carte Premio rimanenti del tuo avversario, il costo degli attacchi usati dal Pokémon a cui è assegnata questa carta è ridotto di Colorless.", + pt: "Se você tiver mais cartas de Prêmio restantes do que seu oponente, os ataques usados pelo Pokémon ao qual esta carta está ligada custarão Colorless a menos.", + de: "Wenn du mehr verbleibende Preiskarten hast als dein Gegner, verringern sich die Kosten der eingesetzten Attacken von dem Pokémon, an das diese Karte angelegt ist, um Colorless." + }, + + trainerType: "Tool", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/250.ts b/data/Scarlet & Violet/Surging Sparks/250.ts new file mode 100644 index 000000000..d667af893 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/250.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Gravity Mountain", + fr: "Montagne Gravité", + es: "Montaña Gravedad", + it: "Monte Gravità", + pt: "Montanha da Gravidade", + de: "Erdanziehungsberg" + }, + + rarity: "Hyper rare", + category: "Trainer", + + effect: { + en: "Each Stage 2 Pokémon in play (both yours and your opponent's) gets -30 HP.", + fr: "Chaque Pokémon de Niveau 2 en jeu (les vôtres et ceux de votre adversaire) perd -30 PV.", + es: "Cada Pokémon de Fase 2 en juego (tanto tuyos como de tu rival) tiene 30 PS menos.", + it: "Ciascun Pokémon di Fase 2 in gioco, sia tuo che del tuo avversario, ha 30 PS in meno.", + pt: "Cada Pokémon Estágio 2 em jogo (seus e do seu oponente) recebe 30 PS a menos.", + de: "Jedes Phase-2-Pokémon im Spiel (deine und die deines Gegners) erhält -30 KP." + }, + + trainerType: "Stadium", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/251.ts b/data/Scarlet & Violet/Surging Sparks/251.ts new file mode 100644 index 000000000..8799cc407 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/251.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Night Stretcher", + fr: "Civière Nocturne", + es: "Camilla Nocturna", + it: "Barella Notturna", + pt: "Maca Noturna", + de: "Nachttrage" + }, + + rarity: "Hyper rare", + category: "Trainer", + + effect: { + en: "Put a Pokémon or a Basic Energy card from your discard pile into your hand.", + fr: "Ajoutez un Pokémon ou une carte Énergie de base de votre pile de défausse à votre main.", + es: "Pon 1 Pokémon o 1 carta de Energía Básica de tu pila de descartes en tu mano.", + it: "Prendi un Pokémon o una carta Energia base dalla tua pila degli scarti e aggiungi la carta a quelle che hai in mano.", + pt: "Coloque um Pokémon ou uma carta de Energia Básica da sua pilha de descarte na sua mão.", + de: "Nimm 1 Pokémon oder 1 Basis-Energiekarte aus deinem Ablagestapel auf deine Hand." + }, + + trainerType: "Item", + regulationMark: "H", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Surging Sparks/252.ts b/data/Scarlet & Violet/Surging Sparks/252.ts new file mode 100644 index 000000000..2c257c0e9 --- /dev/null +++ b/data/Scarlet & Violet/Surging Sparks/252.ts @@ -0,0 +1,37 @@ +import { Card } from "../../../interfaces" +import Set from "../Surging Sparks" + +const card: Card = { + set: Set, + + name: { + en: "Jet Energy", + fr: "Énergie Propulsion", + es: "Energía Propulsión", + it: "Energia Jet", + pt: "Energia a Jato", + de: "Jet-Energie" + }, + + rarity: "Hyper rare", + category: "Energy", + + effect: { + en: "As long as this card is attached to a Pokémon, it provides Colorless Energy.\n\nWhen you attach this card from your hand to 1 of your Benched Pokémon, switch that Pokémon with your Active Pokémon.", + fr: "Tant que cette carte est attachée à un Pokémon, elle fournit une Énergie Colorless.\n\nLorsque vous attachez cette carte de votre main à l'un de vos Pokémon de Banc, échangez ce Pokémon-là contre votre Pokémon Actif.", + es: "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía Colorless.\n\nCuando unas esta carta de tu mano a uno de tus Pokémon en Banca, cambia ese Pokémon por tu Pokémon Activo.", + it: "Fintanto che questa carta è assegnata a un Pokémon, fornisce Energia Colorless.\n\nQuando assegni questa carta dalla tua mano a uno dei tuoi Pokémon in panchina, scambia quel Pokémon con il tuo Pokémon attivo.", + pt: "Enquanto esta carta estiver ligada a um Pokémon, ela fornecerá Energia Colorless.\n\nQuando você ligar esta carta da sua mão a 1 dos seus Pokémon no Banco, troque aquele Pokémon pelo seu Pokémon Ativo.", + de: "Solange diese Karte an ein Pokémon angelegt ist, liefert sie Colorless-Energie.\n\nWenn du diese Karte aus deiner Hand an 1 Pokémon auf deiner Bank anlegst, tausche jenes Pokémon gegen dein Aktives Pokémon aus." + }, + + energyType: "Normal", + regulationMark: "G", + + variants: { + normal: false, + reverse: false + } +} + +export default card diff --git a/data/Scarlet & Violet/Temporal Forces.ts b/data/Scarlet & Violet/Temporal Forces.ts index 6ef9a3b55..0d5405c30 100644 --- a/data/Scarlet & Violet/Temporal Forces.ts +++ b/data/Scarlet & Violet/Temporal Forces.ts @@ -19,7 +19,12 @@ const set: Set = { official: 162 }, - releaseDate: "2024-03-22" + releaseDate: "2024-03-22", + + abbreviations: { + official: "TEF", + fr: "FTP" + } } export default set diff --git a/data/Scarlet & Violet/Temporal Forces/015.ts b/data/Scarlet & Violet/Temporal Forces/015.ts index cc2934375..ed7aa1677 100644 --- a/data/Scarlet & Violet/Temporal Forces/015.ts +++ b/data/Scarlet & Violet/Temporal Forces/015.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/021.ts b/data/Scarlet & Violet/Temporal Forces/021.ts index fe77d1f1e..1d9430ea1 100644 --- a/data/Scarlet & Violet/Temporal Forces/021.ts +++ b/data/Scarlet & Violet/Temporal Forces/021.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/029.ts b/data/Scarlet & Violet/Temporal Forces/029.ts index 327c3c427..62d44b487 100644 --- a/data/Scarlet & Violet/Temporal Forces/029.ts +++ b/data/Scarlet & Violet/Temporal Forces/029.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/041.ts b/data/Scarlet & Violet/Temporal Forces/041.ts index 94b7967a8..0938c87f3 100644 --- a/data/Scarlet & Violet/Temporal Forces/041.ts +++ b/data/Scarlet & Violet/Temporal Forces/041.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/062.ts b/data/Scarlet & Violet/Temporal Forces/062.ts index 77c6e338b..2953092b5 100644 --- a/data/Scarlet & Violet/Temporal Forces/062.ts +++ b/data/Scarlet & Violet/Temporal Forces/062.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/078.ts b/data/Scarlet & Violet/Temporal Forces/078.ts index 2a5668dc6..ccd5f66a2 100644 --- a/data/Scarlet & Violet/Temporal Forces/078.ts +++ b/data/Scarlet & Violet/Temporal Forces/078.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/080.ts b/data/Scarlet & Violet/Temporal Forces/080.ts index 1ebf04f2f..5aceb6abf 100644 --- a/data/Scarlet & Violet/Temporal Forces/080.ts +++ b/data/Scarlet & Violet/Temporal Forces/080.ts @@ -67,9 +67,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/084.ts b/data/Scarlet & Violet/Temporal Forces/084.ts index b133cdcab..d907945d8 100644 --- a/data/Scarlet & Violet/Temporal Forces/084.ts +++ b/data/Scarlet & Violet/Temporal Forces/084.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/109.ts b/data/Scarlet & Violet/Temporal Forces/109.ts index 47fa0be72..48a49633c 100644 --- a/data/Scarlet & Violet/Temporal Forces/109.ts +++ b/data/Scarlet & Violet/Temporal Forces/109.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "H", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/117.ts b/data/Scarlet & Violet/Temporal Forces/117.ts index d8d8e655f..60c29d735 100644 --- a/data/Scarlet & Violet/Temporal Forces/117.ts +++ b/data/Scarlet & Violet/Temporal Forces/117.ts @@ -51,9 +51,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/119.ts b/data/Scarlet & Violet/Temporal Forces/119.ts index b6fbe2785..e1d2fecd2 100644 --- a/data/Scarlet & Violet/Temporal Forces/119.ts +++ b/data/Scarlet & Violet/Temporal Forces/119.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/121.ts b/data/Scarlet & Violet/Temporal Forces/121.ts index fc96f09ad..35fcd9b8e 100644 --- a/data/Scarlet & Violet/Temporal Forces/121.ts +++ b/data/Scarlet & Violet/Temporal Forces/121.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/129.ts b/data/Scarlet & Violet/Temporal Forces/129.ts index c52a7a324..f91f5fec7 100644 --- a/data/Scarlet & Violet/Temporal Forces/129.ts +++ b/data/Scarlet & Violet/Temporal Forces/129.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Temporal Forces/138.ts b/data/Scarlet & Violet/Temporal Forces/138.ts index dedec9455..c3d1c5424 100644 --- a/data/Scarlet & Violet/Temporal Forces/138.ts +++ b/data/Scarlet & Violet/Temporal Forces/138.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade.ts b/data/Scarlet & Violet/Twilight Masquerade.ts index 472f43895..6ad499510 100644 --- a/data/Scarlet & Violet/Twilight Masquerade.ts +++ b/data/Scarlet & Violet/Twilight Masquerade.ts @@ -19,7 +19,12 @@ const set: Set = { official: 167 }, - releaseDate: "2024-05-24" + releaseDate: "2024-05-24", + + abbreviations: { + official: "TWM", + fr: "MCR" + } } export default set diff --git a/data/Scarlet & Violet/Twilight Masquerade/019.ts b/data/Scarlet & Violet/Twilight Masquerade/019.ts index 65a369eb1..1661fb92f 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/019.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/019.ts @@ -67,9 +67,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/022.ts b/data/Scarlet & Violet/Twilight Masquerade/022.ts index 76a0c032a..2650199d0 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/022.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/022.ts @@ -67,9 +67,8 @@ const card: Card = { regulationMark: "H", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/024.ts b/data/Scarlet & Violet/Twilight Masquerade/024.ts index 6eacaadd6..eb0d5f664 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/024.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/024.ts @@ -67,9 +67,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/033.ts b/data/Scarlet & Violet/Twilight Masquerade/033.ts index c5ed324bd..ff8dd8f03 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/033.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/033.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/038.ts b/data/Scarlet & Violet/Twilight Masquerade/038.ts index 3082ab723..1b1049607 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/038.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/038.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/053.ts b/data/Scarlet & Violet/Twilight Masquerade/053.ts index 35f41e2e3..993fde0f6 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/053.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/053.ts @@ -61,9 +61,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/063.ts b/data/Scarlet & Violet/Twilight Masquerade/063.ts index e0ca91ae9..d281a9f57 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/063.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/063.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "H", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/065.ts b/data/Scarlet & Violet/Twilight Masquerade/065.ts index 05034f709..865053d21 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/065.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/065.ts @@ -68,9 +68,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/082.ts b/data/Scarlet & Violet/Twilight Masquerade/082.ts index ed0ff7fee..f2bf2f9f9 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/082.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/082.ts @@ -68,9 +68,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/093.ts b/data/Scarlet & Violet/Twilight Masquerade/093.ts index ca09c53d2..e55a5bb40 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/093.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/093.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "H", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/095.ts b/data/Scarlet & Violet/Twilight Masquerade/095.ts index e09aea2df..f6d55a4d4 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/095.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/095.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "H", variants: { - normal: false, - reverse: false + normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/096.ts b/data/Scarlet & Violet/Twilight Masquerade/096.ts index 4ac78d1aa..fc26043b9 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/096.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/096.ts @@ -69,9 +69,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/100.ts b/data/Scarlet & Violet/Twilight Masquerade/100.ts index acc31b046..68c1141d4 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/100.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/100.ts @@ -67,9 +67,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/110.ts b/data/Scarlet & Violet/Twilight Masquerade/110.ts index c575ec449..977d9d705 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/110.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/110.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/111.ts b/data/Scarlet & Violet/Twilight Masquerade/111.ts index 6df1515ce..0a135b4d6 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/111.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/111.ts @@ -60,9 +60,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Scarlet & Violet/Twilight Masquerade/123.ts b/data/Scarlet & Violet/Twilight Masquerade/123.ts index 4d7249b07..1db438176 100644 --- a/data/Scarlet & Violet/Twilight Masquerade/123.ts +++ b/data/Scarlet & Violet/Twilight Masquerade/123.ts @@ -70,9 +70,8 @@ const card: Card = { regulationMark: "H", variants: { - reverse: false, normal: false } } -export default card \ No newline at end of file +export default card diff --git a/data/Sun & Moon/Burning Shadows.ts b/data/Sun & Moon/Burning Shadows.ts index 1b01dd969..6ed089376 100644 --- a/data/Sun & Moon/Burning Shadows.ts +++ b/data/Sun & Moon/Burning Shadows.ts @@ -20,7 +20,12 @@ const sm3: Set = { official: 147 }, - releaseDate: "2017-08-04" + releaseDate: "2017-08-04", + + abbreviations: { + official: "BUS", + fr: "OAR" + } } export default sm3 diff --git a/data/Sun & Moon/Celestial Storm.ts b/data/Sun & Moon/Celestial Storm.ts index 0fe048cd7..3c39dc820 100644 --- a/data/Sun & Moon/Celestial Storm.ts +++ b/data/Sun & Moon/Celestial Storm.ts @@ -20,7 +20,12 @@ const sm7: Set = { official: 168 }, - releaseDate: "2018-08-03" + releaseDate: "2018-08-03", + + abbreviations: { + official: "CES", + fr: "TCE" + } } export default sm7 diff --git a/data/Sun & Moon/Cosmic Eclipse.ts b/data/Sun & Moon/Cosmic Eclipse.ts index 8c9bf00b2..8f5686b19 100644 --- a/data/Sun & Moon/Cosmic Eclipse.ts +++ b/data/Sun & Moon/Cosmic Eclipse.ts @@ -20,7 +20,12 @@ const sm12: Set = { official: 236 }, - releaseDate: "2019-11-01" + releaseDate: "2019-11-01", + + abbreviations: { + official: "CEC", + fr: "ECO" + } } export default sm12 diff --git a/data/Sun & Moon/Crimson Invasion.ts b/data/Sun & Moon/Crimson Invasion.ts index bb3fa3b73..283872031 100644 --- a/data/Sun & Moon/Crimson Invasion.ts +++ b/data/Sun & Moon/Crimson Invasion.ts @@ -20,7 +20,12 @@ const sm4: Set = { official: 111 }, - releaseDate: "2017-11-03" + releaseDate: "2017-11-03", + + abbreviations: { + official: "CIN", + fr: "INC" + } } export default sm4 diff --git a/data/Sun & Moon/Detective Pikachu.ts b/data/Sun & Moon/Detective Pikachu.ts index 02211ae19..c22e7cc71 100644 --- a/data/Sun & Moon/Detective Pikachu.ts +++ b/data/Sun & Moon/Detective Pikachu.ts @@ -20,7 +20,12 @@ const det1: Set = { official: 18 }, - releaseDate: "2019-03-29" + releaseDate: "2019-03-29", + + abbreviations: { + official: "DET", + fr: "DPI" + } } export default det1 diff --git a/data/Sun & Moon/Dragon Majesty.ts b/data/Sun & Moon/Dragon Majesty.ts index 7c01cacc2..385429e53 100644 --- a/data/Sun & Moon/Dragon Majesty.ts +++ b/data/Sun & Moon/Dragon Majesty.ts @@ -20,7 +20,12 @@ const sm75: Set = { official: 70 }, - releaseDate: "2018-09-07" + releaseDate: "2018-09-07", + + abbreviations: { + official: "DRM", + fr: "MDD" + } } export default sm75 diff --git a/data/Sun & Moon/Forbidden Light.ts b/data/Sun & Moon/Forbidden Light.ts index e987b5c1e..d487e30ef 100644 --- a/data/Sun & Moon/Forbidden Light.ts +++ b/data/Sun & Moon/Forbidden Light.ts @@ -20,7 +20,12 @@ const sm6: Set = { official: 131 }, - releaseDate: "2018-05-04" + releaseDate: "2018-05-04", + + abbreviations: { + official: "FLI", + fr: "LUI" + } } export default sm6 diff --git a/data/Sun & Moon/Guardians Rising.ts b/data/Sun & Moon/Guardians Rising.ts index 064c072e4..9a87e9dd1 100644 --- a/data/Sun & Moon/Guardians Rising.ts +++ b/data/Sun & Moon/Guardians Rising.ts @@ -20,7 +20,12 @@ const sm2: Set = { official: 145 }, - releaseDate: "2017-05-05" + releaseDate: "2017-05-05", + + abbreviations: { + official: "GRI", + fr: "GAS" + } } export default sm2 diff --git a/data/Sun & Moon/Hidden Fates.ts b/data/Sun & Moon/Hidden Fates.ts index d603c0fe6..6d9f093ee 100644 --- a/data/Sun & Moon/Hidden Fates.ts +++ b/data/Sun & Moon/Hidden Fates.ts @@ -20,7 +20,12 @@ const sm115: Set = { official: 68 }, - releaseDate: "2019-08-23" + releaseDate: "2019-08-23", + + abbreviations: { + official: "HIF", + fr: "DOC" + } } export default sm115 diff --git a/data/Sun & Moon/Lost Thunder.ts b/data/Sun & Moon/Lost Thunder.ts index c2bd5dd29..f5b709f2d 100644 --- a/data/Sun & Moon/Lost Thunder.ts +++ b/data/Sun & Moon/Lost Thunder.ts @@ -20,7 +20,12 @@ const sm8: Set = { official: 214 }, - releaseDate: "2018-11-02" + releaseDate: "2018-11-02", + + abbreviations: { + official: "LOT", + fr: "TPD" + } } export default sm8 diff --git a/data/Sun & Moon/SM Black Star Promos.ts b/data/Sun & Moon/SM Black Star Promos.ts index dbe8a9b6d..c52e95953 100644 --- a/data/Sun & Moon/SM Black Star Promos.ts +++ b/data/Sun & Moon/SM Black Star Promos.ts @@ -19,7 +19,12 @@ const smp: Set = { official: 236 }, - releaseDate: "2017-02-03" + releaseDate: "2017-02-03", + + abbreviations: { + official: "SMP", + fr: "PSM" + } } export default smp diff --git a/data/Sun & Moon/Shining Legends.ts b/data/Sun & Moon/Shining Legends.ts index 8c31b13ac..516d92d0a 100644 --- a/data/Sun & Moon/Shining Legends.ts +++ b/data/Sun & Moon/Shining Legends.ts @@ -20,7 +20,12 @@ const sm35: Set = { official: 73 }, - releaseDate: "2017-10-06" + releaseDate: "2017-10-06", + + abbreviations: { + official: "SLG", + fr: "LBR" + } } export default sm35 diff --git a/data/Sun & Moon/Sun & Moon.ts b/data/Sun & Moon/Sun & Moon.ts index cd8f14177..80e1bf946 100644 --- a/data/Sun & Moon/Sun & Moon.ts +++ b/data/Sun & Moon/Sun & Moon.ts @@ -20,7 +20,12 @@ const sm1: Set = { official: 149 }, - releaseDate: "2017-02-03" + releaseDate: "2017-02-03", + + abbreviations: { + official: "SUM", + fr: "S&L" + } } export default sm1 diff --git a/data/Sun & Moon/Team Up.ts b/data/Sun & Moon/Team Up.ts index 4091767f2..41e6de6fc 100644 --- a/data/Sun & Moon/Team Up.ts +++ b/data/Sun & Moon/Team Up.ts @@ -20,7 +20,12 @@ const sm9: Set = { official: 181 }, - releaseDate: "2019-01-31" + releaseDate: "2019-01-31", + + abbreviations: { + official: "TEU", + fr: "DDC" + } } export default sm9 diff --git a/data/Sun & Moon/Ultra Prism.ts b/data/Sun & Moon/Ultra Prism.ts index ca96a5c4a..c26ef2353 100644 --- a/data/Sun & Moon/Ultra Prism.ts +++ b/data/Sun & Moon/Ultra Prism.ts @@ -20,7 +20,12 @@ const sm5: Set = { official: 156 }, - releaseDate: "2018-02-02" + releaseDate: "2018-02-02", + + abbreviations: { + official: "UPR", + fr: "UPR" + } } export default sm5 diff --git a/data/Sun & Moon/Unbroken Bonds.ts b/data/Sun & Moon/Unbroken Bonds.ts index e33f55c3a..da75c240c 100644 --- a/data/Sun & Moon/Unbroken Bonds.ts +++ b/data/Sun & Moon/Unbroken Bonds.ts @@ -20,7 +20,12 @@ const sm10: Set = { official: 214 }, - releaseDate: "2019-05-03" + releaseDate: "2019-05-03", + + abbreviations: { + official: "UNB", + fr: "AIF" + } } export default sm10 diff --git a/data/Sun & Moon/Unified Minds.ts b/data/Sun & Moon/Unified Minds.ts index 5d0b06f06..01d204561 100644 --- a/data/Sun & Moon/Unified Minds.ts +++ b/data/Sun & Moon/Unified Minds.ts @@ -20,7 +20,12 @@ const sm11: Set = { official: 236 }, - releaseDate: "2019-08-02" + releaseDate: "2019-08-02", + + abbreviations: { + official: "UNM", + fr: "HES" + } } export default sm11 diff --git a/data/Sword & Shield/Astral Radiance.ts b/data/Sword & Shield/Astral Radiance.ts index e37d2aa2a..2950c1da4 100644 --- a/data/Sword & Shield/Astral Radiance.ts +++ b/data/Sword & Shield/Astral Radiance.ts @@ -14,14 +14,18 @@ const set: Set = { }, tcgOnline: 'ASR', - serie: serie, cardCount: { official: 189 }, - releaseDate: "2022-05-27" + releaseDate: "2022-05-27", + + abbreviations: { + official: "ASR", + fr: "ASR" + } } export default set diff --git a/data/Sword & Shield/Battle Styles.ts b/data/Sword & Shield/Battle Styles.ts index 2ee2baba8..0c08e02cc 100644 --- a/data/Sword & Shield/Battle Styles.ts +++ b/data/Sword & Shield/Battle Styles.ts @@ -14,14 +14,18 @@ const swsh1: Set = { }, tcgOnline: 'BST', - serie: serie, cardCount: { official: 163 }, - releaseDate: "2021-03-19" + releaseDate: "2021-03-19", + + abbreviations: { + official: "BST", + fr: "STC" + } } export default swsh1 diff --git a/data/Sword & Shield/Brilliant Stars.ts b/data/Sword & Shield/Brilliant Stars.ts index 37f66f92f..417955ba6 100644 --- a/data/Sword & Shield/Brilliant Stars.ts +++ b/data/Sword & Shield/Brilliant Stars.ts @@ -14,14 +14,18 @@ const set: Set = { }, tcgOnline: 'BRS', - serie: serie, cardCount: { official: 172 }, - releaseDate: "2022-02-25" + releaseDate: "2022-02-25", + + abbreviations: { + official: "BRS", + fr: "STA" + } } export default set diff --git a/data/Sword & Shield/Brilliant Stars/008.ts b/data/Sword & Shield/Brilliant Stars/008.ts index 754b7995a..e1efd9cf6 100644 --- a/data/Sword & Shield/Brilliant Stars/008.ts +++ b/data/Sword & Shield/Brilliant Stars/008.ts @@ -70,7 +70,7 @@ const card: Card = { retreat: 4, regulationMark: "F", variants: { - normal: false, + normal: true, reverse: true, holo: true, firstEdition: false diff --git a/data/Sword & Shield/Celebrations.ts b/data/Sword & Shield/Celebrations.ts index d5078b6c3..1b55f21bc 100644 --- a/data/Sword & Shield/Celebrations.ts +++ b/data/Sword & Shield/Celebrations.ts @@ -14,14 +14,18 @@ const set: Set = { }, tcgOnline: 'CEL', - serie: serie, cardCount: { official: 25 }, - releaseDate: "2021-10-08" + releaseDate: "2021-10-08", + + abbreviations: { + official: "CEL", + fr: "CEL" + } } export default set diff --git a/data/Sword & Shield/Champion's Path.ts b/data/Sword & Shield/Champion's Path.ts index ccbb32d07..0078f183f 100644 --- a/data/Sword & Shield/Champion's Path.ts +++ b/data/Sword & Shield/Champion's Path.ts @@ -14,14 +14,18 @@ const swsh35: Set = { }, tcgOnline: 'CPA', - serie: serie, cardCount: { official: 70 }, - releaseDate: "2020-09-25" + releaseDate: "2020-09-25", + + abbreviations: { + official: "CPA", + fr: "VDM" + } } export default swsh35 diff --git a/data/Sword & Shield/Chilling Reign.ts b/data/Sword & Shield/Chilling Reign.ts index aad5f7a2d..d8e4ed3f1 100644 --- a/data/Sword & Shield/Chilling Reign.ts +++ b/data/Sword & Shield/Chilling Reign.ts @@ -3,6 +3,7 @@ import serie from '../Sword & Shield' const set: Set = { id: "swsh6", + name: { en: "Chilling Reign", fr: "Règne de Glace", @@ -13,14 +14,18 @@ const set: Set = { }, tcgOnline: 'CRE', - serie: serie, cardCount: { // NOT confirmed official: 198 }, - releaseDate: "2021-06-18" + releaseDate: "2021-06-18", + + abbreviations: { + official: "CRE", + fr: "REG" + } } export default set diff --git a/data/Sword & Shield/Crown Zenith.ts b/data/Sword & Shield/Crown Zenith.ts index 911d73018..bba5ce4ad 100644 --- a/data/Sword & Shield/Crown Zenith.ts +++ b/data/Sword & Shield/Crown Zenith.ts @@ -19,7 +19,12 @@ const swsh3: Set = { official: 159 }, - releaseDate: "2023-01-20" + releaseDate: "2023-01-20", + + abbreviations: { + official: "CRZ", + fr: "ZEN" + } } export default swsh3 diff --git a/data/Sword & Shield/Darkness Ablaze.ts b/data/Sword & Shield/Darkness Ablaze.ts index 881647429..5eca95545 100644 --- a/data/Sword & Shield/Darkness Ablaze.ts +++ b/data/Sword & Shield/Darkness Ablaze.ts @@ -14,14 +14,18 @@ const swsh3: Set = { }, tcgOnline: 'DAA', - serie: serie, cardCount: { official: 189 }, - releaseDate: "2020-08-14" + releaseDate: "2020-08-14", + + abbreviations: { + official: "DAA", + fr: "TEM" + } } export default swsh3 diff --git a/data/Sword & Shield/Evolving Skies.ts b/data/Sword & Shield/Evolving Skies.ts index 561ac6dac..66f2b534f 100644 --- a/data/Sword & Shield/Evolving Skies.ts +++ b/data/Sword & Shield/Evolving Skies.ts @@ -14,14 +14,18 @@ const swsh6: Set = { }, tcgOnline: 'EVS', - serie: serie, cardCount: { official: 203 }, - releaseDate: "2021-08-27" + releaseDate: "2021-08-27", + + abbreviations: { + official: "EVS", + fr: "EVC" + } } export default swsh6 diff --git a/data/Sword & Shield/Fusion Strike.ts b/data/Sword & Shield/Fusion Strike.ts index cf758abdf..6e58ba8a5 100644 --- a/data/Sword & Shield/Fusion Strike.ts +++ b/data/Sword & Shield/Fusion Strike.ts @@ -3,6 +3,7 @@ import serie from '../Sword & Shield' const set: Set = { id: "swsh8", + name: { en: "Fusion Strike", fr: "Poing de Fusion", @@ -13,15 +14,18 @@ const set: Set = { }, tcgOnline: 'FST', - serie: serie, - cardCount: { official: 264 }, - releaseDate: "2021-11-12" + releaseDate: "2021-11-12", + + abbreviations: { + official: "FST", + fr: "PDF" + } } export default set diff --git a/data/Sword & Shield/Lost Origin.ts b/data/Sword & Shield/Lost Origin.ts index c8171a95f..11c25adf3 100644 --- a/data/Sword & Shield/Lost Origin.ts +++ b/data/Sword & Shield/Lost Origin.ts @@ -19,7 +19,12 @@ const set: Set = { official: 196 }, - releaseDate: "2022-09-09" + releaseDate: "2022-09-09", + + abbreviations: { + official: "LOR", + fr: "ORP" + } } export default set diff --git a/data/Sword & Shield/Pokémon Futsal 2020.ts b/data/Sword & Shield/Pokémon Futsal 2020.ts index 4a7e37aad..4c7daa64f 100644 --- a/data/Sword & Shield/Pokémon Futsal 2020.ts +++ b/data/Sword & Shield/Pokémon Futsal 2020.ts @@ -14,7 +14,11 @@ const swshp: Set = { official: 5 }, - releaseDate: "2020-09-11" + releaseDate: "2020-09-11", + + abbreviations: { + official: "FUT20" + } } export default swshp diff --git a/data/Sword & Shield/Pokémon GO.ts b/data/Sword & Shield/Pokémon GO.ts index b8c3c7ee7..4aba8ab17 100644 --- a/data/Sword & Shield/Pokémon GO.ts +++ b/data/Sword & Shield/Pokémon GO.ts @@ -14,14 +14,18 @@ const set: Set = { }, tcgOnline: 'PGO', - serie: serie, cardCount: { official: 78 }, - releaseDate: "2022-07-01" + releaseDate: "2022-07-01", + + abbreviations: { + official: "PGO", + fr: "PGO" + } } export default set diff --git a/data/Sword & Shield/Rebel Clash.ts b/data/Sword & Shield/Rebel Clash.ts index d73e5536c..7b58f1dfe 100644 --- a/data/Sword & Shield/Rebel Clash.ts +++ b/data/Sword & Shield/Rebel Clash.ts @@ -14,14 +14,18 @@ const swsh2: Set = { }, tcgOnline: 'RCL', - serie: serie, cardCount: { official: 192 }, - releaseDate: "2020-05-01" + releaseDate: "2020-05-01", + + abbreviations: { + official: "RCL", + fr: "CDR" + } } export default swsh2 diff --git a/data/Sword & Shield/Shining Fates.ts b/data/Sword & Shield/Shining Fates.ts index 7490603ff..26782294c 100644 --- a/data/Sword & Shield/Shining Fates.ts +++ b/data/Sword & Shield/Shining Fates.ts @@ -14,14 +14,18 @@ const swsh1: Set = { }, tcgOnline: 'SHF', - serie: serie, cardCount: { official: 72 }, - releaseDate: "2021-02-19" + releaseDate: "2021-02-19", + + abbreviations: { + official: "SHF", + fr: "DRA" + } } export default swsh1 diff --git a/data/Sword & Shield/Silver Tempest.ts b/data/Sword & Shield/Silver Tempest.ts index bc80873f4..8c7ccd945 100644 --- a/data/Sword & Shield/Silver Tempest.ts +++ b/data/Sword & Shield/Silver Tempest.ts @@ -19,7 +19,12 @@ const set: Set = { official: 195 }, - releaseDate: "2022-11-11" + releaseDate: "2022-11-11", + + abbreviations: { + official: "SIT", + fr: "TAR" + } } export default set diff --git a/data/Sword & Shield/Sword & Shield.ts b/data/Sword & Shield/Sword & Shield.ts index 6cc183002..79fc77811 100644 --- a/data/Sword & Shield/Sword & Shield.ts +++ b/data/Sword & Shield/Sword & Shield.ts @@ -14,14 +14,18 @@ const swsh1: Set = { }, tcgOnline: 'SSH', - serie: serie, cardCount: { official: 202 }, - releaseDate: "2020-02-07" + releaseDate: "2020-02-07", + + abbreviations: { + official: "SSH", + fr: "E&B" + } } export default swsh1 diff --git a/data/Sword & Shield/Vivid Voltage.ts b/data/Sword & Shield/Vivid Voltage.ts index a84b8173c..978a3aa9b 100644 --- a/data/Sword & Shield/Vivid Voltage.ts +++ b/data/Sword & Shield/Vivid Voltage.ts @@ -14,14 +14,18 @@ const swsh4: Set = { }, tcgOnline: 'VIV', - serie: serie, cardCount: { official: 185 }, - releaseDate: "2020-11-13" + releaseDate: "2020-11-13", + + abbreviations: { + official: "VIV", + fr: "VOL" + } } export default swsh4 diff --git a/data/Trainer kits/DP trainer Kit (Lucario).ts b/data/Trainer kits/DP trainer Kit (Lucario).ts index 89df2fbba..3feb8cf96 100644 --- a/data/Trainer kits/DP trainer Kit (Lucario).ts +++ b/data/Trainer kits/DP trainer Kit (Lucario).ts @@ -17,7 +17,12 @@ const set: Set = { official: 12 }, - releaseDate: "2007-09-01" + releaseDate: "2007-09-01", + + abbreviations: { + official: "TK3L", + fr: "LUC" + } } export default set diff --git a/data/Trainer kits/DP trainer Kit (Manaphy).ts b/data/Trainer kits/DP trainer Kit (Manaphy).ts index 3960d9993..fa8290afa 100644 --- a/data/Trainer kits/DP trainer Kit (Manaphy).ts +++ b/data/Trainer kits/DP trainer Kit (Manaphy).ts @@ -17,7 +17,12 @@ const set: Set = { official: 12 }, - releaseDate: "2007-09-01" + releaseDate: "2007-09-01", + + abbreviations: { + official: "TK3M", + fr: "MAN" + } } export default set diff --git a/data/Trainer kits/EX trainer Kit (Latias).ts b/data/Trainer kits/EX trainer Kit (Latias).ts index d0001d6b8..8c65050df 100644 --- a/data/Trainer kits/EX trainer Kit (Latias).ts +++ b/data/Trainer kits/EX trainer Kit (Latias).ts @@ -18,7 +18,12 @@ const set: Set = { official: 10 }, - releaseDate: "2004-07-01" + releaseDate: "2004-07-01", + + abbreviations: { + official: "TK1A", + fr: "KDA" + } } export default set diff --git a/data/Trainer kits/EX trainer Kit (Latios).ts b/data/Trainer kits/EX trainer Kit (Latios).ts index 14416d063..729bcd18c 100644 --- a/data/Trainer kits/EX trainer Kit (Latios).ts +++ b/data/Trainer kits/EX trainer Kit (Latios).ts @@ -18,7 +18,12 @@ const set: Set = { official: 10 }, - releaseDate: "2004-07-01" + releaseDate: "2004-07-01", + + abbreviations: { + official: "TK1O", + fr: "KDL" + } } export default set diff --git a/data/Trainer kits/EX trainer Kit 2 (Ninun).ts b/data/Trainer kits/EX trainer Kit 2 (Ninun).ts index da71629f9..164e78686 100644 --- a/data/Trainer kits/EX trainer Kit 2 (Ninun).ts +++ b/data/Trainer kits/EX trainer Kit 2 (Ninun).ts @@ -17,7 +17,12 @@ const set: Set = { official: 12 }, - releaseDate: "2006-03-01" + releaseDate: "2006-03-01", + + abbreviations: { + official: "TK2M", + fr: "NEG" + } } export default set diff --git a/data/Trainer kits/EX trainer Kit 2 (Plusle).ts b/data/Trainer kits/EX trainer Kit 2 (Plusle).ts index 7a17d8649..0e5ec2d1e 100644 --- a/data/Trainer kits/EX trainer Kit 2 (Plusle).ts +++ b/data/Trainer kits/EX trainer Kit 2 (Plusle).ts @@ -17,7 +17,12 @@ const set: Set = { official: 12 }, - releaseDate: "2006-03-01" + releaseDate: "2006-03-01", + + abbreviations: { + official: "TK2P", + fr: "POS" + } } export default set diff --git a/data/Trainer kits/HS trainer Kit (Excadrill).ts b/data/Trainer kits/HS trainer Kit (Excadrill).ts index 4d7ca1320..179543158 100644 --- a/data/Trainer kits/HS trainer Kit (Excadrill).ts +++ b/data/Trainer kits/HS trainer Kit (Excadrill).ts @@ -16,7 +16,12 @@ const set: Set = { official: 30 }, - releaseDate: "2011-09-01" + releaseDate: "2011-09-01", + + abbreviations: { + official: "TK5E", + fr: "MIN" + } } export default set diff --git a/data/Trainer kits/HS trainer Kit (Gyarados).ts b/data/Trainer kits/HS trainer Kit (Gyarados).ts index aded2f4cd..aa32a6727 100644 --- a/data/Trainer kits/HS trainer Kit (Gyarados).ts +++ b/data/Trainer kits/HS trainer Kit (Gyarados).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2010-05-01" + releaseDate: "2010-05-01", + + abbreviations: { + official: "TK4G", + fr: "LEV" + } } export default set diff --git a/data/Trainer kits/HS trainer Kit (Raichu).ts b/data/Trainer kits/HS trainer Kit (Raichu).ts index 98754b787..0a01330f7 100644 --- a/data/Trainer kits/HS trainer Kit (Raichu).ts +++ b/data/Trainer kits/HS trainer Kit (Raichu).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2010-05-01" + releaseDate: "2010-05-01", + + abbreviations: { + official: "TK4R", + fr: "RAI" + } } export default set diff --git a/data/Trainer kits/HS trainer Kit (Zoroark).ts b/data/Trainer kits/HS trainer Kit (Zoroark).ts index 11d504ad9..336cee970 100644 --- a/data/Trainer kits/HS trainer Kit (Zoroark).ts +++ b/data/Trainer kits/HS trainer Kit (Zoroark).ts @@ -16,7 +16,12 @@ const set: Set = { official: 30 }, - releaseDate: "2011-09-01" + releaseDate: "2011-09-01", + + abbreviations: { + official: "TK5Z", + fr: "ZOR" + } } export default set diff --git a/data/Trainer kits/SM trainer Kit (Alolan Raichu).ts b/data/Trainer kits/SM trainer Kit (Alolan Raichu).ts index cafd203bd..21ecb26cb 100644 --- a/data/Trainer kits/SM trainer Kit (Alolan Raichu).ts +++ b/data/Trainer kits/SM trainer Kit (Alolan Raichu).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2017-04-21" + releaseDate: "2017-04-21", + + abbreviations: { + official: "TK10A", + fr: "RAL" + } } export default set diff --git a/data/Trainer kits/SM trainer Kit (Lycanroc).ts b/data/Trainer kits/SM trainer Kit (Lycanroc).ts index 46258a7dd..c96e926c7 100644 --- a/data/Trainer kits/SM trainer Kit (Lycanroc).ts +++ b/data/Trainer kits/SM trainer Kit (Lycanroc).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2017-04-21" + releaseDate: "2017-04-21", + + abbreviations: { + official: "TK10L", + fr: "LOU" + } } export default set diff --git a/data/Trainer kits/XY trainer Kit (Bisharp).ts b/data/Trainer kits/XY trainer Kit (Bisharp).ts index 0b95a9636..7220d6899 100644 --- a/data/Trainer kits/XY trainer Kit (Bisharp).ts +++ b/data/Trainer kits/XY trainer Kit (Bisharp).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2014-11-01" + releaseDate: "2014-11-01", + + abbreviations: { + official: "TK7A", + fr: "SCA" + } } export default set diff --git a/data/Trainer kits/XY trainer Kit (Latias).ts b/data/Trainer kits/XY trainer Kit (Latias).ts index 55e479f31..9b17e4b24 100644 --- a/data/Trainer kits/XY trainer Kit (Latias).ts +++ b/data/Trainer kits/XY trainer Kit (Latias).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2015-04-29" + releaseDate: "2015-04-29", + + abbreviations: { + official: "TK8A", + fr: "LTA" + } } export default set diff --git a/data/Trainer kits/XY trainer Kit (Latios).ts b/data/Trainer kits/XY trainer Kit (Latios).ts index 329bb96ed..b6ec9f6f7 100644 --- a/data/Trainer kits/XY trainer Kit (Latios).ts +++ b/data/Trainer kits/XY trainer Kit (Latios).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2015-04-29" + releaseDate: "2015-04-29", + + abbreviations: { + official: "TK8O", + fr: "LTS" + } } export default set diff --git a/data/Trainer kits/XY trainer Kit (Noivern).ts b/data/Trainer kits/XY trainer Kit (Noivern).ts index 1591a4716..8a3d4ef31 100644 --- a/data/Trainer kits/XY trainer Kit (Noivern).ts +++ b/data/Trainer kits/XY trainer Kit (Noivern).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2014-03-12" + releaseDate: "2014-03-12", + + abbreviations: { + official: "TK6N", + fr: "BRU" + } } export default set diff --git a/data/Trainer kits/XY trainer Kit (Pikachu Libre).ts b/data/Trainer kits/XY trainer Kit (Pikachu Libre).ts index ce67c7608..02f43cffa 100644 --- a/data/Trainer kits/XY trainer Kit (Pikachu Libre).ts +++ b/data/Trainer kits/XY trainer Kit (Pikachu Libre).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2016-04-27" + releaseDate: "2016-04-27", + + abbreviations: { + official: "TK9P", + fr: "PLB" + } } export default set diff --git a/data/Trainer kits/XY trainer Kit (Suicune).ts b/data/Trainer kits/XY trainer Kit (Suicune).ts index 4e7553df2..e6b607b5f 100644 --- a/data/Trainer kits/XY trainer Kit (Suicune).ts +++ b/data/Trainer kits/XY trainer Kit (Suicune).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2016-04-27" + releaseDate: "2016-04-27", + + abbreviations: { + official: "TK9S", + fr: "SUI" + } } export default set diff --git a/data/Trainer kits/XY trainer Kit (Sylveon).ts b/data/Trainer kits/XY trainer Kit (Sylveon).ts index eb291d9f1..ec6faf3af 100644 --- a/data/Trainer kits/XY trainer Kit (Sylveon).ts +++ b/data/Trainer kits/XY trainer Kit (Sylveon).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2014-03-12" + releaseDate: "2014-03-12", + + abbreviations: { + official: "TK6S", + fr: "NYM" + } } export default set diff --git a/data/Trainer kits/XY trainer Kit (Wigglytuff).ts b/data/Trainer kits/XY trainer Kit (Wigglytuff).ts index 190a830ba..dfe9ac3c2 100644 --- a/data/Trainer kits/XY trainer Kit (Wigglytuff).ts +++ b/data/Trainer kits/XY trainer Kit (Wigglytuff).ts @@ -17,7 +17,12 @@ const set: Set = { official: 30 }, - releaseDate: "2014-11-01" + releaseDate: "2014-11-01", + + abbreviations: { + official: "TK7B", + fr: "GRO" + } } export default set diff --git a/data/XY.ts b/data/XY.ts index 55729937b..252b2daae 100644 --- a/data/XY.ts +++ b/data/XY.ts @@ -8,7 +8,8 @@ const set: Serie = { es: "XY", it: "XY", de: "XY", - pt: "XY" + pt: "XY", + ru: "XY" }, energies: [ diff --git a/data/XY/Ancient Origins.ts b/data/XY/Ancient Origins.ts index 1ea966f87..fd7a4df49 100644 --- a/data/XY/Ancient Origins.ts +++ b/data/XY/Ancient Origins.ts @@ -10,7 +10,8 @@ const xy7: Set = { es: "Antiguos Orígenes", it: "Antiche Origini", de: "Ewiger Anfang", - pt: "Origens Ancestrais" + pt: "Origens Ancestrais", + ru: "Древние Истоки" }, serie: serie, @@ -20,7 +21,12 @@ const xy7: Set = { official: 98 }, - releaseDate: "2015-08-12" + releaseDate: "2015-08-12", + + abbreviations: { + official: "AOR", + fr: "ORA" + } } export default xy7 diff --git a/data/XY/BREAKpoint.ts b/data/XY/BREAKpoint.ts index ceb2c575f..9278e0ce7 100644 --- a/data/XY/BREAKpoint.ts +++ b/data/XY/BREAKpoint.ts @@ -20,7 +20,12 @@ const xy9: Set = { official: 122 }, - releaseDate: "2016-02-03" + releaseDate: "2016-02-03", + + abbreviations: { + official: "BKP", + fr: "RUP" + } } export default xy9 diff --git a/data/XY/BREAKthrough.ts b/data/XY/BREAKthrough.ts index c43749c6f..8065892df 100644 --- a/data/XY/BREAKthrough.ts +++ b/data/XY/BREAKthrough.ts @@ -10,7 +10,8 @@ const xy8: Set = { es: "Turbo Impulso", it: "Turbo Blitz", de: "TURBOstart", - pt: "Turbo Revolução" + pt: "Turbo Revolução", + ru: "Турбо Импульс" }, serie: serie, @@ -20,7 +21,12 @@ const xy8: Set = { official: 162 }, - releaseDate: "2015-11-04" + releaseDate: "2015-11-04", + + abbreviations: { + official: "BKT", + fr: "IMP" + } } export default xy8 diff --git a/data/XY/Double Crisis.ts b/data/XY/Double Crisis.ts index 96ad93850..f8faeac90 100644 --- a/data/XY/Double Crisis.ts +++ b/data/XY/Double Crisis.ts @@ -17,7 +17,12 @@ const dc1: Set = { official: 34 }, - releaseDate: "2015-03-25" + releaseDate: "2015-03-25", + + abbreviations: { + official: "DCR", + fr: "DBD" + } } export default dc1 diff --git a/data/XY/Evolutions.ts b/data/XY/Evolutions.ts index 44bc4384c..bb5e6ddac 100644 --- a/data/XY/Evolutions.ts +++ b/data/XY/Evolutions.ts @@ -20,7 +20,12 @@ const xy12: Set = { official: 108 }, - releaseDate: "2016-11-02" + releaseDate: "2016-11-02", + + abbreviations: { + official: "EVO", + fr: "EVO" + } } export default xy12 diff --git a/data/XY/Fates Collide.ts b/data/XY/Fates Collide.ts index 4d6dd2846..8d38f54e2 100644 --- a/data/XY/Fates Collide.ts +++ b/data/XY/Fates Collide.ts @@ -20,7 +20,12 @@ const xy10: Set = { official: 124 }, - releaseDate: "2016-05-02" + releaseDate: "2016-05-02", + + abbreviations: { + official: "FCO", + fr: "IDD" + } } export default xy10 diff --git a/data/XY/Flashfire.ts b/data/XY/Flashfire.ts index 76572b3a4..d2ba6d5cd 100644 --- a/data/XY/Flashfire.ts +++ b/data/XY/Flashfire.ts @@ -10,7 +10,8 @@ const xy2: Set = { es: "Destellos de Fuego", it: "Fuoco Infernale", de: "Flammenmeer", - pt: "Flash de Fogo" + pt: "Flash de Fogo", + ru: "Огненная Вспышка" }, serie: serie, @@ -20,7 +21,12 @@ const xy2: Set = { official: 106 }, - releaseDate: "2014-05-07" + releaseDate: "2014-05-07", + + abbreviations: { + official: "FLF", + fr: "ETI" + } } export default xy2 diff --git a/data/XY/Furious Fists.ts b/data/XY/Furious Fists.ts index cc74bbbd2..e66e54477 100644 --- a/data/XY/Furious Fists.ts +++ b/data/XY/Furious Fists.ts @@ -10,7 +10,8 @@ const xy3: Set = { es: "Puños Furiosos", it: "Colpi Furiosi", de: "Fliegende Fäuste", - pt: "Punhos Furiosos" + pt: "Punhos Furiosos", + ru: "Яростный Кулак" }, serie: serie, @@ -20,7 +21,12 @@ const xy3: Set = { official: 111 }, - releaseDate: "2014-08-13" + releaseDate: "2014-08-13", + + abbreviations: { + official: "FFI", + fr: "PFU" + } } export default xy3 diff --git a/data/XY/Generations.ts b/data/XY/Generations.ts index 8b1017df2..2773a122e 100644 --- a/data/XY/Generations.ts +++ b/data/XY/Generations.ts @@ -20,7 +20,12 @@ const g1: Set = { official: 83 }, - releaseDate: "2016-02-22" + releaseDate: "2016-02-22", + + abbreviations: { + official: "GEN", + fr: "GEN" + } } export default g1 diff --git a/data/XY/Kalos Starter Set.ts b/data/XY/Kalos Starter Set.ts index 7ab496735..097844fc6 100644 --- a/data/XY/Kalos Starter Set.ts +++ b/data/XY/Kalos Starter Set.ts @@ -9,7 +9,8 @@ const xy0: Set = { fr: "Bienvenue à Kalos", it: "Benvenuti a Kalos", de: "Willkommen in Kalos", - pt: "Conjunto para Iniciantes Kalos" + pt: "Conjunto para Iniciantes Kalos", + ru: 'Стартовый Набор Калоса' }, serie: serie, @@ -19,7 +20,12 @@ const xy0: Set = { official: 45 }, - releaseDate: "2013-11-08" + releaseDate: "2013-11-08", + + abbreviations: { + official: "KSS", + fr: "BAK" + } } export default xy0 diff --git a/data/XY/Phantom Forces.ts b/data/XY/Phantom Forces.ts index 2cdc6f319..978affa6f 100644 --- a/data/XY/Phantom Forces.ts +++ b/data/XY/Phantom Forces.ts @@ -10,7 +10,8 @@ const xy4: Set = { es: "Fuerzas Fantasmales", it: "Forze Spettrali", de: "Phantomkräfte", - pt: "Força Fantasma" + pt: "Força Fantasma", + ru: "Призрачные Силы" }, serie: serie, @@ -20,7 +21,12 @@ const xy4: Set = { official: 119 }, - releaseDate: "2014-11-05" + releaseDate: "2014-11-05", + + abbreviations: { + official: "PHF", + fr: "VSP" + } } export default xy4 diff --git a/data/XY/Primal Clash.ts b/data/XY/Primal Clash.ts index 449cc6a62..71d8c655b 100644 --- a/data/XY/Primal Clash.ts +++ b/data/XY/Primal Clash.ts @@ -10,7 +10,8 @@ const xy5: Set = { es: "Duelos Primigenios", it: "Scontro Primordiale", de: "Protoshock", - pt: "Conflito Primitivo" + pt: "Conflito Primitivo", + ru: "Первобытная Дуэль" }, serie: serie, @@ -20,7 +21,12 @@ const xy5: Set = { official: 160 }, - releaseDate: "2015-02-04" + releaseDate: "2015-02-04", + + abbreviations: { + official: "PRC", + fr: "PRI" + } } export default xy5 diff --git a/data/XY/Roaring Skies.ts b/data/XY/Roaring Skies.ts index 2475c4f00..bbecd0af6 100644 --- a/data/XY/Roaring Skies.ts +++ b/data/XY/Roaring Skies.ts @@ -10,7 +10,8 @@ const xy6: Set = { es: "Cielos Rugientes", it: "Furie Volanti", de: "Drachenleuchten", - pt: "Céus Estrondosos" + pt: "Céus Estrondosos", + ru: "Грохочущие Небеса" }, serie: serie, @@ -20,7 +21,12 @@ const xy6: Set = { official: 108 }, - releaseDate: "2015-05-06" + releaseDate: "2015-05-06", + + abbreviations: { + official: "ROS", + fr: "CRU" + } } export default xy6 diff --git a/data/XY/Steam Siege.ts b/data/XY/Steam Siege.ts index edf383eb5..c205a52fc 100644 --- a/data/XY/Steam Siege.ts +++ b/data/XY/Steam Siege.ts @@ -20,7 +20,12 @@ const xy11: Set = { official: 114 }, - releaseDate: "2016-08-03" + releaseDate: "2016-08-03", + + abbreviations: { + official: "STS", + fr: "OFV" + } } export default xy11 diff --git a/data/XY/XY Black Star Promos.ts b/data/XY/XY Black Star Promos.ts index ff9975e4c..0fb71c5c8 100644 --- a/data/XY/XY Black Star Promos.ts +++ b/data/XY/XY Black Star Promos.ts @@ -19,7 +19,12 @@ const xyp: Set = { official: 211 }, - releaseDate: "2013-10-12" + releaseDate: "2013-10-12", + + abbreviations: { + official: 'XYP', + fr: "PXY" + } } export default xyp diff --git a/data/XY/XY.ts b/data/XY/XY.ts index a86c06969..9724dcde6 100644 --- a/data/XY/XY.ts +++ b/data/XY/XY.ts @@ -10,7 +10,8 @@ const xy1: Set = { es: "XY", it: "XY", de: "XY", - pt: "XY" + pt: "XY", + ru: "XY" }, serie: serie, @@ -20,7 +21,12 @@ const xy1: Set = { official: 146 }, - releaseDate: "2014-02-05" + releaseDate: "2014-02-05", + + abbreviations: { + official: "XY", + fr: "XY" + } } export default xy1 diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 000000000..24a95beba --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,10 @@ +services: + stable: + image: tcgdex/server:edge # You can choose between using the hub.docker.com one or the github one + # image: ghcr.io/tcgdex/server:edge + restart: unless-stopped + # by default the server will start a worker for each threads available + # You downgrade the max number of workers by changing this value + - MAX_WORKERS=2 + ports: + - 3000:3000 # You can choose any port you want diff --git a/interfaces.d.ts b/interfaces.d.ts index 2e5cbcf07..ec97b5bd8 100644 --- a/interfaces.d.ts +++ b/interfaces.d.ts @@ -63,6 +63,10 @@ type ISODate = `${number}-${number}-${number}` export interface Set { id: string name: Languages + /** + * Partial list of abbreviations, this is currently a Work in Progress feature + */ + abbreviations?: Partial & { official?: string }> serie: Serie tcgOnline?: string @@ -126,7 +130,9 @@ export interface Card { 'Holo Rare VMAX' | 'Holo Rare VSTAR' | 'Hyper rare' | 'Illustration rare' | 'LEGEND' | 'None' | 'Radiant Rare' | 'Rare' | 'Rare Holo' | 'Rare Holo LV.X' | 'Rare PRIME' | 'Secret Rare' | 'Shiny Ultra Rare' | 'Shiny rare' | 'Shiny rare V' | - 'Shiny rare VMAX' | 'Special illustration rare' | 'Ultra Rare' | 'Uncommon' + 'Shiny rare VMAX' | 'Special illustration rare' | 'Ultra Rare' | 'Uncommon' | + // Pokémon TCG Pocket Rarities + 'One Diamond' | 'Two Diamond' | 'Three Diamond' | 'Four Diamond' | 'One Star' | 'Two Star' | 'Three Star' | 'Crown' | 'One Shiny' | 'Two Shiny' /** * Card Category diff --git a/meta/codeshift.ts b/meta/codeshift.ts index 15d54dcc0..5a8ba3151 100644 --- a/meta/codeshift.ts +++ b/meta/codeshift.ts @@ -1,5 +1,5 @@ import { ArrayExpression, Identifier, JSCodeshift, Literal, ObjectExpression, Property, Transform } from "jscodeshift" - +import pathUtils from 'path/posix' interface ObjectField { type: 'Object' items: Record @@ -109,6 +109,14 @@ function remove(path: ObjectExpression | ArrayExpression, key: string | number) } } +function rename(parent: ObjectExpression, oldKey: string, newKey: string) { + parent.properties.forEach((p) => { + if (p.key.name === oldKey) { + p.key.name = newKey + } + }) +} + /** * Start editing here ! */ @@ -120,15 +128,32 @@ const transformer: Transform = (file, api) => { .find(j.ObjectExpression) .forEach((path, index) => { if (index !== 0) return + const filename = pathUtils.basename(file.path, '.ts') let simplified = simplify(path.node) - const name = simplified.items.name as ObjectField - name.items.fr + + rename(simplified.item, 'abbrevation', 'abbreviations') + + // set(j, simplified.item, j.objectExpression([j.property('init', j.identifier('fr'), j.literal(abbr))]), 'abbrevation') + // set(j, simplified.item, j.literal('a'), 's.official') // Example remove field - remove(name.item as ObjectExpression, 'fr') + // remove(name.item as ObjectExpression, 'fr') // Example Set/Add regulationMArk to cards // set(j, name.items.fr, j.literal('D'), 'regulationMark') + // console.log(filename) + const ids = [ + 5,6,8,11,12,13,14,17,22,23,25,26,27,28,29,30,31,32,33,34,37,41,43,44,45,46,49,51,54,56,57,58,59,60,64,65,70,73,75,76,78,80,82,91,92,116,117,119,128,129 + ] + const id = parseInt(filename) + const isHolo = ids.includes(id) || id >= 131 + const isNormal = !isHolo + if (isHolo) { + set(j, simplified.items.variants.item as ObjectExpression, j.literal(true), 'holo') + set(j, simplified.items.variants.item as ObjectExpression, j.literal(false), 'normal') + } else { + remove(simplified.item, 'variants') + } }) .toSource({useTabs: true, lineTerminator: '\n'}).replace(/ /g, ' ') diff --git a/meta/definitions/api.d.ts b/meta/definitions/api.d.ts index a484e20f5..e4eac04be 100644 --- a/meta/definitions/api.d.ts +++ b/meta/definitions/api.d.ts @@ -15,6 +15,9 @@ export interface SerieResume { * /series/:id endpoint */ export interface Serie extends SerieResume { + firstSet: SetResume; + lastSet: SetResume; + releaseDate: string; sets: Array; } @@ -94,6 +97,7 @@ export interface Set extends SetResume { firstEd?: number; }; cards: Array; + abbreviation: { official: string, localized: string }; } export interface CardResume { id: string; diff --git a/server/.gitignore b/server/.gitignore index b5128cd15..eff34f14c 100644 --- a/server/.gitignore +++ b/server/.gitignore @@ -4,3 +4,5 @@ /public/**/graphql.gql /public/**/api.d.ts /public/**/openapi.yaml +.env +.env.* diff --git a/server/bun.lockb b/server/bun.lockb index 21dd12259..031974f98 100755 Binary files a/server/bun.lockb and b/server/bun.lockb differ diff --git a/server/compiler/index.ts b/server/compiler/index.ts index ff08574b9..b47a00f46 100644 --- a/server/compiler/index.ts +++ b/server/compiler/index.ts @@ -1,5 +1,5 @@ /* eslint-disable max-statements */ -import { promises as fs } from 'fs' +import { existsSync, promises as fs } from 'fs' import { SupportedLanguages } from '../../interfaces' import { FileFunction } from './compilerInterfaces' import { fetchRemoteFile, loadLastEdits } from './utils/util' @@ -37,8 +37,17 @@ const DIST_FOLDER = './generated' // final folder path const folder = `${DIST_FOLDER}/${lang}` + // console.log('files1:', await fs.readdir('.')) + // console.log('files2:', await fs.readdir(DIST_FOLDER)) + // console.log('files3:', await fs.readdir(folder)) + // Make the folder - await fs.mkdir(folder, {recursive: true}) + try { + await fs.mkdir(folder, { recursive: true }) + } catch { + // idk why it throws when file is present even if nodejs says it should not throw... + // maybe Bun changed how the throws works... + } // Import the """Endpoint""" const fn = (await import(`./endpoints/${file}`)).default as FileFunction diff --git a/server/compiler/utils/serieUtil.ts b/server/compiler/utils/serieUtil.ts index 07fc0a212..d5030c96d 100644 --- a/server/compiler/utils/serieUtil.ts +++ b/server/compiler/utils/serieUtil.ts @@ -53,16 +53,26 @@ export async function serieToSerieSimple(serie: Serie, lang: SupportedLanguages) export async function serieToSerieSingle(serie: Serie, lang: SupportedLanguages): Promise { const setsTmp = await getSets(serie.name.en, lang) - const sets = await Promise.all(setsTmp - .sort((a, b) => a.releaseDate > b.releaseDate ? 1 : -1) - .map((el) => setToSetSimple(el, lang))) - const logo = sets.find((set) => set.logo)?.logo + const sortedSetsTmp = setsTmp.sort((a, b) => a.releaseDate > b.releaseDate ? 1 : -1) + const sets = await Promise.all(sortedSetsTmp.map((el) => setToSetSimple(el, lang))) + const logo = ( + // find the set named after the serie + sets.find((set) => set.name === serie.name[lang]) ?? + // find the first non promo set + sets.find((set) => !set.name.toLowerCase().includes('promo') && set.logo) ?? + // get the first set that contains a logo + sets.find((set) => set.logo) + )?.logo + const releaseDate = sortedSetsTmp[0].releaseDate // Final data return { id: serie.id, logo, name: serie.name[lang] as string, + firstSet: sets[0], + lastSet: sets[sets.length - 1], + releaseDate: typeof releaseDate === 'object' ? releaseDate[lang] : releaseDate, sets } } diff --git a/server/compiler/utils/setUtil.ts b/server/compiler/utils/setUtil.ts index 6730a9d6a..667d878c7 100644 --- a/server/compiler/utils/setUtil.ts +++ b/server/compiler/utils/setUtil.ts @@ -102,6 +102,10 @@ export async function setToSetSingle(set: Set, lang: SupportedLanguages): Promis name: set.serie.name[lang] as string }, symbol: pics[1], - tcgOnline: set.tcgOnline + tcgOnline: set.tcgOnline, + abbreviation: (set.abbreviations?.official || set.abbreviations?.[lang]) ? { + official: set.abbreviations?.official, + localized: set.abbreviations?.[lang] + } : undefined } } diff --git a/server/compiler/utils/util.ts b/server/compiler/utils/util.ts index d3d550d7e..52dfbf792 100644 --- a/server/compiler/utils/util.ts +++ b/server/compiler/utils/util.ts @@ -172,7 +172,8 @@ export async function loadLastEdits() { export function getLastEdit(path: string): string { const date = lastEditsCache[path] if (!date) { - throw new Error(`edit date not found for file ${path}`) + return new Date().toISOString() + // throw new Error(`edit date not found for file ${path}`) } return date } diff --git a/server/package.json b/server/package.json index b798e5d38..e9d1186b0 100644 --- a/server/package.json +++ b/server/package.json @@ -13,6 +13,7 @@ "@dzeio/config": "^1", "@dzeio/object-util": "^1", "@dzeio/queue": "^1", + "@sentry/node": "^8", "@tcgdex/sdk": "^2", "apicache": "^1", "express": "^4", diff --git a/server/src/V2/Components/Card.ts b/server/src/V2/Components/Card.ts index 442a5ad92..b7d83c6b8 100644 --- a/server/src/V2/Components/Card.ts +++ b/server/src/V2/Components/Card.ts @@ -1,48 +1,47 @@ import { objectLoop } from '@dzeio/object-util' -import { CardResume, Card as SDKCard, SupportedLanguages } from '@tcgdex/sdk' -import { Query } from '../../interfaces' -import { handlePagination, handleSort, handleValidation } from '../../util' -import Set from './Set' +import type { CardResume, Card as SDKCard, SupportedLanguages } from '@tcgdex/sdk' +import { executeQuery, type Query } from '../../libs/QueryEngine/filter' +import TCGSet from './Set' -import en from '../../../generated/en/cards.json' -import fr from '../../../generated/fr/cards.json' -import es from '../../../generated/es/cards.json' -import it from '../../../generated/it/cards.json' -import pt from '../../../generated/pt/cards.json' -import ptbr from '../../../generated/pt-br/cards.json' -import ptpt from '../../../generated/pt-pt/cards.json' import de from '../../../generated/de/cards.json' -import nl from '../../../generated/nl/cards.json' -import pl from '../../../generated/pl/cards.json' -import ru from '../../../generated/ru/cards.json' +import en from '../../../generated/en/cards.json' +import es from '../../../generated/es/cards.json' +import fr from '../../../generated/fr/cards.json' +import id from '../../../generated/id/cards.json' +import it from '../../../generated/it/cards.json' import ja from '../../../generated/ja/cards.json' import ko from '../../../generated/ko/cards.json' -import zhtw from '../../../generated/zh-tw/cards.json' -import id from '../../../generated/id/cards.json' +import nl from '../../../generated/nl/cards.json' +import pl from '../../../generated/pl/cards.json' +import ptbr from '../../../generated/pt-br/cards.json' +import ptpt from '../../../generated/pt-pt/cards.json' +import pt from '../../../generated/pt/cards.json' +import ru from '../../../generated/ru/cards.json' import th from '../../../generated/th/cards.json' import zhcn from '../../../generated/zh-cn/cards.json' +import zhtw from '../../../generated/zh-tw/cards.json' const cards = { - 'en': en, - 'fr': fr, - 'es': es, - 'it': it, - 'pt': pt, + en: en, + fr: fr, + es: es, + it: it, + pt: pt, 'pt-br': ptbr, 'pt-pt': ptpt, - 'de': de, - 'nl': nl, - 'pl': pl, - 'ru': ru, - 'ja': ja, - 'ko': ko, + de: de, + nl: nl, + pl: pl, + ru: ru, + ja: ja, + ko: ko, 'zh-tw': zhtw, - 'id': id, - 'th': th, + id: id, + th: th, 'zh-cn': zhcn, } as const -type LocalCard = Omit & {set: () => Set} +type LocalCard = Omit & {set: () => TCGSet} interface variants { normal?: boolean; @@ -93,8 +92,8 @@ export default class Card implements LocalCard { }) } - public set(): Set { - return Set.findOne(this.lang, {filters: { id: this.card.set.id }}) as Set + public set(): TCGSet { + return TCGSet.findOne(this.lang, { id: this.card.set.id }) as TCGSet } public static getAll(lang: SupportedLanguages): Array { @@ -102,16 +101,15 @@ export default class Card implements LocalCard { } public static find(lang: SupportedLanguages, query: Query) { - return handlePagination(handleSort(handleValidation(this.getAll(lang), query), query), query) - .map((it) => new Card(lang, it)) + return executeQuery(Card.getAll(lang), query).data.map((it) => new Card(lang, it)) } public static findOne(lang: SupportedLanguages, query: Query) { - const res = handleSort(handleValidation(this.getAll(lang), query), query) + const res = Card.find(lang, query) if (res.length === 0) { return undefined } - return new Card(lang, res[0]) + return res[0] } public resume(): CardResume { diff --git a/server/src/V2/Components/Serie.ts b/server/src/V2/Components/Serie.ts index edead5415..cb8d713f5 100644 --- a/server/src/V2/Components/Serie.ts +++ b/server/src/V2/Components/Serie.ts @@ -1,49 +1,48 @@ import { objectLoop } from '@dzeio/object-util' -import { Serie as SDKSerie, SerieResume, SupportedLanguages } from '@tcgdex/sdk' -import { Query } from '../../interfaces' -import { handlePagination, handleSort, handleValidation } from '../../util' -import Set from './Set' +import type { Serie as SDKSerie, SerieResume, SupportedLanguages } from '@tcgdex/sdk' +import { executeQuery, type Query } from '../../libs/QueryEngine/filter' +import TCGSet from './Set' -import en from '../../../generated/en/series.json' -import fr from '../../../generated/fr/series.json' -import es from '../../../generated/es/series.json' -import it from '../../../generated/it/series.json' -import pt from '../../../generated/pt/series.json' -import ptbr from '../../../generated/pt-br/series.json' -import ptpt from '../../../generated/pt-pt/series.json' import de from '../../../generated/de/series.json' -import nl from '../../../generated/nl/series.json' -import pl from '../../../generated/pl/series.json' -import ru from '../../../generated/ru/series.json' +import en from '../../../generated/en/series.json' +import es from '../../../generated/es/series.json' +import fr from '../../../generated/fr/series.json' +import id from '../../../generated/id/series.json' +import it from '../../../generated/it/series.json' import ja from '../../../generated/ja/series.json' import ko from '../../../generated/ko/series.json' -import zhtw from '../../../generated/zh-tw/series.json' -import id from '../../../generated/id/series.json' +import nl from '../../../generated/nl/series.json' +import pl from '../../../generated/pl/series.json' +import ptbr from '../../../generated/pt-br/series.json' +import ptpt from '../../../generated/pt-pt/series.json' +import pt from '../../../generated/pt/series.json' +import ru from '../../../generated/ru/series.json' import th from '../../../generated/th/series.json' import zhcn from '../../../generated/zh-cn/series.json' +import zhtw from '../../../generated/zh-tw/series.json' const series = { - 'en': en, - 'fr': fr, - 'es': es, - 'it': it, - 'pt': pt, + en: en, + fr: fr, + es: es, + it: it, + pt: pt, 'pt-br': ptbr, 'pt-pt': ptpt, - 'de': de, - 'nl': nl, - 'pl': pl, - 'ru': ru, - 'ja': ja, - 'ko': ko, + de: de, + nl: nl, + pl: pl, + ru: ru, + ja: ja, + ko: ko, 'zh-tw': zhtw, - 'id': id, - 'th': th, + id: id, + th: th, 'zh-cn': zhcn, } as const -type LocalSerie = Omit & {sets: () => Array} +type LocalSerie = Omit & {sets: () => Array} export default class Serie implements LocalSerie { @@ -63,8 +62,8 @@ export default class Serie implements LocalSerie { }) } - public sets(): Array { - return this.serie.sets.map((s) => Set.findOne(this.lang, {filters: { id: s.id }}) as Set) + public sets(): Array { + return this.serie.sets.map((s) => TCGSet.findOne(this.lang, { id: s.id }) as TCGSet) } public static getAll(lang: SupportedLanguages): Array { @@ -72,16 +71,15 @@ export default class Serie implements LocalSerie { } public static find(lang: SupportedLanguages, query: Query) { - return handlePagination(handleSort(handleValidation(this.getAll(lang), query), query), query) - .map((it) => new Serie(lang, it)) + return executeQuery(Serie.getAll(lang), query).data.map((it) => new Serie(lang, it)) } public static findOne(lang: SupportedLanguages, query: Query) { - const res = handleValidation(this.getAll(lang), query) + const res = Serie.find(lang, query) if (res.length === 0) { return undefined } - return new Serie(lang, res[0]) + return res[0] } public resume(): SerieResume { diff --git a/server/src/V2/Components/Set.ts b/server/src/V2/Components/Set.ts index 5f7de8745..9efb3f9e9 100644 --- a/server/src/V2/Components/Set.ts +++ b/server/src/V2/Components/Set.ts @@ -1,45 +1,44 @@ import { objectLoop } from '@dzeio/object-util' -import { Set as SDKSet, SetResume, SupportedLanguages } from '@tcgdex/sdk' -import { Query } from '../../interfaces' -import { handlePagination, handleSort, handleValidation } from '../../util' +import type { Set as SDKSet, SetResume, SupportedLanguages } from '@tcgdex/sdk' +import { executeQuery, type Query } from '../../libs/QueryEngine/filter' import Card from './Card' import Serie from './Serie' -import en from '../../../generated/en/sets.json' -import fr from '../../../generated/fr/sets.json' -import es from '../../../generated/es/sets.json' -import it from '../../../generated/it/sets.json' -import pt from '../../../generated/pt/sets.json' -import ptbr from '../../../generated/pt-br/sets.json' -import ptpt from '../../../generated/pt-pt/sets.json' import de from '../../../generated/de/sets.json' -import nl from '../../../generated/nl/sets.json' -import pl from '../../../generated/pl/sets.json' -import ru from '../../../generated/ru/sets.json' +import en from '../../../generated/en/sets.json' +import es from '../../../generated/es/sets.json' +import fr from '../../../generated/fr/sets.json' +import id from '../../../generated/id/sets.json' +import it from '../../../generated/it/sets.json' import ja from '../../../generated/ja/sets.json' import ko from '../../../generated/ko/sets.json' -import zhtw from '../../../generated/zh-tw/sets.json' -import id from '../../../generated/id/sets.json' +import nl from '../../../generated/nl/sets.json' +import pl from '../../../generated/pl/sets.json' +import ptbr from '../../../generated/pt-br/sets.json' +import ptpt from '../../../generated/pt-pt/sets.json' +import pt from '../../../generated/pt/sets.json' +import ru from '../../../generated/ru/sets.json' import th from '../../../generated/th/sets.json' import zhcn from '../../../generated/zh-cn/sets.json' +import zhtw from '../../../generated/zh-tw/sets.json' const sets = { - 'en': en, - 'fr': fr, - 'es': es, - 'it': it, - 'pt': pt, + en: en, + fr: fr, + es: es, + it: it, + pt: pt, 'pt-br': ptbr, 'pt-pt': ptpt, - 'de': de, - 'nl': nl, - 'pl': pl, - 'ru': ru, - 'ja': ja, - 'ko': ko, + de: de, + nl: nl, + pl: pl, + ru: ru, + ja: ja, + ko: ko, 'zh-tw': zhtw, - 'id': id, - 'th': th, + id: id, + th: th, 'zh-cn': zhcn, } as const @@ -77,11 +76,11 @@ export default class Set implements LocalSet { symbol?: string | undefined public serie(): Serie { - return Serie.findOne(this.lang, {filters: { id: this.set.serie.id }}) as Serie + return Serie.findOne(this.lang, { id: this.set.serie.id }) as Serie } public cards(): Array { - return this.set.cards.map((s) => Card.findOne(this.lang, { filters: { id: s.id }}) as Card) + return this.set.cards.map((s) => Card.findOne(this.lang, { id: s.id }) as Card) } public static getAll(lang: SupportedLanguages): Array { @@ -89,16 +88,15 @@ export default class Set implements LocalSet { } public static find(lang: SupportedLanguages, query: Query) { - return handlePagination(handleSort(handleValidation(this.getAll(lang), query), query), query) - .map((it) => new Set(lang, it)) + return executeQuery(Set.getAll(lang), query).data.map((it) => new Set(lang, it)) } public static findOne(lang: SupportedLanguages, query: Query) { - const res = handleValidation(this.getAll(lang), query) + const res = Set.find(lang, query) if (res.length === 0) { return undefined } - return new Set(lang, res[0]) + return res[0] } public resume(): SetResume { diff --git a/server/src/V2/endpoints/jsonEndpoints.ts b/server/src/V2/endpoints/jsonEndpoints.ts index 7adb3998b..afe4a29cc 100644 --- a/server/src/V2/endpoints/jsonEndpoints.ts +++ b/server/src/V2/endpoints/jsonEndpoints.ts @@ -1,41 +1,42 @@ -import { objectKeys, objectLoop } from '@dzeio/object-util' -import { Card as SDKCard } from '@tcgdex/sdk' +import { objectKeys } from '@dzeio/object-util' +import type { Card as SDKCard } from '@tcgdex/sdk' import apicache from 'apicache' -import express, { Request } from 'express' -import { Query } from '../../interfaces' +import express, { type Request } from 'express' import { Errors, sendError } from '../../libs/Errors' +import type { Query } from '../../libs/QueryEngine/filter' +import { recordToQuery } from '../../libs/QueryEngine/parsers' import { betterSorter, checkLanguage, unique } from '../../util' import Card from '../Components/Card' import Serie from '../Components/Serie' -import Set from '../Components/Set' +import TCGSet from '../Components/Set' type CustomRequest = Request & { /** * disable caching */ DO_NOT_CACHE?: boolean - advQuery?: Query + advQuery?: Query } const server = express.Router() const endpointToField: Record = { - "categories": 'category', + categories: 'category', 'energy-types': 'energyType', - "hp": 'hp', - 'illustrators': 'illustrator', - "rarities": 'rarity', + hp: 'hp', + illustrators: 'illustrator', + rarities: 'rarity', 'regulation-marks': 'regulationMark', - "retreats": 'retreat', - "stages": "stage", - "suffixes": "suffix", + retreats: 'retreat', + stages: "stage", + suffixes: "suffix", "trainer-types": "trainerType", // fields that need special care 'dex-ids': 'dexId', - "sets": "set", - "types": "types", - "variants": "variants", + sets: "set", + types: "types", + variants: "variants", } server @@ -66,27 +67,7 @@ server return } - const items: Query = { - filters: undefined, - sort: undefined, - pagination: undefined - } - - objectLoop(req.query as Record>, (value: string | Array, key: string) => { - if (!key.includes(':')) { - key = 'filters:' + key - } - const [cat, item] = key.split(':', 2) as ['filters', string] - if (!items[cat]) { - items[cat] = {} - } - const finalValue = Array.isArray(value) ? value.map((it) => isNaN(parseInt(it)) ? it : parseInt(it)) : isNaN(parseInt(value)) ? value : parseInt(value) - // @ts-expect-error normal behavior - items[cat][item] = finalValue - - }) - - req.advQuery = items + req.advQuery = recordToQuery(req.query as Record>) next() }) @@ -102,15 +83,16 @@ server return } + // biome-ignore lint/style/noNonNullAssertion: const query: Query = req.advQuery! - let data: Array = [] + let data: Array = [] switch (what.toLowerCase()) { case 'card': data = Card.find(lang, query) break case 'set': - data = Set.find(lang, query) + data = TCGSet.find(lang, query) break case 'serie': data = Serie.find(lang, query) @@ -121,7 +103,7 @@ server } const item = Math.min(data.length - 1, Math.max(0, Math.round(Math.random() * data.length))) req.DO_NOT_CACHE = true - res.json(data[item]) + res.json(data[item].full()) }) @@ -132,7 +114,7 @@ server .get('/:lang/:endpoint', (req: CustomRequest, res): void => { let { lang, endpoint } = req.params - const query: Query = req.advQuery! + const query: Query = req.advQuery ?? {} if (endpoint.endsWith('.json')) { endpoint = endpoint.replace('.json', '') @@ -143,20 +125,40 @@ server return } - let result: any + let result: unknown switch (endpoint) { - case 'cards': + case 'cards': { + if ('set' in query) { + const tmp = query.set + delete query.set + query.$or = [{ + 'set.id': tmp + }, { + 'set.name': tmp + }] + } result = Card .find(lang, query) .map((c) => c.resume()) break + } - case 'sets': - result = Set + case 'sets': { + if ('serie' in query) { + const tmp = query.serie + delete query.serie + query.$or = [{ + 'serie.id': tmp + }, { + 'serie.name': tmp + }] + } + result = TCGSet .find(lang, query) .map((c) => c.resume()) break + } case 'series': result = Serie .find(lang, query) @@ -169,7 +171,6 @@ server case "rarities": case "regulation-marks": case "retreats": - case "series": case "stages": case "suffixes": case "trainer-types": @@ -224,26 +225,26 @@ server return sendError(Errors.LANGUAGE_INVALID, res, { lang }) } - let result: any | undefined + let result: unknown switch (endpoint) { case 'cards': - result = Card.findOne(lang, { filters: { id }, strict: true })?.full() + result = Card.findOne(lang, { id })?.full() if (!result) { - result = Card.findOne(lang, { filters: { name: id }, strict: true })?.full() + result = Card.findOne(lang, { name: id })?.full() } break case 'sets': - result = Set.findOne(lang, { filters: { id }, strict: true })?.full() + result = TCGSet.findOne(lang, { id })?.full() if (!result) { - result = Set.findOne(lang, {filters: { name: id }, strict: true })?.full() + result = TCGSet.findOne(lang, { name: id })?.full() } break case 'series': - result = Serie.findOne(lang, { filters: { id }, strict: true })?.full() + result = Serie.findOne(lang, { id })?.full() if (!result) { - result = Serie.findOne(lang, { filters: { name: id }, strict: true })?.full() + result = Serie.findOne(lang, { name: id })?.full() } break default: @@ -252,8 +253,8 @@ server } result = { name: id, - cards: Card.find(lang, {[endpointToField[endpoint]]: id}) - .map((c) => c.resume()) + cards: Card.find(lang, { [endpointToField[endpoint]]: id }) + .map((c) => c.resume()) } } if (!result) { @@ -282,12 +283,14 @@ server return sendError(Errors.LANGUAGE_INVALID, res, { lang }) } - let result: any | undefined + let result: unknown switch (endpoint) { case 'sets': + // allow the dev to use a non prefixed value like `10` instead of `010` for newer sets result = Card - .findOne(lang, { filters: { localId: subid, set: id }, strict: true})?.full() + // @ts-expect-error normal behavior until the filtering is more fiable + .findOne(lang, { localId: { $or: [subid.padStart(3, '0'), subid] }, $or: [{ 'set.id': id }, { 'set.name': id }] })?.full() break } if (!result) { diff --git a/server/src/V2/graphql/index.ts b/server/src/V2/graphql/index.ts index 384a16b78..e54a177c5 100644 --- a/server/src/V2/graphql/index.ts +++ b/server/src/V2/graphql/index.ts @@ -1,6 +1,6 @@ import express from 'express' -import fs from 'fs' -import { buildSchema, GraphQLError } from 'graphql' +import fs from 'node:fs' +import { buildSchema, type GraphQLError } from 'graphql' import { createHandler } from 'graphql-http/lib/use/express' import { type ruruHTML as RuruHTML } from 'ruru/dist/server' /** @ts-expect-error typing is not correctly mapped (real type at ruru/dist/server.d.ts) */ diff --git a/server/src/V2/graphql/resolver.ts b/server/src/V2/graphql/resolver.ts index 2c05f2a91..c5e73f79f 100644 --- a/server/src/V2/graphql/resolver.ts +++ b/server/src/V2/graphql/resolver.ts @@ -1,44 +1,54 @@ -import { SupportedLanguages } from '@tcgdex/sdk' -import { Query } from '../../interfaces' +import type { SupportedLanguages } from '@tcgdex/sdk' +import { type Query, Sort } from '../../libs/QueryEngine/filter' +import { recordToQuery } from '../../libs/QueryEngine/parsers' import { checkLanguage } from '../../util' import Card from '../Components/Card' import Serie from '../Components/Serie' import Set from '../Components/Set' -const middleware = (fn: (lang: SupportedLanguages, query: Query) => any) => ( - data: Query, +// TODO: make a better way to find the language +function getLang(e: any): SupportedLanguages { + // get the locale directive + const langArgument = e?.fieldNodes?.[0]?.directives?.[0]?.arguments?.[0]?.value + + if (!langArgument) { + return 'en' + } + + if (langArgument.kind === 'Variable') { + return e.variableValues[langArgument.name.value] + } + return langArgument.value +} + +const middleware = (fn: (lang: SupportedLanguages, query: Query) => any) => ( + data: Record, _: any, e: any ) => { // get the locale directive - const langArgument = e?.fieldNodes?.[0]?.directives?.[0]?.arguments?.[0]?.value + const lang = getLang(e) + + const query = recordToQuery(data.filters ?? data) // Deprecated code handling - // @ts-expect-error count is deprectaed in the frontend - if (data.pagination?.count) { - // @ts-expect-error count is deprectaed in the frontend - data.pagination.itemsPerPage = data.pagination.count + if (data.pagination) { + query.$page = data.pagination.page ?? 1 + query.$limit = data.pagination.itemsPerPage ?? 100 } - // if there is no locale directive - if (!langArgument) { - return fn('en', data) - } - // set default locale directive value - let lang = 'en' - - // handle variable for directive value - if (langArgument.kind === 'Variable') { - lang = e.variableValues[langArgument.name.value] - } else { - lang = langArgument.value + if (data.sort) { + query.$sort = { + [data.sort.field]: data.sort.order === 'DESC' ? Sort.DESC : Sort.ASC + } } if (!checkLanguage(lang)) { return undefined } - return fn(lang, data) + + return fn(lang, query) } export default { diff --git a/server/src/index.ts b/server/src/index.ts index 15b3fb206..86ce2a930 100644 --- a/server/src/index.ts +++ b/server/src/index.ts @@ -5,22 +5,38 @@ import { Errors, sendError } from './libs/Errors' import status from './status' import jsonEndpoints from './V2/endpoints/jsonEndpoints' import graphql from './V2/graphql' +import * as Sentry from "@sentry/node" + +// Glitchtip will only start if the DSN is set :D +Sentry.init({ + dsn: process.env.GLITCHTIP_DSN, + environment: process.env.NODE_ENV +}) if (cluster.isPrimary) { - console.log(`Primary ${process.pid} is running`); + console.log(`Primary ${process.pid} is running`) - const parallelism = availableParallelism() - console.log(`creating ${parallelism} workers...`) - for (let i = 0; i < parallelism; i++) { - cluster.fork(); + // get maximum number of workers available for the software + let maxWorkers = availableParallelism() + + // allow to override max worker count + if (process.env.MAX_WORKERS) { + maxWorkers = Math.min(maxWorkers, parseInt(process.env.MAX_WORKERS)) + } + + // create the workers + console.log(`creating ${maxWorkers} workers...`) + for (let i = 0; i < maxWorkers; i++) { + cluster.fork() } cluster.on('online', (worker) => { console.log('Worker', worker.id, 'online') }) - cluster.on("exit", (worker, code, _signal) => { - console.log(`Worker ${worker.id} exited with code ${code}`); + cluster.on("exit", (worker, code, signal) => { + console.log(`Worker ${worker.id} exited with code ${code} and signal ${signal}`); + cluster.fork() }) console.log('🚀 Server ready at localhost:3000'); } else { @@ -99,7 +115,8 @@ if (cluster.isPrimary) { sendError(Errors.NOT_FOUND, res) }) - // General error handler + // Error handlers + Sentry.setupExpressErrorHandler(server) server.use((err: Error, _1: unknown, res: Response, _2: unknown) => { // add a full line dash to not miss it const columns = (process?.stdout?.columns ?? 32) - 7 diff --git a/server/src/libs/QueryEngine/filter.ts b/server/src/libs/QueryEngine/filter.ts new file mode 100644 index 000000000..da8775ff2 --- /dev/null +++ b/server/src/libs/QueryEngine/filter.ts @@ -0,0 +1,466 @@ +import { objectGet, objectKeys, objectLoop, objectSize } from '@dzeio/object-util' +import { isNull } from '../../util' + +interface QueryRootFilters { + /** + * one of the results should be true to be true + */ + $or?: Array> + /** + * every results should be false to be true + */ + $nor?: Array> + /** + * (default) make sure every sub queries return true + */ + $and?: Array> + /** + * at least one result must be false + */ + $nand?: Array> + /** + * invert the result from the following query + */ + $not?: QueryList + + /************** + * PAGINATION * + **************/ + + /** + * define a precise offset of the data you fetched + */ + $offset?: number + /** + * limit the number of elements returned from the dataset + */ + $limit?: number + + /** + * instead of using a precise offset, use a page system + */ + $page?: number + + /********** + * Sorting * + **********/ + + /** + * sort the data the way you want with each keys being priorized + * + * ex: + * {a: Sort.DESC, b: Sort.ASC} + * + * will sort first by a and if equal will sort by b + */ + $sort?: SortInterface +} + +/** + * Logical operators that can be used to filter data + */ +export type QueryLogicalOperator = { + /** + * one of the results should be true to be true + */ + $or: Array> +} | { + /** + * every results should be false to be true + */ + $nor: Array> +} | { + /** + * at least one result must be false + */ + $nand: Array> +} | { + /** + * (default) make sure every sub queries return true + */ + $and: Array> +} | { + /** + * invert the result from the following query + */ + $not: QueryValues +} + +/** + * differents comparisons operators that can be used to filter data + */ +export type QueryComparisonOperator = { + /** + * the remote source value must be absolutelly equal to the proposed value + */ + $eq: Value | null +} | { + /** + * the remote source value must be greater than the proposed value + */ + $gt: number | Date +} | { + /** + * the remote source value must be lesser than the proposed value + */ + $lt: number | Date +} | { + /** + * the remote source value must be greater or equal than the proposed value + */ + $gte: number | Date +} | { + /** + * the remote source value must be lesser or equal than the proposed value + */ + $lte: number | Date +} | { + /** + * the remote source value must be one of the proposed values + */ + $in: Array +} | { + /** + * laxist validation of the remote value + * + * for strings: remote contains value while not following casing like ($lax) `pou` === `Pouet` (remote) + * for numbers: it does a string conversion first + */ + $lax: Value | null +} | { + /** + * (for arrays only) specify a needed length of the array + */ + $len: number | { $gt: number } +} + +export type QueryList = { + [Key in keyof Obj]?: QueryValues +} + +/** + * Differents values the element can take + * if null it will check if it is NULL on the remote + * if array it will check oneOf + * if RegExp it will check if regexp match + */ +export type QueryValues = Value | + null | + Array | + RegExp | + QueryComparisonOperator | + QueryLogicalOperator + +/** + * The query element that allows you to query different elements + */ +export type Query = QueryList & QueryRootFilters + + +// biome-ignore lint/style/useEnumInitializers: +export enum Sort { + /** + * Sort the values from the lowest to the largest + */ + ASC, + /** + * Sort the values form the largest to the lowest + */ + DESC +} + +/** + * sorting interface with priority + */ +export type SortInterface = { + [Key in keyof Obj]?: Sort +} + + + +export declare type AllowedValues = string | number | bigint | boolean | null | undefined + +interface FilterResult { + data: Array + rows: number + pagination?: { + page: number + pageCount: number + totalRows: number + } | undefined +} + +/** + * + * @param data the original data + * @param query the query to filter against + * @param options additionnal execution options + * @returns the filtered/ordered/paginated {@link data} + */ +export function executeQuery>(data: Array, query: Query, options?: { debug?: boolean }): FilterResult { + if (options?.debug) { + console.log('Query', query) + } + // filter + let filtered = data.filter((it) => { + const res = objectLoop(query, (value, key) => { + if (key === '$or') { + for (const sub of value as Array>) { + const final = filterEntry(sub, it) + // eslint-disable-next-line max-depth + if (final) { + return true + } + } + return false + } + if ((key as string).startsWith('$')) { + return true + } + return filterEntry(query, it) + }) + + return res + }) + + if (options?.debug) { + console.log('postFilters', filtered) + } + + // sort + if (query.$sort && objectSize(query.$sort) >= 1) { + // temp until better solution is found + // get the first key + const firstKey = objectKeys(query.$sort)[0] + // biome-ignore lint/style/noNonNullAssertion: item is not null + const first = query.$sort[firstKey]! + + // forst by the first key + filtered = filtered.sort((objA, objB) => { + const a = objA[firstKey] + const b = objB[firstKey] + const ascend = first !== Sort.DESC // it is Ascend by default, so compare against it + if (typeof a === 'number' && typeof b === 'number') { + if (ascend) { + return b - a + } + return a - b + } + if (a instanceof Date && b instanceof Date) { + if (ascend) { + return a.getTime() - b.getTime() + } + return b.getTime() - a.getTime() + } + if (typeof a === 'string' && typeof b === 'string') { + if (ascend) { + return a.localeCompare(b) + } + return b.localeCompare(a) + + } + if (ascend) { + return a > b ? 1 : -1 + } + return a > b ? -1 : 1 + }) + } + if (options?.debug) { + console.log('postSort', filtered) + } + + // length of the query assuming a single page + const unpaginatedLength = filtered.length + let page: number | null = null + let pageCount: number | null = null + // limit + if (!isNull(query.$offset) || !isNull(query.$limit) || !isNull(query.$page)) { + let limit = query.$limit ?? -1 + if (!isNull(query.$page) && isNull(query.$offset) && isNull(query.$limit)) { + console.warn('using $page NEED a $limit too, setting limit to `10`') + limit = 10 + } + // when using $page, they start at 1 and not 0 + const offset = query.$offset ?? (query.$page ? (query.$page - 1) * limit : 0) + filtered = filtered.slice(offset, limit >= 0 ? offset + limit : undefined) + page = Math.trunc(offset / limit) + pageCount = Math.ceil(unpaginatedLength / limit) + } + if (options?.debug) { + console.log('postLimit', filtered) + } + + return { + data: filtered, + rows: filtered.length, + pagination: (!isNull(page) && !isNull(pageCount)) ? { + page: page, + pageCount: pageCount, + totalRows: unpaginatedLength + } : undefined + } +} + +/** + * + * @param query the query of the entry + * @param item the implementation of the item + * @returns if it should be kept or not + */ +export function filterEntry(query: QueryList, item: T): boolean { + // eslint-disable-next-line complexity + const res = objectLoop(query as any, (queryValue, key: keyof typeof query) => { + /** + * TODO: handle $keys + */ + if ((key as string).startsWith('$')) { + return true + } + + let value: unknown = undefined + + // handle deeply nested items + if ((key as string).includes('.')) { + value = objectGet(item, key as string) + } + + // handle if nested item does not exists + if (typeof value === 'undefined') { + value = item[key] + } + + return filterValue(value, queryValue) + }) + + return res +} + +/** + * indicate if a value should be kept by an ENTIRE query + * + * @param value the value to filter + * @param query the full query + * @returns if the query should keep the value or not + */ +function filterValue(value: unknown, query: QueryValues) { + if (typeof query !== 'object' || query === null || query instanceof RegExp || Array.isArray(query)) { + return filterItem(value, query) + } + + // loop through each keys of the query + // eslint-disable-next-line arrow-body-style + return objectLoop(query as any, (querySubValue: unknown, queryKey: string) => { + return filterItem(value, {[queryKey]: querySubValue } as QueryValues) + }) +} + +/** + * + * @param value the value to check + * @param query a SINGLE query to check against + * @returns if the value should be kept or not + */ +// eslint-disable-next-line complexity +function filterItem(value: any, query: QueryValues): boolean { + /** + * check if the value is null + */ + if (query === null) { + return typeof value === 'undefined' || value === null + } + + if (query instanceof RegExp) { + return query.test(typeof value === 'string' ? value : value.toString()) + } + + /** + * ?!? + */ + if (value === null || typeof value === 'undefined') { + return false + } + + /** + * strict value check by default + */ + if (!(typeof query === 'object')) { + if (typeof query === 'string' && typeof value === 'string') { + return query.toLowerCase() === value.toLowerCase() + } + return query === value + } + + /** + * Array checking and $in + */ + if (Array.isArray(query) || '$in' in query) { + const arr = Array.isArray(query) ? query : query.$in as Array + return arr.includes(value) + } + + if ('$inc' in query) { + if (typeof value === 'number' && typeof query.$inc === 'number') { + return value === query.$inc + } + return (value.toString() as string).toLowerCase().includes(query.$inc!.toString()!.toLowerCase()) + } + + if ('$eq' in query) { + return query.$eq === value + } + + /** + * numbers specific cases for numbers + */ + if ('$gt' in query) { + value = value instanceof Date ? value.getTime() : value + const comparedValue = query.$gt instanceof Date ? query.$gt.getTime() : query.$gt + return typeof value === 'number' && typeof comparedValue === 'number' && value > comparedValue + } + + if ('$lt' in query) { + value = value instanceof Date ? value.getTime() : value + const comparedValue = query.$lt instanceof Date ? query.$lt.getTime() : query.$lt + return typeof value === 'number' && typeof comparedValue === 'number' && value < comparedValue + } + + if ('$gte' in query) { + value = value instanceof Date ? value.getTime() : value + const comparedValue = query.$gte instanceof Date ? query.$gte.getTime() : query.$gte + return typeof value === 'number' && typeof comparedValue === 'number' && value >= comparedValue + } + + if ('$lte' in query) { + value = value instanceof Date ? value.getTime() : value + const comparedValue = query.$lte instanceof Date ? query.$lte.getTime() : query.$lte + return typeof value === 'number' && typeof comparedValue === 'number' && value <= comparedValue + } + + if ('$len' in query && Array.isArray(value)) { + return value.length === query.$len + } + + /** + * Logical Operators + */ + if ('$or' in query && Array.isArray(query.$or)) { + return !!query.$or.find((it) => filterValue(value, it as QueryValues)) + } + if ('$and' in query && Array.isArray(query.$and)) { + return !query.$and.find((it) => !filterValue(value, it as QueryValues)) + } + + if ('$not' in query) { + return !filterValue(value, query.$not as QueryValues) + } + + if ('$nor' in query && Array.isArray(query.$nor)) { + return !query.$nor.find((it) => filterValue(value, it as QueryValues)) + } + + if ('$nand' in query && Array.isArray(query.$nand)) { + return !!query.$nand.find((it) => !filterValue(value, it as QueryValues)) + } + + return false +} diff --git a/server/src/libs/QueryEngine/parsers.ts b/server/src/libs/QueryEngine/parsers.ts new file mode 100644 index 000000000..561f3f9f8 --- /dev/null +++ b/server/src/libs/QueryEngine/parsers.ts @@ -0,0 +1,200 @@ +import { isObject, objectLoop } from '@dzeio/object-util' +import { Sort, type Query, type QueryValues } from './filter' + +/** + * List of allowed prefixes + */ +const prefixes = [ + 'like', + 'not', + 'notlike', + 'eq', + 'neq', + 'gte', + 'gt', + 'lt', + 'lte', + 'null', + 'notnull' +] as const + +type Prefix = typeof prefixes[number] + +/** + * indicate if the string is a prefix or not + * + * @param str the string to check + * @returns {boolean} true if it's a prefix, else false + */ +function isPrefix(str: string): str is Prefix { + return prefixes.includes(str as Prefix) +} + +/** + * Parse a {@link URL.searchParams} object into a {@link Query} + * + * @param searchParams the searchparams object to parse + * @param skip keys that are skipped by the transformer + * + * @returns the searchParams into a Query object + */ +export function parseSearchParams(searchParams: URLSearchParams, skip: Array = []): Query { + const query: Query> = {} + skip.push('sort:field', 'sort:order') + + const sortField = searchParams.get('sort:field') + if (sortField) { + const order = searchParams.get('sort:order') ?? 'ASC' + + query.$sort = { [sortField]: order === 'ASC' ? Sort.ASC : Sort.DESC } + } + for (const [key, value] of searchParams) { + + if (key === 'pagination:page') { + query.$page = Number.parseInt(value) + continue + } + + if (key === 'pagination:itemsPerPage') { + query.$limit = Number.parseInt(value) + continue + } + + if (skip.includes(key)) { + continue + } + + const params = parseParam(key, value) + if (!query[key]) { + query[key] = params + } else { + if (isObject(params)) { + objectLoop(params, (v, k) => { + (query[key] as any)[k] = v + return + }) + } else { + query[key] = params + } + } + + } + + return query as Query +} + +/** + * parse a simple {@link Record} object into a {@link Query} + * + * @param searchParams the searchparams object to parse + * @param skip keys that are skipped by the transformer + * + * @returns the searchParams into a Query object + */ +export function recordToQuery(input: Record>, skip: Array = []): Query { + const query: Query> = {} + skip.push('sort:field', 'sort:order') + + const sortField = input['sort:field'] as string + if (sortField) { + const order = input['sort:order'] ?? 'ASC' + + query.$sort = { [sortField]: order === 'ASC' ? Sort.ASC : Sort.DESC } + } + + objectLoop(input, (value: string | Array, key) => { + + if (key === 'pagination:page') { + query.$page = Number.parseInt(value as string) + return + } + + if (key === 'pagination:itemsPerPage') { + query.$limit = Number.parseInt(value as string) + return + } + + if (skip.includes(key)) { + return + } + + if (!Array.isArray(value)) { + value = [value] + } + + for (const it of value) { + const params = parseParam(key, it) + query[key] = query[key] + ? { + "$and": [ + query[key], + params + ] + } + : params + } + }) + + return query as Query +} + +/** + * Parse a single element + * + * @param _key currently unused, kept for future compatibility + * @param value the value to parse + * + * @returns the parsed {@link Query} element to be added + */ +function parseParam(_key: string, value: string): QueryValues { + const colonLocation = value.indexOf(':') + let filter: Prefix = 'like' + let compared: string | number = value + if (colonLocation >= 2) { // 2 because the smallest prefix is two characters long + const prefix = value.slice(0, colonLocation) + if (isPrefix(prefix)) { + filter = prefix + compared = value.slice(colonLocation + 1) + } + } + + function process(item: string | number) { + switch (filter) { + case 'not': + case 'notlike': + return { $not: { $inc: item } } + case 'eq': + return item + case 'neq': + return { $not: item } + case 'gte': + return { $gte: item } + case 'gt': + return { $gt: item } + case 'lt': + return { $lt: item } + case 'lte': + return { $lte: item } + case 'null': + return null + case 'notnull': + return { $not: null } + default: + return { $inc: item } + } + } + + if (/^\d+\.?\d*$/g.test(compared)) { + return process(Number.parseFloat(compared)) + } + + // @deprecated the `,` separator + // TODO: only use the `|` separator + const items = compared.split(compared.includes('|') ? '|' : ',') + + if (items.length === 1) { + return process(items[0]) + } + + return { $or: items.map((it) => process(it)) } +} diff --git a/server/src/status.ts b/server/src/status.ts index e4e97e235..8554ee57f 100644 --- a/server/src/status.ts +++ b/server/src/status.ts @@ -346,7 +346,7 @@ export default express.Router() ${objectMap(setsData, (serie, serieId) => { // Loop through every series and name them - const name = Serie.findOne('en', { filters: { id: serieId }})?.name ?? Serie.findOne('ja' as any, { filters: { id: serieId }})?.name + const name = Serie.findOne('en', { id: serieId })?.name ?? Serie.findOne('ja' as any, { id: serieId })?.name return ` @@ -364,7 +364,7 @@ export default express.Router() // loop through every sets // find the set in the first available language (Should be English globally) - const setTotal = Set.findOne(data[0] as 'en', { filters: { id: setId }}) + const setTotal = Set.findOne(data[0] as 'en', { id: setId }) let str = '' + `` // let str = '' + `` diff --git a/server/tsconfig.json b/server/tsconfig.json index a3165dfaa..33878bf06 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -1,7 +1,8 @@ { "extends": "./node_modules/@dzeio/config/tsconfig.base.json", "compilerOptions": { - "outDir": "dist" + "outDir": "dist", + "esModuleInterop": true }, "include": ["src"] }

${name} (${serieId})

${setTotal?.name} (${setId})
${setTotal?.cardCount.total ?? 1} cards
${setId})