1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

50
data-asia/SV/SV5a/079.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ヤバソチャex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 240,
types: ["Grass"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Colorless"],
name: {
ja: "せんじがえし"
},
effect: {
ja: "自分のトラッシュにある「基本エネルギー」をすべて相手に見せ、その枚数×2個ぶんのダメカンを、相手のポケモン1匹にのせる。その後、見せたエネルギーを山札にもどして切る。"
}
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "まっちゃスプラッシュ"
},
damage: 120,
effect: {
ja: "自分のポケモン全員のHPを、それぞれ「30」回復する。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card