Skip to content

Commit 5f89f5b

Browse files
feat: add ja m1s cards (#1082)
* add MEGA * add M1S set * add M1S 001~010 * add M1S 011~020 * Fix: id MEGA to M * Fix: Renamed MEGA to M * Fix: Add 021~050 * Fix: Add 051~063 * Fix: add Illustration rare * Fix: add rarity 'Super rare' and 'Super art rare' * Fix: Add SR and SAR * Fix: Rename file name * Fix: Renamed to M * Fix: Renamed file name * Fix: Renamed directory name M to MEGA * Fix: Removed 'Super rare' and 'Super art rare' * Fixed: Replaced rarity Super Rare to Secret Rare * Fix: Replaced rarity Super art rare to Special illustration rare * Fix: Renamed filename * Fix: Changed file name * Fixed: Renamed folder name --------- Co-authored-by: Thomas <91132581+thomas-bassett@users.noreply.github.com>
1 parent 4d6d015 commit 5f89f5b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+3650
-5
lines changed

data-asia/M.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { Serie } from "../interfaces";
1+
import { Serie } from '../interfaces'
22

33
const serie: Serie = {
44
name: {
5-
ja: "ポケモンカードゲーム MEGA",
5+
ja: 'ポケモンカードゲーム MEGA'
66
},
7-
id: "M",
8-
};
7+
id: "M"
8+
}
99

10-
export default serie;
10+
export default serie

data-asia/M/M1S.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { Set } from '../../interfaces'
2+
import serie from '../M'
3+
4+
const set: Set = {
5+
id: 'M1S',
6+
name: {
7+
ja: 'メガシンフォニア'
8+
},
9+
10+
serie: serie,
11+
12+
cardCount: {
13+
official: 63
14+
},
15+
16+
releaseDate: {
17+
ja: '2025-08-01'
18+
}
19+
}
20+
21+
export default set

data-asia/M/M1S/001.ts

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import { Card } from "../../../interfaces"
2+
import Set from "../M1S"
3+
4+
const card: Card = {
5+
set: Set,
6+
name: {
7+
ja: "モンジャラ"
8+
},
9+
illustrator: "Yuriko Akase",
10+
category: "Pokemon",
11+
hp: 80,
12+
types: ["Grass"],
13+
description: {
14+
ja: "ちぎれても 無限に 伸びる ツルの 奥の 正体は いまだ 解明されていない。"
15+
},
16+
stage: "Basic",
17+
attacks: [{
18+
name: {
19+
ja: "どくのこな"
20+
},
21+
effect: {
22+
ja: "相手のバトルポケモンをどくにする。"
23+
},
24+
cost: ["Grass"]
25+
}, {
26+
name: {
27+
ja: "ひっかける"
28+
},
29+
damage: 30,
30+
cost: ["Grass", "Colorless", "Colorless"]
31+
}],
32+
weaknesses: [{
33+
type: "Fire",
34+
value: "×2"
35+
}],
36+
retreat: 2,
37+
regulationMark: "I",
38+
rarity: "Common",
39+
dexId: [114]
40+
}
41+
42+
export default card

data-asia/M/M1S/002.ts

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import { Card } from "../../../interfaces"
2+
import Set from "../M1S"
3+
4+
const card: Card = {
5+
set: Set,
6+
name: {
7+
ja: "モジャンボ"
8+
},
9+
illustrator: "REND",
10+
category: "Pokemon",
11+
hp: 150,
12+
types: ["Grass"],
13+
description: {
14+
ja: "暖かい土地で暮らすものほど、ツルの伸びが早い。伸びると自ら切って短くする。"
15+
},
16+
stage: "Stage1",
17+
evolveFrom: {
18+
ja: "モンジャラ"
19+
},
20+
attacks: [{
21+
name: {
22+
ja: "すいとる"
23+
},
24+
damage: 30,
25+
effect: {
26+
ja: "このポケモンのHPを「30」回復する。"
27+
},
28+
cost: ["Grass", "Colorless"]
29+
}, {
30+
name: {
31+
ja: "ムキムキウィップ"
32+
},
33+
damage: "120+",
34+
effect: {
35+
ja: "このワザを使うためのエネルギーより、2個多くのエネルギーがついているなら、140ダメージ追加。"
36+
},
37+
cost: ["Grass", "Grass", "Colorless", "Colorless"]
38+
}],
39+
weaknesses: [{
40+
type: "Fire",
41+
value: "×2"
42+
}],
43+
retreat: 4,
44+
regulationMark: "I",
45+
rarity: "Uncommon",
46+
dexId: [465]
47+
}
48+
49+
export default card

