mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Update asian sets (#554)
This commit is contained in:
52
data-asia/SV/SVLN/001.ts
Normal file
52
data-asia/SV/SVLN/001.ts
Normal file
@ -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
|
59
data-asia/SV/SVLN/002.ts
Normal file
59
data-asia/SV/SVLN/002.ts
Normal file
@ -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
|
42
data-asia/SV/SVLN/003.ts
Normal file
42
data-asia/SV/SVLN/003.ts
Normal file
@ -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
|
58
data-asia/SV/SVLN/004.ts
Normal file
58
data-asia/SV/SVLN/004.ts
Normal file
@ -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
|
51
data-asia/SV/SVLN/005.ts
Normal file
51
data-asia/SV/SVLN/005.ts
Normal file
@ -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
|
58
data-asia/SV/SVLN/006.ts
Normal file
58
data-asia/SV/SVLN/006.ts
Normal file
@ -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
|
61
data-asia/SV/SVLN/007.ts
Normal file
61
data-asia/SV/SVLN/007.ts
Normal file
@ -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
|
56
data-asia/SV/SVLN/008.ts
Normal file
56
data-asia/SV/SVLN/008.ts
Normal file
@ -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
|
58
data-asia/SV/SVLN/009.ts
Normal file
58
data-asia/SV/SVLN/009.ts
Normal file
@ -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
|
54
data-asia/SV/SVLN/010.ts
Normal file
54
data-asia/SV/SVLN/010.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/011.ts
Normal file
22
data-asia/SV/SVLN/011.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/012.ts
Normal file
22
data-asia/SV/SVLN/012.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/013.ts
Normal file
22
data-asia/SV/SVLN/013.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/014.ts
Normal file
22
data-asia/SV/SVLN/014.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/015.ts
Normal file
22
data-asia/SV/SVLN/015.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/016.ts
Normal file
22
data-asia/SV/SVLN/016.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/017.ts
Normal file
22
data-asia/SV/SVLN/017.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/018.ts
Normal file
22
data-asia/SV/SVLN/018.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/019.ts
Normal file
22
data-asia/SV/SVLN/019.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/020.ts
Normal file
22
data-asia/SV/SVLN/020.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/021.ts
Normal file
22
data-asia/SV/SVLN/021.ts
Normal file
@ -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
|
22
data-asia/SV/SVLN/022.ts
Normal file
22
data-asia/SV/SVLN/022.ts
Normal file
@ -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
|
Reference in New Issue
Block a user