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:
50
data-asia/SV/SV5a/079.ts
Normal file
50
data-asia/SV/SV5a/079.ts
Normal 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
|
Reference in New Issue
Block a user