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

55
data-asia/S/S9/043.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "天秤偶",
ja: "ヤジロン"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
hp: 50,
types: ["Psychic"],
description: {
'zh-tw': "用單腳一邊旋轉一邊移動。有時候也能看到 顛倒過來旋轉的天秤偶。",
ja: "一本足で 回転しながら 移動する。 逆さまに なって 回転する ヤジロンも 見かける。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "三重旋轉",
ja: "トリプルスピン"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×20點傷害。",
ja: "コインを3回投げ、オモテの数×20ダメージ。"
},
damage: "20×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [343]
}
export default card