1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +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

57
data-asia/SV/SV8s/104.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Gastrodon",
th: "ไทรโทดอน"
},
illustrator: "Scav",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
id: "Gastrodon muncul di pantai batu yang dangkal. Ketika berhasil menangkap mangsa, Pokémon ini melelehkannya secara perlahan dengan lendirnya, lalu menyeruputnya.",
th: "ปรากฏตัวตามแนวโขดหินน้ำตื้น พอจับเหยื่อได้จะค่อย ๆ ใช้เมือก ละลายแล้วซดเข้าไป"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
id: "Pengikat Lekat",
th: "มัดติดแน่น"
},
effect: {
id: "Selama Pokémon ini ada di Cadangan, Pokémon Stage 2 di Cadangan kedua pemain menjadi tidak memiliki Ability.",
th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนเบนช์ ความสามารถของโปเกมอน[ร่าง2] บนเบนช์ ของทั้งสองฝ่าย ทั้งหมดจะหายไป"
}
}],
attacks: [{
name: {
id: "Mud Shot",
th: "มัดช็อต"
},
damage: 80,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card