1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 20:01:58 +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

49
data-asia/SV/SV1S/087.ts Normal file
View File

@@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "メグロコ"
},
illustrator: "Nurikabe",
category: "Pokemon",
dexId: [551],
hp: 70,
types: ["Fighting"],
description: {
ja: "砂の中に 潜り 泳ぐように 移動。 敵に みつからないためと 体温を 下げない 知恵 なのだ。"
},
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
ja: "かじる"
},
damage: 10
}, {
cost: ["Fighting", "Fighting"],
name: {
ja: "ぶつかる"
},
damage: 30
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2
}
export default card