Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add the Japanese SV8 #559

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions data-asia/SV/SV8.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { Set } from '../../interfaces'
import serie from '../SV'

const set: Set = {
id: 'SV8',
name: {
ja: '超電ブレイカー'
},

serie: serie,

cardCount: {
official: 106
},
releaseDate: {
ja: '2024-10-18'
}
}

export default set
46 changes: 46 additions & 0 deletions data-asia/SV/SV8/001.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"

const card: Card = {
set: Set,

name: {
ja: "タマタマ"
},

illustrator: "OKUBO",
rarity: "Common",
category: "Pokemon",
dexId: [102],
hp: 50,
types: ["Grass"],

description: {
ja: "タマタマだけに 伝わる テレパシーを 出し合っているので どんなときでも 6匹 集まれる。"
},

stage: "Basic",

attacks: [{
cost: ["Colorless"],

name: {
ja: "すいとる"
},

damage: 10,

effect: {
ja: "このポケモンのHPを「10」回復する。"
}
}],

weaknesses: [{
type: "Fire",
value: "×2"
}],

retreat: 1
}

export default card
46 changes: 46 additions & 0 deletions data-asia/SV/SV8/002.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"

const card: Card = {
set: Set,

name: {
ja: "ナッシー"
},

illustrator: "Oswaldo KATO",
rarity: "Uncommon",
category: "Pokemon",
dexId: [103],
hp: 130,
types: ["Grass"],

description: {
ja: "ごくまれに 頭の どれか ひとつが 地面に 落ちると タマタマになって 動きだすという。"
},

stage: "Stage1",

attacks: [{
cost: ["Grass"],

name: {
ja: "たまなげアワー"
},

damage: "60×",

effect: {
ja: "おたがいのバトルポケモンについているエネルギーの数ぶんコインを投げ、オモテの数×60ダメージ。"
}
}],

weaknesses: [{
type: "Fire",
value: "×2"
}],

retreat: 2
}

export default card
53 changes: 53 additions & 0 deletions data-asia/SV/SV8/003.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"

const card: Card = {
set: Set,

name: {
ja: "アイアントex"
},

illustrator: "PLANETA Tsuji",
rarity: "Double rare",
category: "Pokemon",
hp: 190,
types: ["Grass"],
stage: "Basic",
suffix: "EX",

abilities: [{
type: "Ability",

name: {
ja: "いきなりけずる"
},

effect: {
ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。相手の山札を上から1枚トラッシュする。"
}
}],

attacks: [{
cost: ["Grass", "Colorless", "Colorless"],

name: {
ja: "リベンジクラッシュ"
},

damage: "120+",

effect: {
ja: "相手がすでにとったサイドの枚数×30ダメージ追加。"
}
}],

weaknesses: [{
type: "Fire",
value: "×2"
}],

retreat: 2
}

export default card
44 changes: 44 additions & 0 deletions data-asia/SV/SV8/004.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"

const card: Card = {
set: Set,

name: {
ja: "コフキムシ"
},

illustrator: "Iori Suzuki",
rarity: "Common",
category: "Pokemon",
dexId: [664],
hp: 40,
types: ["Grass"],

description: {
ja: "毒の粉を まき散らして 敵を 追い払う。 棲んでいる 土地により エサにする 植物が 違う。"
},

stage: "Basic",

attacks: [{
cost: ["Colorless"],

name: {
ja: "なかまをよぶ"
},

effect: {
ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。"
}
}],

weaknesses: [{
type: "Fire",
value: "×2"
}],

retreat: 1
}

export default card
52 changes: 52 additions & 0 deletions data-asia/SV/SV8/005.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"

const card: Card = {
set: Set,

name: {
ja: "コフーライ"
},

illustrator: "tono",
rarity: "Common",
category: "Pokemon",
dexId: [665],
hp: 80,
types: ["Grass"],

description: {
ja: "決まった 棲み処を 持たない。 気の向くまま 野山を 歩きまわり 進化の エネルギーを 蓄える。"
},

stage: "Stage1",

attacks: [{
cost: ["Colorless"],

name: {
ja: "あるきまわる"
},

effect: {
ja: "このポケモンをベンチポケモンと入れ替える。"
}
}, {
cost: ["Grass"],

name: {
ja: "たいあたり"
},

damage: 30
}],

weaknesses: [{
type: "Fire",
value: "×2"
}],

retreat: 3
}

export default card
52 changes: 52 additions & 0 deletions data-asia/SV/SV8/006.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"

const card: Card = {
set: Set,

name: {
ja: "ビビヨン"
},

illustrator: "Amelicart",
rarity: "Uncommon",
category: "Pokemon",
dexId: [666],
hp: 120,
types: ["Grass"],

description: {
ja: "不思議な 土地で 生まれた。 色鮮やかな 毒の りんぷんを 翅から 散らして 戦う。"
},

stage: "Stage2",

attacks: [{
cost: ["Colorless"],

name: {
ja: "エボルパウダー"
},

effect: {
ja: "自分のベンチポケモン全員からそれぞれ進化するカードを、自分の山札から1枚ずつ選び、それぞれにのせて進化させる。そして山札を切る。"
}
}, {
cost: ["Grass"],

name: {
ja: "カッターウインド"
},

damage: 90
}],

weaknesses: [{
type: "Fire",
value: "×2"
}],

retreat: 1
}

export default card
42 changes: 42 additions & 0 deletions data-asia/SV/SV8/007.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"

const card: Card = {
set: Set,

name: {
ja: "カプサイジ"
},

illustrator: "Julie Hang",
rarity: "Common",
category: "Pokemon",
dexId: [951],
hp: 70,
types: ["Grass"],

description: {
ja: "パルデアの 郷土料理は 抜け落ちた カプサイジの 前歯が 使われているので 激辛なのだ。"
},

stage: "Basic",

attacks: [{
cost: ["Colorless", "Colorless"],

name: {
ja: "とびだしヘッド"
},

damage: 20
}],

weaknesses: [{
type: "Fire",
value: "×2"
}],

retreat: 1
}

export default card
Loading