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

62
data-asia/SV/SV8s/072.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Azumarill",
th: "มาริลลิ"
},
illustrator: "Orca",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
id: "Dengan memfokuskan pendengarannya, Azumarill dapat mendengar apa saja yang ada di dalam sungai berarus deras.",
th: "ถ้าตั้งใจฟังดี ๆ จะสามารถแยกแยะได้ว่าอะไรอยู่ในแม่น้ำที่ไหลเชี่ยว"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
id: "Gelembung Kilau-mengilau",
th: "ฟองแวววาว"
},
effect: {
id: "Jika ada Pokémon Terastal di Arena sendiri, Energi yang dibutuhkan oleh Pokémon ini untuk menggunakan Serudukan Nekat menjadi 1 Energi {Psychic}.",
th: "ถ้าบนกระดานฝ่ายเรามีโปเกมอน [เทรัสตัล] อยู่ พลังงานสำหรับใช้ [กระแทก สุดแรง] ของโปเกมอนนี้ จะเป็นพลังงาน[พลังจิต] 1 ลูก"
}
}],
attacks: [{
name: {
id: "Serudukan Nekat",
th: "กระแทกสุดแรง"
},
effect: {
id: "Pokémon ini juga menerima kerusakan sejumlah 50.",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 50 ด้วย"
},
damage: 230,
cost: ["Psychic", "Psychic", "Psychic", "Psychic"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card