1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/S/SC2a/001.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "妙蛙花V"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 220,
types: ["Grass"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "花粉炸彈"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】與【睡眠】。"
},
damage: 80,
cost: ["Grass", "Grass", "Colorless"]
}, {
name: {
'zh-tw': "日光颱風"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「日光颱風」。"
},
damage: 220,
cost: ["Grass", "Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

46
data-asia/S/SC2a/002.ts Normal file
View File

@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "巴大蝶V"
},
illustrator: "Saki Hayashiro",
category: "Pokemon",
hp: 190,
types: ["Grass"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "搖晃毒"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】與【混亂】。"
},
cost: ["Grass"]
}, {
name: {
'zh-tw': "爆破之風"
},
damage: 130,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

39
data-asia/S/SC2a/003.ts Normal file
View File

@ -0,0 +1,39 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "巴大蝶VMAX"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 300,
types: ["Grass"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "超極巨毒起雲湧"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】與【混亂】。"
},
damage: 150,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 0,
regulationMark: "D"
}
export default card

43
data-asia/S/SC2a/004.ts Normal file
View File

@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "獨角蟲"
},
illustrator: "sui",
category: "Pokemon",
hp: 40,
types: ["Grass"],
description: {
'zh-tw': "有著非常靈敏的嗅覺。能用大大的紅鼻子聞出自己喜歡吃和不喜歡吃的葉子。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "蟲之預見"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張【草】寶可夢卡在給對手看過後加入手牌。並且重洗牌庫。"
},
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

43
data-asia/S/SC2a/005.ts Normal file
View File

@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
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張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。"
},
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/006.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "鐵殼蛹"
},
illustrator: "Naoyo Kimura",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "雖然掛在樹上幾乎一動也不動,但體內正為了進化而忙碌準備著。證據就是牠的身體會變得很熱。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "蛻皮"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "蟲咬"
},
damage: 20,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

40
data-asia/S/SC2a/007.ts Normal file
View File

@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "鐵殼蛹"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "雖然掛在樹上幾乎一動也不動,但體內正為了進化而忙碌準備著。證據就是牠的身體會變得很熱。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "蟲咬"
},
damage: 30,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

52
data-asia/S/SC2a/008.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "大針蜂"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 130,
types: ["Grass"],
description: {
'zh-tw': "大針蜂非常重視自己的地盤,為了安全起見,最好不要接近牠的住處。一旦生氣就會成群結隊襲擊而來。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "神出鬼沒"
},
effect: {
'zh-tw': "在自己的回合若自己的手牌只有這1張卡則可使用1次。將這張卡放置於備戰區。然後從自己的牌庫抽出3張卡。"
}
}],
attacks: [{
name: {
'zh-tw': "銳利針刺"
},
damage: 120,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 0,
regulationMark: "D"
}
export default card

44
data-asia/S/SC2a/009.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "大針蜂"
},
illustrator: "Hideki Ishikawa",
category: "Pokemon",
hp: 140,
types: ["Grass"],
description: {
'zh-tw': "大針蜂非常重視自己的地盤,為了安全起見,最好不要接近牠的住處。一旦生氣就會成群結隊襲擊而來。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "毒擊"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
},
damage: 80,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

40
data-asia/S/SC2a/010.ts Normal file
View File

@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "派拉斯"
},
illustrator: "Atsuko Nishida",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
'zh-tw': "即使不停地吃,不停地吃,大部分攝取的營養都會被生長在背上的蘑菇奪走。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "抓"
},
damage: 20,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/011.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "派拉斯特"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
'zh-tw': "大大的蘑菇操縱著派拉斯特。經常和燈罩夜菇爭奪地盤。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "蘑菇衝撞"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 30,
cost: ["Grass"]
}, {
name: {
'zh-tw': "日光束"
},
damage: 110,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

40
data-asia/S/SC2a/012.ts Normal file
View File

@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "蛋蛋"
},
illustrator: "Hasuno",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
'zh-tw': "用心靈感應與夥伴交流。聽說同時具備植物與某種屬性的基因。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "種子炸彈"
},
damage: 10,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/013.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "椰蛋樹"
},
illustrator: "miki kudo",
category: "Pokemon",
hp: 140,
types: ["Grass"],
description: {
'zh-tw': "每個腦袋各有各的思想,會通過心靈感應來交談,決定大家要做什麼。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "劈腦蛋"
},
effect: {
'zh-tw': "選擇對手的戰鬥寶可夢持有的1個招式。在下個對手的回合受到這個招式的寶可夢無法使用被選擇的招式。"
},
damage: 30,
cost: ["Grass"]
}, {
name: {
'zh-tw': "日光束"
},
damage: 90,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/014.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "蜻蜻蜓"
},
illustrator: "MAHOU",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "不轉動眼珠就可以360度環視。擅長急停和轉向,很快便能將盯上的獵物追得走投無路。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "急速折返"
},
effect: {
'zh-tw': "若希望,將這隻寶可夢與備戰寶可夢互換。"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "利刃之風"
},
damage: 60,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/015.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "遠古巨蜓"
},
illustrator: "Uta",
category: "Pokemon",
hp: 130,
types: ["Grass"],
description: {
'zh-tw': "能以6隻腳攫住成年人並輕鬆地飛行。以尾部的翅膀保持平衡。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "急速折返"
},
effect: {
'zh-tw': "若希望,將這隻寶可夢與備戰寶可夢互換。"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "利刃之風"
},
damage: 130,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 0,
regulationMark: "D"
}
export default card

