1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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

43
data-asia/SV/SV9s/036.ts Normal file
View File

@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../SV9s"
const card: Card = {
set: Set,
name: {
th: "เวลโกะ",
id: "Wailmer"
},
illustrator: "Shinya Mizuno",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
th: "เมื่อดื่มน้ำทะเลเข้าไปมาก ๆ ร่างกายจะเด้งได้เหมือนลูกบอล กิน อาหารวันละ 1 ตัน",
id: "Ketika meminum banyak air laut, tubuh Wailmer dapat memantul bagai bola. Tiap hari memakan 1 ton makanan."
},
stage: "Basic",
attacks: [{
name: {
th: "โต้คลื่น",
id: "Berselancar"
},
damage: 60,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "I"
}
export default card