1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

61
data-asia/SV/SVDs/135.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "คลามิงโก้",
id: "Flamigo"
},
illustrator: "kantaro",
category: "Pokemon",
hp: 110,
types: ["Colorless"],
description: {
th: "เนื่องจากมีพฤติกรรมที่เรียกว่าซิงโคร ทุกตัวในฝูงจะโจมตีพร้อมกันอย่างเป็นระเบียบ",
id: "Dengan kebiasaan Flamigo yang disebut Sinkronisasi, kelompok Pokémon ini menyerang lawan secara bersamaan dengan sinkron."
},
stage: "Basic",
attacks: [{
name: {
th: "ตีปีก",
id: "Mengepak"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
th: "โฉบ",
id: "Menukik Drastis"
},
effect: {
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 20 ด้วย",
id: "Pokémon ini juga menerima kerusakan sejumlah 20."
},
damage: 110,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card