mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Annihilape",
|
||
th: "โคโนะโยซารุ"
|
||
},
|
||
|
||
illustrator: "SIE NANAHARA",
|
||
category: "Pokemon",
|
||
hp: 140,
|
||
types: ["Fighting"],
|
||
|
||
description: {
|
||
id: "Annihilape mengerahkan kekuatan amarah yang tersembunyi di dalam hati ke tinjunya, lalu memukulkannya hingga tulang lawannya menjadi hancur berkeping-keping dari dalam.",
|
||
th: "อัดพลังแห่งความโกรธที่เก็บงำไว้ในใจลงในกำปั้น ฝ่ายตรงข้ามที่โดน กำปั้นนั้นฟาดใส่จะถูกบดขยี้จากไขกระดูก"
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Mengamuk",
|
||
th: "อาละวาดไปทั่ว"
|
||
},
|
||
|
||
effect: {
|
||
id: "Ubah kondisi Pokémon ini menjadi Pusing.",
|
||
th: "ทำให้โปเกมอนนี้เป็นสภาวะ[สับสน]"
|
||
},
|
||
|
||
damage: 130,
|
||
cost: ["Fighting"]
|
||
}, {
|
||
name: {
|
||
id: "Pertarungan Tumbang Bersama",
|
||
th: "สู้ตายไปตามกัน"
|
||
},
|
||
|
||
effect: {
|
||
id: "Pokémon Bertarung kedua pemain KO.",
|
||
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่าย[หมดสภาพ]"
|
||
},
|
||
|
||
cost: ["Fighting", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |