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

43 lines
1.1 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: "Palkia",
th: "พัลเกีย"
},
illustrator: "danciao",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
description: {
id: "Dikatakan bahwa Palkia hidup di celah dimensi paralel. Pokémon yang muncul dalam mitologi.",
th: "ว่ากันว่าอาศัยอยู่ในช่องว่างระหว่างมิติคู่ขนาน เป็นโปเกมอนที่ปรากฏ ตัวในเทพนิยาย"
},
stage: "Basic",
attacks: [{
name: {
id: "Space Crush",
th: "สเปซแครช"
},
effect: {
id: "Serangan ini memberikan kerusakan sejumlah 40 untuk tiap Energi Dasar yang dikenakan pada Pokémon ini.",
th: "แดเมจจะเท่ากับจำนวนพลังงานพื้นฐานที่ติดอยู่กับโปเกมอนนี้ x40"
},
damage: "40×",
cost: ["Grass", "Water"]
}],
retreat: 2,
regulationMark: "H"
}
export default card