mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
56 lines
943 B
TypeScript
56 lines
943 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SCC"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "千針魚"
|
||
},
|
||
|
||
illustrator: "Anesaki Dynamic",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Darkness"],
|
||
|
||
description: {
|
||
'zh-tw': "全身上下的小針是由鱗片變化而來的。如果被刺中的話,就會中毒並陷入昏迷。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "破裂針"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "當這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害而【氣絕】時,在使用招式的寶可夢身上放置6個傷害指示物。"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "毒擊"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |