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

56
data-asia/S/S11a/033.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "椰蛋樹"
},
illustrator: "Toshinao Aoki",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
'zh-tw': "3顆頭都想著不同的事。對自己以外的事情似乎都沒什麼興趣。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "強力風暴"
},
effect: {
'zh-tw': "造成自己的場上寶可夢身上附加的能量的數量×20點傷害。"
},
damage: "20×",
cost: ["Psychic"]
}, {
name: {
'zh-tw': "踩"
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card