54
data-asia/S/SC2a/016.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "時拉比"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
'zh-tw': "擁有能夠穿越時光的力量。在許多時代都留下了將牠視為森林之神的紀錄。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "能量壓制"
},
effect: {
'zh-tw': "造成對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。"
},
damage: "30×",
cost: ["Grass"]
}, {
name: {
'zh-tw': "奇幻綻放"
},
effect: {
'zh-tw': "從自己的牌庫選擇自己的所有備戰寶可夢進化而來的卡各1張放置於各自身上完成進化。並且重洗牌庫。"
},
cost: ["Lightning", "Psychic"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

55
data-asia/S/SC2a/017.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "尖牙籠"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
'zh-tw': "會纏繞在生長於潮濕地帶的樹木上,以散發甜甜香氣的唾液吸引獵物靠近,再一口吃掉。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "報恩"
},
effect: {
'zh-tw': "若希望從牌庫抽卡直到自己的手牌滿5張為止。"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "終極吸取"
},
effect: {
'zh-tw': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。"
},
damage: 40,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

54
data-asia/S/SC2a/018.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "謝米"
},
illustrator: "Shibuzoh.",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
'zh-tw': "葛拉西蒂亞花盛開的季節裡,據說牠會為了傳遞感謝之情而飛向天空。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "寄生種子"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「20」HP。"
},
damage: 20,
cost: ["Grass"]
}, {
name: {
'zh-tw': "花之搬運"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢與附加的卡全部翻回反面並重洗放回對手的牌庫下方。"
},
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

47
data-asia/S/SC2a/019.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "花椰猴"
},
illustrator: "Mina Nakai",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
'zh-tw': "擅長尋找樹果,有著四處收集樹果與夥伴分享的體貼之心。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "種子炸彈"
},
damage: 10,
cost: ["Grass"]
}, {
name: {
'zh-tw': "咬住"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/020.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "花椰猿"
},
illustrator: "Hasegawa Saki",
category: "Pokemon",
hp: 100,
types: ["Grass"],
description: {
'zh-tw': "性情凶暴,會猛烈地揮舞帶刺的尾巴戰鬥。頭上的葉子非常苦。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "種子炸彈"
},
damage: 30,
cost: ["Grass"]
}, {
name: {
'zh-tw': "終極衝擊"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 110,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

40
data-asia/S/SC2a/021.ts Normal file
View File

@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "小嘴蝸"
},
illustrator: "Megumi Mizutani",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
'zh-tw': "一旦被敵人襲擊,便會關上殼蓋保護自己。不過蓋蓋蟲能打得開。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "噴汁"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

40
data-asia/S/SC2a/022.ts Normal file
View File

@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "敏捷蟲"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
'zh-tw': "行動迅速,會噴出毒液來戰鬥。敏捷蟲擔綱主角的電影和漫畫擁有極高的人氣。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "噴射頭擊"
},
damage: 70,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 0,
regulationMark: "D"
}
export default card

