mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Cofagrigus",
|
||
th: "เดธคาน"
|
||
},
|
||
|
||
illustrator: "Shiburingaru",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
id: "Tubuh Cofagrigus berupa emas mengilap. Kabarnya Pokémon ini sudah tidak ingat bahwa awalnya ia adalah manusia.",
|
||
th: "ร่างกายสีทองวิบวับ ว่ากันว่าลืมไปแล้วว่าเคยเป็นมนุษย์มาก่อน"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Aturan Baka",
|
||
th: "กฎเกณฑ์แห่งยมโลก"
|
||
},
|
||
|
||
effect: {
|
||
id: "Letakkan masing-masing sejumlah 6 Token Kerusakan pada semua Pokémon kedua pemain yang memiliki Ability.",
|
||
th: "วางตัวนับแดเมจบนโปเกมอนที่มีความสามารถของทั้งสองฝ่ายทุกตัว ตัวละ 6 ตัว"
|
||
},
|
||
|
||
cost: ["Psychic"]
|
||
}, {
|
||
name: {
|
||
id: "Hollow Shot",
|
||
th: "ฮอลโลว์ช็อต"
|
||
},
|
||
|
||
damage: 100,
|
||
cost: ["Psychic", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |