1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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

48
data-asia/S/S5I/004.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../S5I"
const card: Card = {
set: Set,
name: {
'zh-tw': "粉蝶蟲",
th: "โคฟูคิมูชิ"
},
illustrator: "Midori Harada",
category: "Pokemon",
hp: 40,
types: ["Grass"],
description: {
'zh-tw': "覆蓋身體的粉末能夠調節體溫。無論在任何氣候或水土下都能生活。",
th: "ผงที่ปกคลุมร่างกายจะคอยปรับอุณหภูมิในร่างกาย จึงสามารถอาศัยอยู่ได้ในทุกสภาพอากาศและทุกภูมิประเทศ"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "偷襲",
th: "จู่โจมกะทันหัน"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。",
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกก้อย การโจมตีนี้ล้มเหลว"
},
damage: 30,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card