1
0
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:
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/SV1a/089.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "デデンネex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 170,
types: ["Psychic"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Psychic", "Psychic"],
name: {
ja: "テールスワップ"
},
effect: {
ja: "自分のベンチポケモンを1匹選び、選んだポケモンにのっているダメカンをすべて、相手のバトルポケモンにのせ替える。"
}
}, {
cost: ["Psychic", "Psychic", "Psychic"],
name: {
ja: "ワンダーショット"
},
damage: 170,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1
}
export default card