1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

60
data-asia/SV/SVEM/003.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SVEM"
const card: Card = {
set: Set,
name: {
'zh-tw': "椰蛋樹"
},
illustrator: "Yoriyuki Ikegami",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
'zh-tw': "3顆頭團結一致發出的精神力量威力強大。天氣 變陰時動作就會變得遲緩。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "催眠波動"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
},
damage: 30,
cost: ["Psychic", "Colorless"]
}, {
name: {
'zh-tw': "超能閉環"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量放回手牌。"
},
damage: 160,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card