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

54
data-asia/S/S12/002.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "臭臭花",
th: "คุไซฮานะ",
ja: "クサイハナ"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
'zh-tw': "雌蕊會散發一種極其強烈的惡臭, 能讓2公里外的人昏倒。",
th: "กลิ่นเหม็นรุนแรงที่เกสรตัวเมียปล่อยออกมาไปไกลถึง 2 กิโลเมตรและทำให้หมดสติได้",
ja: "めしべが 放つ とてつもなく 臭い においは 2キロ先まで とどき 気を 失わせる。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "臭氣薰人",
th: "กลิ่นหอมฉุน",
ja: "どぎついかおり"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】與【混亂】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]และ[สับสน]",
ja: "相手のバトルポケモンをどくとこんらんにする。"
},
damage: 20,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [44]
}
export default card