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

48
data-asia/S/S5I/055.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: "Sekio",
category: "Pokemon",
hp: 50,
types: ["Colorless"],
description: {
'zh-tw': "翅膀很短,無法長距離飛行。總是不停地四處跳來跳去,忙著啄食蟲寶可夢。",
th: "ด้วยปีกที่สั้นทำให้บินได้ไม่ไกล มักขยับไปมาอย่างลุกลี้ลุกลนจิกกินโปเกมอนแมลง"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "啄",
th: "จิก"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card