1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

58 lines
932 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../SVK"
const card: Card = {
set: Set,
name: {
ja: "ビーダル"
},
illustrator: "OKACHEKE",
category: "Pokemon",
dexId: [400],
hp: 120,
types: ["Colorless"],
description: {
ja: "川を 木の幹や 泥の ダムで せき止めて 住処を 作る。 働き者として 知られている。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "はたらくまえば"
},
effect: {
ja: "自分の番に1回使える。自分の手札が5枚になるように、山札を引く。"
}
}],
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "テールスマッシュ"
},
damage: 100,
effect: {
ja: "コインを1回投げウラなら、このワザは失敗。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
rarity: "None"
}
export default card