1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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

58
data-asia/SV/SVK/010.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../SVK"
const card: Card = {
set: Set,
name: {
ja: "ビッパ"
},
illustrator: "Naoyo Kimura",
category: "Pokemon",
dexId: [399],
hp: 60,
types: ["Colorless"],
description: {
ja: "いつも 大木や 石を かじって 丈夫な 前歯を 削っている。 水辺に 巣を 作り 暮らす。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "へっちゃらがお"
},
effect: {
ja: "このポケモンは、ベンチにいるかぎり、ワザのダメージを受けない。"
}
}],
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ひっさつまえば"
},
damage: 30,
effect: {
ja: "コインを1回投げウラなら、このワザは失敗。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
rarity: "None"
}
export default card