1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

51
data-asia/SV/SVLS/008.ts Normal file
View File

@ -0,0 +1,51 @@
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