54
data-asia/S/SC2a/023.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "蓋諾賽克特"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
'zh-tw': "存在於3億年前的寶可夢。被等離子隊改造,在背部裝了砲台。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "直擊彈"
},
effect: {
'zh-tw': "對手的1隻寶可夢受到50點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Grass", "Colorless"]
}, {
name: {
'zh-tw': "高科技光炮"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 120,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

55
data-asia/S/SC2a/024.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "木木梟"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
'zh-tw': "一邊飛行一邊射出刀刃般銳利的羽毛,距離近時會使出猛烈的踢擊。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "天空雜耍"
},
effect: {
'zh-tw': "在這個回合,若從自己的手牌使出了「養鳥人」,則這隻寶可夢使用招式所需的能量全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "風礫"
},
effect: {
'zh-tw': "對手的1隻備戰寶可夢受到60點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

40
data-asia/S/SC2a/025.ts Normal file
View File

@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "投羽梟"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "連續投出被稱為是刃羽的刀般銳利羽毛,能精準地貫穿敵人要害。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "飛葉快刀"
},
damage: 40,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

56
data-asia/S/SC2a/026.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "狙射樹梟"
},
illustrator: "Ryota Murayama",
category: "Pokemon",
hp: 140,
types: ["Grass"],
description: {
'zh-tw': "會像射箭那樣射出藏在自己翅膀裡的箭羽。只要瞄準目標就絕不會射偏。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "密林迷彩"
},
effect: {
'zh-tw': "這隻寶可夢不會受到對手的「寶可夢【V】・【GX】」招式的傷害。"
}
}],
attacks: [{
name: {
'zh-tw': "分岔箭"
},
effect: {
'zh-tw': "對手的2隻備戰寶可夢也各受到20點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 90,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/027.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
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張【草】能量卡附於自己的寶可夢身上。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "活蹦亂跳"
},
damage: 20,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/028.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "甜舞妮"
},
illustrator: "sui",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "像跳舞那樣轉圈,釋放出甜甜的香氣。聞到那香氣便會感到幸福。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "誘惑"
},
effect: {
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "掌擊"
},
damage: 40,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

54
data-asia/S/SC2a/029.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "甜冷美后"
},
illustrator: "so-taro",
category: "Pokemon",
hp: 150,
types: ["Grass"],
description: {
'zh-tw': "讓人畏懼的寶可夢。擁有苗條的雙腿和殘忍的心,會毫不留情地狠踩敵人。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "強力鞭打"
},
effect: {
'zh-tw': "對手的1隻寶可夢受到這隻寶可夢身上附加的能量的數量×20點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "延後踢"
},
effect: {
'zh-tw': "若希望選擇1個對手的戰鬥寶可夢身上附加的能量放回對手的手牌。"
},
damage: 100,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

44
data-asia/S/SC2a/030.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "膽小蟲"
},
illustrator: "MAHOU",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
'zh-tw': "無論是腐爛的東西還是垃圾都能吃光光,是大自然的清道夫。巢穴附近總是保持乾淨。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬後撤退"
},
effect: {
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。"
},
damage: 10,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

55
data-asia/S/SC2a/031.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "具甲武者"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 130,
types: ["Grass"],
description: {
'zh-tw': "為了勝利不擇手段。會看準敵人疏忽的時機,用前腳上的小爪子解決對方。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "逆境斬"
},
effect: {
'zh-tw': "增加對手的場上的「寶可夢【V】・【GX】」的數量×50點傷害。"
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "粉碎迴轉"
},
effect: {
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。"
},
damage: 70,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/032.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "破破舵輪"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 130,
types: ["Grass"],
description: {
'zh-tw': "在海底飄蕩的海藻吸收了沉船的零件後轉生而成的幽靈寶可夢。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "鉤住"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "特殊船錨"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有特殊能量則增加60點傷害。"
},
damage: "60+",
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/033.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "薩戮德V"
},
illustrator: "PLANETA Igarashi",
category: "Pokemon",
hp: 210,
types: ["Grass"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "束縛"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "叢林攀升"
},
effect: {
'zh-tw': "若希望從自己的手牌選擇最多2張基本能量卡以任意方式附於備戰寶可夢身上。然後將附上這些卡的寶可夢的HP全部恢復。"
},
damage: 100,
cost: ["Grass", "Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/034.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 魔牆人偶"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 80,
types: ["Water"],
description: {
'zh-tw': "擅長踢踏舞。會用冷氣製造出冰之地板並將其踢起,以此作為保護自己的障壁。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "反射壁"
},
effect: {
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。"
},
cost: ["Water"]
}, {
name: {
'zh-tw': "雪花冰"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

56
data-asia/S/SC2a/035.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 踏冰人偶"
},
illustrator: "Naoki Saito",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "踢踏舞的達人。會揮動手中的冰杖,向觀眾表演輕快的舞步。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "曳步舞"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。選擇1張對手的反面向上的獎賞卡與對手的牌庫最上方的卡維持反面朝上互換。"
}
}],
attacks: [{
name: {
'zh-tw': "瘋狂派對"
},
effect: {
'zh-tw': "造成自己的棄牌區的持有「瘋狂派對」招式的寶可夢的數量×20點傷害。"
},
damage: "20×",
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

56
data-asia/S/SC2a/036.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "水伊布"
},
illustrator: "so-taro",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
'zh-tw': "當水伊布開始微微顫動牠全身上下的鰭,就表示幾個小時之後要下雨了。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "水隱"
},
effect: {
'zh-tw': "只要這隻寶可夢在備戰區,不會受到招式的傷害。"
}
}],
attacks: [{
name: {
'zh-tw': "水炮"
},
effect: {
'zh-tw': "增加這隻寶可夢身上附加的【水】能量的數量×20點傷害。"
},
damage: "60+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/037.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "水君"
},
illustrator: "so-taro",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "體內蘊藏著泉水般溫柔的寶可夢。會用滑行般的動作在大地上奔跑,有著淨化濁水的力量。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "飛濺"
},
damage: 20,
cost: ["Water"]
}, {
name: {
'zh-tw': "極光閉環"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的【水】能量放回手牌。"
},
damage: 130,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

40
data-asia/S/SC2a/038.ts Normal file
View File

@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "利牙魚"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
'zh-tw': "每個群體都擁有自己的地盤。對於入侵者,會毫不留情地露出牙齒發動攻擊。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬住"
},
damage: 10,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

