1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

51 lines
944 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "烏賊王"
},
illustrator: "akagi",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "要是盯著牠的發光體看, 就會馬上陷入催眠狀態, 並且受到牠的控制。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "勾結觸手"
},
effect: {
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。然後新上場的寶可夢受到120點傷害。在這個回合若沒有從手牌使出「庫瑟洛斯奇的企圖」則這個招式失敗。"
},
cost: ["Darkness"]
}, {
name: {
'zh-tw': "迴轉攻擊"
},
damage: 90,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H",
rarity: "Uncommon"
}
export default card