1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

52
data-asia/S/SCD/067.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SCD"
const card: Card = {
set: Set,
name: {
'zh-tw': "泥偶巨人V"
},
illustrator: "Eske Yoshinob",
category: "Pokemon",
hp: 220,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "百萬噸重拳"
},
damage: 80,
cost: ["Psychic", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "倒轉光束"
},
effect: {
'zh-tw': "從對手的進化的戰鬥寶可夢身上移除1張「進化卡」使其退化。將移除的卡放回對手的手牌。"
},
damage: 180,
cost: ["Psychic", "Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "E"
}
export default card