1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09: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/SV/SV5M/037.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "瑪沙那",
th: "อาซานัน"
},
illustrator: "Natsumi Miyanose",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "用冥想提高精神能量後,就可以浮在空中。 1天會吃下1個樹果。",
th: "นั่งสมาธิเพื่อขัดเกลาพลังจิตให้เพิ่มขึ้นและลอยขึ้นกลางอากาศ จะกินผลไม้แค่ 1 ผลต่อวัน"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "巴掌",
th: "ตบ"
},
damage: 10,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "踢",
th: "เตะ"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card