mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-29 19:19:50 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
47
data-asia/S/S10b/001.ts
Normal file
47
data-asia/S/S10b/001.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "妙蛙種子"
|
||||
},
|
||||
|
||||
illustrator: "sowsow",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "從出生的時候開始背上就有一顆植物種子。這顆種子會漸漸地長大。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "藤鞭"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Grass"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "飛葉快刀"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Grass", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S10b/002.ts
Normal file
50
data-asia/S/S10b/002.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "妙蛙草"
|
||||
},
|
||||
|
||||
illustrator: "zig",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "當背上的花苞長大之後,牠似乎就無法再用兩隻腳站立起來了。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "招集芳香"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫選擇最多2張寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
cost: ["Grass"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "飛葉快刀"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Grass", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
52
data-asia/S/S10b/003.ts
Normal file
52
data-asia/S/S10b/003.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "妙蛙花"
|
||||
},
|
||||
|
||||
illustrator: "KEIICHIRO ITO",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "把太陽的能源當成養分,開出碩大的花朵。總是朝著有陽光的地方移動。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "暈暈捕捉器"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合時,可使用1次。擲1次硬幣若為正面,則選擇對手的1隻備戰寶可夢,與戰鬥寶可夢互換。然後,將新上場的寶可夢【中毒】與【睡眠】。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "日光束"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
cost: ["Grass", "Grass", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S10b/004.ts
Normal file
56
data-asia/S/S10b/004.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "光輝妙蛙花"
|
||||
},
|
||||
|
||||
illustrator: "Misa Tsutsui",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "把太陽的能源當成養分,開出碩大的花朵。總是朝著有陽光的地方移動。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "陽光綻放"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合結束時,可使用1次。從牌庫抽卡直到自己的手牌滿4張為止。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "危險花粉"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢【中毒】,【灼傷】與【混亂】。"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Grass", "Grass", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
49
data-asia/S/S10b/005.ts
Normal file
49
data-asia/S/S10b/005.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "阿羅拉 椰蛋樹V"
|
||||
},
|
||||
|
||||
illustrator: "MUGENUP",
|
||||
category: "Pokemon",
|
||||
hp: 240,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "悠悠成長"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則從自己的牌庫選擇最多5張【草】能量卡,以任意方式附於自己的寶可夢身上。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
cost: ["Grass"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "嗡嗡頭擊"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的1隻寶可夢,受到這隻寶可夢身上附加的【草】能量的數量×30點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||||
},
|
||||
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
44
data-asia/S/S10b/006.ts
Normal file
44
data-asia/S/S10b/006.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "圓絲蛛"
|
||||
},
|
||||
|
||||
illustrator: "Yuka Morii",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
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: "F"
|
||||
}
|
||||
|
||||
export default card
|
55
data-asia/S/S10b/007.ts
Normal file
55
data-asia/S/S10b/007.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "阿利多斯"
|
||||
},
|
||||
|
||||
illustrator: "Misa Tsutsui",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會吐絲來捕捉獵物。每到夜晚就會離開巢穴,積極地展開狩獵。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "毒線束縛"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【中毒】與【麻痺】。"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "吸取"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將這隻寶可夢恢復「50」HP。"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Grass", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
44
data-asia/S/S10b/008.ts
Normal file
44
data-asia/S/S10b/008.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "小火龍"
|
||||
},
|
||||
|
||||
illustrator: "saino misaki",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "天生喜歡熱熱的東西。據說當牠被雨淋濕的時候,尾巴的末端會冒出煙來。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "燃燒之尾"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫選擇1張【火】能量卡,附於這隻寶可夢身上。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Fire"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
51
data-asia/S/S10b/009.ts
Normal file
51
data-asia/S/S10b/009.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "火恐龍"
|
||||
},
|
||||
|
||||
illustrator: "Shiburingaru",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "揮動燃燒著火焰的尾巴,用鋒利的爪子撕裂對手。性情十分粗暴。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "抓"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fire", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "噴射火焰"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "選擇1個這隻寶可夢身上附加的【火】能量,將其丟棄。"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Fire", "Fire", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S10b/010.ts
Normal file
56
data-asia/S/S10b/010.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "噴火龍"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會噴出彷彿連岩石都能燒焦的灼熱火焰。有時會引發森林火災。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "猛烈燃燒"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "只要這隻寶可夢在場上,自己的場上寶可夢身上附加的基本【火】能量,各視為提供2個【火】能量。無論有多少隻擁有這個特性的寶可夢,這個效果也不會重複。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "閃焰衝鋒"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將這隻寶可夢身上附加的【火】能量全部丟棄。"
|
||||
},
|
||||
|
||||
damage: 170,
|
||||
cost: ["Fire", "Fire", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S10b/011.ts
Normal file
56
data-asia/S/S10b/011.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "光輝噴火龍"
|
||||
},
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會噴出彷彿連岩石都能燒焦的灼熱火焰。有時會引發森林火災。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "激動之心"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這隻寶可夢使用招式所需的【無】能量,減少對手已經獲得的獎賞卡的張數數量。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "烈焰爆"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「烈焰爆」。"
|
||||
},
|
||||
|
||||
damage: 250,
|
||||
cost: ["Fire", "Colorless", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
52
data-asia/S/S10b/012.ts
Normal file
52
data-asia/S/S10b/012.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "火焰鳥"
|
||||
},
|
||||
|
||||
illustrator: "Pani Kobayashi",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "每當牠拍動翅膀,羽毛就會閃爍出美麗的赤紅火焰。是傳說的鳥寶可夢之一。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "閃焰象徵"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "只要這隻寶可夢在場上,自己的【火】屬性的【基礎】寶可夢(「火焰鳥」 除外)使用的招式,對對手的戰鬥寶可夢造成的傷害「+10」點。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "火焰之翼"
|
||||
},
|
||||
|
||||
damage: 110,
|
||||
cost: ["Fire", "Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
51
data-asia/S/S10b/013.ts
Normal file
51
data-asia/S/S10b/013.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "呆火駝"
|
||||
},
|
||||
|
||||
illustrator: "Shibuzoh.",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "體內儲存著1200度的熔岩。使用火屬性的招式後,駝峰就會縮小。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "撞擊"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Fire", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "踩踏"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則增加50點傷害。"
|
||||
},
|
||||
|
||||
damage: "50+",
|
||||
cost: ["Fire", "Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S10b/014.ts
Normal file
50
data-asia/S/S10b/014.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "噴火駝"
|
||||
},
|
||||
|
||||
illustrator: "yuu",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "發怒時會從背上的駝峰裡噴出灼熱的熔岩。在火山口有牠的住所。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "爆裂彈"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的2隻寶可夢各受到50點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||||
},
|
||||
|
||||
cost: ["Fire", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "高溫爆破"
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
cost: ["Fire", "Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
40
data-asia/S/S10b/015.ts
Normal file
40
data-asia/S/S10b/015.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "傑尼龜"
|
||||
},
|
||||
|
||||
illustrator: "sowsow",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "當牠把長長的脖子縮回殼裡時,會順勢發射力道強勁的水槍。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "水槍"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
51
data-asia/S/S10b/016.ts
Normal file
51
data-asia/S/S10b/016.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "卡咪龜"
|
||||
},
|
||||
|
||||
illustrator: "kurumitsu",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "被視為長壽的象徵。如果卡咪龜的殼上長著苔蘚,那就代表牠已經活了非常久。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "水槍"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Water"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "水炮"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加這隻寶可夢身上附加的【水】能量的數量×10點傷害。"
|
||||
},
|
||||
|
||||
damage: "50+",
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S10b/017.ts
Normal file
56
data-asia/S/S10b/017.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "水箭龜"
|
||||
},
|
||||
|
||||
illustrator: "NC Empire",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會用重量驚人的身體壓住對手使其昏厥。遇到危險時會躲進殼裡。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "活力泉"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合時可使用1次,若使用,則自己的回合結束。從自己的牌庫選擇最多6張能量卡,以任意方式附於自己的寶可夢身上。並且重洗牌庫。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "水炮"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加這隻寶可夢身上附加的【水】能量的數量×30點傷害。"
|
||||
},
|
||||
|
||||
damage: "90+",
|
||||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S10b/018.ts
Normal file
56
data-asia/S/S10b/018.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "光輝水箭龜"
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會用重量驚人的身體壓住對手使其昏厥。遇到危險時會躲進殼裡。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "水泵射擊"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合,若從自己的手牌將1張【水】能量卡丟棄,則可使用1次。在對手的1隻備戰寶可夢身上放置2個傷害指示物。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "激流炮"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「激流炮」。"
|
||||
},
|
||||
|
||||
damage: 170,
|
||||
cost: ["Water", "Water", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
53
data-asia/S/S10b/019.ts
Normal file
53
data-asia/S/S10b/019.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "呆呆獸"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "呆頭呆腦而且遲鈍。尾巴被吃掉也不會感到疼痛,甚至不會發現它又長出來了。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "紋絲不動"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將這隻寶可夢恢復「30」HP。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "釣魚日"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的棄牌區選擇1張物品卡,在給對手看過後加入手牌。"
|
||||
},
|
||||
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
54
data-asia/S/S10b/020.ts
Normal file
54
data-asia/S/S10b/020.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "呆殼獸"
|
||||
},
|
||||
|
||||
illustrator: "Mina Nakai",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "被大舌貝咬住尾巴而進化。大舌貝陶醉在尾巴滲出的甜味裡,彷彿置身夢境。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "轉轉衝撞"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將雙方的戰鬥寶可夢【睡眠】。"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "黃昏耀閃"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這個招式只有在對手剩餘獎賞卡的張數為1張時才可使用。獲得2張自己的獎賞卡。"
|
||||
},
|
||||
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
54
data-asia/S/S10b/021.ts
Normal file
54
data-asia/S/S10b/021.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "鯉魚王"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
category: "Pokemon",
|
||||
hp: 30,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "力量和速度都不太行。是世界上最弱最可憐的寶可夢。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "跳跳群聚"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫選擇任意數量的「鯉魚王」卡,在給對手看過後加入手牌。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "怒之尾鰭"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加自己的棄牌區的「鯉魚王」與「暴鯉龍」的張數×30點傷害。"
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
54
data-asia/S/S10b/022.ts
Normal file
54
data-asia/S/S10b/022.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "暴鯉龍"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "性情非常凶暴。從嘴裡發出的破壞光線能夠將一切燃燒殆盡。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "亂暴"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲硬幣直到出現反面,將對手的牌庫上方與正面出現的次數×2張相同數量的卡丟棄。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "瘋狂飛濺"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將自己的牌庫上方5張卡丟棄。"
|
||||
},
|
||||
|
||||
damage: 230,
|
||||
cost: ["Water", "Water", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
51
data-asia/S/S10b/023.ts
Normal file
51
data-asia/S/S10b/023.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "拉普拉斯"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "頭腦聰慧,心地善良的寶可夢。會一邊以優美的聲音歌唱,一邊暢游在大海之上。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "冰凍光束"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Water"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "衝浪"
|
||||
},
|
||||
|
||||
damage: 110,
|
||||
cost: ["Water", "Water", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
52
data-asia/S/S10b/024.ts
Normal file
52
data-asia/S/S10b/024.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "急凍鳥"
|
||||
},
|
||||
|
||||
illustrator: "Jiro Sasumo",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "藍色的美麗羽毛據說是由冰構成的。會搖曳著長長的尾巴飛過雪山。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "冰之象徵"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "只要這隻寶可夢在場上,自己的【水】屬性的【基礎】寶可夢(「急凍鳥」 除外)使用的招式,對對手的戰鬥寶可夢造成的傷害「+10」點。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "凍凝之風"
|
||||
},
|
||||
|
||||
damage: 110,
|
||||
cost: ["Water", "Water", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
52
data-asia/S/S10b/025.ts
Normal file
52
data-asia/S/S10b/025.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "膽小蟲"
|
||||
},
|
||||
|
||||
illustrator: "Miki Tanaka",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "無論是腐爛的東西還是垃圾都能吃光光,是大自然的清道夫。巢穴附近總是保持乾淨。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "懦弱"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若對手的場上有「寶可夢【V】」,則這隻寶可夢【撤退】所需的能量全部消除。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "咬"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
51
data-asia/S/S10b/026.ts
Normal file
51
data-asia/S/S10b/026.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "具甲武者"
|
||||
},
|
||||
|
||||
illustrator: "otumami",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "為了勝利不擇手段。會看準敵人疏忽的時機,用前腳上的小爪子解決對方。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "迎頭一擊"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在這個回合,若從備戰區將這隻寶可夢放置於戰鬥場,則增加90點傷害。"
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
cost: ["Water"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "劈開"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Water", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
44
data-asia/S/S10b/027.ts
Normal file
44
data-asia/S/S10b/027.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "皮卡丘"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "越是能製造出強大電流的皮卡丘,臉頰上的囊就越柔軟,同時也越有伸展性。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "好友伏特"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在這個回合,若從手牌使出了支援者卡,則增加30點傷害。"
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
cost: ["Lightning", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
44
data-asia/S/S10b/028.ts
Normal file
44
data-asia/S/S10b/028.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "皮卡丘"
|
||||
},
|
||||
|
||||
illustrator: "Narumi Sato",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "越是能製造出強大電流的皮卡丘,臉頰上的囊就越柔軟,同時也越有伸展性。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "瘋狂伏特"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這隻寶可夢也受到30點傷害。"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Lightning", "Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
52
data-asia/S/S10b/029.ts
Normal file
52
data-asia/S/S10b/029.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "閃電鳥"
|
||||
},
|
||||
|
||||
illustrator: "Yuya Oka",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "能夠自在地操縱雷電。相傳牠的巢穴就在烏黑的雷雲之中。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "電氣象徵"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "只要這隻寶可夢在場上,自己的【雷】屬性的【基礎】寶可夢(「閃電鳥」 除外)使用的招式,對對手的戰鬥寶可夢造成的傷害「+10」點。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "雷電球"
|
||||
},
|
||||
|
||||
damage: 110,
|
||||
cost: ["Lightning", "Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
52
data-asia/S/S10b/030.ts
Normal file
52
data-asia/S/S10b/030.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "超夢V"
|
||||
},
|
||||
|
||||
illustrator: "Nurikabe",
|
||||
category: "Pokemon",
|
||||
hp: 220,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "超念力"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Psychic", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "轉移破壞"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "選擇1個這隻寶可夢身上附加的能量,改附於備戰寶可夢身上。"
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
cost: ["Psychic", "Psychic", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
54
data-asia/S/S10b/031.ts
Normal file
54
data-asia/S/S10b/031.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "超夢VSTAR"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
category: "Pokemon",
|
||||
hp: 280,
|
||||
types: ["Psychic"],
|
||||
stage: "VMAX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "精神光芒"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將自己的場上寶可夢身上附加的最多3張【超】能量卡丟棄,造成其張數×90點傷害。"
|
||||
},
|
||||
|
||||
damage: "90×",
|
||||
cost: ["Psychic", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "[VSTAR力量]星星襲擊"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的所有「寶可夢【V】」各受到120點傷害。這個招式的傷害不計算弱點・抵抗力。[對戰中,己方只可使用1次【VSTAR】力量。]"
|
||||
},
|
||||
|
||||
cost: ["Psychic", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
55
data-asia/S/S10b/032.ts
Normal file
55
data-asia/S/S10b/032.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "天然雀"
|
||||
},
|
||||
|
||||
illustrator: "HYOGONOSUKE",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "能夠靈巧地跳上樹幹。喜歡在枝頭上啄食新長出來的嫩芽。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "小憩"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將這隻寶可夢恢復「20」HP。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "啄"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
59
data-asia/S/S10b/033.ts
Normal file
59
data-asia/S/S10b/033.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "天然鳥"
|
||||
},
|
||||
|
||||
illustrator: "Hataya",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "人們相信牠之所以幾乎不動也不叫地靜靜待著,是因為牠正注視著過去和未來。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "精刺波"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的1隻「寶可夢【V】」受到90點傷害。這個招式的傷害不計算弱點・抵抗力。"
|
||||
},
|
||||
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "精神歪曲"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Psychic", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
59
data-asia/S/S10b/034.ts
Normal file
59
data-asia/S/S10b/034.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "月石"
|
||||
},
|
||||
|
||||
illustrator: "miki kudo",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "月亮的盈虧似乎會影響牠力量的增減。每到滿月之夜就會變得活躍。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "循環抽出"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將自己的1張手牌丟棄。然後,從自己的牌庫抽出3張卡。"
|
||||
},
|
||||
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "月亮強念"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加這隻寶可夢身上附加的【超】能量的數量×30點傷害。"
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
54
data-asia/S/S10b/035.ts
Normal file
54
data-asia/S/S10b/035.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "仙子伊布"
|
||||
},
|
||||
|
||||
illustrator: "Atsushi Furusawa",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會從蝴蝶結般的觸角裡釋放能夠消除敵意的波動,藉此平息紛爭。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "伴手禮"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫任意選擇最多2張卡加入手牌。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "奇跡閃光"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若對手的戰鬥寶可夢為【龍】寶可夢,則增加90點傷害。"
|
||||
},
|
||||
|
||||
damage: "90+",
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
55
data-asia/S/S10b/036.ts
Normal file
55
data-asia/S/S10b/036.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "大岩蛇"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會一邊在地底挖掘前進,一邊吸收各種堅硬的物體,藉此讓身體變得更加結實。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "岩石封鎖"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "怒之橫掃"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×50點傷害。"
|
||||
},
|
||||
|
||||
damage: "50×",
|
||||
cost: ["Fighting", "Fighting", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
44
data-asia/S/S10b/037.ts
Normal file
44
data-asia/S/S10b/037.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "幼基拉斯"
|
||||
},
|
||||
|
||||
illustrator: "sui",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "誕生於地底深處。把周圍的泥土都吃光後,就會出現在地上變成蛹。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "碎岩"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則增加10點傷害。"
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
51
data-asia/S/S10b/038.ts
Normal file
51
data-asia/S/S10b/038.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "沙基拉斯"
|
||||
},
|
||||
|
||||
illustrator: "Sumiyoshi Kizuki",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "被外殼覆蓋,但能自由自在地跳來跳去。兼具硬度與速度,因此破壞力超群。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "粉碎子彈"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "雙方的所有備戰寶可夢也各受到20點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "撞擊"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Fighting", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
52
data-asia/S/S10b/039.ts
Normal file
52
data-asia/S/S10b/039.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "太陽岩"
|
||||
},
|
||||
|
||||
illustrator: "Sekio",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "當牠旋轉自己的身體時,會發出太陽般的光芒,讓敵人的眼睛暫時失明。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "太陽能量"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合時,可使用1次。從自己的棄牌區選擇1張【超】能量卡,附於自己的「月石」身上。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "迴轉攻擊"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
51
data-asia/S/S10b/040.ts
Normal file
51
data-asia/S/S10b/040.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "修建老匠V"
|
||||
},
|
||||
|
||||
illustrator: "Ayaka Yoshida",
|
||||
category: "Pokemon",
|
||||
hp: 230,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "雙倍奉還"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加與在上個對手的回合這隻寶可夢受到的招式的傷害點相同數量的傷害。"
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
cost: ["Fighting"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "爆裂拳"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則增加90點傷害,並將對手的戰鬥寶可夢【混亂】。"
|
||||
},
|
||||
|
||||
damage: "90+",
|
||||
cost: ["Fighting", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
44
data-asia/S/S10b/041.ts
Normal file
44
data-asia/S/S10b/041.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "阿羅拉 小拉達"
|
||||
},
|
||||
|
||||
illustrator: "KIYOTAKA OSHIYAMA",
|
||||
category: "Pokemon",
|
||||
hp: 40,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "每天夜裡都會為了尋找食物而潛入人們家中。牠們的大量出現已經成了社會問題。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "必殺門牙"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
53
data-asia/S/S10b/042.ts
Normal file
53
data-asia/S/S10b/042.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "阿羅拉 拉達"
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "每天夜裡都會為了尋找食物而潛入人們家中。牠們的大量出現已經成了社會問題。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "找出"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫任意選擇1張卡加入手牌。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
cost: ["Darkness"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "怒之門牙"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「10」為止。"
|
||||
},
|
||||
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
55
data-asia/S/S10b/043.ts
Normal file
55
data-asia/S/S10b/043.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "班基拉斯"
|
||||
},
|
||||
|
||||
illustrator: "Nisota Niso",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "擁有無論遭受任何攻擊都能毫髮無傷的身體,因此會不斷向對手挑戰。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "激狂粉碎"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "造成自己的所有備戰寶可夢身上放置的傷害指示物的數量×10點傷害。"
|
||||
},
|
||||
|
||||
damage: "10×",
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "地震"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "自己的所有備戰寶可夢也各受到20點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
cost: ["Darkness", "Darkness", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
60
data-asia/S/S10b/044.ts
Normal file
60
data-asia/S/S10b/044.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "大鋼蛇"
|
||||
},
|
||||
|
||||
illustrator: "GOSSAN",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "據說當大岩蛇活到了100年以上,身體的成分就會變得如同鑽石一般。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "泰山壓頂"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "鐵之光炮"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
|
||||
},
|
||||
|
||||
damage: 170,
|
||||
cost: ["Metal", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
49
data-asia/S/S10b/045.ts
Normal file
49
data-asia/S/S10b/045.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "美錄坦"
|
||||
},
|
||||
|
||||
illustrator: "Sumiyoshi Kizuki",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "身體是融化成液狀的鋼鐵。 能夠將地底的鐵或其他金屬 溶解後吸收進體內。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "電擊"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S10b/046.ts
Normal file
56
data-asia/S/S10b/046.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "美錄梅塔"
|
||||
},
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "擁有產出鐵的力量,因而受到 人們的崇拜。不知為何,在經過 3000年的時間後甦醒過來。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "頭錘"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "橫掃粉碎"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲2次硬幣,增加正面出現的次數×90點傷害。"
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
cost: ["Metal", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
52
data-asia/S/S10b/047.ts
Normal file
52
data-asia/S/S10b/047.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "美錄梅塔V"
|
||||
},
|
||||
|
||||
illustrator: "sadaji",
|
||||
category: "Pokemon",
|
||||
hp: 220,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "臂充能"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若希望,從自己的手牌選擇1張【鋼】能量卡,附於這隻寶可夢身上。"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Metal", "Metal"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "百萬噸重拳"
|
||||
},
|
||||
|
||||
damage: 140,
|
||||
cost: ["Metal", "Metal", "Metal"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
44
data-asia/S/S10b/048.ts
Normal file
44
data-asia/S/S10b/048.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "美錄梅塔VMAX"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Tsuji",
|
||||
category: "Pokemon",
|
||||
hp: 330,
|
||||
types: ["Metal"],
|
||||
stage: "VMAX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "超極巨鋼甲重拳"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "與使用這個招式所需的能量相比,增加身上多附的【鋼】能量的數量×60點傷害。可增加的傷害數值為最多2個【鋼】能量。"
|
||||
},
|
||||
|
||||
damage: "160+",
|
||||
cost: ["Metal", "Metal", "Metal"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
42
data-asia/S/S10b/049.ts
Normal file
42
data-asia/S/S10b/049.ts
Normal file
@ -0,0 +1,42 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "快龍V"
|
||||
},
|
||||
|
||||
illustrator: "kawayoo",
|
||||
category: "Pokemon",
|
||||
hp: 230,
|
||||
types: ["Dragon"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "破壞光線"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的能量,將其丟棄。"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Water", "Lightning"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "光炮尾"
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
cost: ["Water", "Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
44
data-asia/S/S10b/050.ts
Normal file
44
data-asia/S/S10b/050.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "快龍VSTAR"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Tsuji",
|
||||
category: "Pokemon",
|
||||
hp: 280,
|
||||
types: ["Dragon"],
|
||||
stage: "VMAX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "終極衝擊"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
|
||||
},
|
||||
|
||||
damage: 250,
|
||||
cost: ["Water", "Lightning", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "[VSTAR力量]龍之星星"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "查看自己的牌庫上方12張卡,從其中選擇任意數量的【水】或者【雷】能量卡,以任意方式附於自己的寶可夢身上。將剩餘卡放回牌庫並重洗。[對戰中,己方只可使用1次【VSTAR】力量。]"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S10b/051.ts
Normal file
50
data-asia/S/S10b/051.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "吉利蛋"
|
||||
},
|
||||
|
||||
illustrator: "ryoma uratsuka",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "牠的蛋不僅營養豐富,而且非常美味。因此被視為是高級的食材。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "美味蛋"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "選擇自己的1隻備戰寶可夢,恢復「30」HP。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "重摑"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S10b/052.ts
Normal file
50
data-asia/S/S10b/052.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "幸福蛋"
|
||||
},
|
||||
|
||||
illustrator: "Teeziro",
|
||||
category: "Pokemon",
|
||||
hp: 200,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "發現虛弱的寶可夢時就會把自己的蛋分給牠,並且一直照顧對方直到牠痊癒。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "全滿蛋"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "選擇自己的1隻備戰寶可夢,將HP全部恢復。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "意念頭錘"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
43
data-asia/S/S10b/053.ts
Normal file
43
data-asia/S/S10b/053.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "百變怪"
|
||||
},
|
||||
|
||||
illustrator: "Misa Tsutsui",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "能夠藉由重組全身的細胞,變得與看到的東西一模一樣,然而一旦放鬆就會變回原形。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "突然變化"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這隻寶可夢可使用自己棄牌區的【基礎】寶可夢(「擁有規則的寶可夢」除外)持有的所有招式。[需要有足夠使用招式的能量。]"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S10b/054.ts
Normal file
50
data-asia/S/S10b/054.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "伊布"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "伊布擁有著能夠為了適應周遭的環境而改變身體構造的能力。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "撒嬌聲"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在不看正面的情況下,從對手的手牌選擇1張,在看過那張卡正面後放回對手的牌庫並重洗。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "撞擊"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S10b/055.ts
Normal file
50
data-asia/S/S10b/055.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "光輝伊布"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "伊布擁有著能夠為了適應周遭的環境而改變身體構造的能力。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "集亮亮"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫任意選擇最多與自己的場上寶可夢屬性種類數量相同數量的卡,加入手牌。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "突進衝刺"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S10b/056.ts
Normal file
56
data-asia/S/S10b/056.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "卡比獸"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "每天不吃下400公斤的食物絕不會善罷甘休。吃飽了就會開始睡覺。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "擋道"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "只要這隻寶可夢在戰鬥場上,對手的戰鬥寶可夢無法撤退。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "倒下"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將這隻寶可夢【睡眠】。"
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S10b/057.ts
Normal file
50
data-asia/S/S10b/057.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "長尾怪手"
|
||||
},
|
||||
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會從樹上尋找獵物。只要發現自己愛吃的甜竹竹,就會興奮地飛撲過去。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "動來動去"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "巴掌"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S10b/058.ts
Normal file
56
data-asia/S/S10b/058.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "雙尾怪手"
|
||||
},
|
||||
|
||||
illustrator: "Scav",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "不管做什麼事都會用到尾巴。如果牠用2根尾巴抱緊你,就代表牠真的和你很親近。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "猴技"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "當這隻寶可夢受到招式的傷害時,己方擲1次硬幣。若為正面,則這隻寶可夢不會受到那個傷害。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "投擲MAX"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲與這隻寶可夢身上附加的能量的數量相同次數的硬幣,造成正面出現的次數×60點傷害。"
|
||||
},
|
||||
|
||||
damage: "60×",
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
48
data-asia/S/S10b/059.ts
Normal file
48
data-asia/S/S10b/059.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "請假王V"
|
||||
},
|
||||
|
||||
illustrator: "Saki Hayashiro",
|
||||
category: "Pokemon",
|
||||
hp: 230,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "習懶成癖"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若自己剩餘獎賞卡的張數為6張・4張・2張,則這隻寶可夢無法使用招式。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "重磅衝擊"
|
||||
},
|
||||
|
||||
damage: 260,
|
||||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
44
data-asia/S/S10b/060.ts
Normal file
44
data-asia/S/S10b/060.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "大牙狸"
|
||||
},
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "總是啃大樹和石頭來打磨堅硬的門牙。在水邊築巢生活。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "猛撞"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這隻寶可夢也受到10點傷害。"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
52
data-asia/S/S10b/061.ts
Normal file
52
data-asia/S/S10b/061.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "大尾狸"
|
||||
},
|
||||
|
||||
illustrator: "KIYOTAKA OSHIYAMA",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "用樹幹和泥巴築起水壩,堵住河流建造住所。以勤勞而聞名。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "安心水壩"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "只要這隻寶可夢在備戰區,自己的牌庫不會受到對手的招式・特性・物品・支援者的卡牌效果影響而丟棄牌庫。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "頭突"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
55
data-asia/S/S10b/062.ts
Normal file
55
data-asia/S/S10b/062.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "豆豆鴿"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會出現在人類生活的地方。一旦撒出飼料就會有好幾百隻豆豆鴿聚集而來,千萬要小心。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "叫聲"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-20」點。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "羽擊"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S10b/063.ts
Normal file
56
data-asia/S/S10b/063.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "咕咕鴿"
|
||||
},
|
||||
|
||||
illustrator: "313",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "飛行速度不可小覷。無論飛到多遠的地方,都會記得自己的主人和巢。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "燕返"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則增加20點傷害。"
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "羽擊"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S10b/064.ts
Normal file
56
data-asia/S/S10b/064.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "高傲雉雞"
|
||||
},
|
||||
|
||||
illustrator: "GIDORA",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "擁有高度的飛行能力。雌性擅於持久,雄性擅長速度。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "起風"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "颶風之翼"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲4次硬幣,造成正面出現的次數×70點傷害。"
|
||||
},
|
||||
|
||||
damage: "70×",
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
22
data-asia/S/S10b/065.ts
Normal file
22
data-asia/S/S10b/065.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "孵化器"
|
||||
},
|
||||
|
||||
illustrator: "sadaji",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。若為反面,則不丟棄這個「孵化器」,而是放回牌庫下方。"
|
||||
},
|
||||
|
||||
trainerType: "Item",
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
22
data-asia/S/S10b/066.ts
Normal file
22
data-asia/S/S10b/066.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "神奇糖果"
|
||||
},
|
||||
|
||||
illustrator: "Ayaka Yoshida",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的手牌選擇1張【2階進化】寶可夢卡,放置於自己的場上的可進化成那隻寶可夢的【基礎】寶可夢身上,跳過【1階進化】完成進化。(無法對自己的最初回合與這個回合剛使出的寶可夢使用。)"
|
||||
},
|
||||
|
||||
trainerType: "Item",
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
22
data-asia/S/S10b/067.ts
Normal file
22
data-asia/S/S10b/067.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "誘餌模組"
|
||||
},
|
||||
|
||||
illustrator: "ORBITALLINK Inc.",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
'zh-tw': "雙方玩家各將自己的牌庫上方3張卡翻到正面,在給對手看過其中的所有寶可夢卡後,加入手牌。將剩餘卡放回牌庫並重洗。"
|
||||
},
|
||||
|
||||
trainerType: "Item",
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
22
data-asia/S/S10b/068.ts
Normal file
22
data-asia/S/S10b/068.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "坎迪拉"
|
||||
},
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫抽出2張卡。然後,擲1次硬幣若為正面,則從自己的棄牌區選擇1張【火】能量卡,附於備戰寶可夢身上。"
|
||||
},
|
||||
|
||||
trainerType: "Supporter",
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
22
data-asia/S/S10b/069.ts
Normal file
22
data-asia/S/S10b/069.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "史帕克"
|
||||
},
|
||||
|
||||
illustrator: "Naoki Saito",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫抽出2張卡。然後,擲1次硬幣若為正面,則從自己的棄牌區選擇1張【雷】能量卡,附於備戰寶可夢身上。"
|
||||
},
|
||||
|
||||
trainerType: "Supporter",
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
22
data-asia/S/S10b/070.ts
Normal file
22
data-asia/S/S10b/070.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "布蘭雪"
|
||||
},
|
||||
|
||||
illustrator: "Anesaki Dynamic",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫抽出2張卡。然後,擲1次硬幣若為正面,則從自己的棄牌區選擇1張【水】能量卡,附於備戰寶可夢身上。"
|
||||
},
|
||||
|
||||
trainerType: "Supporter",
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
22
data-asia/S/S10b/071.ts
Normal file
22
data-asia/S/S10b/071.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "寶可補給站"
|
||||
},
|
||||
|
||||
illustrator: "Studio Bora Inc.",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
'zh-tw': "雙方玩家在每個自己的回合時,可使用1次,可將自己的牌庫上方3張卡丟棄。這個情況下,在給對手看過其中的所有物品卡後,加入手牌。"
|
||||
},
|
||||
|
||||
trainerType: "Stadium",
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
16
data-asia/S/S10b/DAR.ts
Normal file
16
data-asia/S/S10b/DAR.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "基本惡能量"
|
||||
},
|
||||
|
||||
category: "Energy",
|
||||
energyType: "Special",
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
16
data-asia/S/S10b/FIG.ts
Normal file
16
data-asia/S/S10b/FIG.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "基本鬥能量"
|
||||
},
|
||||
|
||||
category: "Energy",
|
||||
energyType: "Special",
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
16
data-asia/S/S10b/FIR.ts
Normal file
16
data-asia/S/S10b/FIR.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "基本火能量"
|
||||
},
|
||||
|
||||
category: "Energy",
|
||||
energyType: "Special",
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
16
data-asia/S/S10b/GRA.ts
Normal file
16
data-asia/S/S10b/GRA.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "基本草能量"
|
||||
},
|
||||
|
||||
category: "Energy",
|
||||
energyType: "Special",
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
16
data-asia/S/S10b/LIG.ts
Normal file
16
data-asia/S/S10b/LIG.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "基本雷能量"
|
||||
},
|
||||
|
||||
category: "Energy",
|
||||
energyType: "Special",
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
16
data-asia/S/S10b/MET.ts
Normal file
16
data-asia/S/S10b/MET.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "基本鋼能量"
|
||||
},
|
||||
|
||||
category: "Energy",
|
||||
energyType: "Special",
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
16
data-asia/S/S10b/PSY.ts
Normal file
16
data-asia/S/S10b/PSY.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "基本超能量"
|
||||
},
|
||||
|
||||
category: "Energy",
|
||||
energyType: "Special",
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
16
data-asia/S/S10b/WAT.ts
Normal file
16
data-asia/S/S10b/WAT.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "基本水能量"
|
||||
},
|
||||
|
||||
category: "Energy",
|
||||
energyType: "Special",
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user