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

63 lines
1.7 KiB
TypeScript
Raw Permalink 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ピクシー",
'zh-tw': "皮可西",
th: "ปิคซี"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "satoma",
dexId: [36],
hp: 120,
types: ["Psychic"],
description: {
ja: "耳が 良くて 1キロ 離れた ところで 落とした 針の音を 見事に 聞き分けられる。",
'zh-tw': "聽覺靈敏,連1公里以外 針落地的聲音都能夠 分辨得一清二楚。",
th: "มีประสาทรับฟังเสียงที่ดี สามารถแยกแยะเสียงของเข็มที่หล่นในสถานที่ที่ห่างออกไป 1 กิโลเมตรได้อย่างง่ายดาย"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ゆびをふる",
'zh-tw': "揮指",
th: "ตวัดนิ้ว"
},
effect: {
ja: "相手のバトルポケモンが持っているワザを1つ選び、このワザとして使う。",
'zh-tw': "選擇1個對手的戰鬥寶可夢持有的招式作為這個招式使用。",
th: "เลือกท่าต่อสู้ที่โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมี 1 ท่า ใช้เป็นท่าต่อสู้นี้ได้"
}
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "マジカルショット",
'zh-tw': "魔法射擊",
th: "เมจิคัลช็อต"
},
damage: 100
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card