mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
51 lines
799 B
TypeScript
51 lines
799 B
TypeScript
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 |