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

55
data-asia/SV/SVEM/002.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SVEM"
const card: Card = {
set: Set,
name: {
'zh-tw': "蛋蛋"
},
illustrator: "Kariya",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "非得湊齊6隻才會有安全感。那怕只是少了1隻,都會立刻 變得很膽小,隨時想要逃跑。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "催眠術"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "滾動衝撞"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card