mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
47
data-asia/SV/SV2D/089.ts
Normal file
47
data-asia/SV/SV2D/089.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "オンバーンex"
|
||||
},
|
||||
|
||||
illustrator: "Eske Yoshinob",
|
||||
category: "Pokemon",
|
||||
hp: 260,
|
||||
types: ["Dragon"],
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "おんみつひこう"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
effect: {
|
||||
ja: "次の相手の番、このポケモンはたねポケモンからワザのダメージを受けない。"
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Darkness"],
|
||||
|
||||
name: {
|
||||
ja: "ドミネートエコー"
|
||||
},
|
||||
|
||||
damage: 140,
|
||||
|
||||
effect: {
|
||||
ja: "次の相手の番、相手は手札から特殊エネルギーを出してつけられず、スタジアムも出せない。"
|
||||
}
|
||||
}],
|
||||
|
||||
retreat: 0
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user