mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV7s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "โยรุโนะซึคุ"
|
||
},
|
||
|
||
illustrator: "Tetsu Kayama",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Colorless"],
|
||
|
||
description: {
|
||
th: "เพราะปีกที่อ่อนนุ่มมากทำให้ไม่เกิดเสียงในยามที่บิน จึงแอบเข้าใกล้เหยื่อได้โดยที่เหยื่อไม่รู้ตัว"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
th: "ค้นหาอัญมณี"
|
||
},
|
||
|
||
effect: {
|
||
th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ถ้าบนกระดานฝ่ายเรามีโปเกมอน [เทรัสตัล] อยู่ ใช้ได้ 1 ครั้ง เลือกการ์ดเทรนเนอร์ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "สปีดวิง"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |