1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

62
data-asia/SV/SV2P/081.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "ミミズズ"
},
illustrator: "OKACHEKE",
category: "Pokemon",
dexId: [968],
hp: 130,
types: ["Metal"],
description: {
ja: "敵に 襲われると 体毛を こぶしのように 使い パンチの 嵐を お見舞いするのだ。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "えいようてつぶん"
},
effect: {
ja: "このポケモンにエネルギーが3個以上ついているなら、このポケモンの最大HPは「+100」される。"
}
}],
attacks: [{
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
name: {
ja: "つきぬける"
},
damage: 100,
effect: {
ja: "相手のベンチポケモン1匹にも、30ダメージ。ベンチは弱点・抵抗力を計算しない。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2
}
export default card