44
data-asia/S/SC2a/039.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨牙鯊"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
'zh-tw': "以120公里的時速追逐獵物,再用連鐵都能咬碎的牙齒捕殺。人稱牠為大海惡霸。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "水流噴射"
},
effect: {
'zh-tw': "對手的1隻備戰寶可夢也受到20點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 50,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/040.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "吼鯨王V"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 280,
types: ["Water"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "汲水"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多3張【水】能量卡附於這隻寶可夢身上。"
},
cost: ["Water"]
}, {
name: {
'zh-tw': "洋流"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×120點傷害。"
},
damage: "120×",
cost: ["Water", "Water", "Water", "Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card

43
data-asia/S/SC2a/041.ts Normal file
View File

@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "醜醜魚"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 30,
types: ["Water"],
description: {
'zh-tw': "外表醜陋,所以不受歡迎。擁有驚人的生命力,因而成為了研究對象。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "小憩"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「20」HP。"
},
cost: ["Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

52
data-asia/S/SC2a/042.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "美納斯"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "也被稱為是最美的寶可夢。一直以來為無數的藝術家提供了靈感。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "光明治愈"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。將自己的所有寶可夢各恢復「20」HP。"
}
}],
attacks: [{
name: {
'zh-tw': "衝浪"
},
damage: 80,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/043.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "古空棘魚"
},
illustrator: "MAHOU",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "從1億年前就長這個樣子。因為體內積存著厚厚的脂肪,所以能承受深海的水壓。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "化石搜索"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張「稀有化石」卡放置於備戰區。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "衝浪"
},
damage: 40,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

47
data-asia/S/SC2a/044.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "冷水猴"
},
illustrator: "ryoma uratsuka",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
'zh-tw': "頭上的毛髮叢裡儲藏的水充滿營養。如果拿來灌溉,植物就會茁壯成長。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "水槍"
},
damage: 10,
cost: ["Water"]
}, {
name: {
'zh-tw': "咬住"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/045.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "冷水猿"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 100,
types: ["Water"],
description: {
'zh-tw': "喜歡水質乾淨的地方。頭上儲存的水如果減少,就會從尾巴吸取水來補給。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "水槍"
},
damage: 30,
cost: ["Water"]
}, {
name: {
'zh-tw': "終極衝擊"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 110,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

44
data-asia/S/SC2a/046.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "迷你冰"
},
illustrator: "Sanosuke Sakuma",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
'zh-tw': "無法在炎熱的地方生存。會吐出冷氣來降雪,然後窩在積雪裡睡覺。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "凍凝"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 10,
cost: ["Water"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

44
data-asia/S/SC2a/047.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "多多冰"
},
illustrator: "Shibuzoh.",
category: "Pokemon",
hp: 80,
types: ["Water"],
description: {
'zh-tw': "透過喝下乾淨的水來讓自己的冰雪身軀成長。天氣好的時候很少看到牠。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "嚴寒頭錘"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 30,
cost: ["Water"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

52
data-asia/S/SC2a/048.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "雙倍多多冰"
},
illustrator: "kodama",
category: "Pokemon",
hp: 150,
types: ["Water"],
description: {
'zh-tw': "當憤怒達到極限時,就會噴出暴風雪,把敵人和夥伴都凍成冰塊。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "寒風刺骨"
},
effect: {
'zh-tw': "若這隻寶可夢在戰鬥場上則在自己的回合時可使用1次。擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
}
}],
attacks: [{
name: {
'zh-tw': "冰霜粉碎"
},
damage: 90,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

47
data-asia/S/SC2a/049.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "噴嚏熊"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
'zh-tw': "健康時鼻涕的黏度會變強。只要遇到自己討厭的對手,就會把鼻涕擦到對方身上。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "劈打"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "冰柱"
},
damage: 30,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/050.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "凍原熊"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 140,
types: ["Water"],
description: {
'zh-tw': "吐出的氣息凍結而成的冰牙比鋼鐵還硬。為了尋找食物,會在寒冷的海裡游動徘徊。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "劈開"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "結冰斬"
},
effect: {
'zh-tw': "這隻寶可夢也受到50點傷害。"
},
damage: 150,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/051.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "弱丁魚"
},
illustrator: "sui",
category: "Pokemon",
hp: 30,
types: ["Water"],
description: {
'zh-tw': "單獨1隻十分弱小,所以學會了透過群體行動,來對抗敵人的能力。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "深海漩渦"
},
effect: {
'zh-tw': "將自己的手牌全部放回牌庫並重洗。然後從牌庫抽出8張卡。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "飛濺"
},
damage: 20,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

54
data-asia/S/SC2a/052.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "好壞星"
},
illustrator: "Tomokazu Komiya",
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': "將對手的戰鬥寶可夢【中毒】。"
},
damage: 20,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

