mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
51 lines
820 B
TypeScript
51 lines
820 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV-P"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "纏紅鶴ex"
|
||
},
|
||
|
||
illustrator: "N-DESIGN Inc.",
|
||
category: "Pokemon",
|
||
hp: 200,
|
||
types: ["Colorless"],
|
||
stage: "Basic",
|
||
suffix: "EX",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "恰好喙"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "若這隻寶可夢與對手的戰鬥寶可夢身上附加的能量數量相同,則增加100點傷害。"
|
||
},
|
||
|
||
damage: "30+",
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "勇鳥猛攻"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "這隻寶可夢也受到30點傷害。"
|
||
},
|
||
|
||
damage: 200,
|
||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |