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

51 lines
799 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 "../SVLS"
const card: Card = {
set: Set,
name: {
ja: "レジスチル"
},
illustrator: "Shiburingaru",
category: "Pokemon",
dexId: [379],
hp: 130,
types: ["Metal"],
description: {
ja: "伸び縮みする 柔らかさも あるが どんな 金属よりも 頑丈な 不思議な 物質で できている。"
},
stage: "Basic",
attacks: [{
cost: ["Metal", "Colorless"],
name: {
ja: "レイジングハンマー"
},
damage: "60",
effect: {
ja: "このポケモンにのっているダメカンの数×10ダメージ追加。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 3,
rarity: "None"
}
export default card