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

56
data-asia/SV/SVDs/091.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "ริคุคุราเกะ",
id: "Toedscruel"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
th: "อาศัยอยู่เป็นกลุ่มโดยสร้างอาณานิคมในป่าลึก เกลียดการที่มีคนนอกเข้ามาใกล้เป็นอย่างมาก",
id: "Toedscruel hidup berkelompok dan membentuk koloni di dalam hutan. Pokémon ini sangat membenci kedatangan makhluk asing."
},
stage: "Stage1",
attacks: [{
name: {
th: "ตี",
id: "Menghantam"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}, {
name: {
th: "ดับเบิลวิป",
id: "Double Whip"
},
effect: {
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x100",
id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 100 untuk tiap lemparan dengan hasil sisi depan."
},
damage: "100×",
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card