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

53 lines
823 B
TypeScript
Raw Permalink 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "チャデス"
},
illustrator: "Saboteri",
category: "Pokemon",
dexId: [1012],
hp: 30,
types: ["Grass"],
description: {
ja: "ヤバチャの リージョンフォームに 見えるが まったく 関係のない ポケモンと 最近 判明した。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "くらがくれ"
},
effect: {
ja: "このポケモンは、ベンチにいるかぎり、相手のポケモンからワザのダメージや効果を受けない。"
}
}],
attacks: [{
cost: ["Grass"],
name: {
ja: "ひっかける"
},
damage: 10
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card