54
data-asia/S/SC2a/053.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "超壞星"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
'zh-tw': "為了能承受住伽勒爾地區冰涼的水溫,牠用腳搭起圓頂,藉助體溫保持內部的溫暖。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "自我再生"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。將這隻寶可夢的HP全部恢復。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "毒之鞭"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
},
damage: 80,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

52
data-asia/S/SC2a/054.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "暴噬龜V"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 210,
types: ["Water"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "堅硬甲殼"
},
effect: {
'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。"
}
}],
attacks: [{
name: {
'zh-tw': "强力啃咬"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 130,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/055.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "暴噬龜VMAX"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 320,
types: ["Water"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "堅硬甲殼"
},
effect: {
'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。"
}
}],
attacks: [{
name: {
'zh-tw': "超極巨頭撞南墻"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加80點傷害。"
},
damage: "160+",
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/056.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "皮皮"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "據說如果在滿月的夜晚看見皮皮們聚在一起跳舞,就能得到幸福。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "拍擊"
},
damage: 10,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "小揮指"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則選擇對手的戰鬥寶可夢持有的1個招式作為這個招式使用。"
},
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

52
data-asia/S/SC2a/057.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "皮可西"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
description: {
'zh-tw': "妖精的一種。極少出現在人類面前。一感覺到有人就會立刻逃走。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "月之恩"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。將自己的身上附有【超】能量的戰鬥寶可夢恢復「20」HP並將1個特殊狀態恢復。"
}
}],
attacks: [{
name: {
'zh-tw': "魔法射擊"
},
damage: 80,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

47
data-asia/S/SC2a/058.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "胖丁"
},
illustrator: "Motofumi Fujiwara",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "讓肚子脹得大大的,唱出神奇的旋律。聽到後就會馬上變得昏昏欲睡。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "囈語"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "月亮踢"
},
damage: 20,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

55
data-asia/S/SC2a/059.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "胖可丁"
},
illustrator: "Lee HyunJung",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "蓬鬆的毛髮會隨季節變遷而掉落。收集這些毛髮所紡織成的毛線是高級商品。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "睡眠波動"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
},
damage: 30,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "雙重粉碎"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×90點傷害。"
},
damage: "90×",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

45
data-asia/S/SC2a/060.ts Normal file
View File

@ -0,0 +1,45 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "夢幻V"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 180,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "謎幻球"
},
effect: {
'zh-tw': "造成雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。"
},
damage: "30×",
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "D"
}
export default card

59
data-asia/S/SC2a/061.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "麒麟奇"
},
illustrator: "sowsow",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "雖然尾巴上的腦袋小到無法思考,但因為不睡覺也沒關係,所以會24小時持續監視周圍的狀況。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "精神力量"
},
effect: {
'zh-tw': "將2個傷害指示物以任意方式放置於對手的寶可夢身上。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "擺尾指令"
},
effect: {
'zh-tw': "若希望令對手將對手自己的手牌全部放回牌庫並重洗。這個情況下對手從牌庫抽出4張卡。"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card

40
data-asia/S/SC2a/062.ts Normal file
View File

@ -0,0 +1,40 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "布魯"
},
illustrator: "otumami",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
'zh-tw': "臉看起來很嚴厲,但其實相當膽小。那拼命作出威嚇的表情很受女性歡迎。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "銳利之牙"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/063.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "布魯皇"
},
illustrator: "SATOSHI NAKAI",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
'zh-tw': "發達的下顎和沉重的牙齒是牠的武器。只要不惹牠生氣,就不太會咬人哦。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "緊咬不放"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 50,
cost: ["Psychic", "Colorless"]
}, {
name: {
'zh-tw': "魯莽頭擊"
},
damage: 130,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

47
data-asia/S/SC2a/064.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙奈朵V"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 210,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "魔法射擊"
},
damage: 30,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "充溢波動"
},
effect: {
'zh-tw': "在這個回合若這隻寶可夢恢復了HP則增加80點傷害。"
},
damage: "120+",
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

