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

64 lines
1.7 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 "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "チラチーノ",
'zh-tw': "奇諾栗鼠",
th: "จิลาจีโน"
},
illustrator: "Shibuzoh.",
category: "Pokemon",
dexId: [573],
hp: 110,
types: ["Colorless"],
description: {
ja: "塵ひとつ 許せない 潔癖。 体から 染み出る 油を 巣に 塗りつけ コーティングする。",
'zh-tw': "潔癖使得牠連一絲灰塵都無法容忍,會把自己身上 滲出的油塗在巢上保持清潔。",
th: "เกลียดความสกปรกไม่ยอมให้มีฝุ่นแม้แต่นิดเดียว ทารังเพื่อเคลือบไว้ด้วยน้ำมันที่ซึมมาจากร่างกาย"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ひっぱたく",
'zh-tw': "重摑",
th: "ตบแรง"
},
damage: 30
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "スペシャルころころ",
'zh-tw': "特殊滾滾",
th: "กลมกลิ้งพิเศษ"
},
damage: "70×",
effect: {
ja: "このポケモンについている特殊エネルギーの枚数×70ダメージ。",
'zh-tw': "造成這隻寶可夢身上附加的特殊能量卡的張數×70點傷害。",
th: "แดเมจจะเท่ากับจำนวนการ์ดพลังงานพิเศษที่ติดอยู่กับโปเกมอนนี้ x70"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card