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

56
data-asia/SV/SV8s/150.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Helioptile",
th: "เอลิคิเทล"
},
illustrator: "miki kudo",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
description: {
id: "Helioptile membuat listrik tenaga surya dengan melebarkan jumbai di kepalanya dan menggunakannya untuk mengeluarkan jurus listrik yang kuat.",
th: "เมื่อกางแผ่นที่หัวแล้วผลิตไฟฟ้าจากแสงอาทิตย์จะสามารถปล่อยท่า ไฟฟ้าที่รุนแรงได้"
},
stage: "Basic",
attacks: [{
name: {
id: "Voltase Mini",
th: "โวลต์ต่ำ"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
id: "Menyerang",
th: "ประจัญบาน"
},
effect: {
id: "Pokémon ini juga menerima kerusakan sejumlah 10.",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย"
},
damage: 40,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card