39
data-asia/S/SC2a/065.ts Normal file
View File

@ -0,0 +1,39 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙奈朵VMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 320,
types: ["Psychic"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "極巨治癒"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「50」HP。"
},
damage: 180,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

59
data-asia/S/SC2a/066.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "月石"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "月亮的盈虧似乎會影響牠力量的增減。每到滿月之夜就會變得活躍。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "預知未來"
},
effect: {
'zh-tw': "查看自己或者對手的牌庫上方4張以任意順序排列放回牌庫上方。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "精神強念"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×20點傷害。"
},
damage: "20+",
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card

48
data-asia/S/SC2a/067.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "怨影娃娃"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "吞食人們心中的怨恨和嫉妒等情緒而成長的寶可夢。為了尋找怨恨之心在街上遊蕩。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "纏擾"
},
effect: {
'zh-tw': "在對手的戰鬥寶可夢身上放置1個傷害指示物。"
},
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card

57
data-asia/S/SC2a/068.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "詛咒娃娃"
},
illustrator: "kodama",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "詛咒的能量滲入被丟棄玩偶的棉花裡變成了寶可夢。如果張開嘴巴,能量就會外洩。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "退化詛咒"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。選擇對手的1隻進化的備戰寶可夢移除1張「進化卡」使其退化。將移除的卡放回對手的手牌。"
}
}],
attacks: [{
name: {
'zh-tw': "陰森射擊"
},
damage: 40,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card

55
data-asia/S/SC2a/069.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "哥德寶寶"
},
illustrator: "Mizue",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "雖然還是寶寶,有時也會用儲存在像蝴蝶結一樣的觸角裡的精神力量來戰鬥。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "天眼"
},
effect: {
'zh-tw': "查看對手的牌庫上方5張卡以任意順序排列放回牌庫上方。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "重摑"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card

59
data-asia/S/SC2a/070.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "哥德小童"
},
illustrator: "sowsow",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
'zh-tw': "據說會在星光閃耀的夜裡把睡著的孩子們帶走。也有人稱牠為制裁魔女。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "撒嬌聲"
},
effect: {
'zh-tw': "在不看正面的情況下從對手的手牌選擇1張在看過那張卡正面後放回對手的牌庫並重洗。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "雙重旋轉"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×30點傷害。"
},
damage: "30×",
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card

60
data-asia/S/SC2a/071.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "哥德小姐"
},
illustrator: "Eri Yamaki",
category: "Pokemon",
hp: 140,
types: ["Psychic"],
description: {
'zh-tw': "根據星星的動向預知未來。雖然擁有強大的精神力量,但生性並不喜好紛爭。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "精神歪曲"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
damage: 40,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "扭歪"
},
effect: {
'zh-tw': "在不看正面的情況下從對手的手牌選擇2張在看過那些卡正面後放回對手的牌庫並重洗。"
},
damage: 90,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card

52
data-asia/S/SC2a/072.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "泥偶小人"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "誕生自黏土的古代寶可夢。不知為何,有一些泥偶小人會不斷地把大石頭排列起來。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "滾動"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}, {
name: {
'zh-tw': "頭突"
},
damage: 50,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "D"
}
export default card

52
data-asia/S/SC2a/073.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "泥偶巨人"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 150,
types: ["Psychic"],
description: {
'zh-tw': "古代人城堡的牆壁裡那像炮台一樣的底座是為了讓泥偶巨人發射光束而建的。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "爆裂劈"
},
damage: 80,
cost: ["Psychic", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "泥偶巨人之錘"
},
damage: 180,
cost: ["Psychic", "Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 4,
regulationMark: "D"
}
export default card

44
data-asia/S/SC2a/074.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "咚咚鼠"
},
illustrator: "Shibuzoh.",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "用尾巴從發電廠或民宅的插座吸取電力,並從鬍鬚放出電擊。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "瘋狂派對"
},
effect: {
'zh-tw': "造成自己的棄牌區的持有「瘋狂派對」招式的寶可夢的數量×20點傷害。"
},
damage: "20×",
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

44
data-asia/S/SC2a/075.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "咚咚鼠"
},
illustrator: "Yuka Morii",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "用尾巴從發電廠或民宅的插座吸取電力,並從鬍鬚放出電擊。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "擺尾蠱惑"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
},
damage: 10,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

