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

63
data-asia/SV/SV3/002.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "クサイハナ",
'zh-tw': "臭臭花",
th: "คุไซฮานะ"
},
illustrator: "Haru Akasaka",
rarity: "Common",
category: "Pokemon",
dexId: [44],
hp: 80,
types: ["Grass"],
description: {
ja: "よだれのように 見える 甘い蜜。 とても ねばねば しており 触れると いつまでも まとわりつく。",
'zh-tw': "看似口水的東西其實是甜甜的蜜。非常黏稠,只要碰到就會一直黏住。",
th: "น้ำหวาน ๆ ของดอกไม้ที่ดูเหมือนน้ำลายหยดนั้น เหนียวหนืดมาก ถ้าไปโดนเข้าล่ะก็จะติดไปตลอดเลย"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "さそうかおり",
'zh-tw': "誘導香氣",
th: "กลิ่นหอมเชื้อเชิญ"
},
effect: {
ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。",
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。",
th: "เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้"
}
}, {
cost: ["Grass"],
name: {
ja: "リーフステップ",
'zh-tw': "綠葉舞步",
th: "ลีฟสเต็ป"
},
damage: 20
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card