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

56 lines
960 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 "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "スリープ"
},
illustrator: "Tomokazu Komiya",
category: "Pokemon",
dexId: [96],
hp: 70,
types: ["Psychic"],
description: {
ja: "突き出た 鼻を ひくひくさせると どこの だれが どんな 夢を 見ているのか 全部 わかるという。"
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "むりやりねかす"
},
effect: {
ja: "相手は相手自身のベンチポケモンを1匹選び、バトルポケモンと入れ替える。その後、新しく出てきたポケモンをねむりにする。"
}
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "ひっぱたく"
},
damage: 30
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1
}
export default card