mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
51 lines
778 B
TypeScript
51 lines
778 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV1V"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ヤドン"
|
||
},
|
||
|
||
illustrator: "Toshinao Aoki",
|
||
category: "Pokemon",
|
||
dexId: [79],
|
||
hp: 70,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
ja: "いつも ボーッとしていて なにを 考えているか わからない。 尻尾で エサを 釣るのが 得意。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
ja: "ねむる"
|
||
},
|
||
|
||
effect: {
|
||
ja: "このポケモンをねむりにする。このポケモンのHPを「30」回復する。"
|
||
}
|
||
}, {
|
||
cost: ["Water", "Colorless"],
|
||
|
||
name: {
|
||
ja: "ずつき"
|
||
},
|
||
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card |