1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/SC2D/032.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "美納斯"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "也被稱為是最美的寶可夢。一直以來為無數的藝術家提供了靈感。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "光明治癒"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。將自己的所有寶可夢各恢復「20」HP。"
}
}],
attacks: [{
name: {
'zh-tw': "衝浪"
},
damage: 80,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card