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

55
data-asia/SV/SV5a/078.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "イーブイ"
},
illustrator: "Narumi Sato",
category: "Pokemon",
dexId: [133],
hp: 50,
types: ["Colorless"],
description: {
ja: "不規則な 遺伝子を 持つ。 石から出る 放射線によって 体が 突然変異を 起こす。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "かくせい"
},
effect: {
ja: "このポケモンから進化するカードを、自分の山札から1枚選び、このポケモンにのせて進化させる。そして山札を切る。"
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "でんこうせっか"
},
damage: "20",
effect: {
ja: "コインを1回投げオモテなら、20ダメージ追加。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card