54
data-asia/S/SC2a/076.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "哲爾尼亞斯"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
'zh-tw': "據說當頭上的角閃耀七色光芒時,就會分享永恆的生命。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "大地搜尋"
},
effect: {
'zh-tw': "從自己的棄牌區任意選擇1張卡在給對手看過後加入手牌。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "極光增輝"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 100,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

56
data-asia/S/SC2a/077.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "蒂安希"
},
illustrator: "Sanosuke Sakuma",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "在雙手的間隙中壓縮空氣中的碳元素,轉瞬間變出許多鑽石。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "璀璨護幕"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上,自己的所有寶可夢受到對手的寶可夢招式的傷害「-30」點。"
}
}],
attacks: [{
name: {
'zh-tw': "感知之光"
},
effect: {
'zh-tw': "在這個回合若從手牌使出了支援者卡則增加70點傷害。"
},
damage: "50+",
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/078.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "睡睡菇"
},
illustrator: "Suwama Chiaki",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "頭上的蘑菇傘非常好吃,雖然會被森林中的寶可夢吃掉,但是過了一晚上就會再生。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "蘑菇孢子"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "活蹦亂跳"
},
damage: 20,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

55
data-asia/S/SC2a/079.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "燈罩夜菇"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "用孢子閃爍著的光吸引獵物,讓對方睡著。會從指尖吸收精氣。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "閃爍之光"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合受到這個招式的寶可夢無法使用招式。"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "森林恐懼"
},
effect: {
'zh-tw': "若場上有「迷光森林」則增加60點傷害。"
},
damage: "60+",
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

57
data-asia/S/SC2a/080.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "謎擬Q"
},
illustrator: "Ryota Murayama",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "為了讓別人不要害怕自己,特意穿上了看似皮卡丘的破布,結果卻變得更加令人毛骨悚然。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "妨礙治癒者"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上對手的所有備戰寶可夢的HP無法恢復。"
}
}],
attacks: [{
name: {
'zh-tw': "利爪劈擊"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card

48
data-asia/S/SC2a/081.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "來悲茶"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
description: {
'zh-tw': "據說這隻寶可夢是因為害怕寂寞的靈魂住進了涼透的喝剩紅茶而誕生的。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "無聲加害"
},
effect: {
'zh-tw': "在對手的戰鬥寶可夢身上放置2個傷害指示物。"
},
cost: ["Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card

61
data-asia/S/SC2a/082.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "怖思壺"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "住在古董茶壺裡。雖然大多數都是贗品,但偶爾也能發現真貨。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "茶擊"
},
effect: {
'zh-tw': "在自己的回合若從自己的手牌將1張持有「瘋狂派對」招式的寶可夢卡丟棄則可使用1次。從自己的牌庫抽出2張卡。"
}
}],
attacks: [{
name: {
'zh-tw': "瘋狂派對"
},
effect: {
'zh-tw': "造成自己的棄牌區的持有「瘋狂派對」招式的寶可夢的數量×20點傷害。"
},
damage: "20×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card

52
data-asia/S/SC2a/083.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "迷布莉姆"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "透過頭部的突起物來感應生物的情感。只對溫和的人敞開心扉。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "踩"
},
damage: 10,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "魔法射擊"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card

52
data-asia/S/SC2a/084.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "提布莉姆"
},
illustrator: "Hitoshi Ariga",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "遇到情緒激昂的對手時,無論對方是誰,都會用粗暴的方式使其沉默。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "敲擊"
},
damage: 20,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "超念力"
},
damage: 40,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card

61
data-asia/S/SC2a/085.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "布莉姆溫"
},
illustrator: "Naoki Saito",
category: "Pokemon",
hp: 150,
types: ["Psychic"],
description: {
'zh-tw': "由於會朝四周釋放足以引起頭痛的精神力量,其他生物都躲得遠遠的。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "危害意識"
},
effect: {
'zh-tw': "當這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害時,將使用招式的寶可夢【混亂】。"
}
}],
attacks: [{
name: {
'zh-tw': "生命之紗"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 100,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card

57
data-asia/S/SC2a/086.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 魔靈珊瑚V"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 190,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "侵蝕氣場"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上每次對手從手牌將能量附於寶可夢身上時在那隻寶可夢身上放置3個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "陰森飛彈"
},
effect: {
'zh-tw': "將3個傷害指示物以任意方式放置於對手的備戰寶可夢身上。"
},
damage: 60,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/087.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "霜奶仙V"
},
illustrator: "Ayaka Yoshida",
category: "Pokemon",
hp: 170,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "嘩嘩糖雨"
},
effect: {
'zh-tw': "將自己的所有備戰寶可夢各恢復「30」HP。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "甜蜜飛濺"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的【基礎】寶可夢,無法使用招式。"
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

49
data-asia/S/SC2a/088.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "霜奶仙VMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 310,
types: ["Psychic"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "妝點"
},
effect: {
'zh-tw': "附給自己的所有備戰寶可夢各1張牌庫的【超】能量卡。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "超極巨甜奶泡擊"
},
effect: {
'zh-tw': "將自己的場上寶可夢身上附加的任意數量的能量丟棄造成其張數×60點傷害。"
},
damage: "60×",
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

57
data-asia/S/SC2a/089.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "愛管侍V"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 180,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "貼心"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。將自己的戰鬥寶可夢恢復「20」HP。"
}
}],
attacks: [{
name: {
'zh-tw': "精神強念"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×60點傷害。"
},
damage: "10+",
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card

55
data-asia/S/SC2a/090.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "蒼響"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "用過去使用的兵器武裝自己。即使是超極巨化寶可夢,也能以一劍將之拿下。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "金屬武器"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張基本能量卡附於這隻寶可夢身上。"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "奇幻之劍"
},
effect: {
'zh-tw': "若對手的場上有「寶可夢【VMAX】」則增加150點傷害。"
},
damage: "150+",
cost: ["Grass", "Psychic", "Metal"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

47
data-asia/S/SC2a/091.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "阿柏蛇"
},
illustrator: "Uta",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "之所以一圈圈蜷起身體睡覺,是為了不管敵人從哪個方向襲來,都能立刻把頭轉過去威嚇對方。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "尾鞭"
},
damage: 30,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

