1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 20:09:55 +00:00

51 lines
1.4 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 "../SV9s"
const card: Card = {
set: Set,
name: {
th: "เรชิรัม <ของ N>",
id: "Reshiram <N>"
},
illustrator: "rika",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
description: {
th: "ถูกเล่าขานในเทพนิยายว่า เมื่อมนุษย์เพิกเฉยต่อความเป็นจริงและจม อยู่ในความละโมบ มันจะใช้เปลวเพลิงแผดเผาดินแดนให้สิ้น",
id: "Terlukiskan pada kisah mitos dirinya yang membumihanguskan suatu negeri ketika orang-orangnya mengabaikan kebenaran dan dipenuhi oleh nafsu."
},
stage: "Basic",
attacks: [{
name: {
th: "พาวเวอร์เรจ",
id: "Power Rage"
},
effect: {
th: "แดเมจจะเท่ากับจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x20",
id: "Serangan ini memberikan kerusakan sejumlah 20 untuk tiap Token Kerusakan yang dimiliki Pokémon ini."
},
damage: "20×",
cost: ["Fire", "Lightning"]
}, {
name: {
th: "อินโนเซนต์เฟลม",
id: "Innocent Flame"
},
damage: 170,
cost: ["Fire", "Fire", "Lightning", "Colorless"]
}],
retreat: 2,
regulationMark: "I"
}
export default card