mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
54 lines
786 B
TypeScript
54 lines
786 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV2D"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "スナバァ"
|
||
},
|
||
|
||
illustrator: "Teeziro",
|
||
category: "Pokemon",
|
||
dexId: [769],
|
||
hp: 90,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
ja: "スコップを なくすと 木の枝などを 代わりに 挿し 新たな スコップが 見つかるまで 気を 紛らわす。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "つぶやく"
|
||
},
|
||
|
||
damage: 20
|
||
}, {
|
||
cost: ["Psychic", "Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "マッドショット"
|
||
},
|
||
|
||
damage: 40
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 3
|
||
}
|
||
|
||
export default card |