1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

59
data-asia/SV/SVLN/002.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SVLN"
const card: Card = {
set: Set,
name: {
ja: "サンダー"
},
illustrator: "Nisota Niso",
category: "Pokemon",
dexId: [145],
hp: 110,
types: ["Lightning"],
description: {
ja: "電気を 自在に 操る。 真っ黒な 雷雲の 中に 巣があると 言い伝えられている。"
},
stage: "Basic",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "ついげきボルト"
},
damage: "20",
effect: {
ja: "相手のバトルポケモンにのっているダメカンの数×10ダメージ追加。"
}
}, {
cost: ["Lightning", "Colorless", "Colorless"],
name: {
ja: "ドリルくちばし"
},
damage: 80
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
rarity: "None"
}
export default card