1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

56 lines
918 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "シロデスナex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 280,
types: ["Psychic"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "すなじごく"
},
damage: 160,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。"
}
}, {
cost: ["Water", "Psychic", "Fighting"],
name: {
ja: "バライトジェイル"
},
effect: {
ja: "相手のベンチポケモン全員に、それぞれ残りHPが「100」になるように、ダメカンをのせる。"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 4
}
export default card