1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

62 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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