mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add SV9a (#672)
This commit is contained in:
59
data-asia/SV/SV9a/073.ts
Normal file
59
data-asia/SV/SV9a/073.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV9a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ラクライ",
|
||||
'zh-tw': "落雷獸",
|
||||
'zh-cn': "落雷獸"
|
||||
},
|
||||
|
||||
illustrator: "Nakamura Ippan",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
dexId: [309],
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
ja: "静電気を 体毛に 溜める。 空気の 乾燥した 季節には 全身から 火花を 散らす。",
|
||||
'zh-tw': "會在體毛中儲存靜電。 在空氣乾燥的季節 會從全身散發出火花。",
|
||||
'zh-cn': "會在體毛中儲存靜電。 在空氣乾燥的季節 會從全身散發出火花。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "うしろげり",
|
||||
'zh-tw': "後踢",
|
||||
'zh-cn': "後踢"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "プチボルト",
|
||||
'zh-tw': "小伏特",
|
||||
'zh-cn': "小伏特"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user