mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
49 lines
976 B
TypeScript
49 lines
976 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SLD"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "飯匙蛇",
|
||
ja: "ハブネーク"
|
||
},
|
||
|
||
illustrator: "Tomokazu Komiya",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Darkness"],
|
||
|
||
description: {
|
||
'zh-tw': "總是用岩石打磨尾巴上的刀刃,所以刀刃非常鋒利。和貓鼬斬是死對頭。",
|
||
ja: "尻尾の 刀は いつも 岩で 研いでいるので 切れ味 ばつぐん。 ザングースとは 因縁の あいだ。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "突襲迴轉",
|
||
ja: "ふいうちターン"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將這隻寶可夢與備戰區的【惡】寶可夢互換。",
|
||
ja: "このポケモンをベンチのポケモンと入れ替える。"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Darkness", "Darkness"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "F",
|
||
dexId: [336]
|
||
}
|
||
|
||
export default card |