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