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

62
data-asia/S/S12/088.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "智揮猩",
th: "ยาเรยูตัน",
ja: "ヤレユータン"
},
illustrator: "Sekio",
category: "Pokemon",
hp: 110,
types: ["Colorless"],
description: {
'zh-tw': "智揮猩能夠透過揮動由樹葉和體毛所製成的扇子, 隨心所欲地指揮寶可夢。",
th: "เมื่อโบกพัดนำทัพที่ทำจากใบไม้และขนจากร่าง จะสามารถควบคุมโปเกมอนได้ตามใจชอบ",
ja: "葉っぱと 体毛で つくった 軍配を 振って ポケモンたちを 意のままに 操ることが できる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "猴戲",
th: "ละครลิง",
ja: "さるしばい"
},
effect: {
'zh-tw': "選擇1張對手的棄牌區的支援者卡將那個效果作為這個招式的效果使用。",
th: "เลือกการ์ดซัพพอร์ตบนตำแหน่งทิ้งการ์ดฝ่ายตรงข้าม 1 ใบ ใช้เอฟเฟกต์นั้นเป็นเอฟเฟกต์ของท่าต่อสู้นี้ได้",
ja: "相手のトラッシュにあるサポートを1枚選び、その効果を、このワザの効果として使う。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "頭突",
th: "ตบหนัก",
ja: "ぶちかます"
},
damage: 70,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [765]
}
export default card