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

70 lines
2.3 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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ペルシアン",
'zh-tw': "貓老大",
th: "เปอร์เซียน",
id: "Persian"
},
illustrator: "Naoki Saito",
rarity: "Uncommon",
category: "Pokemon",
dexId: [53],
hp: 110,
types: ["Colorless"],
description: {
ja: "毛並みが 美しく ペットにしたがる 人も 多いが すぐ ひっかいたり するので 手強いぞ。",
'zh-tw': "有著漂亮的毛色,很多人想養牠當寵物, 但牠很愛亂抓,所以並不好養。",
th: "ขนสวยจนคนมากมายอยากได้เป็นสัตว์เลี้ยง แต่รับมือยากเพราะมันชอบข่วน",
id: "Meskipun banyak orang yang ingin memelihara Persian karena bulunya yang cantik, Pokémon ini sulit dijinakkan karena ia langsung mencakar siapa pun."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "ロケットコール",
'zh-tw': "火箭呼喚",
th: "ร็อกเกตคอล",
id: "Rocket Call"
},
effect: {
ja: "自分の番に1回使える。自分の山札から「サカキのカリスマ」を1枚選び、相手に見せて、手札に加える。そして山札を切る。",
'zh-tw': "在自己的回合時可使用1次。從自己的牌庫選擇1張「坂木的領導力」在給對手看過後加入手牌。並且重洗牌庫。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [เสน่ห์ของซากากิ] 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด",
id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 lembar Karisma Giovanni dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
}
}],
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "きりさく",
'zh-tw': "劈開",
th: "ฟันแหลก",
id: "Menyayat"
},
damage: 70
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card