1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

53
data-asia/SV/SV10/084.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "傲骨燕",
'zh-cn': "傲骨燕",
ja: "スバメ"
},
illustrator: "Ayako Ozaki",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
'zh-tw': "不擅長應付寒冷的季節。 為了尋找溫暖的地帶, 會1天飛上300公里的距離。",
'zh-cn': "不擅長應付寒冷的季節。 為了尋找溫暖的地帶, 會1天飛上300公里的距離。",
ja: "寒い 季節は 苦手。暖かい 土地を 探し 1日 300キロの 距離を 飛んで 移動する。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "翅膀攻擊",
'zh-cn': "翅膀攻擊",
ja: "つばさでうつ"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [276]
}
export default card