mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Update asian sets (#554)
This commit is contained in:
59
data-asia/SV/SV7a/048.ts
Normal file
59
data-asia/SV/SV7a/048.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV7a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "青綿鳥",
|
||||
'zh-cn': "青綿鳥",
|
||||
ja: "チルット"
|
||||
},
|
||||
|
||||
illustrator: "sowsow",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "如果自己和周圍不乾淨, 就靜不下心來的性格。 見到髒污會用羽毛擦掉。",
|
||||
'zh-cn': "如果自己和周圍不乾淨, 就靜不下心來的性格。 見到髒污會用羽毛擦掉。",
|
||||
ja: "自分も まわりも きれいでないと 落ち着かない 性格。 汚れを 見つけると 羽で ふき取る。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "魅惑之聲",
|
||||
'zh-cn': "魅惑之聲",
|
||||
ja: "チャームボイス"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
|
||||
'zh-cn': "將對手的戰鬥寶可夢【混亂】。",
|
||||
ja: "相手のバトルポケモンをこんらんにする。"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H",
|
||||
rarity: "Common",
|
||||
dexId: [333]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user