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

56 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 "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Koraidon",
th: "โคไรดอน"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
id: "Kabarnya, identitas asli Winged King yang membelah tanah dengan tinjunya seperti yang tertulis dalam jurnal ekspedisi kuno adalah Koraidon.",
th: "ดูเหมือนว่าจะเป็นร่างที่แท้จริงของราชาแห่งปีกที่ในบันทึกการสำรวจ เก่ากล่าวว่ามันเคยแยกแผ่นดินด้วยกำปั้น"
},
stage: "Basic",
attacks: [{
name: {
id: "Serangan Menggebu Bergelombang",
th: "บุกกระหน่ำเป็นระลอก"
},
effect: {
id: "Jika pada giliran sendiri sebelumnya, Pokémon Purba selain Pokémon ini telah menggunakan serangan, kerusakan yang diberikan bertambah sejumlah 150.",
th: "เทิร์นก่อนของฝ่ายเรา ถ้าโปเกมอน [โบราณ] ที่นอกเหนือจากโปเกมอนนี้ใช้ ท่าต่อสู้ไปแล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 150"
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}, {
name: {
id: "Hantaman Penuh Tenaga",
th: "ตบหนัก"
},
damage: 110,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card