data-asia/M/M1S/003.ts

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import { Card } from "../../../interfaces"
2+
import Set from "../M1S"
3+
4+
const card: Card = {
5+
set: Set,
6+
name: {
7+
ja: "チコリータ"
8+
},
9+
illustrator: "kamonabe",
10+
category: "Pokemon",
11+
hp: 70,
12+
types: ["Grass"],
13+
description: {
14+
ja: "日差しを浴びるのが大好き。頭の葉っぱを使って暖かい場所を探す。"
15+
},
16+
stage: "Basic",
17+
attacks: [{
18+
name: {
19+
ja: "はっぱカッター"
20+
},
21+
damage: 20,
22+
cost: ["Grass"]
23+
}],
24+
weaknesses: [{
25+
type: "Fire",
26+
value: "×2"
27+
}],
28+
retreat: 1,
29+
regulationMark: "I",
30+
rarity: "Common",
31+
dexId: [152]
32+
}
33+
34+
export default card

data-asia/M/M1S/004.ts

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
import { Card } from "../../../interfaces"
2+
import Set from "../M1S"
3+
4+
const card: Card = {
5+
set: Set,
6+
name: {
7+
ja: "ベイリーフ"
8+
},
9+
illustrator: "nisimono",
10+
category: "Pokemon",
11+
hp: 110,
12+
types: ["Grass"],
13+
description: {
14+
ja: "首の周りから出されるスパイシーな香りを嗅いでいるとなぜだか戦いたくなる。"
15+
},
16+
stage: "Stage1",
17+
evolveFrom: {
18+
ja: "チコリータ"
19+
},
20+
attacks: [{
21+
name: {
22+
ja: "つきとばす"
23+
},
24+
damage: 50,
25+
effect: {
26+
ja: "相手のバトルポケモンをベンチポケモンと入れ替える。[バトル場に出すポケモンは相手が選ぶ。]"
27+
},
28+
cost: ["Grass", "Colorless"]
29+
}],
30+
weaknesses: [{
31+
type: "Fire",
32+
value: "×2"
33+
}],
34+
retreat: 2,
35+
regulationMark: "I",
36+
rarity: "Common",
37+
dexId: [153]
38+
}
39+
40+
export default card

data-asia/M/M1S/005.ts

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
import { Card } from "../../../interfaces"
2+
import Set from "../M1S"
3+
4+
const card: Card = {
5+
set: Set,
6+
name: {
7+
ja: "メガニウム"
8+
},
9+
illustrator: "Yoriyuki Ikegami",
10+
category: "Pokemon",
11+
hp: 160,
12+
types: ["Grass"],
13+
description: {
14+
ja: "メガニウムのそばにいると森林浴をしたようなすがすがしい気分になれる。"
15+
},
16+
stage: "Stage2",
17+
evolveFrom: {
18+
ja: "ベイリーフ"
19+
},
20+
abilities: [{
21+
type: "Ability",
22+
name: {
23+
ja: "おいしげる"
24+
},
25+
effect: {
26+
ja: "このポケモンがいるかぎり、自分のポケモン全員についている「基本草エネルギー」は、それぞれ草エネルギー2個ぶんとしてはたらく。この特製の効果は重ならない。"
27+
}
28+
}],
29+
attacks: [{
30+
name: {
31+
ja: "ソーラービーム"
32+
},
33+
damage: 140,
34+
cost: ["Grass", "Grass", "Colorless", "Colorless"]
35+
}],
36+
weaknesses: [{
37+
type: "Fire",
38+
value: "×2"
39+
}],
40+
retreat: 2,
41+
regulationMark: "I",
42+
rarity: "Rare",
43+
dexId: [154]
44+
}
45+
46+
export default card

