Hissatsu Shimainin
Hissatsu Shimainin (必殺仕舞人) is a Japanese television jidaigeki or period drama that was broadcast in 1981.[1] It is the 16th in the Hissatsu series.[2][3][4] In 1982 the sequel drama Shin Hissatsu Shimainin (18th in the Hissatsu series) was produced by the same cast.The drama features several aikido-based action scenes choreographed by Steven Seagal under the name of 武榮道, prior to the start of his own film career. [5][6]
Hissatsu Shimainin | |
---|---|
Also known as | 必殺仕舞人 |
Genre | Jidaigeki |
Directed by | Tokuzō Tanaka Umetsugu Inoue Eiichi Kudo |
Starring | Machiko Kyō Etsushi Takahashi Hirotaro Honda Midori Nishizaki |
Country of origin | Japan |
Original language(s) | Japanese |
No. of episodes | 13 |
Production | |
Producer(s) | Hisashi Yamauchi Rikyū Nakagawa |
Running time | 45 minutes (per episode) |
Production company(s) | Asahi, Shochiku |
Release | |
Original network | TV Asahi |
Picture format | Film |
Original release | 1981 – 1981 |
Plot
Cast
- Machiko Kyō as Bantokyozan
- Etsushi Takahashi as Shinmatsu
- Hirotaro Honda as Naojiro
- Midori Nishizaki as Ohana
Shin・Hissatsu Shimainin | |
---|---|
Also known as | 新・必殺仕舞人 |
Genre | Jidaigeki |
Directed by | Tokuzō Tanaka Umetsugu Inoue |
Starring | Machiko Kyō Etsushi Takahashi Hirotaro Honda Midori Nishizaki |
Country of origin | Japan |
Original language(s) | Japanese |
No. of episodes | 13 |
Production | |
Producer(s) | Hisashi Yamauchi Rikyū Nakagawa |
Running time | 45 minutes (per episode) |
Production company(s) | Asahi, Shochiku |
Release | |
Original network | TV Asahi |
Picture format | Film |
Original release | July 2 – September 24, 1982 |
gollark: This is far more readable than foolish "shell scripts", and actually quite fast.
gollark: It's HIGHLY advanced.
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.
References
- "必殺シリーズ". TV Asahi. Retrieved March 2, 2019.
- "必殺仕舞人". Dramadata. Retrieved 15 March 2019.
- "必殺仕舞人 ". amazon. Retrieved March 15, 2019.
- 山田誠二『必殺シリーズ完全百科』p29
- https://pbs.twimg.com/media/Cag2nrgUMAE3rbF.jpg
- https://pbs.twimg.com/media/EFwwXlwUEAACT9M?format=jpg
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.