1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 13:21:58 +00:00

feat: Add SV9s (#746)

This commit is contained in:
2025-05-24 20:57:29 +02:00
committed by GitHub
parent db5863caee
commit 651313ce70
186 changed files with 9356 additions and 0 deletions

62
data-asia/SV/SV9s/109.ts Normal file
View File

@@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV9s"
const card: Card = {
set: Set,
name: {
th: "คาบิกอน <ของฮ็อป>",
id: "Snorlax <Hop>"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 150,
types: ["Colorless"],
description: {
th: "จอมตะกละที่กินอาหารตลอดเวลานอกจากเวลาหลับ ฟาดอาหารถึง 400 กิโลกรัมใน 1 วัน",
id: "Ia merupakan Pokémon rakus yang selalu makan kecuali saat sedang tidur. Makanan sebanyak 400 kg pun dimakan habis dalam sehari."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
th: "ใจกว้าง",
id: "Dermawan"
},
effect: {
th: "ตราบใดที่โปเกมอนนี้ยังอยู่ แดเมจของท่าต่อสู้ที่ [โปเกมอนของฮ็อป] ฝ่ายเรา ใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+30] แม้จะมีโปเกมอน ที่มีความสามารถนี้กี่ตัวก็ตาม เอฟเฟกต์นี้จะไม่เกิดผลซ้ำ",
id: "Selama Pokémon ini ada di Arena, kerusakan akibat serangan yang digunakan oleh Pokémon Hop sendiri kepada Pokémon Bertarung lawan bertambah sejumlah 30. Efek ini tidak berlaku kelipatan meskipun ada Pokémon lain yang memiliki Ability yang sama."
}
}],
attacks: [{
name: {
th: "ไดนามิกเพรส",
id: "Dynamic Press"
},
effect: {
th: "‌โปเกมอนนี้ก็จะได้รับแดเมจ 80 ด้วย",
id: "Pokémon ini juga menerima kerusakan sejumlah 80."
},
damage: 140,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "I"
}
export default card