47
data-asia/S/SC2a/092.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "阿柏怪"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "勒緊的力量非常強大,連鐵桶都能擠扁。一旦被纏住就絕對無法逃脫。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "銳利之牙"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "尾鞭"
},
damage: 70,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

51
data-asia/S/SC2a/093.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 呆殼獸"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 210,
types: ["Darkness"],
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "快攻毒"
},
effect: {
'zh-tw': "若這隻寶可夢在戰鬥場上則在自己的回合時可使用1次。將對手的戰鬥寶可夢【中毒】。"
}
}],
attacks: [{
name: {
'zh-tw': "阻攔射擊"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 130,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/094.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "臭泥"
},
illustrator: "Ryota Murayama",
category: "Pokemon",
hp: 80,
types: ["Darkness"],
description: {
'zh-tw': "主要的食物是工廠排放的污泥廢液。最近數量減少了。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "踩落"
},
effect: {
'zh-tw': "將對手的牌庫上方1張卡丟棄。"
},
cost: ["Darkness"]
}, {
name: {
'zh-tw': "污泥旋渦"
},
damage: 50,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card

50
data-asia/S/SC2a/095.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "臭臭泥"
},
illustrator: "Eri Yamaki",
category: "Pokemon",
hp: 140,
types: ["Darkness"],
description: {
'zh-tw': "總之就是臭得讓人不敢用鼻子呼吸。但是也存在著少數覺得這味道很不錯的臭臭泥愛好者。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "三倍毒"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。因這個【中毒】而放置的傷害指示物的數量改為3個。"
},
cost: ["Darkness"]
}, {
name: {
'zh-tw': "污泥旋渦"
},
damage: 120,
cost: ["Darkness", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card

47
data-asia/S/SC2a/096.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "圓絲蛛"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
hp: 60,
types: ["Darkness"],
description: {
'zh-tw': "總是一心一意地等待,直到愛吃的萌虻落入巢中。實在是很有耐心的寶可夢。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "垂吊"
},
damage: 10,
cost: ["Darkness"]
}, {
name: {
'zh-tw': "刺刺痛痛"
},
damage: 20,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

56
data-asia/S/SC2a/097.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "阿利多斯"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 110,
types: ["Darkness"],
description: {
'zh-tw': "也有地方會使用阿利多斯的絲來織布。結實的布料廣受好評。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "蜘蛛網"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。選擇對手的備戰區的1隻進化寶可夢與戰鬥寶可夢互換。"
}
}],
attacks: [{
name: {
'zh-tw': "毒針"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
},
damage: 30,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

52
data-asia/S/SC2a/098.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "叉字蝠V"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 180,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "暗夜能源"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。從牌庫抽卡直到自己的手牌滿6張為止。在這個回合若已經使出了其他的「暗夜能源」則這個特性無法使用。"
}
}],
attacks: [{
name: {
'zh-tw': "毒牙"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
},
damage: 70,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card

44
data-asia/S/SC2a/099.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 蛇紋熊"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "一直在奔跑,永遠靜不下來。如果發現了其他的寶可夢,就會故意撞上去挑起事端。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "飛彈針"
},
effect: {
'zh-tw': "擲4次硬幣造成正面出現的次數×10點傷害。"
},
damage: "10×",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

44
data-asia/S/SC2a/100.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 直衝熊"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
description: {
'zh-tw': "會用長舌頭挑釁獵物。一旦獵物被自己激怒,便會猛烈地衝撞上去。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "捨身衝撞"
},
effect: {
'zh-tw': "這隻寶可夢也受到20點傷害。"
},
damage: 60,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card

Some files were not shown because too many files have changed in this diff Show More