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

51
data-asia/S/SC2a/013.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "椰蛋樹"
},
illustrator: "miki kudo",
category: "Pokemon",
hp: 140,
types: ["Grass"],
description: {
'zh-tw': "每個腦袋各有各的思想,會通過心靈感應來交談,決定大家要做什麼。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "劈腦蛋"
},
effect: {
'zh-tw': "選擇對手的戰鬥寶可夢持有的1個招式。在下個對手的回合受到這個招式的寶可夢無法使用被選擇的招式。"
},
damage: 30,
cost: ["Grass"]
}, {
name: {
'zh-tw': "日光束"
},
damage: 90,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card