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

50
data-asia/SV/SV1S/095.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "ドクロッグex"
},
illustrator: "PLANETA Hiiragi",
category: "Pokemon",
hp: 250,
types: ["Darkness"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Darkness"],
name: {
ja: "わるだくみ"
},
effect: {
ja: "自分の山札から好きなカードを2枚まで選び、手札に加える。そして山札を切る。"
}
}, {
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "どくどくリッパー"
},
damage: 120,
effect: {
ja: "相手のバトルポケモンをどくにする。このどくでのせるダメカンの数は6個になる。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2
}
export default card