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

69
data-asia/S/S12/037.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "瑪沙那",
th: "อาซานัน",
ja: "アサナン"
},
illustrator: "Jiro Sasumo",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "1天只吃1個樹果。藉由忍耐飢餓來 來磨練自己的心。",
th: "กินผลไม้แค่วันละ 1 ผล การทนต่อความหิวโหยจะช่วยขัดเกลาจิตใจให้แกร่งขึ้น",
ja: "1日 1個だけ 木の実を 食べる。 空腹に 耐えることで 心が 研ぎ澄まされていく。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "瑜伽防守",
th: "โยคะการ์ด",
ja: "ヨガガード"
},
effect: {
'zh-tw': "只要這隻寶可夢在備戰區,不會受到招式的傷害。",
th: "โปเกมอนนี้ ตราบใดที่ยังอยู่บนเบนช์ จะไม่ได้รับแดเมจจากท่าต่อสู้",
ja: "このポケモンは、ベンチにいるかぎり、ワザのダメージを受けない。"
}
}],
attacks: [{
name: {
'zh-tw': "精神射擊",
th: "ไซโคช็อต",
ja: "サイコショット"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [307]
}
export default card