mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
53 lines
860 B
TypeScript
53 lines
860 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV1S"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ヘイラッシャ"
|
||
},
|
||
|
||
illustrator: "AKIRA EGAWA",
|
||
category: "Pokemon",
|
||
dexId: [977],
|
||
hp: 160,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
ja: "大食らいだが エサを 取るのは 苦手。 シャリタツと コンビを 組んで 獲物を 捕らえるのだ。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "いかりちらす"
|
||
},
|
||
|
||
damage: "50×",
|
||
|
||
effect: {
|
||
ja: "自分のトラッシュにある「シャリタツ」の枚数×50ダメージ。"
|
||
}
|
||
}, {
|
||
cost: ["Water", "Water", "Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "ヘビースプラッシュ"
|
||
},
|
||
|
||
damage: 120
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 4
|
||
}
|
||
|
||
export default card |