data-asia/M/M1S/006.ts

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import { Card } from "../../../interfaces"
2+
import Set from "../M1S"
3+
4+
const card: Card = {
5+
set: Set,
6+
name: {
7+
ja: "ツボツボ"
8+
},
9+
illustrator: "Shinya Komatsu",
10+
category: "Pokemon",
11+
hp: 80,
12+
types: ["Grass"],
13+
description: {
14+
ja: "ツボのような甲羅の中にためこんだ木の実はいつの間にかドロドロのジュースに変わる。"
15+
},
16+
stage: "Basic",
17+
abilities: [{
18+
type: "Ability",
19+
name: {
20+
ja: "はっこうジュース"
21+
},
22+
effect: {
23+
ja: "このポケモンに草エネルギーがついているなら、自分の番に1回使える。自分のポケモン1匹のHPを「30」回復する。"
24+
}
25+
}],
26+
attacks: [{
27+
name: {
28+
ja: "ころがる"
29+
},
30+
damage: 30,
31+
cost: ["Grass", "Colorless"]
32+
}],
33+
weaknesses: [{
34+
type: "Fire",
35+
value: "×2"
36+
}],
37+
retreat: 1,
38+
regulationMark: "I",
39+
rarity: "Uncommon",
40+
dexId: [213]
41+
}
42+
43+
export default card

data-asia/M/M1S/007.ts

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import { Card } from "../../../interfaces"
2+
import Set from "../M1S"
3+
4+
const card: Card = {
5+
set: Set,
6+
name: {
7+
ja: "ツチニン"
8+
},
9+
illustrator: "Kuroimori",
10+
category: "Pokemon",
11+
hp: 50,
12+
types: ["Grass"],
13+
description: {
14+
ja: "10年以上土の中で暮らすこともある。樹木の根っこから栄養を吸い取る。"
15+
},
16+
stage: "Basic",
17+
attacks: [{
18+
name: {
19+
ja: "ひっかく"
20+
},
21+
damage: 20,
22+
cost: ["Colorless"]
23+
}],
24+
weaknesses: [{
25+
type: "Fire",
26+
value: "×2"
27+
}],
28+
retreat: 1,
29+
regulationMark: "I",
30+
rarity: "Common",
31+
dexId: [290]
32+
}
33+
34+
export default card

data-asia/M/M1S/008.ts

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
import { Card } from "../../../interfaces"
2+
import Set from "../M1S"
3+
4+
const card: Card = {
5+
set: Set,
6+
name: {
7+
ja: "テッカニン"
8+
},
9+
illustrator: "Apios",
10+
category: "Pokemon",
11+
hp: 80,
12+
types: ["Grass"],
13+
description: {
14+
ja: "どんな攻撃でも避けてしまうと いわれるほど素早い ポケモン。甘い樹液が大好物。"
15+
},
16+
stage: "Stage1",
17+
evolveFrom: {
18+
ja: "ツチニン"
19+
},
20+
abilities: [{
21+
type: "Ability",
22+
name: {
23+
ja: "からぬけ"
24+
},
25+
effect: {
26+
ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。山札から「ヌケニン」を1枚選び、ベンチに出す。そして山札を切る。"
27+
}
28+
}],
29+
attacks: [{
30+
name: {
31+
ja: "とんぼがえり"
32+
},
33+
damage: 90,
34+
effect: {
35+
ja: "このポケモンをベンチポケモンと入れ替える。"
36+
},
37+
cost: ["Grass", "Colorless"]
38+
}],
39+
weaknesses: [{
40+
type: "Fire",
41+
value: "×2"
42+
}],
43+
retreat: 0,
44+
regulationMark: "I",
45+
rarity: "Uncommon",
46+
dexId: [291]
47+
}
48+
49+
export default card

0 commit comments

Comments
 (0)