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

feat: Add SV8s (#675)

This commit is contained in:
2025-02-28 08:44:50 +01:00
committed by GitHub
parent e4099defdb
commit e8e9c23e14
245 changed files with 11903 additions and 0 deletions

60
data-asia/SV/SV8s/097.ts Normal file
View File

@ -0,0 +1,60 @@
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